mirror of
https://github.com/Z3Prover/z3
synced 2025-09-04 00:58:07 +00:00
working on quantifiers
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fb947f50fb
commit
c82deeaf3c
6 changed files with 49 additions and 33 deletions
|
@ -442,6 +442,7 @@ namespace pdr {
|
|||
tmp = pm.mk_and(conj);
|
||||
prop_solver::scoped_level _sl(m_solver, level);
|
||||
m_solver.set_core(core);
|
||||
m_solver.set_model(0);
|
||||
lbool r = m_solver.check_conjunction_as_assumptions(tmp);
|
||||
if (r == l_false) {
|
||||
assumes_level = m_solver.assumes_level();
|
||||
|
@ -705,8 +706,7 @@ namespace pdr {
|
|||
void pred_transformer::inherit_properties(pred_transformer& other) {
|
||||
SASSERT(m_head == other.m_head);
|
||||
obj_map<expr, unsigned>::iterator it = other.m_prop2level.begin();
|
||||
obj_map<expr, unsigned>::iterator end = other.m_prop2level.end();
|
||||
|
||||
obj_map<expr, unsigned>::iterator end = other.m_prop2level.end();
|
||||
for (; it != end; ++it) {
|
||||
add_property(it->m_key, it->m_value);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue