summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/term_database.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/term_database.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/term_database.cpp')
-rw-r--r--src/theory/quantifiers/term_database.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/term_database.cpp b/src/theory/quantifiers/term_database.cpp
index ea1231e7a..c1b3b307d 100644
--- a/src/theory/quantifiers/term_database.cpp
+++ b/src/theory/quantifiers/term_database.cpp
@@ -81,7 +81,7 @@ Node TermDb::getOperator( Node n ) {
}
d_par_op_map[op][tn1][tn2] = n;
return n;
- }else if( n.getKind()==APPLY_UF ){
+ }else if( n.hasOperator() ){
return n.getOperator();
}else{
return Node::null();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback