Skip to content

Commit b71efaf

Browse files
authored
Merge pull request diffblue#2019 from tautschnig/remove-unused
Remove utilities that never got used
2 parents 118f41f + 471b20f commit b71efaf

22 files changed

+4
-1668
lines changed

src/cpp/recursion_counter.h

-32
This file was deleted.

src/goto-analyzer/static_analyzer.cpp

-237
This file was deleted.

src/goto-analyzer/static_analyzer.h

-34
This file was deleted.

src/goto-instrument/accelerate/path_acceleration.h

-24
This file was deleted.

src/goto-instrument/accelerate/polynomial_accelerator.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,11 @@ Author: Matt Lewis
2424
#include "polynomial.h"
2525
#include "path.h"
2626
#include "accelerator.h"
27-
#include "path_acceleration.h"
2827
#include "acceleration_utils.h"
2928
#include "cone_of_influence.h"
3029
#include "overflow_instrumenter.h"
3130

32-
class polynomial_acceleratort:public path_accelerationt
31+
class polynomial_acceleratort
3332
{
3433
public:
3534
polynomial_acceleratort(

src/solvers/Makefile

-2
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,7 @@ SRC = $(BOOLEFORCE_SRC) \
153153
prop/literal.cpp \
154154
prop/minimize.cpp \
155155
prop/prop.cpp \
156-
prop/prop_assignment.cpp \
157156
prop/prop_conv.cpp \
158-
prop/prop_conv_store.cpp \
159157
qbf/qbf_quantor.cpp \
160158
qbf/qbf_qube.cpp \
161159
qbf/qbf_qube_core.cpp \

src/solvers/prop/prop.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ Author: Daniel Kroening, [email protected]
1717
#include <util/message.h>
1818
#include <util/threeval.h>
1919

20-
#include "prop_assignment.h"
20+
#include "literal.h"
2121

2222
/*! \brief TO_BE_DOCUMENTED
2323
*/
24-
class propt:public messaget, public prop_assignmentt
24+
class propt:public messaget
2525
{
2626
public:
2727
propt() { }
@@ -96,7 +96,7 @@ class propt:public messaget, public prop_assignmentt
9696
enum class resultt { P_SATISFIABLE, P_UNSATISFIABLE, P_ERROR };
9797
virtual resultt prop_solve()=0;
9898

99-
// satisfying assignment, from prop_assignmentt
99+
// satisfying assignment
100100
virtual tvt l_get(literalt a) const=0;
101101
virtual void set_assignment(literalt a, bool value);
102102
virtual void copy_assignment_from(const propt &prop);

src/solvers/prop/prop_assignment.cpp

-14
This file was deleted.

0 commit comments

Comments
 (0)