We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b17fefa + a746a2c commit 7f373c8Copy full SHA for 7f373c8
src/cbmc/cbmc_solvers.cpp
@@ -145,7 +145,8 @@ std::unique_ptr<cbmc_solverst::solvert> cbmc_solverst::get_string_refinement()
145
info.refinement_bound=DEFAULT_MAX_NB_REFINEMENT;
146
info.ui=ui;
147
if(options.get_bool_option("string-max-length"))
148
- info.max_string_length = options.get_signed_int_option("string-max-length");
+ info.max_string_length =
149
+ options.get_unsigned_int_option("string-max-length");
150
info.trace=options.get_bool_option("trace");
151
if(options.get_bool_option("max-node-refinement"))
152
info.max_node_refinement=
0 commit comments