Function z3_sys::Z3_mk_fpa_zero

source ·
pub unsafe extern "C" fn Z3_mk_fpa_zero(
    c: Z3_context,
    s: Z3_sort,
    negative: Z3_bool
) -> Z3_ast
Expand description

Create a floating-point zero of sort s.

  • c: logical context
  • s: target sort
  • negative: indicates whether the result should be negative

When negative is true, -zero will be generated instead of +zero.