3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 04:03:39 +00:00
This commit is contained in:
Nikolaj Bjorner 2018-11-29 21:04:49 -08:00
commit 57318bab5b

View file

@ -3356,7 +3356,7 @@ public class Context implements AutoCloseable {
} }
/** /**
* Create a numeral of FloatingPoint sort from a float. * Create a numeral of FloatingPoint sort from a double.
* @param v numeral value. * @param v numeral value.
* @param s FloatingPoint sort. * @param s FloatingPoint sort.
* @throws Z3Exception * @throws Z3Exception
@ -3368,7 +3368,7 @@ public class Context implements AutoCloseable {
/** /**
* Create a numeral of FloatingPoint sort from an int. * Create a numeral of FloatingPoint sort from an int.
* * @param v numeral value. * @param v numeral value.
* @param s FloatingPoint sort. * @param s FloatingPoint sort.
* @throws Z3Exception * @throws Z3Exception
**/ **/
@ -3380,8 +3380,8 @@ public class Context implements AutoCloseable {
/** /**
* Create a numeral of FloatingPoint sort from a sign bit and two integers. * Create a numeral of FloatingPoint sort from a sign bit and two integers.
* @param sgn the sign. * @param sgn the sign.
* @param sig the significand.
* @param exp the exponent. * @param exp the exponent.
* @param sig the significand.
* @param s FloatingPoint sort. * @param s FloatingPoint sort.
* @throws Z3Exception * @throws Z3Exception
**/ **/
@ -3393,8 +3393,8 @@ public class Context implements AutoCloseable {
/** /**
* Create a numeral of FloatingPoint sort from a sign bit and two 64-bit integers. * Create a numeral of FloatingPoint sort from a sign bit and two 64-bit integers.
* @param sgn the sign. * @param sgn the sign.
* @param sig the significand.
* @param exp the exponent. * @param exp the exponent.
* @param sig the significand.
* @param s FloatingPoint sort. * @param s FloatingPoint sort.
* @throws Z3Exception * @throws Z3Exception
**/ **/
@ -3415,7 +3415,7 @@ public class Context implements AutoCloseable {
} }
/** /**
* Create a numeral of FloatingPoint sort from a float. * Create a numeral of FloatingPoint sort from a double.
* @param v numeral value. * @param v numeral value.
* @param s FloatingPoint sort. * @param s FloatingPoint sort.
* @throws Z3Exception * @throws Z3Exception
@ -3447,7 +3447,7 @@ public class Context implements AutoCloseable {
**/ **/
public FPNum mkFP(boolean sgn, int exp, int sig, FPSort s) public FPNum mkFP(boolean sgn, int exp, int sig, FPSort s)
{ {
return mkFPNumeral(sgn, sig, exp, s); return mkFPNumeral(sgn, exp, sig, s);
} }
/** /**
@ -3460,7 +3460,7 @@ public class Context implements AutoCloseable {
**/ **/
public FPNum mkFP(boolean sgn, long exp, long sig, FPSort s) public FPNum mkFP(boolean sgn, long exp, long sig, FPSort s)
{ {
return mkFPNumeral(sgn, sig, exp, s); return mkFPNumeral(sgn, exp, sig, s);
} }