@@ -24,7 +24,7 @@ bv_refinementt::bv_refinementt(const infot &info)
24
24
decision_proceduret::resultt bv_refinementt::dec_solve (const exprt &assumption)
25
25
{
26
26
// do the usual post-processing
27
- log .status () << " BV-Refinement: post-processing" << messaget::eom;
27
+ log .progress () << " BV-Refinement: post-processing" << messaget::eom;
28
28
finish_eager_conversion ();
29
29
30
30
log .debug () << " Solving with " << prop.solver_text () << messaget::eom;
@@ -36,7 +36,7 @@ decision_proceduret::resultt bv_refinementt::dec_solve(const exprt &assumption)
36
36
{
37
37
iteration++;
38
38
39
- log .status () << " BV-Refinement: iteration " << iteration << messaget::eom;
39
+ log .progress () << " BV-Refinement: iteration " << iteration << messaget::eom;
40
40
41
41
// output the very same information in a structured fashion
42
42
if (config_.output_xml )
@@ -54,12 +54,12 @@ decision_proceduret::resultt bv_refinementt::dec_solve(const exprt &assumption)
54
54
{
55
55
log .status () << " BV-Refinement: got SAT, and it simulates => SAT"
56
56
<< messaget::eom;
57
- log .status () << " Total iterations: " << iteration << messaget::eom;
57
+ log .statistics () << " Total iterations: " << iteration << messaget::eom;
58
58
return resultt::D_SATISFIABLE;
59
59
}
60
60
else
61
- log .status () << " BV-Refinement: got SAT, and it is spurious, refining"
62
- << messaget::eom;
61
+ log .progress () << " BV-Refinement: got SAT, and it is spurious, refining"
62
+ << messaget::eom;
63
63
break ;
64
64
65
65
case resultt::D_UNSATISFIABLE:
@@ -69,11 +69,11 @@ decision_proceduret::resultt bv_refinementt::dec_solve(const exprt &assumption)
69
69
log .status ()
70
70
<< " BV-Refinement: got UNSAT, and the proof passes => UNSAT"
71
71
<< messaget::eom;
72
- log .status () << " Total iterations: " << iteration << messaget::eom;
72
+ log .statistics () << " Total iterations: " << iteration << messaget::eom;
73
73
return resultt::D_UNSATISFIABLE;
74
74
}
75
75
else
76
- log .status ()
76
+ log .progress ()
77
77
<< " BV-Refinement: got UNSAT, and the proof fails, refining"
78
78
<< messaget::eom;
79
79
break ;
0 commit comments