13 lines
290 B
Text
13 lines
290 B
Text
def default_smt_pre_config : smt_pre_config := {}
|
||
|
||
def my_pre_config1 : smt_pre_config :=
|
||
{ default_smt_pre_config . zeta := tt }
|
||
|
||
def my_pre_config2 : smt_pre_config :=
|
||
{ default_smt_pre_config with zeta := tt }
|
||
|
||
structure st :=
|
||
(i : ℕ)
|
||
|
||
example (s : st) : unit × st :=
|
||
{s with i := 0}
|