summaryrefslogtreecommitdiff
path: root/src/prop/prop_engine.h
diff options
context:
space:
mode:
authorGereon Kremer <gereon.kremer@cs.rwth-aachen.de>2021-03-03 17:50:45 +0100
committerGitHub <noreply@github.com>2021-03-03 16:50:45 +0000
commita02a794c383ae2381e1210f53174cefb8d94e615 (patch)
tree0eac511c22ba9eeba1925e3afa4f0542edf5cf60 /src/prop/prop_engine.h
parent6db84f6e373f9651af48df7b654e3992f68472ac (diff)
More cleanup of includes to reduce compilation times (#6037)
Similar to #6031, this PR implements suggestions from iwyu to reduce the number of includes in header files by introducing forward declarations and moving includes to source files.
Diffstat (limited to 'src/prop/prop_engine.h')
-rw-r--r--src/prop/prop_engine.h23
1 files changed, 4 insertions, 19 deletions
diff --git a/src/prop/prop_engine.h b/src/prop/prop_engine.h
index d0c75a924..834f35d90 100644
--- a/src/prop/prop_engine.h
+++ b/src/prop/prop_engine.h
@@ -21,22 +21,11 @@
#ifndef CVC4__PROP_ENGINE_H
#define CVC4__PROP_ENGINE_H
-#include <sys/time.h>
-
-#include "base/modal_exception.h"
+#include "context/cdlist.h"
#include "expr/node.h"
-#include "options/options.h"
-#include "proof/proof_manager.h"
-#include "prop/minisat/core/Solver.h"
-#include "prop/minisat/minisat.h"
-#include "prop/proof_cnf_stream.h"
-#include "prop/prop_proof_manager.h"
-#include "prop/sat_solver_types.h"
+#include "theory/output_channel.h"
#include "theory/trust_node.h"
-#include "theory/theory_inference_manager.h"
-#include "util/resource_manager.h"
#include "util/result.h"
-#include "util/unsafe_interrupt_exception.h"
namespace CVC4 {
@@ -45,16 +34,12 @@ class DecisionEngine;
class OutputManager;
class TheoryEngine;
-namespace theory {
- class TheoryRegistrar;
-}/* CVC4::theory namespace */
-
namespace prop {
class CnfStream;
class CDCLTSatSolverInterface;
-
-class PropEngine;
+class ProofCnfStream;
+class PropPfManager;
/**
* PropEngine is the abstraction of a Sat Solver, providing methods for
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback