summaryrefslogtreecommitdiff
path: root/Source/VCExpr/TypeErasure.cs
diff options
context:
space:
mode:
authorGravatar Dietrich <dgeisler50@gmail.com>2015-07-13 19:40:09 -0600
committerGravatar Dietrich <dgeisler50@gmail.com>2015-07-13 19:40:09 -0600
commit52aa9b8f63a3d955031e7a0dfd6e575ca7cf76b3 (patch)
treeb24be506dda4eae8b2f98486ddacd8df031dc119 /Source/VCExpr/TypeErasure.cs
parentfe331e0a63c7921a996e007860182bad9628fb0d (diff)
Modified internal abstract float representation to allow user-defined mantissa and exponent
Diffstat (limited to 'Source/VCExpr/TypeErasure.cs')
-rw-r--r--Source/VCExpr/TypeErasure.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/VCExpr/TypeErasure.cs b/Source/VCExpr/TypeErasure.cs
index 4632b1e4..5e821ea2 100644
--- a/Source/VCExpr/TypeErasure.cs
+++ b/Source/VCExpr/TypeErasure.cs
@@ -1424,13 +1424,13 @@ namespace Microsoft.Boogie.TypeErasure {
Contract.Ensures(Contract.Result<VCExpr>() != null);
return CastArguments(node, Type.Real, bindings, 0);
}
- public override VCExpr VisitFloatDivOp(VCExprNAry node, VariableBindings bindings)
+ /*public override VCExpr VisitFloatDivOp(VCExprNAry node, VariableBindings bindings)
{
Contract.Requires((bindings != null));
Contract.Requires((node != null));
Contract.Ensures(Contract.Result<VCExpr>() != null);
return CastArguments(node, Type.Float, bindings, 0);
- }
+ }*/
public override VCExpr VisitPowOp(VCExprNAry node, VariableBindings bindings) {
Contract.Requires((bindings != null));
Contract.Requires((node != null));