solver_get_statistics method

Z3_stats solver_get_statistics(
  1. Z3_context c,
  2. Z3_solver s
)

\brief Return statistics for the given solver.

\remark User must use #Z3_stats_inc_ref and #Z3_stats_dec_ref to manage Z3_stats objects.

def_API('Z3_solver_get_statistics', STATS, (_in(CONTEXT), _in(SOLVER)))

Implementation

Z3_stats solver_get_statistics(
  Z3_context c,
  Z3_solver s,
) {
  return _solver_get_statistics(
    c,
    s,
  );
}