GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/theory/arith/proof_checker.h Lines: 2 2 100.0 %
Date: 2021-05-24 Branches: 0 0 0.0 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Alex Ozdemir
4
 *
5
 * This file is part of the cvc5 project.
6
 *
7
 * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
8
 * in the top-level source directory and their institutional affiliations.
9
 * All rights reserved.  See the file COPYING in the top-level source
10
 * directory for licensing information.
11
 * ****************************************************************************
12
 *
13
 * Arithmetic proof checker utility.
14
 */
15
16
#include "cvc5_private.h"
17
18
#ifndef CVC5__THEORY__ARITH__PROOF_CHECKER_H
19
#define CVC5__THEORY__ARITH__PROOF_CHECKER_H
20
21
#include "expr/node.h"
22
#include "expr/proof_checker.h"
23
24
namespace cvc5 {
25
namespace theory {
26
namespace arith {
27
28
/** A checker for arithmetic reasoning in proofs */
29
class ArithProofRuleChecker : public ProofRuleChecker
30
{
31
 public:
32
9459
  ArithProofRuleChecker() {}
33
9459
  ~ArithProofRuleChecker() {}
34
35
  /** Register all rules owned by this rule checker into pc. */
36
  void registerTo(ProofChecker* pc) override;
37
38
 protected:
39
  /** Return the conclusion of the given proof step, or null if it is invalid */
40
  Node checkInternal(PfRule id,
41
                     const std::vector<Node>& children,
42
                     const std::vector<Node>& args) override;
43
};
44
45
}  // namespace arith
46
}  // namespace theory
47
}  // namespace cvc5
48
49
#endif /* CVC5__THEORY__ARITH__PROOF_CHECKER_H */