// MECF digital net of base q, with q^T points. If q=p^e the net is represented as net of base p with e-times more columns and rows Reference: Y. Edel, RS-Nets in prepertation // base 4 nets transformed so that they can be used as if they were DigitalNetBase2 // details: an Element "a+ b\omega" is represented as binary pair "a b" // each "column" c of the GF(4) generator is replaced by the two columns c, \omega c // so we have the double numbers of columns and rows as in the GF(4) matrix // Note, the strength remains the GF(4) strength k, but there are many projections have strength in the range k to 2k // check if everything that involves GF(4) multiplication (e.g. scrambling) gives the desired result 2 // b (base) 4 // numCols 4 // numRows // outDigits= numRows 16 // numPoints (=b^{numCols}) 4 // dim // 2 // Stregth, see comment above // in class DigitalNetBase2 // genMat[i] should be the i-th number below // 1 536870912 1073741824 671088640 1342177280 // 2 536870912 1073741824 1342177280 2013265920 // 3 536870912 1073741824 2013265920 671088640 // 4 536870912 1073741824 134217728 268435456 // end of file