@@ -168,25 +168,33 @@ operator()(propertiest &properties)
168
168
169
169
goto_tracet single_loop_incremental_symex_checkert::build_full_trace () const
170
170
{
171
- goto_tracet goto_trace;
172
- build_goto_trace (
173
- equation,
174
- equation.SSA_steps .end (),
175
- property_decider.get_decision_procedure (),
176
- ns,
177
- goto_trace);
178
-
179
- return goto_trace;
171
+ UNREACHABLE;
172
+ // When needed un-comment the implementation below, right now `cover` and
173
+ // `paths` are incompatible.
174
+ //
175
+ // goto_tracet goto_trace;
176
+ // build_goto_trace(
177
+ // equation,
178
+ // equation.SSA_steps.end(),
179
+ // property_decider.get_decision_procedure(),
180
+ // ns,
181
+ // goto_trace);
182
+
183
+ // return goto_trace;
180
184
}
181
185
182
186
goto_tracet single_loop_incremental_symex_checkert::build_shortest_trace () const
183
187
{
184
188
if (options.get_bool_option (" beautify" ))
185
189
{
186
- // NOLINTNEXTLINE(whitespace/braces)
187
- counterexample_beautificationt{ui_message_handler}(
188
- dynamic_cast <boolbvt &>(property_decider.get_stack_decision_procedure ()),
189
- equation);
190
+ UNREACHABLE;
191
+ // For now, beautification and incremental are incompatible.
192
+ //
193
+ // auto &decision_procedure = dynamic_cast<boolbvt &>(
194
+ // property_decider.get_stack_decision_procedure());
195
+ // auto counterexample_beautification =
196
+ // counterexample_beautificationt{ui_message_handler};
197
+ // counterexample_beautification(decision_procedure, equation);
190
198
}
191
199
192
200
goto_tracet goto_trace;
0 commit comments