mirror of
https://github.com/Z3Prover/z3
synced 2025-05-07 07:45:46 +00:00
add API for creating and attaching simplifiers
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ebc2cd572b
commit
550619bfcf
10 changed files with 389 additions and 4 deletions
|
@ -52,6 +52,9 @@ struct Z3_solver_ref : public api::object {
|
|||
Z3_solver_ref(api::context& c, solver_factory * f):
|
||||
api::object(c), m_solver_factory(f), m_solver(nullptr), m_logic(symbol::null), m_eh(nullptr) {}
|
||||
|
||||
Z3_solver_ref(api::context& c, solver * s):
|
||||
api::object(c), m_solver_factory(nullptr), m_solver(s), m_logic(symbol::null), m_eh(nullptr) {}
|
||||
|
||||
void assert_expr(expr* e);
|
||||
void assert_expr(expr* e, expr* t);
|
||||
void set_eh(event_handler* eh);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue