From dbd5512d8c4f354b7f263cb600ba978b27228a9c Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Tue, 11 Jan 2022 08:35:57 -0800 Subject: [PATCH] ensure enode without recursion Signed-off-by: Nikolaj Bjorner --- src/smt/theory_seq.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/smt/theory_seq.cpp b/src/smt/theory_seq.cpp index 2fbd2cf28..c86db1aa5 100644 --- a/src/smt/theory_seq.cpp +++ b/src/smt/theory_seq.cpp @@ -1506,7 +1506,6 @@ void theory_seq::add_length(expr* l) { Add length limit restrictions to sequence s. */ void theory_seq::add_length_limit(expr* s, unsigned k, bool is_searching) { - return; if (m_sk.is_indexof_left(s)) return; if (m_sk.is_indexof_right(s)) @@ -3233,7 +3232,6 @@ void theory_seq::add_unhandled_expr(expr* n) { void theory_seq::add_theory_assumptions(expr_ref_vector & assumptions) { - return; if (m_has_seq) { TRACE("seq", tout << "add_theory_assumption\n";); expr_ref dlimit = m_sk.mk_max_unfolding_depth(m_max_unfolding_depth);