Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * This file is part of the cvc5 project. 3 : : * 4 : : * Copyright (c) 2009-2026 by the authors listed in the file AUTHORS 5 : : * in the top-level source directory and their institutional affiliations. 6 : : * All rights reserved. See the file COPYING in the top-level source 7 : : * directory for licensing information. 8 : : * **************************************************************************** 9 : : * 10 : : * The skolem lemma utility. 11 : : */ 12 : : 13 : : #include "theory/skolem_lemma.h" 14 : : 15 : : #include "expr/skolem_manager.h" 16 : : 17 : : namespace cvc5::internal { 18 : : namespace theory { 19 : : 20 : 65545 : SkolemLemma::SkolemLemma(TrustNode lem, Node k) : d_lemma(lem), d_skolem(k) 21 : : { 22 [ - + ][ - + ]: 65545 : Assert(lem.getKind() == TrustNodeKind::LEMMA); [ - - ] 23 [ - + ][ - + ]: 65545 : Assert(k.getKind() == Kind::SKOLEM); [ - - ] 24 : 65545 : } 25 : : 26 : 77680 : Node SkolemLemma::getProven() const { return d_lemma.getProven(); } 27 : : 28 : : } // namespace theory 29 : : } // namespace cvc5::internal