summaryrefslogtreecommitdiff
path: root/src/proof
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/proof
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/proof')
-rw-r--r--src/proof/cnf_proof.h4
-rw-r--r--src/proof/proof_manager.h2
2 files changed, 1 insertions, 5 deletions
diff --git a/src/proof/cnf_proof.h b/src/proof/cnf_proof.h
index 286c4e0bf..acbfbb2a2 100644
--- a/src/proof/cnf_proof.h
+++ b/src/proof/cnf_proof.h
@@ -21,14 +21,12 @@
#ifndef CVC4__CNF_PROOF_H
#define CVC4__CNF_PROOF_H
-#include <iosfwd>
#include <unordered_map>
#include <unordered_set>
#include "context/cdhashmap.h"
#include "proof/clause_id.h"
-#include "proof/sat_proof.h"
-#include "util/maybe.h"
+#include "proof/proof_manager.h"
namespace CVC4 {
namespace prop {
diff --git a/src/proof/proof_manager.h b/src/proof/proof_manager.h
index c7eb2282b..f05fb0386 100644
--- a/src/proof/proof_manager.h
+++ b/src/proof/proof_manager.h
@@ -19,7 +19,6 @@
#ifndef CVC4__PROOF_MANAGER_H
#define CVC4__PROOF_MANAGER_H
-#include <iosfwd>
#include <memory>
#include <unordered_map>
#include <unordered_set>
@@ -28,7 +27,6 @@
#include "context/cdhashset.h"
#include "expr/node.h"
#include "proof/clause_id.h"
-#include "util/statistics_registry.h"
namespace CVC4 {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback