File tree Expand file tree Collapse file tree 4 files changed +2
-10
lines changed Expand file tree Collapse file tree 4 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -75,11 +75,6 @@ void java_bytecode_languaget::get_language_options(const cmdlinet &cmd)
75
75
safe_string2size_t (cmd.get_value (" max-nondet-tree-depth" ));
76
76
}
77
77
78
- if (cmd.isset (" string-max-input-length" )) // will go away
79
- {
80
- object_factory_parameters.max_nondet_string_length =
81
- safe_string2size_t (cmd.get_value (" string-max-input-length" ));
82
- }
83
78
if (cmd.isset (" max-nondet-string-length" ))
84
79
{
85
80
object_factory_parameters.max_nondet_string_length =
Original file line number Diff line number Diff line change @@ -491,9 +491,7 @@ int jbmc_parse_optionst::doit()
491
491
object_factory_params.max_nondet_string_length =
492
492
cmdline.isset (" max-nondet-string-length" )
493
493
? std::stoul (cmdline.get_value (" max-nondet-string-length" ))
494
- : cmdline.isset (" string-max-input-length" ) // obsolete; will go away
495
- ? std::stoul (cmdline.get_value (" string-max-input-length" ))
496
- : MAX_NONDET_STRING_LENGTH;
494
+ : MAX_NONDET_STRING_LENGTH;
497
495
object_factory_params.max_nondet_tree_depth =
498
496
cmdline.isset (" java-max-input-tree-depth" )
499
497
? std::stoul (cmdline.get_value (" java-max-input-tree-depth" ))
Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ class optionst;
54
54
" (dimacs)(refine)(max-node-refinement):(refine-arrays)(refine-arithmetic)" \
55
55
" (no-refine-strings)" \
56
56
" (string-printable)" \
57
- " (string-max-input-length):" /* will go away */ \
58
57
" (max-nondet-string-length):" \
59
58
" (16)(32)(64)(LP64)(ILP64)(LLP64)(ILP32)(LP32)" \
60
59
OPT_SHOW_GOTO_FUNCTIONS \
Original file line number Diff line number Diff line change @@ -924,7 +924,7 @@ static optionalt<exprt> get_array(
924
924
{
925
925
stream << " (sr::get_array) long string (size " << format (arr.length ())
926
926
<< " = " << n << " ) " << format (arr) << eom;
927
- stream << " (sr::get_array) consider reducing string- max-input -length so "
927
+ stream << " (sr::get_array) consider reducing max-nondet-string -length so "
928
928
" that no string exceeds "
929
929
<< MAX_CONCRETE_STRING_SIZE
930
930
<< " in length and "
You can’t perform that action at this time.
0 commit comments