rcf_add method

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

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

Implementation

Z3_rcf_num rcf_add(
  Z3_context c,
  Z3_rcf_num a,
  Z3_rcf_num b,
) {
  return _rcf_add(
    c,
    a,
    b,
  );
}