func_interp_set_else method
\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 can be used to update the 'else' value.
def_API('Z3_func_interp_set_else', VOID, (_in(CONTEXT), _in(FUNC_INTERP), _in(AST)))
Implementation
void func_interp_set_else(
Z3_context c,
Z3_func_interp f,
Z3_ast else_value,
) {
return _func_interp_set_else(
c,
f,
else_value,
);
}