3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 18:31:49 +00:00

.NET FPA API bugfix

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2015-01-03 16:49:42 +00:00
parent 3a2db1c793
commit cf4dc527c4

View file

@ -3590,7 +3590,7 @@ namespace Microsoft.Z3
public FPSort MkFPSort32()
{
Contract.Ensures(Contract.Result<FPSort>() != null);
return new FPSort(this, Native.Z3_mk_fpa_sort_16(nCtx));
return new FPSort(this, Native.Z3_mk_fpa_sort_32(nCtx));
}
/// <summary>
@ -3617,7 +3617,7 @@ namespace Microsoft.Z3
public FPSort MkFPSortQuadruple()
{
Contract.Ensures(Contract.Result<FPSort>() != null);
return new FPSort(this, Native.Z3_mk_fpa_sort_double(nCtx));
return new FPSort(this, Native.Z3_mk_fpa_sort_quadruple(nCtx));
}
/// <summary>