Skip to content
Merged
32 changes: 0 additions & 32 deletions src/cpp/recursion_counter.h

This file was deleted.

237 changes: 0 additions & 237 deletions src/goto-analyzer/static_analyzer.cpp

This file was deleted.

34 changes: 0 additions & 34 deletions src/goto-analyzer/static_analyzer.h

This file was deleted.

24 changes: 0 additions & 24 deletions src/goto-instrument/accelerate/path_acceleration.h

This file was deleted.

3 changes: 1 addition & 2 deletions src/goto-instrument/accelerate/polynomial_accelerator.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,11 @@ Author: Matt Lewis
#include "polynomial.h"
#include "path.h"
#include "accelerator.h"
#include "path_acceleration.h"
#include "acceleration_utils.h"
#include "cone_of_influence.h"
#include "overflow_instrumenter.h"

class polynomial_acceleratort:public path_accelerationt
class polynomial_acceleratort
{
public:
polynomial_acceleratort(
Expand Down
2 changes: 0 additions & 2 deletions src/solvers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,7 @@ SRC = $(BOOLEFORCE_SRC) \
prop/literal.cpp \
prop/minimize.cpp \
prop/prop.cpp \
prop/prop_assignment.cpp \
prop/prop_conv.cpp \
prop/prop_conv_store.cpp \
qbf/qbf_quantor.cpp \
qbf/qbf_qube.cpp \
qbf/qbf_qube_core.cpp \
Expand Down
6 changes: 3 additions & 3 deletions src/solvers/prop/prop.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ Author: Daniel Kroening, [email protected]
#include <util/message.h>
#include <util/threeval.h>

#include "prop_assignment.h"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

literal.h needs to be included here

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will fix.

#include "literal.h"

/*! \brief TO_BE_DOCUMENTED
*/
class propt:public messaget, public prop_assignmentt
class propt:public messaget
{
public:
propt() { }
Expand Down Expand Up @@ -96,7 +96,7 @@ class propt:public messaget, public prop_assignmentt
enum class resultt { P_SATISFIABLE, P_UNSATISFIABLE, P_ERROR };
virtual resultt prop_solve()=0;

// satisfying assignment, from prop_assignmentt
// satisfying assignment
virtual tvt l_get(literalt a) const=0;
virtual void set_assignment(literalt a, bool value);
virtual void copy_assignment_from(const propt &prop);
Expand Down
14 changes: 0 additions & 14 deletions src/solvers/prop/prop_assignment.cpp

This file was deleted.

Loading