summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/bounded_integers.h
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2014-10-18 13:37:36 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2014-10-18 13:37:42 +0200
commitd376e1e960617cdea19759f36babfd1f88e37e6d (patch)
treea00889d87817d8fd1ed781571dde0137fce4b3ea /src/theory/quantifiers/bounded_integers.h
parent9a596b534a4c95762dc0bc55e2258ee81a2e9200 (diff)
Fix for bounded integers when incremental, fixes bug 588. Add option --dt-binary-split.
Diffstat (limited to 'src/theory/quantifiers/bounded_integers.h')
-rw-r--r--src/theory/quantifiers/bounded_integers.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/theory/quantifiers/bounded_integers.h b/src/theory/quantifiers/bounded_integers.h
index 355360e41..c09527f89 100644
--- a/src/theory/quantifiers/bounded_integers.h
+++ b/src/theory/quantifiers/bounded_integers.h
@@ -38,6 +38,7 @@ class BoundedIntegers : public QuantifiersModule
typedef context::CDHashMap<Node, bool, NodeHashFunction> NodeBoolMap;
typedef context::CDHashMap<Node, int, NodeHashFunction> NodeIntMap;
typedef context::CDHashMap<Node, Node, NodeHashFunction> NodeNodeMap;
+ typedef context::CDHashMap<int, bool> IntBoolMap;
private:
//for determining bounds
bool isBound( Node f, Node v );
@@ -62,16 +63,16 @@ private:
void allocateRange();
Node d_proxy_range;
public:
- RangeModel(BoundedIntegers * bi, Node r, context::Context* c, bool isProxy);
+ RangeModel(BoundedIntegers * bi, Node r, context::Context* c, context::Context* u, bool isProxy);
Node d_range;
int d_curr_max;
std::map< int, Node > d_range_literal;
std::map< Node, bool > d_lit_to_pol;
- std::map< Node, int > d_lit_to_range;
+ NodeIntMap d_lit_to_range;
NodeBoolMap d_range_assertions;
context::CDO< bool > d_has_range;
context::CDO< int > d_curr_range;
- std::map< int, bool > d_ranges_proxied;
+ IntBoolMap d_ranges_proxied;
void initialize();
void assertNode(Node n);
Node getNextDecisionRequest();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback