reserve G for _Graph;

theorem
  G is edgeless iff VertexAdjSymRel(G) is empty
proof
  hereby
    assume G is edgeless;
    then VertexDomRel(G) is empty;
    hence VertexAdjSymRel(G) is empty;
  end;
  thus thesis;
end;
