simplifier_get_help method

Z3_string simplifier_get_help(
  1. Z3_context c,
  2. Z3_simplifier t
)

\brief Return a string containing a description of parameters accepted by the given simplifier.

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

Implementation

Z3_string simplifier_get_help(
  Z3_context c,
  Z3_simplifier t,
) {
  return _simplifier_get_help(
    c,
    t,
  );
}