File tree Expand file tree Collapse file tree 6 files changed +0
-451
lines changed Expand file tree Collapse file tree 6 files changed +0
-451
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ OBJ += ../$(CPROVER_DIR)/src/ansi-c/ansi-c$(LIBEXT) \
41
41
../$(CPROVER_DIR ) /src/json/json$(LIBEXT ) \
42
42
../$(CPROVER_DIR ) /src/cbmc/all_properties$(OBJEXT ) \
43
43
../$(CPROVER_DIR ) /src/cbmc/bmc$(OBJEXT ) \
44
- ../$(CPROVER_DIR ) /src/cbmc/bmc_cover$(OBJEXT ) \
45
44
# Empty last line
46
45
47
46
INCLUDES = -I .. -I ../$(CPROVER_DIR ) /src
Original file line number Diff line number Diff line change 1
1
SRC = all_properties.cpp \
2
2
bmc.cpp \
3
- bmc_cover.cpp \
4
3
c_test_input_generator.cpp \
5
4
cbmc_languages.cpp \
6
5
cbmc_main.cpp \
Original file line number Diff line number Diff line change @@ -131,12 +131,6 @@ safety_checkert::resultt bmct::execute(
131
131
return safety_checkert::resultt::SAFE; // to indicate non-error
132
132
}
133
133
134
- if (!options.get_list_option (" cover" ).empty ())
135
- {
136
- return cover (goto_functions)?
137
- safety_checkert::resultt::ERROR:safety_checkert::resultt::SAFE;
138
- }
139
-
140
134
// any properties to check at all?
141
135
if (
142
136
!options.get_bool_option (" program-only" ) &&
Original file line number Diff line number Diff line change @@ -191,12 +191,7 @@ class bmct:public safety_checkert
191
191
virtual resultt all_properties (const goto_functionst &goto_functions);
192
192
virtual resultt stop_on_fail ();
193
193
194
- bool cover (const goto_functionst &goto_functions);
195
-
196
194
friend class bmc_all_propertiest ;
197
- friend class bmc_covert ;
198
- template <template <class goalt > class covert >
199
- friend class bmc_goal_covert ;
200
195
201
196
private:
202
197
// / \brief Class-specific symbolic execution
You can’t perform that action at this time.
0 commit comments