goal_is_decided_sat method

bool goal_is_decided_sat(
  1. Z3_context c,
  2. Z3_goal g
)

\brief Return \c true if the goal is empty, and it is precise or the product of a under approximation.

def_API('Z3_goal_is_decided_sat', BOOL, (_in(CONTEXT), _in(GOAL)))

Implementation

bool goal_is_decided_sat(
  Z3_context c,
  Z3_goal g,
) {
  return _goal_is_decided_sat(
    c,
    g,
  );
}