relaxedAutoImplicit
relaxedAutoImplicit オプションは、autoImplicit オプションの派生オプションであり、自動束縛の対象を広げます。
-- `autoImplicit` は有効にしておく
set_option autoImplicit true
section
-- `relaxedAutoImplicit` が無効の時
set_option relaxedAutoImplicit false
-- 二文字の識別子は自動束縛の対象にならないのでエラーになる
/-
error: Unknown identifier `AB`
Note: It is not possible to treat `AB` as an implicitly bound variable here because it has multiple characters while the `relaxedAutoImplicit` option is set to `false`.
-/
def nonempty₁ : List AB → Bool
| [] => false
| _ :: _ => true
end
section
-- `relaxedAutoImplicit` が有効の時
set_option relaxedAutoImplicit true
-- 二文字の識別子も自動束縛の対象になるのでエラーにならない
def nonempty₂ : List AB → Bool
| [] => false
| _ :: _ => true
end