3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 02:15:19 +00:00

disable restart code in seq

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-12-09 09:53:18 -08:00
parent 035f2bb0da
commit 0e701138e1
2 changed files with 3 additions and 3 deletions

View file

@ -670,7 +670,7 @@ namespace Duality {
else {
if (k == Equal && args[0].get_id() > args[1].get_id())
std::swap(args[0], args[1]);
res = f(args.size(), &args[0]);
res = f(args.size(), VEC2PTR(args));
}
}
else if (t.is_quantifier()) {

View file

@ -660,7 +660,7 @@ void theory_seq::pop_scope_eh(unsigned num_scopes) {
}
void theory_seq::restart_eh() {
SASSERT(m_lhs.size() == 1);
#if 0
m.del(m_lhs.back());
m.del(m_rhs.back());
m_dam.del(m_deps.back());
@ -670,7 +670,7 @@ void theory_seq::restart_eh() {
m_lhs.push_back(expr_array());
m_rhs.push_back(expr_array());
m_deps.push_back(enode_pair_dependency_array());
#endif
}
void theory_seq::relevant_eh(app* n) {