Skip to content

Commit

Permalink
Fixed BigFloat construction of the returned FP constants
Browse files Browse the repository at this point in the history
  • Loading branch information
shaobo-he committed Jun 29, 2019
1 parent 6c6cfb9 commit 818c4c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Provers/SMTLib/ProverInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2456,7 +2456,7 @@ public override object Evaluate(VCExpr expr)
BigInteger exp = getBvVal(expExpr);
int expSize = getBvSize(expExpr);
BigInteger sig = getBvVal(sigExpr);
int sigSize = getBvSize(sigExpr);
int sigSize = getBvSize(sigExpr)+1;
return new Basetypes.BigFloat(isNeg, sig, exp, sigSize, expSize);
}
if (resp.Name == "_" && resp.ArgCount == 3)
Expand Down

0 comments on commit 818c4c2

Please sign in to comment.