// 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) 6 // numCols 6 // numRows // outDigits= numRows 64 // numPoints (=b^{numCols}) 4 // dim // 3 // Stregth, see comment above // in class DigitalNetBase2 // genMat[i] should be the i-th number below // 1 536870912 1073741824 570425344 1140850688 671088640 1342177280 // 2 536870912 1073741824 1174405120 1644167168 1879048192 939524096 // 3 536870912 1073741824 1677721600 637534208 1476395008 1744830464 // 4 536870912 1073741824 33554432 67108864 134217728 268435456 // end of file