func_interp_set_else method

void func_interp_set_else(
  1. Z3_context c,
  2. Z3_func_interp f,
  3. Z3_ast else_value
)

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