fixedpoint_assert method

void fixedpoint_assert(
  1. Z3_context c,
  2. Z3_fixedpoint d,
  3. Z3_ast axiom
)

\brief Assert a constraint to the fixedpoint context.

The constraints are used as background axioms when the fixedpoint engine uses the PDR mode. They are ignored for standard Datalog mode.

def_API('Z3_fixedpoint_assert', VOID, (_in(CONTEXT), _in(FIXEDPOINT), _in(AST)))

Implementation

void fixedpoint_assert(
  Z3_context c,
  Z3_fixedpoint d,
  Z3_ast axiom,
) {
  return _fixedpoint_assert(
    c,
    d,
    axiom,
  );
}