Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * Morgan Deters, Andrew Reynolds, Gereon Kremer 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 : : * Representation of unsat cores. 14 : : */ 15 : : 16 : : #include "proof/unsat_core.h" 17 : : 18 : : #include "base/check.h" 19 : : #include "expr/node.h" 20 : : #include "options/base_options.h" 21 : : #include "options/io_utils.h" 22 : : #include "printer/printer.h" 23 : : 24 : : namespace cvc5::internal { 25 : : 26 : 4914 : UnsatCore::UnsatCore(const std::vector<Node>& core) 27 : 4914 : : d_useNames(false), d_core(core), d_names() 28 : : { 29 [ + - ]: 4914 : Trace("core") << "UnsatCore size " << d_core.size() << std::endl; 30 : 4914 : } 31 : : 32 : 33 : UnsatCore::UnsatCore(std::vector<std::string>& names) 33 : 33 : : d_useNames(true), d_core(), d_names(names) 34 : : { 35 [ + - ]: 33 : Trace("core") << "UnsatCore (names) size " << d_names.size() << std::endl; 36 : 33 : } 37 : : 38 : 2056 : const std::vector<Node>& UnsatCore::getCore() const { return d_core; } 39 : 33 : const std::vector<std::string>& UnsatCore::getCoreNames() const 40 : : { 41 : 33 : return d_names; 42 : : } 43 : : 44 : 2872 : UnsatCore::const_iterator UnsatCore::begin() const { 45 : 2872 : return d_core.begin(); 46 : : } 47 : : 48 : 9188 : UnsatCore::const_iterator UnsatCore::end() const { 49 : 9188 : return d_core.end(); 50 : : } 51 : : 52 : 54 : void UnsatCore::toStream(std::ostream& out) const { 53 : 108 : options::ioutils::Scope scope(out); 54 : 54 : Printer::getPrinter(out)->toStream(out, *this); 55 : 54 : } 56 : : 57 : 0 : std::ostream& operator<<(std::ostream& out, const UnsatCore& core) { 58 : 0 : core.toStream(out); 59 : 0 : return out; 60 : : } 61 : : 62 : : } // namespace cvc5::internal