Definitions
mb
tree
Sections
MarkB
generic
Doc
IF YOU CAN SEE THIS go to /sfa/Nuprl/Shared/Xindentation_hack_doc.html
Some definitions of interest.
t_iterate
Def
t_iterate(
l
;
n
;
t
)
Def
== Case(
t
)
Def ==
Case
x
;
y
=>
Def == Case
n
(t_iterate(
l
;
n
;
x
),t_iterate(
l
;
n
;
y
))
Def ==
Case tree_leaf(
x
) =>
Def == Case
l
(
x
)
Def ==
Default => True
Def
(recursive)
Thm*
E
,
A
:Type,
l
:(
E
A
),
n
:(
A
A
A
),
t
:Tree(
E
). t_iterate(
l
;
n
;
t
)
A
tree
Def
Tree(
E
) == rec(
T
.tree_con(
E
;
T
))
Thm*
E
:Type. Tree(
E
)
Type
About:
IF YOU CAN SEE THIS go to /sfa/Nuprl/Shared/Xindentation_hack_doc.html
Definitions
mb
tree
Sections
MarkB
generic
Doc