We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0520732 commit 04fcc5bCopy full SHA for 04fcc5b
jbmc/src/jbmc/jbmc_parse_options.cpp
@@ -249,6 +249,19 @@ void jbmc_parse_optionst::get_command_line_options(optionst &options)
249
if(cmdline.isset("string-printable"))
250
options.set_option("string-printable", true);
251
252
+ if(cmdline.isset("no-refine-strings") && cmdline.isset("string-printable"))
253
+ {
254
+ warning() << "--string-printable ignored due to --no-refine-strings" << eom;
255
+ }
256
+
257
+ if(
258
+ cmdline.isset("no-refine-strings") &&
259
+ cmdline.isset("max-nondet-string-length"))
260
261
+ warning() << "--max-nondet-string-length ignored due to "
262
+ << "--no-refine-strings" << eom;
263
264
265
if(cmdline.isset("max-node-refinement"))
266
options.set_option(
267
"max-node-refinement",
0 commit comments