Def dfl-traversal(the_graph;L;s) == (
i:Vertices(the_graph), s1,s2:traversal(the_graph). s = (s1 @ [inr(i)] @ s2)
traversal(the_graph) 
(
j:Vertices(the_graph). (inr(j)
s2) 
(inl(j)
s2) 
j-the_graph- > *i)) & (
j:Vertices(the_graph). (inr(j)
s) 
L-the_graph- > *j) & (
i:Vertices(the_graph), s1,s2:traversal(the_graph). (
j:Vertices(the_graph). i-the_graph- > *j 
non-trivial-loop(the_graph;j)) 
s = (s1 @ [inl(i)] @ s2)
traversal(the_graph) 
L-the_graph- > *i)
is mentioned
In prior sections:
graph 1 2
graph 1 3