3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-14 12:58:44 +00:00

Fix a comment for Z3_solver_from_string (#7271)

Z3_solver_from_string accepts a string buffer with solver
assertions, not a string buffer with filename.
This commit is contained in:
Sergey Bronnikov 2024-07-02 17:09:33 +03:00 committed by GitHub
parent facc7d8de2
commit 1da132005a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7018,7 +7018,7 @@ extern "C" {
def_API('Z3_solver_from_string', VOID, (_in(CONTEXT), _in(SOLVER), _in(STRING)))
*/
void Z3_API Z3_solver_from_string(Z3_context c, Z3_solver s, Z3_string file_name);
void Z3_API Z3_solver_from_string(Z3_context c, Z3_solver s, Z3_string str);
/**
\brief Return the set of asserted formulas on the solver.