fixedpoint_get_statistics method
\brief Retrieve statistics information from the last call to #Z3_fixedpoint_query.
def_API('Z3_fixedpoint_get_statistics', STATS, (_in(CONTEXT), _in(FIXEDPOINT)))
Implementation
Z3_stats fixedpoint_get_statistics(
Z3_context c,
Z3_fixedpoint d,
) {
return _fixedpoint_get_statistics(
c,
d,
);
}