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:
parent
032a4efdb6
commit
253facff46
3 changed files with 37 additions and 11 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue