goal_inconsistent method
\brief Return \c true if the given goal contains the formula \c false.
def_API('Z3_goal_inconsistent', BOOL, (_in(CONTEXT), _in(GOAL)))
Implementation
bool goal_inconsistent(
Z3_context c,
Z3_goal g,
) {
return _goal_inconsistent(
c,
g,
);
}