From 29718a8926b15287c211a437c3a4947d919f31b1 Mon Sep 17 00:00:00 2001 From: Tim King Date: Wed, 24 Feb 2016 10:39:39 -0800 Subject: [PATCH] Adding the missing clause_id.h file. --- src/proof/clause_id.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/proof/clause_id.h diff --git a/src/proof/clause_id.h b/src/proof/clause_id.h new file mode 100644 index 000000000..c6a9b6240 --- /dev/null +++ b/src/proof/clause_id.h @@ -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 */ -- 2.30.2