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:
parent
035f2bb0da
commit
0e701138e1
|
@ -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()) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue