Create a numeral of FloatingPoint sort from a float. @param v numeral value. @param s FloatingPoint sort. @throws Z3Exception
(float v, FPSort s)
| 3907 | * @throws Z3Exception |
| 3908 | **/ |
| 3909 | public FPNum mkFP(float v, FPSort s) |
| 3910 | { |
| 3911 | return mkFPNumeral(v, s); |
| 3912 | } |
| 3913 | |
| 3914 | /** |
| 3915 | * Create a numeral of FloatingPoint sort from a double. |
no test coverage detected