solver_congruence_next method

Z3_ast solver_congruence_next(
  1. Z3_context c,
  2. Z3_solver s,
  3. Z3_ast a
)

\brief retrieve the next expression in the congruence class. The set of congruent siblings form a cyclic list. Repeated calls on the siblings will result in returning to the original expression.

def_API('Z3_solver_congruence_next', AST, (_in(CONTEXT), _in(SOLVER), _in(AST)))

Implementation

Z3_ast solver_congruence_next(
  Z3_context c,
  Z3_solver s,
  Z3_ast a,
) {
  return _solver_congruence_next(
    c,
    s,
    a,
  );
}