mk_fpa_min method

Z3_ast mk_fpa_min(
  1. Z3_context c,
  2. Z3_ast t1,
  3. Z3_ast t2
)

\brief Minimum of floating-point numbers.

\param c logical context \param t1 term of FloatingPoint sort \param t2 term of FloatingPoint sort

\c t1, \c t2 must have the same FloatingPoint sort.

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

Implementation

Z3_ast mk_fpa_min(
  Z3_context c,
  Z3_ast t1,
  Z3_ast t2,
) {
  return _mk_fpa_min(
    c,
    t1,
    t2,
  );
}