summaryrefslogtreecommitdiff
path: root/Source/AbsInt/IntervalDomain.cs
diff options
context:
space:
mode:
authorGravatar Dietrich <dgeisler50@gmail.com>2015-05-05 04:50:47 -0600
committerGravatar Dietrich <dgeisler50@gmail.com>2015-05-05 04:50:47 -0600
commitf9df0e2ea8e0b03352f5bbba54f091f2ee25b161 (patch)
treef5a38d6009175fee669d71464d60fa07bb36a60d /Source/AbsInt/IntervalDomain.cs
parented8913170a86b73dc14ba09e40de1eba0cad4c9d (diff)
added decimal reading functionality to the float type
Diffstat (limited to 'Source/AbsInt/IntervalDomain.cs')
-rw-r--r--Source/AbsInt/IntervalDomain.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/AbsInt/IntervalDomain.cs b/Source/AbsInt/IntervalDomain.cs
index 502b7075..a27ae68d 100644
--- a/Source/AbsInt/IntervalDomain.cs
+++ b/Source/AbsInt/IntervalDomain.cs
@@ -673,7 +673,7 @@ namespace Microsoft.Boogie.AbstractInterpretation
Hi = ceiling;
} else if (node.Val is BigFloat) {
BigInteger floor, ceiling;
- ((BigDec)node.Val).FloorCeiling(out floor, out ceiling);
+ ((BigFloat)node.Val).FloorCeiling(out floor, out ceiling);
Lo = floor;
Hi = ceiling;
} else if (node.Val is bool) {