File tree Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -37,18 +37,18 @@ void unwind(
37
37
if (add_initial_state && first)
38
38
{
39
39
// do initial state
40
- message.status () << " Initial State" << messaget::eom;
41
-
40
+ message.progress () << " Initial State" << messaget::eom;
41
+
42
42
for (const auto & n : netlist.initial )
43
43
solver.l_set_to (bmc_map.translate (0 , n), true );
44
44
}
45
45
46
46
// do transitions
47
47
if (last)
48
- message.status () << " Transition " << t << messaget::eom;
48
+ message.progress () << " Transition " << t << messaget::eom;
49
49
else
50
- message.status () << " Transition " << t << " ->" << t+ 1 << messaget::eom;
51
-
50
+ message.progress () << " Transition " << t << " ->" << t + 1 << messaget::eom;
51
+
52
52
const bmc_mapt::timeframet &timeframe=bmc_map.timeframe_map [t];
53
53
54
54
for (std::size_t n=0 ; n<timeframe.size (); n++)
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ void unwind(
40
40
41
41
// in-state constraints
42
42
43
- message.status () << " In-state constraints" << messaget::eom;
43
+ message.progress () << " In-state constraints" << messaget::eom;
44
44
45
45
if (!op_invar.is_true ())
46
46
for (std::size_t c = 0 ; c < no_timeframes; c++)
@@ -51,7 +51,7 @@ void unwind(
51
51
52
52
if (initial_state)
53
53
{
54
- message.status () << " Initial state" << messaget::eom;
54
+ message.progress () << " Initial state" << messaget::eom;
55
55
56
56
if (!op_init.is_true ())
57
57
decision_procedure.set_to_true (
@@ -60,7 +60,7 @@ void unwind(
60
60
61
61
// transition relation
62
62
63
- message.status () << " Transition relation" << messaget::eom;
63
+ message.progress () << " Transition relation" << messaget::eom;
64
64
65
65
if (!op_trans.is_true ())
66
66
for (std::size_t t = 0 ; t < no_timeframes; t++)
@@ -69,10 +69,11 @@ void unwind(
69
69
bool last=(t==no_timeframes-1 );
70
70
71
71
if (last)
72
- message.status () << " Transition " << t << messaget::eom;
72
+ message.progress () << " Transition " << t << messaget::eom;
73
73
else
74
- message.status () << " Transition " << t << " ->" << t+1 << messaget::eom;
75
-
74
+ message.progress () << " Transition " << t << " ->" << t + 1
75
+ << messaget::eom;
76
+
76
77
decision_procedure.set_to_true (
77
78
instantiate (op_trans, t, no_timeframes, ns));
78
79
}
You can’t perform that action at this time.
0 commit comments