mirror of
https://github.com/Z3Prover/z3
synced 2025-08-05 02:40:24 +00:00
expose internal API for set_phase
This commit is contained in:
parent
8f577d3943
commit
fb1509d011
13 changed files with 24 additions and 2 deletions
|
@ -151,6 +151,7 @@ public:
|
|||
void set_progress_callback(progress_callback * callback) override { m_solver->set_progress_callback(callback); }
|
||||
void collect_statistics(statistics & st) const override { m_solver->collect_statistics(st); }
|
||||
void get_unsat_core(expr_ref_vector & r) override { m_solver->get_unsat_core(r); }
|
||||
void set_phase(expr* e) override { m_solver->set_phase(e); }
|
||||
void get_model_core(model_ref & mdl) override {
|
||||
m_solver->get_model(mdl);
|
||||
if (mdl) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue