summaryrefslogtreecommitdiff
path: root/src/theory/builtin
diff options
context:
space:
mode:
authorClark Barrett <barrett@cs.nyu.edu>2012-11-29 00:59:06 +0000
committerClark Barrett <barrett@cs.nyu.edu>2012-11-29 00:59:06 +0000
commitff6ac38127fbb03e6c11a210b6b16d647b8785ea (patch)
treef656b1207ab75f0634593093ce5ed99a03f6c657 /src/theory/builtin
parent91673d6cefa63bc0f706101946e0c01fcd429071 (diff)
Fixing function models with Boolean terms. Also, LAMBDA's should not be const.
Diffstat (limited to 'src/theory/builtin')
-rw-r--r--src/theory/builtin/theory_builtin_type_rules.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/builtin/theory_builtin_type_rules.h b/src/theory/builtin/theory_builtin_type_rules.h
index 4aa7c0982..40f838623 100644
--- a/src/theory/builtin/theory_builtin_type_rules.h
+++ b/src/theory/builtin/theory_builtin_type_rules.h
@@ -173,7 +173,7 @@ public:
inline static bool computeIsConst(NodeManager* nodeManager, TNode n) {
Assert(n.getKind() == kind::LAMBDA);
- return true;
+ return false;
}
};/* class LambdaTypeRule */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback