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

Bugfixes for FPA API. Thanks to Christian Dernehl for reporting these.

This commit is contained in:
Christoph M. Wintersteiger 2015-06-09 11:53:43 +01:00
parent fd0c86ec7d
commit 624cc8a874
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ public class FPSort extends Sort
* The number of significand bits.
*/
public int getSBits() {
return Native.fpaGetEbits(getContext().nCtx(), getNativeObject());
return Native.fpaGetSbits(getContext().nCtx(), getNativeObject());
}
}