3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

work on switcher

Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
Lev 2018-08-10 15:17:13 +08:00 committed by Lev Nachmanson
parent 032a4efdb6
commit 253facff46
3 changed files with 37 additions and 11 deletions

View file

@ -32,6 +32,12 @@ struct solver::imp {
void solver::add_monomial(lp::var_index v, unsigned sz, lp::var_index const* vs) {
std::cout << "called add_monomial\n";
}
void solver::pop(unsigned) {
}
void solver::push(){ }
solver::solver(lp::lar_solver& s, reslimit& lim, params_ref const& p) {
m_imp = alloc(imp, s, lim, p);
}

View file

@ -33,5 +33,8 @@ public:
void add_monomial(lp::var_index v, unsigned sz, lp::var_index const* vs);
solver(lp::lar_solver& s, reslimit& lim, params_ref const& p);
imp* get_imp();
void push();
void pop(unsigned scopes);
};
}