mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 06:15:46 +00:00
adding SMT2 log file for solver interaction #867
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b6c13340bd
commit
f6f3ca1507
9 changed files with 159 additions and 28 deletions
|
@ -6332,6 +6332,21 @@ extern "C" {
|
|||
*/
|
||||
void Z3_API Z3_solver_dec_ref(Z3_context c, Z3_solver s);
|
||||
|
||||
/**
|
||||
\brief Log solver interactions into an SMT2 file.
|
||||
The tracked interactions are:
|
||||
- Z3_solver_assert
|
||||
- Z3_solver_assert_and_track
|
||||
- Z3_solver_push
|
||||
- Z3_solver_pop
|
||||
- Z3_solver_check
|
||||
- Z3_solver_check_assumptions
|
||||
Assertions that are loaded from a file are also going to be tracked.
|
||||
|
||||
def_API('Z3_solver_open_smt2log', VOID, (_in(CONTEXT), _in(SOLVER), _in(STRING)))
|
||||
*/
|
||||
void Z3_API Z3_solver_open_smt2log(Z3_context c, Z3_solver s, Z3_string file);
|
||||
|
||||
/**
|
||||
\brief Create a backtracking point.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue