mk_fpa_abs method

Z3_ast mk_fpa_abs(
  1. Z3_context c,
  2. Z3_ast t
)

\brief Floating-point absolute value

\param c logical context \param t term of FloatingPoint sort

def_API('Z3_mk_fpa_abs', AST, (_in(CONTEXT),_in(AST)))

Implementation

Z3_ast mk_fpa_abs(
  Z3_context c,
  Z3_ast t,
) {
  return _mk_fpa_abs(
    c,
    t,
  );
}