rcf_inv method

Z3_rcf_num rcf_inv(
  1. Z3_context c,
  2. Z3_rcf_num a
)

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

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

Implementation

Z3_rcf_num rcf_inv(
  Z3_context c,
  Z3_rcf_num a,
) {
  return _rcf_inv(
    c,
    a,
  );
}