All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cvc5-cvc5-1.2.0.src.proof.unsat_core.h Maven / Gradle / Ivy

The newest version!
/******************************************************************************
 * Top contributors (to current version):
 *   Andrew Reynolds, Morgan Deters, Aina Niemetz
 *
 * This file is part of the cvc5 project.
 *
 * Copyright (c) 2009-2024 by the authors listed in the file AUTHORS
 * in the top-level source directory and their institutional affiliations.
 * All rights reserved.  See the file COPYING in the top-level source
 * directory for licensing information.
 * ****************************************************************************
 *
 * Representation of unsat cores.
 */

#include "cvc5_private.h"

#ifndef CVC5__UNSAT_CORE_H
#define CVC5__UNSAT_CORE_H

#include 

#include 
#include 
#include 

namespace cvc5::internal {

template 
class NodeTemplate;
typedef NodeTemplate Node;
typedef NodeTemplate TNode;

/**
 * An unsat core, which can optionally be initialized as a list of names
 * or as a list of formulas.
 */
class CVC5_EXPORT UnsatCore
{
 public:
  UnsatCore() {}
  /** Initialize using assertions */
  UnsatCore(const std::vector& core);
  /** Initialize using assertion names */
  UnsatCore(std::vector& names);
  ~UnsatCore() {}

  /** Whether we are using names for this unsat core */
  bool useNames() const { return d_useNames; }
  /** Get the assertions in the unsat core */
  const std::vector& getCore() const;
  /** Get their names */
  const std::vector& getCoreNames() const;

  typedef std::vector::const_iterator iterator;
  typedef std::vector::const_iterator const_iterator;

  const_iterator begin() const;
  const_iterator end() const;

  /**
   * prints this UnsatCore object to the stream out.
   */
  void toStream(std::ostream& out) const;

 private:
  /** Whether we are using names for this unsat core */
  bool d_useNames;
  /** The unsat core */
  std::vector d_core;
  /** The names of assertions in the above core */
  std::vector d_names;
};/* class UnsatCore */

/** Print the unsat core to stream out */
std::ostream& operator<<(std::ostream& out, const UnsatCore& core);

}  // namespace cvc5::internal

#endif /* CVC5__UNSAT_CORE_H */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy