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

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Gereon Kremer
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
 * NlExt proof checker utility.
14
 */
15
16
#include "cvc5_private.h"
17
18
#ifndef CVC5__THEORY__ARITH__NL__EXT__PROOF_CHECKER_H
19
#define CVC5__THEORY__ARITH__NL__EXT__PROOF_CHECKER_H
20
21
#include "expr/node.h"
22
#include "proof/proof_checker.h"
23
#include "proof/proof_node.h"
24
25
namespace cvc5 {
26
namespace theory {
27
namespace arith {
28
namespace nl {
29
30
/**
31
 * A checker for NlExt proofs
32
 *
33
 * This proof checker takes care of all proofs for lemmas from the ext
34
 * subsolver.
35
 */
36
class ExtProofRuleChecker : public ProofRuleChecker
37
{
38
 public:
39
5145
  ExtProofRuleChecker() = default;
40
5145
  ~ExtProofRuleChecker() = default;
41
42
  /** Register all rules owned by this rule checker in pc. */
43
  void registerTo(ProofChecker* pc) override;
44
45
 protected:
46
  /** Return the conclusion of the given proof step, or null if it is invalid */
47
  Node checkInternal(PfRule id,
48
                     const std::vector<Node>& children,
49
                     const std::vector<Node>& args) override;
50
};
51
52
}  // namespace nl
53
}  // namespace arith
54
}  // namespace theory
55
}  // namespace cvc5
56
57
#endif /* CVC5__THEORY__STRINGS__PROOF_CHECKER_H */