From: Tim King Date: Wed, 24 Feb 2016 18:39:39 +0000 (-0800) Subject: Adding the missing clause_id.h file. X-Git-Tag: cvc5-1.0.0~6049^2~115 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=29718a8926b15287c211a437c3a4947d919f31b1;p=cvc5.git Adding the missing clause_id.h file. --- 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 */