summaryrefslogtreecommitdiff
path: root/src/prop/minisat
diff options
context:
space:
mode:
authorHaniel Barbosa <hanielbbarbosa@gmail.com>2020-09-28 17:38:59 -0300
committerGitHub <noreply@github.com>2020-09-28 17:38:59 -0300
commitd4564e7ef8eb277fcfc42c3130a3180165594b58 (patch)
tree849dc6284bcf3879899aca6964da5a5e415faae9 /src/prop/minisat
parent0f77646dfc0944f1f17f121ffb3112bf8b244f76 (diff)
[proof-new] Adds a proof manager for the SAT solver (#5140)
Tracks the refutation proof built by Minisat. See the header for extensive explanations. This commit also adds a few dependencies for the SAT proof manager to work (making it a friend of the SAT solver, getting the cnf stream from theory proxy, having lazy cdproof chain give all the links).
Diffstat (limited to 'src/prop/minisat')
-rw-r--r--src/prop/minisat/core/Solver.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/prop/minisat/core/Solver.h b/src/prop/minisat/core/Solver.h
index 0630df1b7..f3bcfb67e 100644
--- a/src/prop/minisat/core/Solver.h
+++ b/src/prop/minisat/core/Solver.h
@@ -33,6 +33,7 @@ OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWA
#include "prop/minisat/mtl/Heap.h"
#include "prop/minisat/mtl/Vec.h"
#include "prop/minisat/utils/Options.h"
+#include "prop/sat_proof_manager.h"
#include "theory/theory.h"
@@ -55,6 +56,7 @@ class Solver {
/** The only two CVC4 entry points to the private solver data */
friend class CVC4::prop::TheoryProxy;
+ friend class CVC4::prop::SatProofManager;
friend class CVC4::TSatProof<Minisat::Solver>;
public:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback