예제 #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="Param">Value from Cor or Dif Matrix</param>
 /// <param name="inputs"></param>
 /// <param name="outputs"></param>
 /// <param name="length"></param>
 public BlockState(Int64 MatrixValue, int inputs, int outputs, int length)
 {
     _length          = length;
     this.MatrixValue = MatrixValue;
     _inputs          = WayConverter.ToList(inputs, _length);
     _outputs         = WayConverter.ToList(outputs, _length);
 }
예제 #2
0
 public SolverInputs(long Input, int length)
 {
     input  = WayConverter.ToList(Input, length);
     weight = 0;
 }