3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-20 07:36:38 +00:00

add Unroll check to get_eqc_allUnroll

This commit is contained in:
Murphy Berzish 2016-06-30 01:24:43 -04:00
parent 03827cb487
commit 21f0a50aba

View file

@ -6406,7 +6406,7 @@ void theory_str::get_eqc_allUnroll(expr * n, expr * &constStr, std::set<expr*> &
do {
if (is_string(to_app(curr))) {
constStr = curr;
} else if (false) /*(td->Unroll == Z3_get_app_decl(ctx, Z3_to_app(ctx, curr)))*/ { // TODO
} else if (is_Unroll(to_app(curr))) {
if (unrollFuncSet.find(curr) == unrollFuncSet.end()) {
unrollFuncSet.insert(curr);
}