goal_inconsistent method

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

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