summaryrefslogtreecommitdiff
path: root/src/proof/proof.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/proof/proof.h')
-rw-r--r--src/proof/proof.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/proof/proof.h b/src/proof/proof.h
index a3270c4c0..39cf2b5bf 100644
--- a/src/proof/proof.h
+++ b/src/proof/proof.h
@@ -19,12 +19,12 @@
#ifndef __CVC4__PROOF__PROOF_H
#define __CVC4__PROOF__PROOF_H
-#include "util/options.h"
+#include "options/options.h"
#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
+# define PROOF(x) if(options::proof()) { x; }
+# define NULLPROOF(x) (options::proof())? x : NULL
+# define PROOF_ON() options::proof()
#else /* CVC4_PROOF */
# define PROOF(x)
# define NULLPROOF(x) NULL
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback