@@ -600,11 +600,11 @@ optionalt<cext> cegis_verifiert::verify()
600
600
// Annotate assigns
601
601
annotate_assigns (assigns_map, goto_model);
602
602
603
- // Control verbosity.
604
- // We allow non-error output message only when verbosity is set to at least 9 .
603
+ // Control verbosity. We allow non-error output message only when verbosity
604
+ // is set to larger than messaget::M_DEBUG .
605
605
const unsigned original_verbosity = log.get_message_handler ().get_verbosity ();
606
- if (original_verbosity < 9 )
607
- log.get_message_handler ().set_verbosity (1 );
606
+ if (original_verbosity < messaget::M_DEBUG )
607
+ log.get_message_handler ().set_verbosity (messaget::M_ERROR );
608
608
609
609
// Apply loop contracts we annotated.
610
610
code_contractst cont (goto_model, log);
@@ -630,7 +630,7 @@ optionalt<cext> cegis_verifiert::verify()
630
630
// Run the checker to get the result.
631
631
const resultt result = (*checker)();
632
632
633
- if (original_verbosity >= 9 )
633
+ if (original_verbosity >= messaget::M_DEBUG )
634
634
checker->report ();
635
635
636
636
// Restore the verbosity.
@@ -698,6 +698,8 @@ optionalt<cext> cegis_verifiert::verify()
698
698
// although there can be multiple ones.
699
699
700
700
log.debug () << " Start to compute cause loop ids." << messaget::eom;
701
+ log.debug () << " Violation description: " << target_violation_info.description
702
+ << messaget::eom;
701
703
702
704
const auto &trace = checker->get_traces ()[target_violation];
703
705
// Doing assigns-synthesis or invariant-synthesis
0 commit comments