summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/inst_match.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-04-09 15:43:37 -0500
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-04-09 15:59:38 -0500
commit40fbc4aa1961cbeea2451251e54909285d2f4292 (patch)
treeed4032bec587ef0e1ea0318a38c2d990e9f1f19f /src/theory/quantifiers/inst_match.cpp
parent8d29fef7286ab07c630c65284bfb399e2f7f5326 (diff)
Handle fmf.card as input from user, add support in SMT2 parser, as requested by Martin Brain. Fix two minor bugs : E-matching with datatypes, instantiation caching with incremental.
Diffstat (limited to 'src/theory/quantifiers/inst_match.cpp')
-rw-r--r--src/theory/quantifiers/inst_match.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/inst_match.cpp b/src/theory/quantifiers/inst_match.cpp
index 4a23f1c97..a74c51a9a 100644
--- a/src/theory/quantifiers/inst_match.cpp
+++ b/src/theory/quantifiers/inst_match.cpp
@@ -210,7 +210,7 @@ bool CDInstMatchTrie::addInstMatch( QuantifiersEngine* qe, Node f, std::vector<
}
}
if( index==(int)f[0].getNumChildren() ){
- return false;
+ return reset;
}else{
Node n = m[ index ];
std::map< Node, CDInstMatchTrie* >::iterator it = d_data.find( n );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback