rcf_div method

\brief Return the value \ccode{a / b}.

def_API('Z3_rcf_div', RCF_NUM, (_in(CONTEXT), _in(RCF_NUM), _in(RCF_NUM)))

Implementation

Z3_rcf_num rcf_div(
  Z3_context c,
  Z3_rcf_num a,
  Z3_rcf_num b,
) {
  return _rcf_div(
    c,
    a,
    b,
  );
}