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:
parent
facc7d8de2
commit
1da132005a
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue