goal_is_decided_unsat method

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

\brief Return \c true if the goal contains false, and it is precise or the product of an over approximation.

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

Implementation

bool goal_is_decided_unsat(
  Z3_context c,
  Z3_goal g,
) {
  return _goal_is_decided_unsat(
    c,
    g,
  );
}