// 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 q nets transformed so that they can be used as if they were DigitalNetBase2 // details: an Element "a_i X^i" is represented as binary eq-tuple "a_i" // each "column" c of the GF(q) generator is replaced by the eq columns X^i c // so we have the eq-times numbers of columns and rows as in the GF(q) matrix // Note, the strength remains the GF(q) strength k, but there are many projections have strength in the range k to eq*k // check if everything that involves GF(q) multiplication (e.g. scrambling) gives the desired result 2 // b (base) 8 // numCols 8 // numRows // outDigits= numRows 256 // numPoints (=b^{numCols}) 16 // dim // 2 // Stregth, see comment above // in class DigitalNetBase2 // genMat[i] should be the i-th number below // 1 134217728 268435456 536870912 1073741824 142606336 285212672 570425344 1140850688 // 2 134217728 268435456 536870912 1073741824 285212672 570425344 1140850688 427819008 // 3 134217728 268435456 536870912 1073741824 570425344 1140850688 427819008 855638016 // 4 134217728 268435456 536870912 1073741824 1140850688 427819008 855638016 1711276032 // 5 134217728 268435456 536870912 1073741824 427819008 855638016 1711276032 1568669696 // 6 134217728 268435456 536870912 1073741824 855638016 1711276032 1568669696 713031680 // 7 134217728 268435456 536870912 1073741824 1711276032 1568669696 713031680 1426063360 // 8 134217728 268435456 536870912 1073741824 1568669696 713031680 1426063360 998244352 // 9 134217728 268435456 536870912 1073741824 713031680 1426063360 998244352 1996488704 // 10 134217728 268435456 536870912 1073741824 1426063360 998244352 1996488704 2139095040 // 11 134217728 268435456 536870912 1073741824 998244352 1996488704 2139095040 1853882368 // 12 134217728 268435456 536870912 1073741824 1996488704 2139095040 1853882368 1283457024 // 13 134217728 268435456 536870912 1073741824 2139095040 1853882368 1283457024 142606336 // 14 134217728 268435456 536870912 1073741824 1853882368 1283457024 142606336 285212672 // 15 134217728 268435456 536870912 1073741824 1283457024 142606336 285212672 570425344 // 16 134217728 268435456 536870912 1073741824 8388608 16777216 33554432 67108864 // end of file