mirror of
https://github.com/Z3Prover/z3
synced 2025-06-05 21:53:23 +00:00
disable restart code in seq
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
035f2bb0da
commit
0e701138e1
2 changed files with 3 additions and 3 deletions
|
@ -670,7 +670,7 @@ namespace Duality {
|
||||||
else {
|
else {
|
||||||
if (k == Equal && args[0].get_id() > args[1].get_id())
|
if (k == Equal && args[0].get_id() > args[1].get_id())
|
||||||
std::swap(args[0], args[1]);
|
std::swap(args[0], args[1]);
|
||||||
res = f(args.size(), &args[0]);
|
res = f(args.size(), VEC2PTR(args));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (t.is_quantifier()) {
|
else if (t.is_quantifier()) {
|
||||||
|
|
|
@ -660,7 +660,7 @@ void theory_seq::pop_scope_eh(unsigned num_scopes) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void theory_seq::restart_eh() {
|
void theory_seq::restart_eh() {
|
||||||
SASSERT(m_lhs.size() == 1);
|
#if 0
|
||||||
m.del(m_lhs.back());
|
m.del(m_lhs.back());
|
||||||
m.del(m_rhs.back());
|
m.del(m_rhs.back());
|
||||||
m_dam.del(m_deps.back());
|
m_dam.del(m_deps.back());
|
||||||
|
@ -670,7 +670,7 @@ void theory_seq::restart_eh() {
|
||||||
m_lhs.push_back(expr_array());
|
m_lhs.push_back(expr_array());
|
||||||
m_rhs.push_back(expr_array());
|
m_rhs.push_back(expr_array());
|
||||||
m_deps.push_back(enode_pair_dependency_array());
|
m_deps.push_back(enode_pair_dependency_array());
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void theory_seq::relevant_eh(app* n) {
|
void theory_seq::relevant_eh(app* n) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue