reserve E,V for set, G,G1,G2 for _Graph, c,c1,c2 for Cardinal, n for Nat;
reserve f for VColoring of G;
reserve g for EColoring of G;
reserve t for TColoring of G;

theorem
  G1 == G2 implies G1.tChromaticNum() = G2.tChromaticNum()
proof
  assume A1: G1 == G2;
  per cases;
  suppose G1 is non loopless;
    then G1 is non loopless & G2 is non loopless by A1, GLIB_000:89;
    then G1.tChromaticNum() = 0 & G2.tChromaticNum() = 0;
    hence thesis;
  end;
  suppose G1 is loopless;
    then G2 is G1.tChromaticNum()-tcolorable &
      for c st G2 is c-tcolorable holds G1.tChromaticNum() c= c
      by A1, Th167, Th186, Th189;
    hence thesis by Th190;
  end;
end;
