pub unsafe extern "C" fn Z3_fixedpoint_query(
c: Z3_context,
d: Z3_fixedpoint,
query: Z3_ast,
) -> Z3_lboolExpand description
Pose a query against the asserted rules.
query ::= (exists (bound-vars) query)
| literalsquery returns
Z3_L_FALSEif the query is unsatisfiable.Z3_L_TRUEif the query is satisfiable. Obtain the answer by callingZ3_fixedpoint_get_answer.Z3_L_UNDEFif the query was interrupted, timed out or otherwise failed.