summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/quant_conflict_find.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/quant_conflict_find.h')
-rwxr-xr-xsrc/theory/quantifiers/quant_conflict_find.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/theory/quantifiers/quant_conflict_find.h b/src/theory/quantifiers/quant_conflict_find.h
index 5ba7684ef..29ddceb40 100755
--- a/src/theory/quantifiers/quant_conflict_find.h
+++ b/src/theory/quantifiers/quant_conflict_find.h
@@ -110,9 +110,11 @@ public:
std::map< int, MatchGen * > d_var_mg;
void reset_round( QuantConflictFind * p );
public:
+ //initialize
+ void initialize( Node q );
//current constraints
- std::map< int, TNode > d_match;
- std::map< int, TNode > d_match_term;
+ std::vector< TNode > d_match;
+ std::vector< TNode > d_match_term;
std::map< int, std::map< TNode, int > > d_curr_var_deq;
int getCurrentRepVar( int v );
TNode getCurrentValue( TNode n );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback