Many thanks for your replies.
Skymmer, I just got up during the nigh, at the end of the day after work I'll post my RLE compressed sizes for the 2 subdbs I uploaded.
Matt, please don't forget men don't occupy all 32 squares, they can only occupy 28 squares.
Only kings can occupy any of the 32 squares. Also I don't use the original perfect gapless indexing scheme of Jonathan Schaffer (of wich I lost the paper), instead I follow Martin Fierz's faster but with gaps indexing scheme in wich white men and black men positions can overlap, but that is detectable during the EGTB generation and skiped as illegal positions, this gives slightly more positions than are necessary but since their w/d/l values are set to the dominant win/draw/loss value of a given subdatabase there is very little overhead in size after compression, the reason is for a faster position2index() calculation during real time gameplay.
Here's my subdatabase size calculation function:
Code:
dbint getdatabasesize_p(int Nbk, int Nwk, int Nbm, int Nwm) {
// needs binomial coefficients in the array bicoef[][] = choose from n, k
dbint dbsize = 1;
// number of bm configurations:
// there are bm black men subject to the constraint that one of them is on
// the square bmsquare
if(Nbm) dbsize *= bicoef[28][Nbm];
if(Nwm) dbsize *= bicoef[28][Nwm];
// number of bk configurations
if(Nbk) dbsize *= bicoef[32-Nbm-Nwm][Nbk];
// number of wk configurations
if(Nwk) dbsize *= bicoef[32-Nbm-Nwm-Nbk][Nwk];
return dbsize;
}
Also here's a list of all subdatabases size's of 8 or less pieces:
Computing 1100 Size = 992 Size/4 = 248
Computing 1001 and it's mirror 0110 Size = 868 x 2 Size/4 = 217 x 2
Computing 0011 Size = 784 Size/4 = 196
Computing 2100 and it's mirror 1200 Size = 14,880 x 2 Size/4 = 3,720 x 2
Computing 2001 and it's mirror 0210 Size = 13,020 x 2 Size/4 = 3,255 x 2
Computing 1110 and it's mirror 1101 Size = 26,040 x 2 Size/4 = 6,510 x 2
Computing 1011 and it's mirror 0111 Size = 23,520 x 2 Size/4 = 5,880 x 2
Computing 0120 and it's mirror 1002 Size = 11,340 x 2 Size/4 = 2,835 x 2
Computing 0021 and it's mirror 0012 Size = 10,584 x 2 Size/4 = 2,646 x 2
Computing 3100 and it's mirror 1300 Size = 143,840 x 2 Size/4 = 35,960 x 2
Computing 3001 and it's mirror 0310 Size = 125,860 x 2 Size/4 = 31,465 x 2
Computing 2110 and it's mirror 1201 Size = 377,580 x 2 Size/4 = 94,395 x 2
Computing 2011 and it's mirror 0211 Size = 341,040 x 2 Size/4 = 85,260 x 2
Computing 1120 and it's mirror 1102 Size = 328,860 x 2 Size/4 = 82,215 x 2
Computing 1021 and it's mirror 0112 Size = 306,936 x 2 Size/4 = 76,734 x 2
Computing 0130 and it's mirror 1003 Size = 95,004 x 2 Size/4 = 23,751 x 2
Computing 0031 and it's mirror 0013 Size = 91,728 x 2 Size/4 = 22,932 x 2
Computing 2200 Size = 215,760 Size/4 = 53,940
Computing 2101 and it's mirror 1210 Size = 377,580 x 2 Size/4 = 94,395 x 2
Computing 2002 and it's mirror 0220 Size = 164,430 x 2 Size/4 = 41,107 x 2
Computing 1111 Size = 682,080 Size/4 = 170,520
Computing 1012 and it's mirror 0121 Size = 306,936 x 2 Size/4 = 76,734 x 2
Computing 0022 Size = 142,884 Size/4 = 35,721
Computing 4100 and it's mirror 1400 Size = 1,006,880 x 2 Size/4 = 251,720 x 2
Computing 4001 and it's mirror 0410 Size = 881,020 x 2 Size/4 = 220,255 x 2
Computing 3110 and it's mirror 1301 Size = 3,524,080 x 2 Size/4 = 881,020 x 2
Computing 3011 and it's mirror 0311 Size = 3,183,040 x 2 Size/4 = 795,760 x 2
Computing 2120 and it's mirror 1202 Size = 4,604,040 x 2 Size/4 = 1,151,010 x 2
Computing 2021 and it's mirror 0212 Size = 4,297,104 x 2 Size/4 = 1,074,276 x 2
Computing 1130 and it's mirror 1103 Size = 2,660,112 x 2 Size/4 = 665,028 x 2
Computing 1031 and it's mirror 0113 Size = 2,568,384 x 2 Size/4 = 642,096 x 2
Computing 0140 and it's mirror 1004 Size = 573,300 x 2 Size/4 = 143,325 x 2
Computing 0041 and it's mirror 0014 Size = 573,300 x 2 Size/4 = 143,325 x 2
Computing 3200 and it's mirror 2300 Size = 2,013,760 x 2 Size/4 = 503,440 x 2
Computing 3101 and it's mirror 1310 Size = 3,524,080 x 2 Size/4 = 881,020 x 2
Computing 3002 and it's mirror 0320 Size = 1,534,680 x 2 Size/4 = 383,670 x 2
Computing 2210 and it's mirror 2201 Size = 5,286,120 x 2 Size/4 = 1,321,530 x 2
Computing 2111 and it's mirror 1211 Size = 9,549,120 x 2 Size/4 = 2,387,280 x 2
Computing 2012 and it's mirror 0221 Size = 4,297,104 x 2 Size/4 = 1,074,276 x 2
Computing 1220 and it's mirror 2102 Size = 4,604,040 x 2 Size/4 = 1,151,010 x 2
Computing 1121 and it's mirror 1112 Size = 8,594,208 x 2 Size/4 = 2,148,552 x 2
Computing 1022 and it's mirror 0122 Size = 4,000,752 x 2 Size/4 = 1,000,188 x 2
Computing 0230 and it's mirror 2003 Size = 1,330,056 x 2 Size/4 = 332,514 x 2
Computing 0131 and it's mirror 1013 Size = 2,568,384 x 2 Size/4 = 642,096 x 2
Computing 0032 and it's mirror 0023 Size = 1,238,328 x 2 Size/4 = 309,582 x 2
Computing 5100 and it's mirror 1500 Size = 5,437,152 x 2 Size/4 = 1,359,288 x 2
Computing 5001 and it's mirror 0510 Size = 4,757,508 x 2 Size/4 = 1,189,377 x 2
Computing 4110 and it's mirror 1401 Size = 23,787,540 x 2 Size/4 = 5,946,885 x 2
Computing 4011 and it's mirror 0411 Size = 21,485,520 x 2 Size/4 = 5,371,380 x 2
Computing 3120 and it's mirror 1302 Size = 41,436,360 x 2 Size/4 = 10,359,090 x 2
Computing 3021 and it's mirror 0312 Size = 38,673,936 x 2 Size/4 = 9,668,484 x 2
Computing 2130 and it's mirror 1203 Size = 35,911,512 x 2 Size/4 = 8,977,878 x 2
Computing 2031 and it's mirror 0213 Size = 34,673,184 x 2 Size/4 = 8,668,296 x 2
Computing 1140 and it's mirror 1104 Size = 15,479,100 x 2 Size/4 = 3,869,775 x 2
Computing 1041 and it's mirror 0114 Size = 15,479,100 x 2 Size/4 = 3,869,775 x 2
Computing 0150 and it's mirror 1005 Size = 2,653,560 x 2 Size/4 = 663,390 x 2
Computing 0051 and it's mirror 0015 Size = 2,751,840 x 2 Size/4 = 687,960 x 2
Computing 4200 and it's mirror 2400 Size = 13,592,880 x 2 Size/4 = 3,398,220 x 2
Computing 4101 and it's mirror 1410 Size = 23,787,540 x 2 Size/4 = 5,946,885 x 2
Computing 4002 and it's mirror 0420 Size = 10,359,090 x 2 Size/4 = 2,589,772 x 2
Computing 3210 and it's mirror 2301 Size = 47,575,080 x 2 Size/4 = 11,893,770 x 2
Computing 3111 and it's mirror 1311 Size = 85,942,080 x 2 Size/4 = 21,485,520 x 2
Computing 3012 and it's mirror 0321 Size = 38,673,936 x 2 Size/4 = 9,668,484 x 2
Computing 2220 and it's mirror 2202 Size = 62,154,540 x 2 Size/4 = 15,538,635 x 2
Computing 2121 and it's mirror 1212 Size = 116,021,808 x 2 Size/4 = 29,005,452 x 2
Computing 2022 and it's mirror 0222 Size = 54,010,152 x 2 Size/4 = 13,502,538 x 2
Computing 1230 and it's mirror 2103 Size = 35,911,512 x 2 Size/4 = 8,977,878 x 2
Computing 1131 and it's mirror 1113 Size = 69,346,368 x 2 Size/4 = 17,336,592 x 2
Computing 1032 and it's mirror 0123 Size = 33,434,856 x 2 Size/4 = 8,358,714 x 2
Computing 0240 and it's mirror 2004 Size = 7,739,550 x 2 Size/4 = 1,934,887 x 2
Computing 0141 and it's mirror 1014 Size = 15,479,100 x 2 Size/4 = 3,869,775 x 2
Computing 0042 and it's mirror 0024 Size = 7,739,550 x 2 Size/4 = 1,934,887 x 2
Computing 3300 Size = 18,123,840 Size/4 = 4,530,960
Computing 3201 and it's mirror 2310 Size = 47,575,080 x 2 Size/4 = 11,893,770 x 2
Computing 3102 and it's mirror 1320 Size = 41,436,360 x 2 Size/4 = 10,359,090 x 2
Computing 3003 and it's mirror 0330 Size = 11,970,504 x 2 Size/4 = 2,992,626 x 2
Computing 2211 Size = 128,913,120 Size/4 = 32,228,280
Computing 2112 and it's mirror 1221 Size = 116,021,808 x 2 Size/4 = 29,005,452 x 2
Computing 2013 and it's mirror 0231 Size = 34,673,184 x 2 Size/4 = 8,668,296 x 2
Computing 1122 Size = 108,020,304 Size/4 = 27,005,076
Computing 1023 and it's mirror 0132 Size = 33,434,856 x 2 Size/4 = 8,358,714 x 2
Computing 0033 Size = 10,732,176 Size/4 = 2,683,044
Computing 6100 and it's mirror 1600 Size = 23,560,992 x 2 Size/4 = 5,890,248 x 2
Computing 6001 and it's mirror 0610 Size = 20,615,868 x 2 Size/4 = 5,153,967 x 2
Computing 5110 and it's mirror 1501 Size = 123,695,208 x 2 Size/4 = 30,923,802 x 2
Computing 5011 and it's mirror 0511 Size = 111,724,704 x 2 Size/4 = 27,931,176 x 2
Computing 4120 and it's mirror 1402 Size = 269,336,340 x 2 Size/4 = 67,334,085 x 2
Computing 4021 and it's mirror 0412 Size = 251,380,584 x 2 Size/4 = 62,845,146 x 2
Computing 3130 and it's mirror 1303 Size = 311,233,104 x 2 Size/4 = 77,808,276 x 2
Computing 3031 and it's mirror 0313 Size = 300,500,928 x 2 Size/4 = 75,125,232 x 2
Computing 2140 and it's mirror 1204 Size = 201,228,300 x 2 Size/4 = 50,307,075 x 2
Computing 2041 and it's mirror 0214 Size = 201,228,300 x 2 Size/4 = 50,307,075 x 2
Computing 1150 and it's mirror 1105 Size = 68,992,560 x 2 Size/4 = 17,248,140 x 2
Computing 1051 and it's mirror 0115 Size = 71,547,840 x 2 Size/4 = 17,886,960 x 2
Computing 0160 and it's mirror 1006 Size = 9,795,240 x 2 Size/4 = 2,448,810 x 2
Computing 0061 and it's mirror 0016 Size = 10,548,720 x 2 Size/4 = 2,637,180 x 2
Computing 5200 and it's mirror 2500 Size = 70,682,976 x 2 Size/4 = 17,670,744 x 2
Computing 5101 and it's mirror 1510 Size = 123,695,208 x 2 Size/4 = 30,923,802 x 2
Computing 5002 and it's mirror 0520 Size = 53,867,268 x 2 Size/4 = 13,466,817 x 2
Computing 4210 and it's mirror 2401 Size = 309,238,020 x 2 Size/4 = 77,309,505 x 2
Computing 4111 and it's mirror 1411 Size = 558,623,520 x 2 Size/4 = 139,655,880 x 2
Computing 4012 and it's mirror 0421 Size = 251,380,584 x 2 Size/4 = 62,845,146 x 2
Computing 3220 and it's mirror 2302 Size = 538,672,680 x 2 Size/4 = 134,668,170 x 2
Computing 3121 and it's mirror 1312 Size = 1,005,522,336 x 2 Size/4 = 251,380,584 x 2
Computing 3022 and it's mirror 0322 Size = 468,087,984 x 2 Size/4 = 117,021,996 x 2
Computing 2230 and it's mirror 2203 Size = 466,849,656 x 2 Size/4 = 116,712,414 x 2
Computing 2131 and it's mirror 1213 Size = 901,502,784 x 2 Size/4 = 225,375,696 x 2
Computing 2032 and it's mirror 0223 Size = 434,653,128 x 2 Size/4 = 108,663,282 x 2
Computing 1240 and it's mirror 2104 Size = 201,228,300 x 2 Size/4 = 50,307,075 x 2
Computing 1141 and it's mirror 1114 Size = 402,456,600 x 2 Size/4 = 100,614,150 x 2
Computing 1042 and it's mirror 0124 Size = 201,228,300 x 2 Size/4 = 50,307,075 x 2
Computing 0250 and it's mirror 2005 Size = 34,496,280 x 2 Size/4 = 8,624,070 x 2
Computing 0151 and it's mirror 1015 Size = 71,547,840 x 2 Size/4 = 17,886,960 x 2
Computing 0052 and it's mirror 0025 Size = 37,149,840 x 2 Size/4 = 9,287,460 x 2
Computing 4300 and it's mirror 3400 Size = 117,804,960 x 2 Size/4 = 29,451,240 x 2
Computing 4201 and it's mirror 2410 Size = 309,238,020 x 2 Size/4 = 77,309,505 x 2
Computing 4102 and it's mirror 1420 Size = 269,336,340 x 2 Size/4 = 67,334,085 x 2
Computing 4003 and it's mirror 0430 Size = 77,808,276 x 2 Size/4 = 19,452,069 x 2
Computing 3310 and it's mirror 3301 Size = 412,317,360 x 2 Size/4 = 103,079,340 x 2
Computing 3211 and it's mirror 2311 Size = 1,117,247,040 x 2 Size/4 = 279,311,760 x 2
Computing 3112 and it's mirror 1321 Size = 1,005,522,336 x 2 Size/4 = 251,380,584 x 2
Computing 3013 and it's mirror 0331 Size = 300,500,928 x 2 Size/4 = 75,125,232 x 2
Computing 2320 and it's mirror 3202 Size = 538,672,680 x 2 Size/4 = 134,668,170 x 2
Computing 2221 and it's mirror 2212 Size = 1,508,283,504 x 2 Size/4 = 377,070,876 x 2
Computing 2122 and it's mirror 1222 Size = 1,404,263,952 x 2 Size/4 = 351,065,988 x 2
Computing 2023 and it's mirror 0232 Size = 434,653,128 x 2 Size/4 = 108,663,282 x 2
Computing 1330 and it's mirror 3103 Size = 311,233,104 x 2 Size/4 = 77,808,276 x 2
Computing 1231 and it's mirror 2113 Size = 901,502,784 x 2 Size/4 = 225,375,696 x 2
Computing 1132 and it's mirror 1123 Size = 869,306,256 x 2 Size/4 = 217,326,564 x 2
Computing 1033 and it's mirror 0133 Size = 279,036,576 x 2 Size/4 = 69,759,144 x 2
Computing 0340 and it's mirror 3004 Size = 67,076,100 x 2 Size/4 = 16,769,025 x 2
Computing 0241 and it's mirror 2014 Size = 201,228,300 x 2 Size/4 = 50,307,075 x 2
Computing 0142 and it's mirror 1024 Size = 201,228,300 x 2 Size/4 = 50,307,075 x 2
Computing 0043 and it's mirror 0034 Size = 67,076,100 x 2 Size/4 = 16,769,025 x 2
Computing 7100 and it's mirror 1700 Size = 84,146,400 x 2 Size/4 = 21,036,600 x 2
Computing 7001 and it's mirror 0710 Size = 73,628,100 x 2 Size/4 = 18,407,025 x 2
Computing 6110 and it's mirror 1601 Size = 515,396,700 x 2 Size/4 = 128,849,175 x 2
Computing 6011 and it's mirror 0611 Size = 465,519,600 x 2 Size/4 = 116,379,900 x 2
Computing 5120 and it's mirror 1502 Size = 1,346,681,700 x 2 Size/4 = 336,670,425 x 2
Computing 5021 and it's mirror 0512 Size = 1,256,902,920 x 2 Size/4 = 314,225,730 x 2
Computing 4130 and it's mirror 1403 Size = 1,945,206,900 x 2 Size/4 = 486,301,725 x 2
Computing 4031 and it's mirror 0413 Size = 1,878,130,800 x 2 Size/4 = 469,532,700 x 2
Computing 3140 and it's mirror 1304 Size = 1,676,902,500 x 2 Size/4 = 419,225,625 x 2
Computing 3041 and it's mirror 0314 Size = 1,676,902,500 x 2 Size/4 = 419,225,625 x 2
Computing 2150 and it's mirror 1205 Size = 862,407,000 x 2 Size/4 = 215,601,750 x 2
Computing 2051 and it's mirror 0215 Size = 894,348,000 x 2 Size/4 = 223,587,000 x 2
Computing 1160 and it's mirror 1106 Size = 244,881,000 x 2 Size/4 = 61,220,250 x 2
Computing 1061 and it's mirror 0116 Size = 263,718,000 x 2 Size/4 = 65,929,500 x 2
Computing 0170 and it's mirror 1007 Size = 29,601,000 x 2 Size/4 = 7,400,250 x 2
Computing 0071 and it's mirror 0017 Size = 33,153,120 x 2 Size/4 = 8,288,280 x 2
Computing 6200 and it's mirror 2600 Size = 294,512,400 x 2 Size/4 = 73,628,100 x 2
Computing 6101 and it's mirror 1610 Size = 515,396,700 x 2 Size/4 = 128,849,175 x 2
Computing 6002 and it's mirror 0620 Size = 224,446,950 x 2 Size/4 = 56,111,737 x 2
Computing 5210 and it's mirror 2501 Size = 1,546,190,100 x 2 Size/4 = 386,547,525 x 2
Computing 5111 and it's mirror 1511 Size = 2,793,117,600 x 2 Size/4 = 698,279,400 x 2
Computing 5012 and it's mirror 0521 Size = 1,256,902,920 x 2 Size/4 = 314,225,730 x 2
Computing 4220 and it's mirror 2402 Size = 3,366,704,250 x 2 Size/4 = 841,676,062 x 2
Computing 4121 and it's mirror 1412 Size = 6,284,514,600 x 2 Size/4 = 1,571,128,650 x 2
Computing 4022 and it's mirror 0422 Size = 2,925,549,900 x 2 Size/4 = 731,387,475 x 2
Computing 3230 and it's mirror 2303 Size = 3,890,413,800 x 2 Size/4 = 972,603,450 x 2
Computing 3131 and it's mirror 1313 Size = 7,512,523,200 x 2 Size/4 = 1,878,130,800 x 2
Computing 3032 and it's mirror 0323 Size = 3,622,109,400 x 2 Size/4 = 905,527,350 x 2
Computing 2240 and it's mirror 2204 Size = 2,515,353,750 x 2 Size/4 = 628,838,437 x 2
Computing 2141 and it's mirror 1214 Size = 5,030,707,500 x 2 Size/4 = 1,257,676,875 x 2
Computing 2042 and it's mirror 0224 Size = 2,515,353,750 x 2 Size/4 = 628,838,437 x 2
Computing 1250 and it's mirror 2105 Size = 862,407,000 x 2 Size/4 = 215,601,750 x 2
Computing 1151 and it's mirror 1115 Size = 1,788,696,000 x 2 Size/4 = 447,174,000 x 2
Computing 1052 and it's mirror 0125 Size = 928,746,000 x 2 Size/4 = 232,186,500 x 2
Computing 0260 and it's mirror 2006 Size = 122,440,500 x 2 Size/4 = 30,610,125 x 2
Computing 0161 and it's mirror 1016 Size = 263,718,000 x 2 Size/4 = 65,929,500 x 2
Computing 0062 and it's mirror 0026 Size = 142,407,720 x 2 Size/4 = 35,601,930 x 2
Computing 5300 and it's mirror 3500 Size = 589,024,800 x 2 Size/4 = 147,256,200 x 2
Computing 5201 and it's mirror 2510 Size = 1,546,190,100 x 2 Size/4 = 386,547,525 x 2
Computing 5102 and it's mirror 1520 Size = 1,346,681,700 x 2 Size/4 = 336,670,425 x 2
Computing 5003 and it's mirror 0530 Size = 389,041,380 x 2 Size/4 = 97,260,345 x 2
Computing 4310 and it's mirror 3401 Size = 2,576,983,500 x 2 Size/4 = 644,245,875 x 2
Computing 4211 and it's mirror 2411 Size = 6,982,794,000 x 2 Size/4 = 1,745,698,500 x 2
Computing 4112 and it's mirror 1421 Size = 6,284,514,600 x 2 Size/4 = 1,571,128,650 x 2
Computing 4013 and it's mirror 0431 Size = 1,878,130,800 x 2 Size/4 = 469,532,700 x 2
Computing 3320 and it's mirror 3302 Size = 4,488,939,000 x 2 Size/4 = 1,122,234,750 x 2
Computing 3221 and it's mirror 2312 Size = 12,569,029,200 x 2 Size/4 = 3,142,257,300 x 2
Computing 3122 and it's mirror 1322 Size = 11,702,199,600 x 2 Size/4 = 2,925,549,900 x 2
Computing 3023 and it's mirror 0332 Size = 3,622,109,400 x 2 Size/4 = 905,527,350 x 2
Computing 2330 and it's mirror 3203 Size = 3,890,413,800 x 2 Size/4 = 972,603,450 x 2
Computing 2231 and it's mirror 2213 Size = 11,268,784,800 x 2 Size/4 = 2,817,196,200 x 2
Computing 2132 and it's mirror 1223 Size = 10,866,328,200 x 2 Size/4 = 2,716,582,050 x 2
Computing 2033 and it's mirror 0233 Size = 3,487,957,200 x 2 Size/4 = 871,989,300 x 2
Computing 1340 and it's mirror 3104 Size = 1,676,902,500 x 2 Size/4 = 419,225,625 x 2
Computing 1241 and it's mirror 2114 Size = 5,030,707,500 x 2 Size/4 = 1,257,676,875 x 2
Computing 1142 and it's mirror 1124 Size = 5,030,707,500 x 2 Size/4 = 1,257,676,875 x 2
Computing 1043 and it's mirror 0134 Size = 1,676,902,500 x 2 Size/4 = 419,225,625 x 2
Computing 0350 and it's mirror 3005 Size = 287,469,000 x 2 Size/4 = 71,867,250 x 2
Computing 0251 and it's mirror 2015 Size = 894,348,000 x 2 Size/4 = 223,587,000 x 2
Computing 0152 and it's mirror 1025 Size = 928,746,000 x 2 Size/4 = 232,186,500 x 2
Computing 0053 and it's mirror 0035 Size = 321,965,280 x 2 Size/4 = 80,491,320 x 2
Computing 4400 Size = 736,281,000 Size/4 = 184,070,250
Computing 4301 and it's mirror 3410 Size = 2,576,983,500 x 2 Size/4 = 644,245,875 x 2
Computing 4202 and it's mirror 2420 Size = 3,366,704,250 x 2 Size/4 = 841,676,062 x 2
Computing 4103 and it's mirror 1430 Size = 1,945,206,900 x 2 Size/4 = 486,301,725 x 2
Computing 4004 and it's mirror 0440 Size = 419,225,625 x 2 Size/4 = 104,806,406 x 2
Computing 3311 Size = 9,310,392,000 Size/4 = 2,327,598,000
Computing 3212 and it's mirror 2321 Size = 12,569,029,200 x 2 Size/4 = 3,142,257,300 x 2
Computing 3113 and it's mirror 1331 Size = 7,512,523,200 x 2 Size/4 = 1,878,130,800 x 2
Computing 3014 and it's mirror 0341 Size = 1,676,902,500 x 2 Size/4 = 419,225,625 x 2
Computing 2222 Size = 17,553,299,400 Size/4 = 4,388,324,850
Computing 2123 and it's mirror 1232 Size = 10,866,328,200 x 2 Size/4 = 2,716,582,050 x 2
Computing 2024 and it's mirror 0242 Size = 2,515,353,750 x 2 Size/4 = 628,838,437 x 2
Computing 1133 Size = 6,975,914,400 Size/4 = 1,743,978,600
Computing 1034 and it's mirror 0143 Size = 1,676,902,500 x 2 Size/4 = 419,225,625 x 2
Computing 0044 Size = 419,225,625 Size/4 = 104,806,406
number_files=406
total_database_size/4=121,733,463,284 (113GB)
These are the subdatabases created during a week of computation, at the end I compress each one of these 406 files and concatenate them into a single big file plus 2 small index files.
Anyway this thread is shifting to slightly different discussion.
My main goal is to find a better compression scheme than RLE.
best regards,
Alvaro