fix(library/blast/trace): avoid unnecessary trace information

This commit is contained in:
Leonardo de Moura 2015-12-05 16:52:41 -08:00
parent 96b37241bd
commit d7150f210c

View file

@ -39,7 +39,7 @@ void trace_action(char const * a) {
}
void trace_curr_state_if(action_result r) {
if (g_trace && !failed(r))
if (g_trace && !failed(r) && !solved(r))
trace_curr_state();
}