3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00

FPA API cosmetics

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2015-01-11 18:28:07 +00:00
parent ee0ec7fe3a
commit 4bd8e0f497
2 changed files with 8 additions and 8 deletions

View file

@ -3170,7 +3170,7 @@ public class Context extends IDisposable
* @param s FloatingPoint sort.
* @throws Z3Exception
**/
public FPNum mkFP(boolean sgn, int sig, int exp, FPSort s) throws Z3Exception
public FPNum mkFP(boolean sgn, int exp, int sig, FPSort s) throws Z3Exception
{
return mkFPNumeral(sgn, sig, exp, s);
}
@ -3183,7 +3183,7 @@ public class Context extends IDisposable
* @param s FloatingPoint sort.
* @throws Z3Exception
**/
public FPNum mkFP(boolean sgn, long sig, long exp, FPSort s) throws Z3Exception
public FPNum mkFP(boolean sgn, long exp, long sig, FPSort s) throws Z3Exception
{
return mkFPNumeral(sgn, sig, exp, s);
}