Th5:
for G being _Graph
for C being Walk of G
for u, v, w being object st C is Cycle-like & u in C .vertices() & v in C .vertices() & u <> w & v <> w holds
ex W being Path of G st
( W is_Walk_from u,v & not w in W .vertices() )
by GLIBPRE1:130;
Lm1:
for T being non _trivial Tree-like _Graph
for v being Vertex of T
for F being removeVertex of T,v
for C being Component of F
for w1, w2 being Vertex of F st w1 <> w2 & w1 in the_Vertices_of C & w2 in the_Vertices_of C & w1 in v .allNeighbors() holds
not w2 in v .allNeighbors()
Th8:
for G being complete _Graph st 3 c= G .order() holds
not G is acyclic
by GLIB_013:100;
Th13:
for G being _Graph
for n being Nat st ( for v being Vertex of G holds v .degree() c= n ) holds
G is with_max_degree
by GLIB_013:101;
Th16:
for G being _Graph
for C being Component of G holds
( G .minDegree() c= C .minDegree() & G .minInDegree() c= C .minInDegree() & G .minOutDegree() c= C .minOutDegree() )
by GLIB_013:104;
Lm2:
for F being ManySortedSet of NAT
for n being object holds
( n is Nat iff n in dom F )
Lm3:
for G1, G2 being _Graph st G1 == G2 & G1 is Path-like holds
G2 is Path-like
Lm4:
for p being non empty FinSequence
for x being object
for n being Nat holds
( not n <= (len (p ^ <*x*>)) - 1 or n = (len (p ^ <*x*>)) - 1 or n <= (len p) - 1 )
Lm5:
for G1, G2 being _Graph
for F being PGraphMapping of G1,G2 st F is isomorphism & G2 is Path-like holds
G1 is Path-like
Lm6:
for P being Path-like _Graph st P .order() = 2 holds
Endvertices P = the_Vertices_of P
Lm7:
for P being non _trivial Path-like _Graph holds
( ( P .order() = 2 implies P .maxDegree() = 1 ) & ( P .order() <> 2 implies P .maxDegree() = 2 ) )
Lm8:
for G2 being _Graph
for v, e, w being object
for G1 being addEdge of G2,v,e,w holds the_Vertices_of G1 = the_Vertices_of G2
:: into GLIB_000 ?