Adding the missing clause_id.h file.
authorTim King <taking@google.com>
Wed, 24 Feb 2016 18:39:39 +0000 (10:39 -0800)
committerTim King <taking@google.com>
Wed, 24 Feb 2016 18:39:39 +0000 (10:39 -0800)
src/proof/clause_id.h [new file with mode: 0644]

diff --git a/src/proof/clause_id.h b/src/proof/clause_id.h
new file mode 100644 (file)
index 0000000..c6a9b62
--- /dev/null
@@ -0,0 +1,33 @@
+/*********************                                                        */
+/*! \file clause_id.h
+ ** \verbatim
+ ** Original author: Tim King
+ ** Major contributors: none
+ ** Minor contributors (to current version): none
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2016  New York University and The University of Iowa
+ ** See the file COPYING in the top-level source directory for licensing
+ ** information.\endverbatim
+ **
+ ** \brief Definition of ClauseId
+ **
+ ** A ClauseId is a shared identifier between the proofs module and the sat
+ ** solver for a clause.
+ **/
+
+#include "cvc4_private.h"
+
+#ifndef __CVC4__PROOF__CLAUSE_ID_H
+#define __CVC4__PROOF__CLAUSE_ID_H
+
+namespace CVC4 {
+
+/**
+ * A ClauseId is a shared identifier between the proofs module and the sat
+ * solver for a clause.
+ */
+typedef unsigned ClauseId;
+
+}/* CVC4 namespace */
+
+#endif /* __CVC4__PROOF__CLAUSE_ID_H */