File tree Expand file tree Collapse file tree 5 files changed +0
-13
lines changed Expand file tree Collapse file tree 5 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ OBJ += ../$(CPROVER_DIR)/src/ansi-c/ansi-c$(LIBEXT) \
42
42
../$(CPROVER_DIR ) /src/cbmc/all_properties$(OBJEXT ) \
43
43
../$(CPROVER_DIR ) /src/cbmc/bmc$(OBJEXT ) \
44
44
../$(CPROVER_DIR ) /src/cbmc/bmc_cover$(OBJEXT ) \
45
- ../$(CPROVER_DIR ) /src/cbmc/fault_localization$(OBJEXT ) \
46
45
# Empty last line
47
46
48
47
INCLUDES = -I .. -I ../$(CPROVER_DIR ) /src
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ SRC = all_properties.cpp \
5
5
cbmc_languages.cpp \
6
6
cbmc_main.cpp \
7
7
cbmc_parse_options.cpp \
8
- fault_localization.cpp \
9
8
xml_interface.cpp \
10
9
# Empty last line
11
10
Original file line number Diff line number Diff line change 29
29
#include < goto-checker/report_util.h>
30
30
#include < goto-checker/solver_factory.h>
31
31
32
- #include " fault_localization.h"
33
-
34
32
// / Hook used by CEGIS to selectively freeze variables
35
33
// / in the SAT solver after the SSA formula is added to the solver.
36
34
// / Freezing variables is necessary to make use of incremental
@@ -139,13 +137,6 @@ safety_checkert::resultt bmct::execute(
139
137
safety_checkert::resultt::ERROR:safety_checkert::resultt::SAFE;
140
138
}
141
139
142
- if (options.get_option (" localize-faults" )!=" " )
143
- {
144
- fault_localizationt fault_localization (
145
- goto_functions, *this , options);
146
- return fault_localization ();
147
- }
148
-
149
140
// any properties to check at all?
150
141
if (
151
142
!options.get_bool_option (" program-only" ) &&
Original file line number Diff line number Diff line change @@ -197,7 +197,6 @@ class bmct:public safety_checkert
197
197
friend class bmc_covert ;
198
198
template <template <class goalt > class covert >
199
199
friend class bmc_goal_covert ;
200
- friend class fault_localizationt ;
201
200
202
201
private:
203
202
// / \brief Class-specific symbolic execution
Original file line number Diff line number Diff line change @@ -100,7 +100,6 @@ BMC_DEPS =../src/cbmc/all_properties$(OBJEXT) \
100
100
../src/cbmc/c_test_input_generator$(OBJEXT ) \
101
101
../src/cbmc/cbmc_languages$(OBJEXT ) \
102
102
../src/cbmc/cbmc_parse_options$(OBJEXT ) \
103
- ../src/cbmc/fault_localization$(OBJEXT ) \
104
103
../src/cbmc/xml_interface$(OBJEXT ) \
105
104
../src/goto-instrument/source_lines$(OBJEXT ) \
106
105
../src/goto-instrument/cover$(OBJEXT ) \
You can’t perform that action at this time.
0 commit comments