fixedpoint_get_statistics method

Z3_stats fixedpoint_get_statistics(
  1. Z3_context c,
  2. Z3_fixedpoint d
)

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