Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/cprover/bv_pointers_wide.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ bv_pointers_widet::bv_pointers_widet(
const namespacet &_ns,
propt &_prop,
message_handlert &message_handler,
bool get_array_constraints)
: boolbvt(_ns, _prop, message_handler, get_array_constraints),
bool collect_constraint_stats)
: boolbvt(_ns, _prop, message_handler, collect_constraint_stats),
pointer_logic(_ns)
{
}
Expand Down
2 changes: 1 addition & 1 deletion src/cprover/bv_pointers_wide.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class bv_pointers_widet : public boolbvt
const namespacet &,
propt &,
message_handlert &,
bool get_array_constraints = false);
bool collect_constraint_stats = false);

void finish_eager_conversion() override;

Expand Down
4 changes: 2 additions & 2 deletions src/goto-checker/solver_factory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -356,10 +356,10 @@ std::unique_ptr<solver_factoryt::solvert> solver_factoryt::get_default()
{
auto sat_solver = get_sat_solver(message_handler, options);

bool get_array_constraints =
bool collect_constraint_stats =
options.get_bool_option("show-array-constraints");
auto bv_pointers = std::make_unique<bv_pointerst>(
ns, *sat_solver, message_handler, get_array_constraints);
ns, *sat_solver, message_handler, collect_constraint_stats);

if(options.get_option("arrays-uf") == "never")
bv_pointers->unbounded_array = bv_pointerst::unbounded_arrayt::U_NONE;
Expand Down
1 change: 1 addition & 0 deletions src/solvers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ SRC = $(BOOLEFORCE_SRC) \
flattening/bv_utils.cpp \
flattening/c_bit_field_replacement_type.cpp \
flattening/equality.cpp \
flattening/maps.cpp \
flattening/pointer_logic.cpp \
floatbv/float_bv.cpp \
floatbv/float_utils.cpp \
Expand Down
Loading
Loading