rcf_del method

void rcf_del(
  1. Z3_context c,
  2. Z3_rcf_num a
)

@name Real Closed Fields / /**@{/ /** \brief Delete a RCF numeral created using the RCF API.

def_API('Z3_rcf_del', VOID, (_in(CONTEXT), _in(RCF_NUM)))

Implementation

void rcf_del(
  Z3_context c,
  Z3_rcf_num a,
) {
  return _rcf_del(
    c,
    a,
  );
}