コード例 #1
0
ファイル: Edge.java プロジェクト: wei-wang-523/cascade
  @Override
  public int hashCode() {
    int sourceHash = source.hashCode();
    int edgeHash = guard == null ? 0 : guard.hashCode();
    int targetHash = target.hashCode();

    return sourceHash ^ edgeHash ^ targetHash;
  }