summaryrefslogtreecommitdiff
path: root/src/theory/arith/pseudoboolean_proc.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2014-06-10 17:32:57 -0400
committerMorgan Deters <mdeters@cs.nyu.edu>2014-06-10 17:35:41 -0400
commit629824db3911ab11ae286e4b14151a537602ba5a (patch)
treef82eed6908c9cad382f8b08f25f910edc1990455 /src/theory/arith/pseudoboolean_proc.h
parentdb795eb64da6f10f2a322e33d8a0eb0ef0bb6f1b (diff)
Merging Tim's pseudoboolean work from his fmcad14 branch.
Signed-off-by: Morgan Deters <mdeters@cs.nyu.edu>
Diffstat (limited to 'src/theory/arith/pseudoboolean_proc.h')
-rw-r--r--src/theory/arith/pseudoboolean_proc.h110
1 files changed, 110 insertions, 0 deletions
diff --git a/src/theory/arith/pseudoboolean_proc.h b/src/theory/arith/pseudoboolean_proc.h
new file mode 100644
index 000000000..665f1aa06
--- /dev/null
+++ b/src/theory/arith/pseudoboolean_proc.h
@@ -0,0 +1,110 @@
+/********************* */
+/*! \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 <vector>
+#include "util/rational.h"
+#include "util/maybe.h"
+#include "expr/node.h"
+
+#include "context/context.h"
+#include "context/cdo.h"
+#include "context/cdhashmap.h"
+
+#include "theory/substitutions.h"
+#include <ext/hash_set>
+
+namespace CVC4 {
+namespace theory {
+namespace arith {
+
+class PseudoBooleanProcessor {
+private:
+ // x -> <geqZero, leqOne>
+ typedef std::pair<Node, Node> PairNode;
+ typedef std::vector<Node> NodeVec;
+ typedef context::CDHashMap<Node, PairNode, NodeHashFunction> CDNode2PairMap;
+ CDNode2PairMap d_pbBounds;
+ SubstitutionMap d_subCache;
+
+ typedef __gnu_cxx::hash_set<Node, NodeHashFunction> NodeSet;
+ NodeSet d_learningCache;
+
+ context::CDO<unsigned> d_pbs;
+
+ // decompose into \sum pos >= neg + off
+ Maybe<Rational> 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 */
+
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback