pub unsafe extern "C" fn Z3_fixedpoint_query_relations(
c: Z3_context,
d: Z3_fixedpoint,
num_relations: c_uint,
relations: *const Z3_func_decl,
) -> Z3_lboolExpand description
Pose multiple queries against the asserted rules.
The queries are encoded as relations (function declarations).
query 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.