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
9 changes: 1 addition & 8 deletions src/solvers/smt2/smt2_conv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,7 @@ smt2_convt::smt2_convt(
const std::string &_logic,
solvert _solver,
std::ostream &_out)
: use_FPA_theory(false),
use_array_of_bool(false),
use_as_const(false),
use_check_sat_assuming(false),
use_datatypes(false),
use_lambda_for_array(false),
emit_set_logic(true),
ns(_ns),
: ns(_ns),
out(_out),
benchmark(_benchmark),
notes(_notes),
Expand Down
14 changes: 7 additions & 7 deletions src/solvers/smt2/smt2_conv.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ class smt2_convt : public stack_decision_proceduret

~smt2_convt() override = default;

bool use_FPA_theory;
bool use_array_of_bool;
bool use_as_const;
bool use_check_sat_assuming;
bool use_datatypes;
bool use_lambda_for_array;
bool emit_set_logic;
bool use_FPA_theory = false;
bool use_array_of_bool = false;
bool use_as_const = false;
bool use_check_sat_assuming = false;
bool use_datatypes = false;
bool use_lambda_for_array = false;
bool emit_set_logic = true;

exprt handle(const exprt &expr) override;
void set_to(const exprt &expr, bool value) override;
Expand Down
Loading