solver_get_non_units method

Z3_ast_vector solver_get_non_units(
  1. Z3_context c,
  2. Z3_solver s
)

\brief Return the set of non units in the solver state.

def_API('Z3_solver_get_non_units', AST_VECTOR, (_in(CONTEXT), _in(SOLVER)))

Implementation

Z3_ast_vector solver_get_non_units(
  Z3_context c,
  Z3_solver s,
) {
  return _solver_get_non_units(
    c,
    s,
  );
}