Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cbmc/bmc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ safety_checkert::resultt bmct::stop_on_fail(prop_convt &prop_conv)
{
if(options.get_bool_option("beautify"))
counterexample_beautificationt()(
dynamic_cast<bv_cbmct &>(prop_conv), equation, ns);
dynamic_cast<bv_cbmct &>(prop_conv), equation);

error_trace();
output_graphml(resultt::UNSAFE);
Expand Down
3 changes: 1 addition & 2 deletions src/cbmc/counterexample_beautification.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,7 @@ counterexample_beautificationt::get_failed_property(

void counterexample_beautificationt::operator()(
bv_cbmct &bv_cbmc,
const symex_target_equationt &equation,
const namespacet &ns)
const symex_target_equationt &equation)
{
// find failed property

Expand Down
3 changes: 1 addition & 2 deletions src/cbmc/counterexample_beautification.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ class counterexample_beautificationt

void operator()(
bv_cbmct &bv_cbmc,
const symex_target_equationt &equation,
const namespacet &ns);
const symex_target_equationt &equation);

protected:
void get_minimization_list(
Expand Down
2 changes: 1 addition & 1 deletion src/cbmc/fault_localization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ safety_checkert::resultt fault_localizationt::stop_on_fail()
{
if(options.get_bool_option("beautify"))
counterexample_beautificationt()(
dynamic_cast<bv_cbmct &>(bmc.prop_conv), bmc.equation, bmc.ns);
dynamic_cast<bv_cbmct &>(bmc.prop_conv), bmc.equation);

bmc.error_trace();
}
Expand Down