Example #1
0
 public NodeGrouper(RegisterState registers)
 {
     DotProductGrouper           = new DotProductGrouper(this);
     LengthGrouper               = new LengthGrouper(this);
     MatrixMultiplicationGrouper = new MatrixMultiplicationGrouper(this, registers);
     NormalizeGrouper            = new NormalizeGrouper(this);
     _registers = registers;
 }
 public NodeGrouper(RegisterState registers)
 {
     MatrixMultiplicationGrouper = new MatrixMultiplicationGrouper(registers);
     NormalizeGrouper            = new NormalizeGrouper();
     _registers = registers;
 }