/********************* */ /*! \file pseudoboolean_proc.h ** \verbatim ** Original author: Tim King ** Major contributors: none ** Minor contributors (to current version): none ** This file is part of the CVC4 project. ** Copyright (c) 2009-2014 New York University and The University of Iowa ** See the file COPYING in the top-level source directory for licensing ** information.\endverbatim ** ** \brief [[ Add one-line brief description here ]] ** ** [[ Add lengthier description here ]] ** \todo document this file **/ #include "cvc4_private.h" #pragma once #include #include #include "context/cdhashmap.h" #include "context/cdo.h" #include "context/context.h" #include "expr/node.h" #include "theory/substitutions.h" #include "util/maybe.h" #include "util/rational.h" namespace CVC4 { namespace theory { namespace arith { class PseudoBooleanProcessor { private: // x -> typedef std::pair PairNode; typedef std::vector NodeVec; typedef context::CDHashMap CDNode2PairMap; CDNode2PairMap d_pbBounds; SubstitutionMap d_subCache; typedef __gnu_cxx::hash_set NodeSet; NodeSet d_learningCache; context::CDO d_pbs; // decompose into \sum pos >= neg + off Maybe d_off; NodeVec d_pos; NodeVec d_neg; void clear(); /** Returns true if successful. */ bool decomposeAssertion(Node assertion, bool negated); public: PseudoBooleanProcessor(context::Context* user_context); /** Assumes that the assertions have been rewritten. */ void learn(const NodeVec& assertions); /** Assumes that the assertions have been rewritten. */ void applyReplacements(NodeVec& assertions); bool likelyToHelp() const; bool isPseudoBoolean(Node v) const; // Adds the fact the that integert typed variable v // must be >= 0 to the context. // This is explained by the explanation exp. // exp cannot be null. void addGeqZero(Node v, Node exp); // Adds the fact the that integert typed variable v // must be <= 1 to the context. // This is explained by the explanation exp. // exp cannot be null. void addLeqOne(Node v, Node exp); static inline bool isIntVar(Node v){ return v.isVar() && v.getType().isInteger(); } private: /** Assumes that the assertion has been rewritten. */ void learn(Node assertion); /** Rewrites a node */ Node applyReplacements(Node assertion); void learnInternal(Node assertion, bool negated, Node orig); void learnRewrittenGeq(Node assertion, bool negated, Node orig); void addSub(Node from, Node to); void learnGeqSub(Node geq); static Node mkGeqOne(Node v); }; }/* CVC4::theory::arith namespace */ }/* CVC4::theory namespace */ }/* CVC4 namespace */