simplifier_get_descr method

Z3_string simplifier_get_descr(
  1. Z3_context c,
  2. Z3_string name
)

\brief Return a string containing a description of the simplifier with the given name.

def_API('Z3_simplifier_get_descr', STRING, (_in(CONTEXT), _in(STRING)))

Implementation

Z3_string simplifier_get_descr(
  Z3_context c,
  Z3_string name,
) {
  return _simplifier_get_descr(
    c,
    name,
  );
}