optimize_get_statistics method

Z3_stats optimize_get_statistics(
  1. Z3_context c,
  2. Z3_optimize d
)

\brief Retrieve statistics information from the last call to #Z3_optimize_check

def_API('Z3_optimize_get_statistics', STATS, (_in(CONTEXT), _in(OPTIMIZE)))

Implementation

Z3_stats optimize_get_statistics(
  Z3_context c,
  Z3_optimize d,
) {
  return _optimize_get_statistics(
    c,
    d,
  );
}