mk_simplifier method

Z3_simplifier mk_simplifier(
  1. Z3_context c,
  2. Z3_string name
)

\brief Return a simplifier associated with the given name. The complete list of simplifiers may be obtained using the procedures #Z3_get_num_simplifiers and #Z3_get_simplifier_name. It may also be obtained using the command \ccode{(help-simplifier)} in the SMT 2.0 front-end.

Simplifiers are the basic building block for creating custom solvers for specific problem domains.

def_API('Z3_mk_simplifier', SIMPLIFIER, (_in(CONTEXT), _in(STRING)))

Implementation

Z3_simplifier mk_simplifier(
  Z3_context c,
  Z3_string name,
) {
  return _mk_simplifier(
    c,
    name,
  );
}