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(
3737 if (add_initial_state && first)
3838 {
3939 // do initial state
40- message.status () << " Initial State" << messaget::eom;
41-
40+ message.progress () << " Initial State" << messaget::eom;
41+
4242 for (const auto & n : netlist.initial )
4343 solver.l_set_to (bmc_map.translate (0 , n), true );
4444 }
4545
4646 // do transitions
4747 if (last)
48- message.status () << " Transition " << t << messaget::eom;
48+ message.progress () << " Transition " << t << messaget::eom;
4949 else
50- message.status () << " Transition " << t << " ->" << t+ 1 << messaget::eom;
51-
50+ message.progress () << " Transition " << t << " ->" << t + 1 << messaget::eom;
51+
5252 const bmc_mapt::timeframet &timeframe=bmc_map.timeframe_map [t];
5353
5454 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(
4040
4141 // in-state constraints
4242
43- message.status () << " In-state constraints" << messaget::eom;
43+ message.progress () << " In-state constraints" << messaget::eom;
4444
4545 if (!op_invar.is_true ())
4646 for (std::size_t c = 0 ; c < no_timeframes; c++)
@@ -51,7 +51,7 @@ void unwind(
5151
5252 if (initial_state)
5353 {
54- message.status () << " Initial state" << messaget::eom;
54+ message.progress () << " Initial state" << messaget::eom;
5555
5656 if (!op_init.is_true ())
5757 decision_procedure.set_to_true (
@@ -60,7 +60,7 @@ void unwind(
6060
6161 // transition relation
6262
63- message.status () << " Transition relation" << messaget::eom;
63+ message.progress () << " Transition relation" << messaget::eom;
6464
6565 if (!op_trans.is_true ())
6666 for (std::size_t t = 0 ; t < no_timeframes; t++)
@@ -69,10 +69,11 @@ void unwind(
6969 bool last=(t==no_timeframes-1 );
7070
7171 if (last)
72- message.status () << " Transition " << t << messaget::eom;
72+ message.progress () << " Transition " << t << messaget::eom;
7373 else
74- message.status () << " Transition " << t << " ->" << t+1 << messaget::eom;
75-
74+ message.progress () << " Transition " << t << " ->" << t + 1
75+ << messaget::eom;
76+
7677 decision_procedure.set_to_true (
7778 instantiate (op_trans, t, no_timeframes, ns));
7879 }
You can’t perform that action at this time.
0 commit comments