File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 40
40
#include < goto-checker/multi_path_symex_checker.h>
41
41
#include < goto-checker/multi_path_symex_only_checker.h>
42
42
#include < goto-checker/properties.h>
43
+ #include < goto-checker/single_path_symex_only_checker.h>
43
44
#include < goto-checker/stop_on_fail_verifier.h>
44
45
45
46
#include < goto-programs/adjust_float_expressions.h>
@@ -559,13 +560,20 @@ int cbmc_parse_optionst::doit()
559
560
options.get_bool_option (" program-only" ) ||
560
561
options.get_bool_option (" show-vcc" ))
561
562
{
562
- if (!options.get_bool_option (" paths" ))
563
+ if (options.get_bool_option (" paths" ))
564
+ {
565
+ all_properties_verifiert<single_path_symex_only_checkert> verifier (
566
+ options, ui_message_handler, goto_model);
567
+ (void )verifier ();
568
+ }
569
+ else
563
570
{
564
571
all_properties_verifiert<multi_path_symex_only_checkert> verifier (
565
572
options, ui_message_handler, goto_model);
566
573
(void )verifier ();
567
- return CPROVER_EXIT_SUCCESS;
568
574
}
575
+
576
+ return CPROVER_EXIT_SUCCESS;
569
577
}
570
578
571
579
if (
You can’t perform that action at this time.
0 commit comments