diff options
author | Checkmate50 <dgeisler50@gmail.com> | 2016-07-16 02:49:06 -0600 |
---|---|---|
committer | Checkmate50 <dgeisler50@gmail.com> | 2016-07-16 02:49:06 -0600 |
commit | af8621462cf6b25a6dd29b63ed251629109d6bfb (patch) | |
tree | 384c961c72fb0cadda51c05db24116896345c494 /Source/Provers/SMTLib | |
parent | 7a0b581cd2e1ec9ce184f195fe0f8d2ea94255c2 (diff) |
Changed the syntax reading of the float type
Diffstat (limited to 'Source/Provers/SMTLib')
-rw-r--r-- | Source/Provers/SMTLib/SMTLibLineariser.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Provers/SMTLib/SMTLibLineariser.cs b/Source/Provers/SMTLib/SMTLibLineariser.cs index 99dd849d..7b2525f7 100644 --- a/Source/Provers/SMTLib/SMTLibLineariser.cs +++ b/Source/Provers/SMTLib/SMTLibLineariser.cs @@ -146,7 +146,7 @@ namespace Microsoft.Boogie.SMTLib else if (t.IsReal) return "Real"; else if (t.IsFloat) - return "(_ FloatingPoint " + t.FloatExponent + " " + t.FloatMantissa + ")"; + return "(_ FloatingPoint " + t.FloatExponent + " " + t.FloatSignificand + ")"; else if (t.IsBv) { return "(_ BitVec " + t.BvBits + ")"; } else { |