mirror of
https://github.com/Z3Prover/z3
synced 2025-10-07 00:11:55 +00:00
add_constraint API
This commit is contained in:
parent
3c7165780c
commit
65885f7eba
9 changed files with 40 additions and 27 deletions
|
@ -596,6 +596,11 @@ namespace datalog {
|
|||
m_engine->add_callback(state, new_lemma_eh, predecessor_eh, unfold_eh);
|
||||
}
|
||||
|
||||
void add_constraint (expr *c, unsigned lvl){
|
||||
ensure_engine();
|
||||
m_engine->add_constraint(c, lvl);
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue