3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

disable variable scope check if not tracing in theory_str

This commit is contained in:
Murphy Berzish 2016-09-12 16:57:05 -04:00
parent b3fddf4707
commit 015016c92b

View file

@ -6472,6 +6472,11 @@ void theory_str::check_variable_scope() {
if (!opt_CheckVariableScope) {
return;
}
if (!is_trace_enabled("t_str_detail")) {
return;
}
TRACE("t_str_detail", tout << "checking scopes of variables in the current assignment" << std::endl;);
context & ctx = get_context();