Skip to content

Commit c013212

Browse files
committed
Whitespace fixes
1 parent 30424f7 commit c013212

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

src/cbmc/bmc.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,9 @@ safety_checkert::resultt bmct::execute(
314314
}
315315

316316
// 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)
319320
{
320321
report_success();
321322
output_graphml(resultt::SAFE);
@@ -392,8 +393,7 @@ void bmct::slice()
392393
}
393394
}
394395
}
395-
statistics() << "Generated "
396-
<< symex.get_total_vccs() << " VCC(s), "
396+
statistics() << "Generated " << symex.get_total_vccs() << " VCC(s), "
397397
<< symex.get_remaining_vccs()
398398
<< " remaining after simplification" << eom;
399399
}

src/goto-symex/goto_symex_state.h

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -213,17 +213,17 @@ class goto_symex_statet final
213213
std::unordered_map<irep_idt, local_safe_pointerst> safe_pointers;
214214
unsigned total_vccs, remaining_vccs;
215215

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)
227227
{
228228
}
229229

0 commit comments

Comments
 (0)