File tree 3 files changed +12
-13
lines changed
3 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -161,10 +161,10 @@ void bmc_all_propertiest::report(const cover_goalst &cover_goals)
161
161
{
162
162
case ui_message_handlert::uit::PLAIN:
163
163
{
164
- status () << " \n ** Results:" << eom;
164
+ result () << " \n ** Results:" << eom;
165
165
166
166
for (const auto &goal_pair : goal_map)
167
- status () << " [" << goal_pair.first << " ] "
167
+ result () << " [" << goal_pair.first << " ] "
168
168
<< goal_pair.second .description << " : "
169
169
<< goal_pair.second .status_string ()
170
170
<< eom;
Original file line number Diff line number Diff line change @@ -55,9 +55,9 @@ void bmct::error_trace()
55
55
switch (ui)
56
56
{
57
57
case ui_message_handlert::uit::PLAIN:
58
- status () << " Counterexample:" << eom;
59
- show_goto_trace (status (), ns, goto_trace);
60
- status () << eom;
58
+ result () << " Counterexample:" << eom;
59
+ show_goto_trace (result (), ns, goto_trace);
60
+ result () << eom;
61
61
break ;
62
62
63
63
case ui_message_handlert::uit::XML_UI:
Original file line number Diff line number Diff line change @@ -272,26 +272,25 @@ bool bmc_covert::operator()()
272
272
{
273
273
case ui_message_handlert::uit::PLAIN:
274
274
{
275
- status () << " \n ** coverage results:" << eom;
275
+ result () << " \n ** coverage results:" << eom;
276
276
277
277
for (const auto &g : goal_map)
278
278
{
279
279
const goalt &goal=g.second ;
280
280
281
- status () << " [" << g.first << " ]" ;
281
+ result () << " [" << g.first << " ]" ;
282
282
283
283
if (goal.source_location .is_not_nil ())
284
- status () << ' ' << goal.source_location ;
284
+ result () << ' ' << goal.source_location ;
285
285
286
286
if (!goal.description .empty ())
287
- status () << ' ' << goal.description ;
287
+ result () << ' ' << goal.description ;
288
288
289
- status () << " : " << (goal.satisfied ?" SATISFIED" :" FAILED" )
290
- << eom ;
289
+ result () << " : " << (goal.satisfied ?" SATISFIED" :" FAILED" )
290
+ << ' \n ' ;
291
291
}
292
292
293
- status () << ' \n ' ;
294
-
293
+ result () << eom;
295
294
break ;
296
295
}
297
296
You can’t perform that action at this time.
0 commit comments