summaryrefslogtreecommitdiff
path: root/src/proof/proof.h
diff options
context:
space:
mode:
authorLiana Hadarean <lianahady@gmail.com>2011-10-28 19:24:38 +0000
committerLiana Hadarean <lianahady@gmail.com>2011-10-28 19:24:38 +0000
commitb084a7efa9d65ec2f7475caa8486f8fd4cbafbd5 (patch)
treee118097c88787b7f2899bb8b2cbf865d058ef6bf /src/proof/proof.h
parent9547a48a7cdab8786c080779930de9c39655c52b (diff)
merged the proofgen3 branch into trunk:
- can now output LFSC checkable resolution proofs - added configuration option --enable-proof - added command line argument --proof To turn proofs on build with proofs enabled and run with --proof.
Diffstat (limited to 'src/proof/proof.h')
-rw-r--r--src/proof/proof.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/proof/proof.h b/src/proof/proof.h
new file mode 100644
index 000000000..f163a4ffd
--- /dev/null
+++ b/src/proof/proof.h
@@ -0,0 +1,37 @@
+/********************* */
+/*! \file sat_proof.h
+ ** \verbatim
+ ** Original author: lianah
+ ** Major contributors: none
+ ** Minor contributors (to current version): none
+ ** This file is part of the CVC4 prototype.
+ ** Copyright (c) 2009, 2010, 2011 The Analysis of Computer Systems Group (ACSys)
+ ** Courant Institute of Mathematical Sciences
+ ** New York University
+ ** See the file COPYING in the top-level source directory for licensing
+ ** information.\endverbatim
+ **
+ ** \brief Proof manager
+ **
+ ** Proof manager
+ **/
+
+#ifndef __CVC4__PROOF_H
+#define __CVC4__PROOF_H
+
+#include "util/options.h"
+//#define CVC4_PROOFS
+
+#ifdef CVC4_PROOF
+# define PROOF(x) if(Options::current()->proof) { x; }
+# define NULLPROOF(x) (Options::current()->proof)? x : NULL
+# define PROOF_ON() Options::current()->proof
+#else /* CVC4_PROOF */
+# define PROOF(x)
+# define NULLPROOF(x) NULL
+# define PROOF_ON() false
+#endif /* CVC4_PROOF */
+
+
+
+#endif /* __CVC4__PROOF_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback