Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * Andrew Reynolds 4 : : * 5 : : * This file is part of the cvc5 project. 6 : : * 7 : : * Copyright (c) 2009-2024 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 : : * The skolem lemma utility. 14 : : */ 15 : : 16 : : #include "theory/skolem_lemma.h" 17 : : 18 : : #include "expr/skolem_manager.h" 19 : : 20 : : namespace cvc5::internal { 21 : : namespace theory { 22 : : 23 : 52545 : SkolemLemma::SkolemLemma(TrustNode lem, Node k) : d_lemma(lem), d_skolem(k) 24 : : { 25 [ - + ][ - + ]: 52545 : Assert(lem.getKind() == TrustNodeKind::LEMMA); [ - - ] 26 [ - + ][ - + ]: 52545 : Assert(k.getKind() == Kind::SKOLEM); [ - - ] 27 : 52545 : } 28 : : 29 : 48462 : Node SkolemLemma::getProven() const { return d_lemma.getProven(); } 30 : : 31 : : } // namespace theory 32 : : } // namespace cvc5::internal