Skip to content

Commit ff213f7

Browse files
authored
Merge pull request #2886 from romainbrenguier/clean-up/string-refinement-option
Remove unused string-refinement options
2 parents 5383548 + beda87e commit ff213f7

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

src/cbmc/cbmc_solvers.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,6 @@ std::unique_ptr<cbmc_solverst::solvert> cbmc_solverst::get_string_refinement()
143143
info.prop=prop.get();
144144
info.refinement_bound=DEFAULT_MAX_NB_REFINEMENT;
145145
info.ui=ui;
146-
if(options.get_bool_option("string-max-length"))
147-
info.max_string_length =
148-
options.get_unsigned_int_option("string-max-length");
149-
info.trace=options.get_bool_option("trace");
150146
if(options.get_bool_option("max-node-refinement"))
151147
info.max_node_refinement=
152148
options.get_unsigned_int_option("max-node-refinement");

src/solvers/refinement/string_refinement.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,7 @@ class string_refinementt final: public bv_refinementt
3737
struct configt
3838
{
3939
std::size_t refinement_bound=0;
40-
/// Concretize strings after solver is finished
41-
bool trace=false;
4240
bool use_counter_example=true;
43-
std::size_t max_string_length;
4441
};
4542
public:
4643
/// string_refinementt constructor arguments

0 commit comments

Comments
 (0)