From e6df7b73aa09847d82f05798690eb85b37125225 Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Thu, 25 Jul 2019 09:40:18 -0700 Subject: [PATCH] fix #2434 Signed-off-by: Nikolaj Bjorner --- src/smt/theory_seq.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/smt/theory_seq.cpp b/src/smt/theory_seq.cpp index e27b5f8ce..cdf2dad3c 100644 --- a/src/smt/theory_seq.cpp +++ b/src/smt/theory_seq.cpp @@ -5552,6 +5552,9 @@ void theory_seq::assign_eh(bool_var v, bool is_true) { else if (m_util.str.is_lt(e) || m_util.str.is_le(e)) { m_lts.push_back(e); } + else if (is_nth(e)) { + // no-op + } else { TRACE("seq", tout << mk_pp(e, m) << "\n";); UNREACHABLE();