mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 14:25:46 +00:00
add stubs for monomial unit propagation
This commit is contained in:
parent
00593609c5
commit
38b131386d
7 changed files with 84 additions and 10 deletions
|
@ -45,6 +45,10 @@ namespace nla {
|
|||
lbool solver::check(vector<ineq>& lits, vector<lemma>& lemmas) {
|
||||
return m_core->check(lits, lemmas);
|
||||
}
|
||||
|
||||
void solver::propagate(vector<lemma>& lemmas) {
|
||||
m_core->propagate(lemmas);
|
||||
}
|
||||
|
||||
void solver::push(){
|
||||
m_core->push();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue