File tree Expand file tree Collapse file tree 4 files changed +0
-13
lines changed Expand file tree Collapse file tree 4 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -149,8 +149,6 @@ Show the verification conditions
149
149
Remove assignments unrelated to property
150
150
.IP --no-unwinding-assertions
151
151
Do not generate unwinding assertions
152
- .IP --no-pretty-names
153
- Do not simplify identifiers
154
152
.SS "BACKEND OPTIONS (cbmc)"
155
153
.IP --dimacs
156
154
Generate CNF in DIMACS format for use by external SAT solvers
Original file line number Diff line number Diff line change @@ -95,7 +95,6 @@ void jbmc_parse_optionst::set_default_options(optionst &options)
95
95
options.set_option (" assumptions" , true );
96
96
options.set_option (" built-in-assertions" , true );
97
97
options.set_option (" lazy-methods" , true );
98
- options.set_option (" pretty-names" , true );
99
98
options.set_option (" propagation" , true );
100
99
options.set_option (" refine-strings" , true );
101
100
options.set_option (" simple-slice" , true );
@@ -278,10 +277,6 @@ void jbmc_parse_optionst::get_command_line_options(optionst &options)
278
277
" --max-nondet-string-length" );
279
278
}
280
279
281
- options.set_option (
282
- " pretty-names" ,
283
- !cmdline.isset (" no-pretty-names" ));
284
-
285
280
if (cmdline.isset (" graphml-witness" ))
286
281
{
287
282
options.set_option (" graphml-witness" , cmdline.get_value (" graphml-witness" ));
Original file line number Diff line number Diff line change @@ -104,7 +104,6 @@ void cbmc_parse_optionst::set_default_options(optionst &options)
104
104
{
105
105
// Default true
106
106
options.set_option (" built-in-assertions" , true );
107
- options.set_option (" pretty-names" , true );
108
107
options.set_option (" propagation" , true );
109
108
options.set_option (" simple-slice" , true );
110
109
options.set_option (" simplify" , true );
@@ -330,9 +329,6 @@ void cbmc_parse_optionst::get_command_line_options(optionst &options)
330
329
}
331
330
}
332
331
333
- if (cmdline.isset (" no-pretty-names" ))
334
- options.set_option (" pretty-names" , false );
335
-
336
332
if (cmdline.isset (" graphml-witness" ))
337
333
{
338
334
options.set_option (" graphml-witness" , cmdline.get_value (" graphml-witness" ));
Original file line number Diff line number Diff line change @@ -180,7 +180,6 @@ void run_property_decider(
180
180
" (slice-formula)" \
181
181
" (unwinding-assertions)" \
182
182
" (no-unwinding-assertions)" \
183
- " (no-pretty-names)" \
184
183
" (no-self-loops-to-assumptions)" \
185
184
" (partial-loops)" \
186
185
" (paths):" \
@@ -238,7 +237,6 @@ void run_property_decider(
238
237
" --partial-loops permit paths with partial loops\n " \
239
238
" --no-self-loops-to-assumptions\n " \
240
239
" do not simplify while(1){} to assume(0)\n " \
241
- " --no-pretty-names do not simplify identifiers\n " \
242
240
" --symex-complexity-limit N how complex (N) a path can become before\n " \
243
241
" symex abandons it. Currently uses guard\n " \
244
242
" size to calculate complexity. \n " \
You can’t perform that action at this time.
0 commit comments