summaryrefslogtreecommitdiff
path: root/Source/Core/Parser.cs
diff options
context:
space:
mode:
authorGravatar Dietrich <dgeisler50@gmail.com>2015-04-20 03:44:03 -0600
committerGravatar Dietrich <dgeisler50@gmail.com>2015-04-20 03:44:03 -0600
commit0776b808b14e62833b3eac1c30c8ac8cc7e62c20 (patch)
tree4d78f194944b988c25e05ec13b438f0284bfc422 /Source/Core/Parser.cs
parentb5f62842c113ec93dee7f9ac067ae6d410e7bc29 (diff)
added float tipe to AbsyExpr and IntervalDomain. The methods added may require later modification
Diffstat (limited to 'Source/Core/Parser.cs')
-rw-r--r--Source/Core/Parser.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Parser.cs b/Source/Core/Parser.cs
index 4bf11e53..696a72ed 100644
--- a/Source/Core/Parser.cs
+++ b/Source/Core/Parser.cs
@@ -665,7 +665,7 @@ private class BvBounds : Expr {
} else if (la.kind == 15) {
Get();
ty = new BasicType(t, SimpleType.Real);
- } else if (la.kind == 112837) {
+ } else if (la.kind == 135) {
Get();
ty = new BasicType(t, SimpleType.Float);
} else if (la.kind == 16) {