Skip to content

Commit 9810f92

Browse files
Drop string_non_empty field for string refinement
1 parent 0d7310a commit 9810f92

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/cbmc/cbmc_solvers.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,6 @@ std::unique_ptr<cbmc_solverst::solvert> cbmc_solverst::get_string_refinement()
178178
info.ui=ui;
179179
if(options.get_bool_option("string-max-length"))
180180
info.string_max_length=options.get_signed_int_option("string-max-length");
181-
info.string_non_empty=options.get_bool_option("string-non-empty");
182181
info.trace=options.get_bool_option("trace");
183182
if(options.get_bool_option("max-node-refinement"))
184183
info.max_node_refinement=

src/solvers/refinement/string_refinement.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ class string_refinementt final: public bv_refinementt
4949
struct configt
5050
{
5151
std::size_t refinement_bound=0;
52-
/// Make non-deterministic character arrays have at least one character
53-
bool string_non_empty=false;
5452
/// Concretize strings after solver is finished
5553
bool trace=false;
5654
bool use_counter_example=true;

0 commit comments

Comments
 (0)