simplifier_get_help method
\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,
);
}