Esempio n. 1
0
 public override bool Equals(AVertex other)
 {
     return(CompareTo(other) == 0);
 }
Esempio n. 2
0
 public override int CompareTo(AVertex other)
 {
     return(data.CompareTo(((Vertex)other).data));
 }