graph
1
3
Sections
Graphs
Doc
Rank
Theorem
Name
14
Thm*
For any graph
the_obj:GraphObject(the_graph), P:(Traversal
Prop). P(nil)
(
s:Traversal, i:V. paren(V;s)
no_repeats(V+V;s)
P(s)
P(dfs(the_obj;s;i)))
paren(V;depthfirst(the_obj)) & no_repeats(V+V;depthfirst(the_obj)) & P(depthfirst(the_obj))
[depthfirst_induction2]
cites
13
Thm*
For any graph
the_obj:GraphObject(the_graph), P:((V List)
Traversal
Prop). P(nil,nil)
(
L:V List, s:Traversal, i:V. paren(V;s)
no_repeats(V+V;s)
P(L,s)
P(L @ [i],dfs(the_obj;s;i)))
(
L:V List. paren(V;dfsl(the_obj;L)) & no_repeats(V+V;dfsl(the_obj;L)) & P(L,dfsl(the_obj;L)))
[dfsl-induction2]
1
Thm*
For any graph
the_obj:GraphObject(the_graph).
L:V List. no_repeats(V;L) & (
y:V. (y
L)) & depthfirst(the_obj) = dfsl(the_obj;L)
[depthfirst-dfsl]
graph
1
3
Sections
Graphs
Doc