diff --git a/jbmc/src/jbmc/Makefile b/jbmc/src/jbmc/Makefile index eaf884db60e..1efad8a920b 100644 --- a/jbmc/src/jbmc/Makefile +++ b/jbmc/src/jbmc/Makefile @@ -41,7 +41,6 @@ OBJ += ../$(CPROVER_DIR)/src/ansi-c/ansi-c$(LIBEXT) \ ../$(CPROVER_DIR)/src/json/json$(LIBEXT) \ ../$(CPROVER_DIR)/src/cbmc/all_properties$(OBJEXT) \ ../$(CPROVER_DIR)/src/cbmc/bmc$(OBJEXT) \ - ../$(CPROVER_DIR)/src/cbmc/bmc_cover$(OBJEXT) \ # Empty last line INCLUDES= -I .. -I ../$(CPROVER_DIR)/src diff --git a/src/cbmc/Makefile b/src/cbmc/Makefile index d3ad7b6f9bd..b9f7201d2dd 100644 --- a/src/cbmc/Makefile +++ b/src/cbmc/Makefile @@ -1,6 +1,5 @@ SRC = all_properties.cpp \ bmc.cpp \ - bmc_cover.cpp \ c_test_input_generator.cpp \ cbmc_languages.cpp \ cbmc_main.cpp \ diff --git a/src/cbmc/bmc.cpp b/src/cbmc/bmc.cpp index bf2129d367b..5e3360ee09a 100644 --- a/src/cbmc/bmc.cpp +++ b/src/cbmc/bmc.cpp @@ -131,12 +131,6 @@ safety_checkert::resultt bmct::execute( return safety_checkert::resultt::SAFE; // to indicate non-error } - if(!options.get_list_option("cover").empty()) - { - return cover(goto_functions)? - safety_checkert::resultt::ERROR:safety_checkert::resultt::SAFE; - } - // any properties to check at all? if( !options.get_bool_option("program-only") && diff --git a/src/cbmc/bmc.h b/src/cbmc/bmc.h index f92f2ff86c3..851f2a6566d 100644 --- a/src/cbmc/bmc.h +++ b/src/cbmc/bmc.h @@ -191,12 +191,7 @@ class bmct:public safety_checkert virtual resultt all_properties(const goto_functionst &goto_functions); virtual resultt stop_on_fail(); - bool cover(const goto_functionst &goto_functions); - friend class bmc_all_propertiest; - friend class bmc_covert; - template