Skip to content

Commit e3da98c

Browse files
Deactivating invariant
1 parent 2655a9b commit e3da98c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/solvers/refinement/string_refinement_util.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,10 @@ void string_dependenciest::for_each_successor(
358358
else if(const auto node = node_at(to_array_string_expr(current)))
359359
f(nodet(*node));
360360
else
361-
UNREACHABLE;
361+
{
362+
std::cout << "Warning no node for " << format(current) << std::endl;
363+
//UNREACHABLE;
364+
}
362365
}
363366
}
364367
}

0 commit comments

Comments
 (0)