mirror of
https://github.com/Z3Prover/z3
synced 2025-07-25 21:57:00 +00:00
disable variable scope check if not tracing in theory_str
This commit is contained in:
parent
b3fddf4707
commit
015016c92b
1 changed files with 5 additions and 0 deletions
|
@ -6472,6 +6472,11 @@ void theory_str::check_variable_scope() {
|
||||||
if (!opt_CheckVariableScope) {
|
if (!opt_CheckVariableScope) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!is_trace_enabled("t_str_detail")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
TRACE("t_str_detail", tout << "checking scopes of variables in the current assignment" << std::endl;);
|
TRACE("t_str_detail", tout << "checking scopes of variables in the current assignment" << std::endl;);
|
||||||
|
|
||||||
context & ctx = get_context();
|
context & ctx = get_context();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue