File tree Expand file tree Collapse file tree 3 files changed +1
-9
lines changed Expand file tree Collapse file tree 3 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -1087,7 +1087,7 @@ void jbmc_parse_optionst::help()
1087
1087
" --refine use refinement procedure (experimental)\n "
1088
1088
" --no-refine-strings turn off string refinement\n "
1089
1089
" --string-printable restrict to printable strings (experimental)\n " // NOLINT(*)
1090
- " --max-nondet-string-length bound the length of nondet (e.g. input) strings\n " // NOLINT(*)
1090
+ " --max-nondet-string-length n bound the length of nondet (e.g. input) strings\n " // NOLINT(*)
1091
1091
" --outfile filename output formula to given file\n "
1092
1092
" --arrays-uf-never never turn arrays into uninterpreted functions\n " // NOLINT(*)
1093
1093
" --arrays-uf-always always turn arrays into uninterpreted functions\n " // NOLINT(*)
Original file line number Diff line number Diff line change @@ -300,9 +300,6 @@ void cbmc_parse_optionst::get_command_line_options(optionst &options)
300
300
{
301
301
options.set_option (" refine-strings" , true );
302
302
options.set_option (" string-printable" , cmdline.isset (" string-printable" ));
303
- if (cmdline.isset (" string-max-length" ))
304
- options.set_option (
305
- " string-max-length" , cmdline.get_value (" string-max-length" ));
306
303
}
307
304
308
305
if (cmdline.isset (" max-node-refinement" ))
@@ -964,9 +961,6 @@ void cbmc_parse_optionst::help()
964
961
" --refine use refinement procedure (experimental)\n "
965
962
" --refine-strings use string refinement (experimental)\n "
966
963
" --string-printable add constraint that strings are printable (experimental)\n " // NOLINT(*)
967
- " --string-max-input-length add constraint on the length of input strings\n " // NOLINT(*)
968
- " --string-max-length add constraint on the length of strings\n "
969
- " (deprecated: use string-max-input-length instead)\n " // NOLINT(*)
970
964
" --outfile filename output formula to given file\n "
971
965
" --arrays-uf-never never turn arrays into uninterpreted functions\n " // NOLINT(*)
972
966
" --arrays-uf-always always turn arrays into uninterpreted functions\n " // NOLINT(*)
Original file line number Diff line number Diff line change @@ -50,8 +50,6 @@ class optionst;
50
50
" (dimacs)(refine)(max-node-refinement):(refine-arrays)(refine-arithmetic)" \
51
51
" (refine-strings)" \
52
52
" (string-printable)" \
53
- " (string-max-length):" \
54
- " (string-max-input-length):" \
55
53
" (16)(32)(64)(LP64)(ILP64)(LLP64)(ILP32)(LP32)" \
56
54
" (little-endian)(big-endian)" \
57
55
OPT_SHOW_GOTO_FUNCTIONS \
You can’t perform that action at this time.
0 commit comments