@@ -1070,10 +1070,10 @@ void cbmc_parse_optionst::help()
1070
1070
" cbmc file.c ... source file names\n "
1071
1071
" \n "
1072
1072
" Analysis options:\n "
1073
- " --show-properties show the properties, but don't run analysis\n "
1073
+ " --show-properties show the properties, but don't run analysis\n " // NOLINT(*)
1074
1074
" --property id only check one specific property\n "
1075
- " --stop-on-fail stop analysis once a failed property is detected\n "
1076
- " --trace give a counterexample trace for failed properties\n "
1075
+ " --stop-on-fail stop analysis once a failed property is detected\n " // NOLINT(*)
1076
+ " --trace give a counterexample trace for failed properties\n " // NOLINT(*)
1077
1077
" \n "
1078
1078
" C/C++ frontend options:\n "
1079
1079
" -I path set include path (C/C++)\n "
@@ -1096,14 +1096,14 @@ void cbmc_parse_optionst::help()
1096
1096
configt::ansi_ct::default_c_standard ()==
1097
1097
configt::ansi_ct::c_standardt::C99?" c99" :
1098
1098
configt::ansi_ct::default_c_standard ()==
1099
- configt::ansi_ct::c_standardt::C11?" c11" :" " ) << " )\n "
1099
+ configt::ansi_ct::c_standardt::C11?" c11" :" " ) << " )\n " // NOLINT(*)
1100
1100
" --cpp98/03/11 set C++ language standard (default: "
1101
1101
<< (configt::cppt::default_cpp_standard ()==
1102
- configt::cppt::cpp_standardt::CPP98?" cpp98" :
1102
+ configt::cppt::cpp_standardt::CPP98?" cpp98" : // NOLINT(*)
1103
1103
configt::cppt::default_cpp_standard ()==
1104
- configt::cppt::cpp_standardt::CPP03?" cpp03" :
1104
+ configt::cppt::cpp_standardt::CPP03?" cpp03" : // NOLINT(*)
1105
1105
configt::cppt::default_cpp_standard ()==
1106
- configt::cppt::cpp_standardt::CPP11?" cpp11" :" " ) << " )\n "
1106
+ configt::cppt::cpp_standardt::CPP11?" cpp11" :" " ) << " )\n " // NOLINT(*)
1107
1107
#ifdef _WIN32
1108
1108
" --gcc use GCC as preprocessor\n "
1109
1109
#endif
@@ -1125,15 +1125,15 @@ void cbmc_parse_optionst::help()
1125
1125
" --no-assertions ignore user assertions\n "
1126
1126
" --no-assumptions ignore user assumptions\n "
1127
1127
" --error-label label check that label is unreachable\n "
1128
- " --cover CC create test-suite with coverage criterion CC\n "
1129
- " --mm MM memory consistency model for concurrent programs\n "
1128
+ " --cover CC create test-suite with coverage criterion CC\n " // NOLINT(*)
1129
+ " --mm MM memory consistency model for concurrent programs\n " // NOLINT(*)
1130
1130
" \n "
1131
1131
" Java Bytecode frontend options:\n "
1132
1132
" --classpath dir/jar set the classpath\n "
1133
1133
" --main-class class-name set the name of the main class\n "
1134
1134
" \n "
1135
1135
" Semantic transformations:\n "
1136
- " --nondet-static add nondeterministic initialization of variables with static lifetime\n "
1136
+ " --nondet-static add nondeterministic initialization of variables with static lifetime\n " // NOLINT(*)
1137
1137
" \n "
1138
1138
" BMC options:\n "
1139
1139
" --program-only only show program expression\n "
@@ -1147,11 +1147,11 @@ void cbmc_parse_optionst::help()
1147
1147
" --unwinding-assertions generate unwinding assertions\n "
1148
1148
" --partial-loops permit paths with partial loops\n "
1149
1149
" --no-pretty-names do not simplify identifiers\n "
1150
- " --graphml-witness filename write the witness in GraphML format to filename\n "
1150
+ " --graphml-witness filename write the witness in GraphML format to filename\n " // NOLINT(*)
1151
1151
" \n "
1152
1152
" Backend options:\n "
1153
1153
" --dimacs generate CNF in DIMACS format\n "
1154
- " --beautify beautify the counterexample (greedy heuristic)\n "
1154
+ " --beautify beautify the counterexample (greedy heuristic)\n " // NOLINT(*)
1155
1155
" --localize-faults localize faults (experimental)\n "
1156
1156
" --smt1 use default SMT1 solver (obsolete)\n "
1157
1157
" --smt2 use default SMT2 solver (Z3)\n "
@@ -1162,8 +1162,8 @@ void cbmc_parse_optionst::help()
1162
1162
" --z3 use Z3\n "
1163
1163
" --refine use refinement procedure (experimental)\n "
1164
1164
" --outfile filename output formula to given file\n "
1165
- " --arrays-uf-never never turn arrays into uninterpreted functions\n "
1166
- " --arrays-uf-always always turn arrays into uninterpreted functions\n "
1165
+ " --arrays-uf-never never turn arrays into uninterpreted functions\n " // NOLINT(*)
1166
+ " --arrays-uf-always always turn arrays into uninterpreted functions\n " // NOLINT(*)
1167
1167
" \n "
1168
1168
" Other options:\n "
1169
1169
" --version show version and exit\n "
0 commit comments