fixedpoint_update_rule method

void fixedpoint_update_rule(
  1. Z3_context c,
  2. Z3_fixedpoint d,
  3. Z3_ast a,
  4. Z3_symbol name,
)

\brief Update a named rule. A rule with the same name must have been previously created.

def_API('Z3_fixedpoint_update_rule', VOID, (_in(CONTEXT), _in(FIXEDPOINT), _in(AST), _in(SYMBOL)))

Implementation

void fixedpoint_update_rule(
  Z3_context c,
  Z3_fixedpoint d,
  Z3_ast a,
  Z3_symbol name,
) {
  return _fixedpoint_update_rule(
    c,
    d,
    a,
    name,
  );
}