summaryrefslogtreecommitdiff
path: root/Source/Core/AbsyExpr.cs
diff options
context:
space:
mode:
authorGravatar Dietrich <dgeisler50@gmail.com>2015-04-20 14:56:59 -0600
committerGravatar Dietrich <dgeisler50@gmail.com>2015-04-20 14:56:59 -0600
commit1621e22e7758046e1262b22410a48250388abf29 (patch)
treef2a7e4b07389e4748200bfc47a33db60ba5aeb23 /Source/Core/AbsyExpr.cs
parentac54b6451035fd3c0fab62ce1044d48114053c15 (diff)
renamed fp32 to BigFloat
Diffstat (limited to 'Source/Core/AbsyExpr.cs')
-rw-r--r--Source/Core/AbsyExpr.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/AbsyExpr.cs b/Source/Core/AbsyExpr.cs
index 7aa457fe..15ff87db 100644
--- a/Source/Core/AbsyExpr.cs
+++ b/Source/Core/AbsyExpr.cs
@@ -356,7 +356,7 @@ namespace Microsoft.Boogie {
Contract.Ensures(Contract.Result<LiteralExpr>() != null);
return new LiteralExpr(Token.NoToken, value);
}
- public static LiteralExpr Literal(FP32 value)
+ public static LiteralExpr Literal(BigFloat value)
{
Contract.Ensures(Contract.Result<LiteralExpr>() != null);
return new LiteralExpr(Token.NoToken, value);
@@ -562,7 +562,7 @@ namespace Microsoft.Boogie {
/// </summary>
/// <param name="tok"></param>
/// <param name="v"></param>
- public LiteralExpr(IToken/*!*/ tok, FP32 v, bool immutable = false)
+ public LiteralExpr(IToken/*!*/ tok, BigFloat v, bool immutable = false)
: base(tok, immutable)
{
Contract.Requires(tok != null);
@@ -630,7 +630,7 @@ namespace Microsoft.Boogie {
return Type.Int;
} else if (Val is BigDec) {
return Type.Real;
- } else if (Val is FP32) {
+ } else if (Val is BigFloat) {
return Type.Float;
} else if (Val is BvConst) {
return Type.GetBvType(((BvConst)Val).Bits);