func_interp_get_else method

Z3_ast func_interp_get_else(
  1. Z3_context c,
  2. Z3_func_interp f
)

\brief Return the 'else' value of the given function interpretation.

A function interpretation is represented as a finite map and an 'else' value. This procedure returns the 'else' value.

def_API('Z3_func_interp_get_else', AST, (_in(CONTEXT), _in(FUNC_INTERP)))

Implementation

Z3_ast func_interp_get_else(
  Z3_context c,
  Z3_func_interp f,
) {
  return _func_interp_get_else(
    c,
    f,
  );
}