コード例 #1
0
 public static uint Calculate(int[] values) => CRC.Calculate(values.Length, values, 0);
コード例 #2
0
 /// <inheritdoc />
 public override int GetHashCode()
 {
     return((int)CRC.Calculate(this.length, this.x, this.offset));
 }
コード例 #3
0
ファイル: SparseVectorF.cs プロジェクト: arnavdas88/dnn
 /// <inheritdoc />
 public override int GetHashCode()
 {
     return((int)(CRC.Calculate(this.Idx.Length, this.Idx, 0) & CRC.Calculate(this.Idx.Length, this.X, 0)));
 }
コード例 #4
0
ファイル: DenseVectorF.cs プロジェクト: arnavdas88/dnn
 /// <inheritdoc />
 public override int GetHashCode()
 {
     return((int)CRC.Calculate(this.x));
 }