let G be _Graph; :: thesis: ( ( for v being Vertex of G holds
( v .inNeighbors() c= (the_Vertices_of G) \ {v} or v .outNeighbors() c= (the_Vertices_of G) \ {v} or v .allNeighbors() c= (the_Vertices_of G) \ {v} ) ) implies G is loopless )

assume A1: for v being Vertex of G holds
( v .inNeighbors() c= (the_Vertices_of G) \ {v} or v .outNeighbors() c= (the_Vertices_of G) \ {v} or v .allNeighbors() c= (the_Vertices_of G) \ {v} ) ; :: thesis: G is loopless
now :: thesis: for v, e being object holds not e Joins v,v,Gend;
hence G is loopless by Th18; :: thesis: verum