fixedpoint_register_relation method

void fixedpoint_register_relation(
  1. Z3_context c,
  2. Z3_fixedpoint d,
  3. Z3_func_decl f
)

\brief Register relation as Fixedpoint defined. Fixedpoint defined relations have least-fixedpoint semantics. For example, the relation is empty if it does not occur in a head or a fact.

def_API('Z3_fixedpoint_register_relation', VOID, (_in(CONTEXT), _in(FIXEDPOINT), _in(FUNC_DECL)))

Implementation

void fixedpoint_register_relation(
  Z3_context c,
  Z3_fixedpoint d,
  Z3_func_decl f,
) {
  return _fixedpoint_register_relation(
    c,
    d,
    f,
  );
}