summaryrefslogtreecommitdiff
path: root/src/theory/arith/proof_macros.h
blob: 4760760efbb3ab05896b599df958b762745f93d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*********************                                                        */
/*! \file proof_macros.h
 ** \verbatim
 ** Top contributors (to current version):
 **   Alex Ozdemir
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2020 by the authors listed in the file AUTHORS
 ** in the top-level source directory and their institutional affiliations.
 ** All rights reserved.  See the file COPYING in the top-level source
 ** directory for licensing information.\endverbatim
 **
 ** \brief Macros which run code when the old or new proof system is enabled,
 ** or unsat cores are enabled.
 **/

#include "cvc4_private.h"

#ifndef CVC4__THEORY__ARITH__PROOF_MACROS_H
#define CVC4__THEORY__ARITH__PROOF_MACROS_H

#include "options/smt_options.h"

#define ARITH_PROOF(x)                                      \
  if (CVC4::options::proofNew())                            \
  {                                                         \
    x;                                                      \
  }
#define ARITH_NULLPROOF(x)                                  \
  (CVC4::options::proofNew())                               \
      ? x                                                   \
      : NULL
#define ARITH_PROOF_ON() CVC4::options::proofNew()

#endif  // CVC4__THEORY__ARITH__PROOF_MACROS_H
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback