File tree Expand file tree Collapse file tree 2 files changed +15
-15
lines changed Expand file tree Collapse file tree 2 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -314,8 +314,9 @@ safety_checkert::resultt bmct::execute(
314
314
}
315
315
316
316
// any properties to check at all?
317
- if (!options.get_bool_option (" program-only" ) &&
318
- symex.get_remaining_vccs () == 0 )
317
+ if (
318
+ !options.get_bool_option (" program-only" ) &&
319
+ symex.get_remaining_vccs () == 0 )
319
320
{
320
321
report_success ();
321
322
output_graphml (resultt::SAFE);
@@ -392,8 +393,7 @@ void bmct::slice()
392
393
}
393
394
}
394
395
}
395
- statistics () << " Generated "
396
- << symex.get_total_vccs () << " VCC(s), "
396
+ statistics () << " Generated " << symex.get_total_vccs () << " VCC(s), "
397
397
<< symex.get_remaining_vccs ()
398
398
<< " remaining after simplification" << eom;
399
399
}
Original file line number Diff line number Diff line change @@ -213,17 +213,17 @@ class goto_symex_statet final
213
213
std::unordered_map<irep_idt, local_safe_pointerst> safe_pointers;
214
214
unsigned total_vccs, remaining_vccs;
215
215
216
- explicit goto_statet (const goto_symex_statet &s):
217
- depth(s.depth),
218
- level2_current_names(s.level2.current_names),
219
- value_set(s.value_set),
220
- guard(s.guard),
221
- source(s.source),
222
- propagation(s.propagation),
223
- atomic_section_id(s.atomic_section_id),
224
- safe_pointers(s.safe_pointers),
225
- total_vccs(s.total_vccs),
226
- remaining_vccs(s.remaining_vccs)
216
+ explicit goto_statet (const goto_symex_statet &s)
217
+ : depth(s.depth),
218
+ level2_current_names(s.level2.current_names),
219
+ value_set(s.value_set),
220
+ guard(s.guard),
221
+ source(s.source),
222
+ propagation(s.propagation),
223
+ atomic_section_id(s.atomic_section_id),
224
+ safe_pointers(s.safe_pointers),
225
+ total_vccs(s.total_vccs),
226
+ remaining_vccs(s.remaining_vccs)
227
227
{
228
228
}
229
229
You can’t perform that action at this time.
0 commit comments