fixedpoint_assert method
\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,
);
}