cbc81ea6c5
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
10 lines
245 B
Text
10 lines
245 B
Text
import logic
|
|
|
|
hypothesis I : Type
|
|
definition F (X : Type) : Type := (X → Prop) → Prop
|
|
hypothesis unfold : I → F I
|
|
hypothesis fold : F I → I
|
|
hypothesis iso1 : ∀x, fold (unfold x) = x
|
|
|
|
theorem iso2 : ∀x, fold (unfold x) = x
|
|
:= sorry
|