For quantifier free problems, Z3 (3.2) will select for the else the value that occurs more often in the range. By range here, I mean the finite set of values that Z3 assigned to a particular finite set of input values. In our example, only true occurs in the range. Thus, true is selected as the else value.
For quantifier free (and array free) problems, if the option :model-compact true is not used, then the value of the else doesn’t matter.
That is, if the formula F is satisfiable, Z3 will produce a model M. Then, if we change the value of any else in M, the resultant model M’ is still a model for F.
Thus, you can ignore the else, or assume it is whatever you want, IF the input formula F is quantifier free, F does not use array theory, and :model-compact true is not used.
This property is based on the algorithms currently implemented in Z3, and this may change in the future.
In contrast, the solution provided by mhs is not affected by changes in the implementation of Z3. In his encoding, any SMT solver (that succeeds in producing a model) will have to use false as the value of the function in every point not specified in the antecedent of the quantifier.
Another option is to use the default operator, and encode your problem using arrays.
When, the default operator is used, we should view arrays as pairs: (Actual Array, Default value).
This Default Value is used to provide the else value during model construction.
Z3 also has several builtin axioms to propagate default values over: store and map operators.
Here is your problem encoded using this approach:
(set-option :produce-models true)
(declare-const FPolicy (Array Int Int Int Bool))
(assert (select FPolicy 0 1 30))
(assert (select FPolicy 0 2 20))
(assert (not (default FPolicy)))
(check-sat)
(get-model)