Skip to content

Commit 1c70bce

Browse files
mtrberziNikolajBjorner
authored andcommitted
z3str3: setup uninterpreted functions as though they were string variables
1 parent 301209c commit 1c70bce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/smt/theory_str.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8417,7 +8417,7 @@ namespace smt {
84178417
TRACE("str", tout << "found string-integer conversion term: " << mk_pp(ex, get_manager()) << std::endl;);
84188418
string_int_conversion_terms.push_back(ap);
84198419
m_library_aware_axiom_todo.push_back(n);
8420-
} else if (ap->get_num_args() == 0 && !u.str.is_string(ap)) {
8420+
} else if (/*ap->get_num_args() == 0 &&*/ !u.str.is_string(ap)) {
84218421
// if ex is a variable, add it to our list of variables
84228422
TRACE("str", tout << "tracking variable " << mk_ismt2_pp(ap, get_manager()) << std::endl;);
84238423
variable_set.insert(ex);

0 commit comments

Comments
 (0)