/********************* */ /*! \file proof.h ** \verbatim ** Original author: Liana Hadarean ** Major contributors: Morgan Deters ** Minor contributors (to current version): none ** This file is part of the CVC4 project. ** Copyright (c) 2009-2013 New York University and The University of Iowa ** See the file COPYING in the top-level source directory for licensing ** information.\endverbatim ** ** \brief Proof manager ** ** Proof manager **/ #include "cvc4_private.h" #ifndef __CVC4__PROOF__PROOF_H #define __CVC4__PROOF__PROOF_H #include "smt/options.h" #ifdef CVC4_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 # define PROOF_ON() false #endif /* CVC4_PROOF */ #endif /* __CVC4__PROOF__PROOF_H */