summaryrefslogtreecommitdiff
path: root/src/theory/builtin
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-02-11 23:56:10 -0500
committerMorgan Deters <mdeters@cs.nyu.edu>2013-03-19 19:09:28 -0400
commit4fc1fe120fd570f8e49da2fefa7b8a0bfed9df48 (patch)
treead538771d8c2162de578b89b5947a02e4047fae5 /src/theory/builtin
parent4ea1dce10aa9648b695c1249fbafc1255deadb1e (diff)
Minor cleanup of sources
Diffstat (limited to 'src/theory/builtin')
-rw-r--r--src/theory/builtin/kinds1
-rw-r--r--src/theory/builtin/theory_builtin_type_rules.h5
2 files changed, 0 insertions, 6 deletions
diff --git a/src/theory/builtin/kinds b/src/theory/builtin/kinds
index e3bc506e2..fca79aff0 100644
--- a/src/theory/builtin/kinds
+++ b/src/theory/builtin/kinds
@@ -343,7 +343,6 @@ typerule EQUAL ::CVC4::theory::builtin::EqualityTypeRule
typerule DISTINCT ::CVC4::theory::builtin::DistinctTypeRule
typerule SEXPR ::CVC4::theory::builtin::SExprTypeRule
typerule LAMBDA ::CVC4::theory::builtin::LambdaTypeRule
-construle LAMBDA ::CVC4::theory::builtin::LambdaTypeRule
typerule CHAIN ::CVC4::theory::builtin::ChainTypeRule
constant SUBTYPE_TYPE \
diff --git a/src/theory/builtin/theory_builtin_type_rules.h b/src/theory/builtin/theory_builtin_type_rules.h
index baf498968..352868f7b 100644
--- a/src/theory/builtin/theory_builtin_type_rules.h
+++ b/src/theory/builtin/theory_builtin_type_rules.h
@@ -170,11 +170,6 @@ public:
TypeNode rangeType = n[1].getType(check);
return nodeManager->mkFunctionType(argTypes, rangeType);
}
-
- inline static bool computeIsConst(NodeManager* nodeManager, TNode n) {
- Assert(n.getKind() == kind::LAMBDA);
- return false;
- }
};/* class LambdaTypeRule */
class ChainTypeRule {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback