mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
added is_numeral_negative to ML API.
This commit is contained in:
parent
9c16d16bc8
commit
9ebea09d05
2 changed files with 4 additions and 0 deletions
|
@ -1338,6 +1338,7 @@ struct
|
|||
let is_numeral_normal = Z3native.fpa_is_numeral_normal
|
||||
let is_numeral_subnormal = Z3native.fpa_is_numeral_subnormal
|
||||
let is_numeral_positive = Z3native.fpa_is_numeral_positive
|
||||
let is_numeral_negative = Z3native.fpa_is_numeral_negative
|
||||
let mk_to_ieee_bv = Z3native.mk_fpa_to_ieee_bv
|
||||
let mk_to_fp_int_real = Z3native.mk_fpa_to_fp_int_real
|
||||
let numeral_to_string x = Z3native.get_numeral_string (Expr.gc x) x
|
||||
|
|
|
@ -2185,6 +2185,9 @@ sig
|
|||
|
||||
(** Indicates whether a floating-point numeral is positive. *)
|
||||
val is_numeral_positive : context -> Expr.expr -> bool
|
||||
|
||||
(** Indicates whether a floating-point numeral is negative. *)
|
||||
val is_numeral_negative : context -> Expr.expr -> bool
|
||||
|
||||
(** Conversion of a floating-point term into a bit-vector term in IEEE 754-2008 format. *)
|
||||
val mk_to_ieee_bv : context -> Expr.expr -> Expr.expr
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue