Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * Haniel Barbosa, Aina Niemetz, Hans-Joerg Schurr 4 : : * 5 : : * This file is part of the cvc5 project. 6 : : * 7 : : * Copyright (c) 2009-2025 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 : : * Equality proof checker utility. 14 : : */ 15 : : 16 : : #include "cvc5_private.h" 17 : : 18 : : #ifndef CVC5__THEORY__UF__PROOF_CHECKER_H 19 : : #define CVC5__THEORY__UF__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::internal { 26 : : namespace theory { 27 : : namespace uf { 28 : : 29 : : /** A checker for builtin proofs */ 30 : : class UfProofRuleChecker : public ProofRuleChecker 31 : : { 32 : : public: 33 : 51338 : UfProofRuleChecker(NodeManager* nm) : ProofRuleChecker(nm) {} 34 : 51082 : ~UfProofRuleChecker() {} 35 : : 36 : : /** Register all rules owned by this rule checker into pc. */ 37 : : void registerTo(ProofChecker* pc) override; 38 : : 39 : : protected: 40 : : /** Return the conclusion of the given proof step, or null if it is invalid */ 41 : : Node checkInternal(ProofRule id, 42 : : const std::vector<Node>& children, 43 : : const std::vector<Node>& args) override; 44 : : }; 45 : : 46 : : } // namespace uf 47 : : } // namespace theory 48 : : } // namespace cvc5::internal 49 : : 50 : : #endif /* CVC5__THEORY__UF__PROOF_CHECKER_H */