theorem
  for G1, G2 being GraphFromSymRel of V, E
  holds the_Vertices_of G1 = the_Vertices_of G2
proof
  let G1, G2 be GraphFromSymRel of V, E;
  set G0 = createGraph(V,E);
  the_Vertices_of G1 = the_Vertices_of G0 &
    the_Vertices_of G2 = the_Vertices_of G0 by GLIB_000:def 33;
  hence thesis;
end;
