goal_precision method

int goal_precision(
  1. Z3_context c,
  2. Z3_goal g
)

\brief Return the "precision" of the given goal. Goals can be transformed using over and under approximations. A under approximation is applied when the objective is to find a model for a given goal. An over approximation is applied when the objective is to find a proof for a given goal.

def_API('Z3_goal_precision', UINT, (_in(CONTEXT), _in(GOAL)))

Implementation

int goal_precision(
  Z3_context c,
  Z3_goal g,
) {
  return _goal_precision(
    c,
    g,
  );
}