simplifier_and_then method

Z3_simplifier simplifier_and_then(
  1. Z3_context c,
  2. Z3_simplifier t1,
  3. Z3_simplifier t2
)

\brief Return a simplifier that applies \c t1 to a given goal and \c t2 to every subgoal produced by \c t1.

def_API('Z3_simplifier_and_then', SIMPLIFIER, (_in(CONTEXT), _in(SIMPLIFIER), _in(SIMPLIFIER)))

Implementation

Z3_simplifier simplifier_and_then(
  Z3_context c,
  Z3_simplifier t1,
  Z3_simplifier t2,
) {
  return _simplifier_and_then(
    c,
    t1,
    t2,
  );
}