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