1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkMersenneTwister_Private.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/* Many thanks to M. Matsumoto, T. Nishimura and M. Saito for the following */
/* implementation of their algorithm, the Mersenne Twister, taken from */
/* http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/DC/dc.html */
/* Dynamic Creation (DC) of Mersenne Twister generators */
/* */
/* Reference: */
/* Makoto Matsumoto and Takuji Nishimura, */
/* "Dynamic Creation of Pseudorandom Number Generators", */
/* Monte Carlo and Quasi-Monte Carlo Methods 1998, */
/* Springer, 2000, pp 56--69. */
/*
Copyright (C) 2001-2009 Makoto Matsumoto and Takuji Nishimura.
Copyright (C) 2009 Mutsuo Saito
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/* A C-program for MT19937: Integer version (1999/10/28) */
/* genrand() generates one pseudorandom unsigned integer (32bit) */
/* which is uniformly distributed among 0 to 2^32-1 for each */
/* call. sgenrand(seed) sets initial values to the working area */
/* of 624 words. Before genrand(), sgenrand(seed) must be */
/* called once. (seed is any 32-bit integer.) */
/* Coded by Takuji Nishimura, considering the suggestions by */
/* Topher Cooper and Marc Rieffel in July-Aug. 1997. */
/* When you use this, send an email to: matumoto@math.keio.ac.jp */
/* with an appropriate reference to your work. */
/* REFERENCE */
/* M. Matsumoto and T. Nishimura, */
/* "Mersenne Twister: A 623-Dimensionally Equidistributed Uniform */
/* Pseudo-Random Number Generator", */
/* ACM Transactions on Modeling and Computer Simulation, */
/* Vol. 8, No. 1, January 1998, pp 3--30. */
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "vtkType.h"
typedef vtkTypeUInt32 uint32_t;
typedef vtkTypeUInt8 uint8_t;
#ifndef UINT32_C
#ifndef UINT32_MAX
#define UINT32_MAX 0xffffffff
#endif
#define UINT32_C(x) ((x) + (UINT32_MAX - UINT32_MAX))
#endif
// dc.h
typedef struct {
uint32_t aaa;
int mm,nn,rr,ww;
uint32_t wmask,umask,lmask;
int shift0, shift1, shiftB, shiftC;
uint32_t maskB, maskC;
int i;
uint32_t *state;
}mt_struct;
/* old interface */
void init_dc(uint32_t seed);
mt_struct *get_mt_parameter(int w, int p);
mt_struct *get_mt_parameter_id(int w, int p, int id);
mt_struct **get_mt_parameters(int w, int p, int max_id, int *count);
/* new interface */
mt_struct *get_mt_parameter_st(int w, int p, uint32_t seed);
mt_struct *get_mt_parameter_id_st(int w, int p, int id, uint32_t seed);
mt_struct **get_mt_parameters_st(int w, int p, int start_id, int max_id,
uint32_t seed, int *count);
/* common */
void free_mt_struct(mt_struct *mts);
void free_mt_struct_array(mt_struct **mtss, int count);
void sgenrand_mt(uint32_t seed, mt_struct *mts);
uint32_t genrand_mt(mt_struct *mts);
// mt19937.h
#define N 624
typedef struct _ORG_STATE {
uint32_t mt[N];
int mti;
} _org_state;
void _sgenrand_dc(_org_state *st, uint32_t seed);
uint32_t _genrand_dc(_org_state *st);
// dci.h
#define NOT_REJECTED 1
#define REJECTED 0
#define REDU 0
#define IRRED 1
#define NONREDU 1
extern _org_state global_mt19937;
typedef struct {int *x; int deg;} Polynomial;
typedef struct PRESCR_T {
int sizeofA; /* parameter size */
uint32_t **modlist;
Polynomial **preModPolys;
} prescr_t;
typedef struct CHECK32_T {
uint32_t upper_mask;
uint32_t lower_mask;
uint32_t word_mask;
} check32_t;
typedef struct EQDEG_T {
uint32_t bitmask[32];
uint32_t mask_b;
uint32_t mask_c;
uint32_t upper_v_bits;
int shift_0;
int shift_1;
int shift_s;
int shift_t;
int mmm;
int nnn;
int rrr;
int www;
uint32_t aaa[2];
uint32_t gupper_mask; /** most significant (WWW - RRR) bits **/
uint32_t glower_mask; /** least significant RRR bits **/
uint32_t greal_mask; /** upper WWW bitmask **/
int ggap; /** difference between machine wordsize and dest wordsize **/
int gcur_maxlengs[32]; /** for optimize_v_hard **/
uint32_t gmax_b, gmax_c;
} eqdeg_t;
int _prescreening_dc(prescr_t *pre, uint32_t aaa);
void _InitPrescreening_dc(prescr_t *pre, int m, int n, int r, int w);
void _EndPrescreening_dc(prescr_t *pre);
int _CheckPeriod_dc(check32_t *ck, _org_state *st,
uint32_t a, int m, int n, int r, int w);
void _get_tempering_parameter_dc(mt_struct *mts);
void _get_tempering_parameter_hard_dc(mt_struct *mts);
void _InitCheck32_dc(check32_t *ck, int r, int w);
// eqdeg.c
/**************************************/
#define SSS 7
#define TTT 15
/* #define S00 11 */
#define S00 12
#define S01 18
/**************************************/
/** for get_tempering_parameter_hard **/
#define LIMIT_V_BEST_OPT 15
/**************************************/
#define WORD_LEN 32
#define MIN_INFINITE (-2147483647-1)
typedef struct {
uint32_t *cf; /* fraction part */ // status
int start; /* beginning of fraction part */ // idx
int count; /* maximum (degree) */
uint32_t next; /* (bp) rm (shifted&bitmasked) at the maximum degree */
} Vector;
typedef struct mask_node{
uint32_t b,c;
int v,leng;
struct mask_node *next;
} MaskNode;
static inline uint32_t trnstmp(eqdeg_t *eq, uint32_t tmp) {
tmp ^= (tmp >> eq->shift_0) & eq->greal_mask;
return tmp;
}
static inline uint32_t masktmp(eqdeg_t *eq, uint32_t tmp) {
tmp ^= (tmp << eq->shift_s) & eq->mask_b;
tmp ^= (tmp << eq->shift_t) & eq->mask_c;
return tmp;
}
static inline uint32_t lsb(eqdeg_t *eq, uint32_t x) {
return (x >> eq->ggap) & 1;
}
static const uint8_t pivot_calc_tbl[256] = {
0, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
4, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
3, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
4, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
2, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
4, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
3, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
4, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
1, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
4, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
3, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
4, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
2, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
4, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
3, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
4, 8, 7, 8, 6, 8, 7, 8, 5, 8, 7, 8, 6, 8, 7, 8,
};
static int calc_pivot(uint32_t v);
static int push_stack(eqdeg_t *eq, uint32_t b, uint32_t c,
int v, uint32_t *bbb, uint32_t *ccc);
static int push_mask(eqdeg_t * eq, int l, int v,
uint32_t b, uint32_t c, uint32_t *bbb, uint32_t *ccc);
static int pivot_reduction(eqdeg_t *eq, int v);
static void init_tempering(eqdeg_t *eq, mt_struct *mts);
static void free_Vector( Vector *v );
static void free_lattice( Vector **lattice, int v);
static void add(int nnn, Vector *u, Vector *v);
static void optimize_v(eqdeg_t *eq, uint32_t b, uint32_t c, int v);
static MaskNode *optimize_v_hard(eqdeg_t *eq, int v, MaskNode *prev);
static Vector *new_Vector(int nnn);
static Vector **make_lattice(eqdeg_t *eq, int v);
static void delete_MaskNodes(MaskNode *head);
static MaskNode *delete_lower_MaskNodes(MaskNode *head, int l);
static MaskNode *cons_MaskNode(MaskNode *head, uint32_t b, uint32_t c, int leng);
/* static void count_MaskNodes(MaskNode *head); */
static void next_state(eqdeg_t *eq, Vector *v, int *count);
void _get_tempering_parameter_dc(mt_struct *mts)
{
eqdeg_t eq;
init_tempering(&eq, mts);
optimize_v(&eq, 0, 0, 0);
mts->shift0 = eq.shift_0;
mts->shift1 = eq.shift_1;
mts->shiftB = eq.shift_s;
mts->shiftC = eq.shift_t;
mts->maskB = eq.mask_b >> eq.ggap;
mts->maskC = eq.mask_c >> eq.ggap;
}
void _get_tempering_parameter_hard_dc(mt_struct *mts)
{
int i;
MaskNode mn0, *cur, *next;
eqdeg_t eq;
init_tempering(&eq, mts);
for (i=0; i<eq.www; i++)
eq.gcur_maxlengs[i] = -1;
mn0.b = mn0.c = mn0.leng = 0;
mn0.next = NULL;
cur = &mn0;
for (i=0; i<LIMIT_V_BEST_OPT; i++) {
next = optimize_v_hard(&eq, i, cur);
if (i > 0)
delete_MaskNodes(cur);
cur = next;
}
delete_MaskNodes(cur);
optimize_v(&eq, eq.gmax_b, eq.gmax_c,i);
mts->shift0 = eq.shift_0;
mts->shift1 = eq.shift_1;
mts->shiftB = eq.shift_s;
mts->shiftC = eq.shift_t;
mts->maskB = eq.mask_b >> eq.ggap;
mts->maskC = eq.mask_c >> eq.ggap;
/* show_distrib(mts); */
}
static int calc_pivot(uint32_t v) {
int p1, p2, p3, p4;
p1 = pivot_calc_tbl[v & 0xff];
if (p1) {
return p1 + 24 - 1;
}
p2 = pivot_calc_tbl[(v >> 8) & 0xff];
if (p2) {
return p2 + 16 - 1;
}
p3 = pivot_calc_tbl[(v >> 16) & 0xff];
if (p3) {
return p3 + 8 - 1;
}
p4 = pivot_calc_tbl[(v >> 24) & 0xff];
if (p4) {
return p4 - 1;
}
return -1;
}
static int is_zero(int size, Vector *v) {
if (v->cf[0] != 0) {
return 0;
} else {
return (memcmp(v->cf, v->cf + 1, sizeof(uint32_t) * (size - 1)) == 0);
}
}
static void init_tempering(eqdeg_t *eq, mt_struct *mts)
{
int i;
eq->mmm = mts->mm;
eq->nnn = mts->nn;
eq->rrr = mts->rr;
eq->www = mts->ww;
eq->shift_0 = S00;
eq->shift_1 = S01;
eq->shift_s = SSS;
eq->shift_t = TTT;
eq->ggap = WORD_LEN - eq->www;
/* bits are filled in mts->aaa from MSB */
eq->aaa[0] = 0; eq->aaa[1] = (mts->aaa) << eq->ggap;
for( i=0; i<WORD_LEN; i++)
eq->bitmask[i] = UINT32_C(0x80000000) >> i;
for( i=0, eq->glower_mask=0; i<eq->rrr; i++)
eq->glower_mask = (eq->glower_mask<<1)| 0x1;
eq->gupper_mask = ~eq->glower_mask;
eq->gupper_mask <<= eq->ggap;
eq->glower_mask <<= eq->ggap;
eq->greal_mask = (eq->gupper_mask | eq->glower_mask);
}
/* (v-1) bitmasks of b,c */
static MaskNode *optimize_v_hard(eqdeg_t *eq, int v, MaskNode *prev_masks)
{
int i, ll, t;
uint32_t bbb[8], ccc[8];
MaskNode *cur_masks;
cur_masks = NULL;
while (prev_masks != NULL) {
ll = push_stack(eq, prev_masks->b,prev_masks->c,v,bbb,ccc);
for (i=0; i<ll; ++i) {
eq->mask_b = bbb[i];
eq->mask_c = ccc[i];
t = pivot_reduction(eq, v+1);
if (t >= eq->gcur_maxlengs[v]) {
eq->gcur_maxlengs[v] = t;
eq->gmax_b = eq->mask_b;
eq->gmax_c = eq->mask_c;
cur_masks = cons_MaskNode(cur_masks, eq->mask_b, eq->mask_c, t);
}
}
prev_masks = prev_masks->next;
}
cur_masks = delete_lower_MaskNodes(cur_masks, eq->gcur_maxlengs[v]);
return cur_masks;
}
/* (v-1) bitmasks of b,c */
static void optimize_v(eqdeg_t *eq, uint32_t b, uint32_t c, int v)
{
int i, max_len, max_i, ll, t;
uint32_t bbb[8], ccc[8];
ll = push_stack(eq, b,c,v,bbb,ccc);
max_len = max_i = 0;
if (ll > 1) {
for (i=0; i<ll; ++i) {
eq->mask_b = bbb[i];
eq->mask_c = ccc[i];
t = pivot_reduction(eq, v+1);
if (t > max_len) {
max_len = t;
max_i = i;
}
}
}
if ( v >= eq->www-1 ) {
eq->mask_b = bbb[max_i];
eq->mask_c = ccc[max_i];
return;
}
optimize_v(eq, bbb[max_i], ccc[max_i], v+1);
}
static int push_stack(eqdeg_t *eq, uint32_t b, uint32_t c, int v,
uint32_t *bbb, uint32_t *ccc)
{
int i, ll, ncv;
uint32_t cv_buf[2];
ll = 0;
if( (v+eq->shift_t) < eq->www ){
ncv = 2; cv_buf[0] = c | eq->bitmask[v]; cv_buf[1] = c;
}
else {
ncv = 1; cv_buf[0] = c;
}
for( i=0; i<ncv; ++i)
ll += push_mask(eq, ll, v, b, cv_buf[i], bbb, ccc);
return ll;
}
static int push_mask(eqdeg_t *eq, int l, int v, uint32_t b, uint32_t c,
uint32_t *bbb, uint32_t *ccc)
{
int i, j, k, nbv, nbvt;
uint32_t bmask, bv_buf[2], bvt_buf[2];
k = l;
if( (eq->shift_s+v) >= eq->www ){
nbv = 1; bv_buf[0] = 0;
}
else if( (v>=eq->shift_t) && (c&eq->bitmask[v-eq->shift_t] ) ){
nbv = 1; bv_buf[0] = b&eq->bitmask[v];
}
else {
nbv = 2; bv_buf[0] = eq->bitmask[v]; bv_buf[1] = 0;
}
if( ((v+eq->shift_t+eq->shift_s) < eq->www) && (c&eq->bitmask[v]) ){
nbvt = 2; bvt_buf[0] = eq->bitmask[v+eq->shift_t]; bvt_buf[1] = 0;
}
else {
nbvt = 1; bvt_buf[0] = 0;
}
bmask = eq->bitmask[v];
if( (v+eq->shift_t) < eq->www )
bmask |= eq->bitmask[v+eq->shift_t];
bmask = ~bmask;
for( i=0; i<nbvt; ++i){
for( j=0; j<nbv; ++j){
bbb[k] = (b&bmask) | bv_buf[j] | bvt_buf[i];
ccc[k] = c;
++k;
}
}
return k-l;
}
/**********************************/
/**** subroutines for lattice ****/
/**********************************/
static int pivot_reduction(eqdeg_t *eq, int v)
{
Vector **lattice, *ltmp;
int i;
int pivot;
int count;
int min;
eq->upper_v_bits = 0;
for( i=0; i<v; i++) {
eq->upper_v_bits |= eq->bitmask[i];
}
lattice = make_lattice(eq, v );
for (;;) {
pivot = calc_pivot(lattice[v]->next);
if (lattice[pivot]->count < lattice[v]->count) {
ltmp = lattice[pivot];
lattice[pivot] = lattice[v];
lattice[v] = ltmp;
}
add(eq->nnn, lattice[v], lattice[pivot]);
if (lattice[v]->next == 0) {
count = 0;
next_state(eq, lattice[v], &count);
if (lattice[v]->next == 0) {
if (is_zero(eq->nnn, lattice[v])) {
break;
}
while (lattice[v]->next == 0) {
count++;
next_state(eq, lattice[v], &count);
if (count > eq->nnn * (eq->www-1) - eq->rrr) {
break;
}
}
if (lattice[v]->next == 0) {
break;
}
}
}
}
min = lattice[0]->count;
for (i = 1; i < v; i++) {
if (min > lattice[i]->count) {
min = lattice[i]->count;
}
}
free_lattice( lattice, v );
return min;
}
/********************************/
/** allocate momory for Vector **/
/********************************/
static Vector *new_Vector(int nnn)
{
Vector *v;
v = (Vector *)malloc( sizeof( Vector ) );
if( v == NULL ){
printf("malloc error in \"new_Vector()\"\n");
exit(1);
}
v->cf = (uint32_t *)calloc( nnn, sizeof( uint32_t ) );
if( v->cf == NULL ){
printf("calloc error in \"new_Vector()\"\n");
exit(1);
}
v->start = 0;
return v;
}
/************************************************/
/* frees *v which was allocated by new_Vector() */
/************************************************/
static void free_Vector( Vector *v )
{
if( NULL != v->cf ) free( v->cf );
if( NULL != v ) free( v );
}
static void free_lattice( Vector **lattice, int v)
{
int i;
for( i=0; i<=v; i++)
free_Vector( lattice[i] );
free( lattice );
}
/* adds v to u (then u will change) */
static void add(int nnn, Vector *u, Vector *v)
{
int i;
int diff = (v->start - u->start + nnn) % nnn;
for (i = 0; i < nnn - diff; i++) {
u->cf[i] ^= v->cf[i + diff];
}
diff = diff - nnn;
for (; i < nnn; i++) {
u->cf[i] ^= v->cf[i + diff];
}
u->next ^= v->next;
}
/* makes a initial lattice */
static Vector **make_lattice(eqdeg_t *eq, int v)
{
int i;
int count;
Vector **lattice, *bottom;
lattice = (Vector **)malloc( (v+1) * sizeof( Vector *) );
if( NULL == lattice ){
printf("malloc error in \"make_lattice\"\n");
exit(1);
}
for( i=0; i<v; i++){ /* from 0th row to v-1-th row */
lattice[i] = new_Vector(eq->nnn);
lattice[i]->next = eq->bitmask[i];
lattice[i]->start = 0;
lattice[i]->count = 0;
}
bottom = new_Vector(eq->nnn); /* last row */
for(i=0; i< eq->nnn; i++) {
bottom->cf[i] = 0;
}
bottom->cf[eq->nnn -1] = 0xc0000000 & eq->greal_mask;
bottom->start = 0;
bottom->count = 0;
count = 0;
do {
next_state(eq, bottom, &count);
} while (bottom->next == 0);
// degree_of_vector(eq, top );
lattice[v] = bottom;
return lattice;
}
static void next_state(eqdeg_t *eq, Vector *v, int *count) {
uint32_t tmp;
do {
tmp = ( v->cf[v->start] & eq->gupper_mask )
| ( v->cf[(v->start + 1) % eq->nnn] & eq->glower_mask );
v->cf[v->start] = v->cf[(v->start + eq->mmm) % eq->nnn]
^ ( (tmp>>1) ^ eq->aaa[lsb(eq, tmp)] );
v->cf[v->start] &= eq->greal_mask;
tmp = v->cf[v->start];
v->start = (v->start + 1) % eq->nnn;
v->count++;
tmp = trnstmp(eq, tmp);
tmp = masktmp(eq, tmp);
v->next = tmp & eq->upper_v_bits;
(*count)++;
if (*count > eq->nnn * (eq->www-1) - eq->rrr) {
break;
}
} while (v->next == 0);
}
/***********/
static MaskNode *cons_MaskNode(MaskNode *head, uint32_t b, uint32_t c, int leng)
{
MaskNode *t;
t = (MaskNode*)malloc(sizeof(MaskNode));
if (t == NULL) {
printf("malloc error in \"cons_MaskNode\"\n");
exit(1);
}
t->b = b;
t->c = c;
t->leng = leng;
t->next = head;
return t;
}
static void delete_MaskNodes(MaskNode *head)
{
MaskNode *t;
while(head != NULL) {
t = head->next;
free(head);
head = t;
}
}
static MaskNode *delete_lower_MaskNodes(MaskNode *head, int l)
{
MaskNode *s, *t, *tail;
s = head;
for(;;) { /* heading */
if (s == NULL)
return NULL;
if (s->leng >= l)
break;
t = s->next;
free(s);
s = t;
}
head = tail = s;
while (head != NULL) {
t = head->next;
if (head->leng < l) {
free(head);
}
else {
tail->next = head;
tail = head;
}
head = t;
}
tail->next = NULL;
return s;
}
// mt19937.c
/* Period parameters */
/* #define N 624 */
#define M 397
#define MATRIX_A UINT32_C(0x9908b0df) /* constant vector a */
#define UPPER_MASK UINT32_C(0x80000000) /* most significant w-r bits */
#define LOWER_MASK UINT32_C(0x7fffffff) /* least significant r bits */
/* Tempering parameters */
#define TEMPERING_MASK_B UINT32_C(0x9d2c5680)
#define TEMPERING_MASK_C UINT32_C(0xefc60000)
#define TEMPERING_SHIFT_U(y) (y >> 11)
#define TEMPERING_SHIFT_S(y) (y << 7)
#define TEMPERING_SHIFT_T(y) (y << 15)
#define TEMPERING_SHIFT_L(y) (y >> 18)
/* Initializing the array with a seed */
void _sgenrand_dc(_org_state *st, uint32_t seed)
{
int i;
for (i=0;i<N;i++) {
st->mt[i] = seed;
seed = (UINT32_C(1812433253) * (seed ^ (seed >> 30))) + i + 1;
/* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */
/* In the previous versions, MSBs of the seed affect */
/* only MSBs of the array mt[]. */
}
st->mti = N;
}
uint32_t _genrand_dc(_org_state *st)
{
uint32_t y;
static const uint32_t mag01[2]={0x0, MATRIX_A};
/* mag01[x] = x * MATRIX_A for x=0,1 */
if (st->mti >= N) { /* generate N words at one time */
int kk;
for (kk=0;kk<N-M;kk++) {
y = (st->mt[kk]&UPPER_MASK)|(st->mt[kk+1]&LOWER_MASK);
st->mt[kk] = st->mt[kk+M] ^ (y >> 1) ^ mag01[y & 0x1];
}
for (;kk<N-1;kk++) {
y = (st->mt[kk]&UPPER_MASK)|(st->mt[kk+1]&LOWER_MASK);
st->mt[kk] = st->mt[kk+(M-N)] ^ (y >> 1) ^ mag01[y & 0x1];
}
y = (st->mt[N-1]&UPPER_MASK)|(st->mt[0]&LOWER_MASK);
st->mt[N-1] = st->mt[M-1] ^ (y >> 1) ^ mag01[y & 0x1];
st->mti = 0;
}
y = st->mt[st->mti++];
y ^= TEMPERING_SHIFT_U(y);
y ^= TEMPERING_SHIFT_S(y) & TEMPERING_MASK_B;
y ^= TEMPERING_SHIFT_T(y) & TEMPERING_MASK_C;
y ^= TEMPERING_SHIFT_L(y);
return y;
}
// seive.c
#define WORDLEN 32
#define LSB 0x1
#define MAX_SEARCH 10000
_org_state global_mt19937;
/*******************************************************************/
static uint32_t nextA(_org_state *org, int w);
static uint32_t nextA_id(_org_state *org, int w, int id, int idw);
static void make_masks(int r, int w, mt_struct *mts);
static int get_irred_param(check32_t *ck, prescr_t *pre, _org_state *org,
mt_struct *mts,int id, int idw);
static mt_struct *alloc_mt_struct(int n);
static mt_struct *init_mt_search(check32_t *ck, prescr_t *pre, int w, int p);
static void end_mt_search(prescr_t *pre);
static void copy_params_of_mt_struct(mt_struct *src, mt_struct *dst);
static int proper_mersenne_exponent(int p);
/*******************************************************************/
/* When idw==0, id is not embedded into "a" */
#define FOUND 1
#define NOT_FOUND 0
static int get_irred_param(check32_t *ck, prescr_t *pre, _org_state *org,
mt_struct *mts, int id, int idw)
{
int i;
uint32_t a;
for (i=0; i<MAX_SEARCH; i++) {
if (idw == 0)
a = nextA(org, mts->ww);
else
a = nextA_id(org, mts->ww, id, idw);
if (NOT_REJECTED == _prescreening_dc(pre, a) ) {
if (IRRED
== _CheckPeriod_dc(ck, org, a,mts->mm,mts->nn,mts->rr,mts->ww)) {
mts->aaa = a;
break;
}
}
}
if (MAX_SEARCH == i) return NOT_FOUND;
return FOUND;
}
static uint32_t nextA(_org_state *org, int w)
{
uint32_t x, word_mask;
word_mask = 0xFFFFFFFF;
word_mask <<= WORDLEN - w;
word_mask >>= WORDLEN - w;
x = _genrand_dc(org);
x &= word_mask;
x |= (LSB << (w-1));
return x;
}
static uint32_t nextA_id(_org_state *org, int w, int id, int idw)
{
uint32_t x, word_mask;
word_mask = 0xFFFFFFFF;
word_mask <<= WORDLEN - w;
word_mask >>= WORDLEN - w;
word_mask >>= idw;
word_mask <<= idw;
x = _genrand_dc(org);
x &= word_mask;
x |= (LSB << (w-1));
x |= (uint32_t)id; /* embedding id */
return x;
}
static void make_masks(int r, int w, mt_struct *mts)
{
int i;
uint32_t ut, wm, um, lm;
wm = 0xFFFFFFFF;
wm >>= (WORDLEN - w);
ut = 0;
for (i=0; i<r; i++) {
ut <<= 1;
ut |= LSB;
}
lm = ut;
um = (~ut) & wm;
mts->wmask = wm;
mts->umask = um;
mts->lmask = lm;
}
static mt_struct *init_mt_search(check32_t *ck, prescr_t *pre, int w, int p)
{
int n, m, r;
mt_struct *mts;
if ( (w>32) || (w<31) ) {
printf ("Sorry, currently only w = 32 or 31 is allowded.\n");
return NULL;
}
if ( !proper_mersenne_exponent(p) ) {
if (p<521) {
printf ("\"p\" is too small.\n");
return NULL;
}
else if (p>44497){
printf ("\"p\" is too large.\n");
return NULL;
}
else {
printf ("\"p\" is not a Mersenne exponent.\n");
return NULL;
}
}
n = p/w + 1; /* since p is Mersenne Exponent, w never divids p */
mts = alloc_mt_struct(n);
if (NULL == mts) return NULL;
m = n/2;
if (m < 2) m = n-1;
r = n * w - p;
make_masks(r, w, mts);
_InitPrescreening_dc(pre, m, n, r, w);
_InitCheck32_dc(ck, r, w);
mts->mm = m;
mts->nn = n;
mts->rr = r;
mts->ww = w;
return mts;
}
static void end_mt_search(prescr_t *pre)
{
_EndPrescreening_dc(pre);
}
/*
w -- word size
p -- Mersenne Exponent
seed -- seed for original mt19937 to generate parameter.
*/
mt_struct *get_mt_parameter_st(int w, int p, uint32_t seed)
{
mt_struct *mts;
prescr_t pre;
_org_state org;
check32_t ck;
_sgenrand_dc(&org, seed);
mts = init_mt_search(&ck, &pre, w, p);
if (mts == NULL) return NULL;
if ( NOT_FOUND == get_irred_param(&ck, &pre, &org, mts,0,0) ) {
free_mt_struct(mts);
return NULL;
}
_get_tempering_parameter_hard_dc(mts);
end_mt_search(&pre);
return mts;
}
/*
w -- word size
p -- Mersenne Exponent
*/
mt_struct *get_mt_parameter(int w, int p)
{
mt_struct *mts;
prescr_t pre;
check32_t ck;
mts = init_mt_search(&ck, &pre, w, p);
if (mts == NULL) return NULL;
if ( NOT_FOUND == get_irred_param(&ck, &pre, &global_mt19937, mts,0,0) ) {
free_mt_struct(mts);
return NULL;
}
_get_tempering_parameter_hard_dc(mts);
end_mt_search(&pre);
return mts;
}
/*
w -- word size
p -- Mersenne Exponent
*/
#if 0
mt_struct *get_mt_parameter_opt_temper(int w, int p, uint32_t seed)
{
mt_struct *mts;
prescr_t pre;
_org_state org;
check32_t ck;
_sgenrand_dc(&org, seed);
mts = init_mt_search(&ck, &pre, w, p);
if (mts == NULL) return NULL;
if ( NOT_FOUND == get_irred_param(&ck, &pre, &org, mts,0,0) ) {
free_mt_struct(mts);
return NULL;
}
_get_tempering_parameter_hard_dc(mts);
end_mt_search(&pre);
return mts;
}
#endif
/*
w -- word size
p -- Mersenne Exponent
*/
#define DEFAULT_ID_SIZE 16
/* id <= 0xffff */
mt_struct *get_mt_parameter_id_st(int w, int p, int id, uint32_t seed)
{
mt_struct *mts;
prescr_t pre;
_org_state org;
check32_t ck;
_sgenrand_dc(&org, seed);
if (id > 0xffff) {
printf("\"id\" must be less than 65536\n");
return NULL;
}
if (id < 0) {
printf("\"id\" must be positive\n");
return NULL;
}
mts = init_mt_search(&ck, &pre, w, p);
if (mts == NULL) return NULL;
if ( NOT_FOUND == get_irred_param(&ck, &pre, &org,
mts, id, DEFAULT_ID_SIZE) ) {
free_mt_struct(mts);
return NULL;
}
_get_tempering_parameter_hard_dc(mts);
end_mt_search(&pre);
return mts;
}
mt_struct *get_mt_parameter_id(int w, int p, int id)
{
mt_struct *mts;
prescr_t pre;
check32_t ck;
if (id > 0xffff) {
printf("\"id\" must be less than 65536\n");
return NULL;
}
if (id < 0) {
printf("\"id\" must be positive\n");
return NULL;
}
mts = init_mt_search(&ck, &pre, w, p);
if (mts == NULL) return NULL;
if ( NOT_FOUND == get_irred_param(&ck, &pre, &global_mt19937,
mts, id, DEFAULT_ID_SIZE) ) {
free_mt_struct(mts);
return NULL;
}
_get_tempering_parameter_hard_dc(mts);
end_mt_search(&pre);
return mts;
}
mt_struct **get_mt_parameters_st(int w, int p, int start_id,
int max_id, uint32_t seed, int *count)
{
mt_struct **mtss, *template_mts;
int i;
prescr_t pre;
_org_state org;
check32_t ck;
if ((start_id > max_id) || (max_id > 0xffff) || (start_id < 0)) {
printf("\"id\" error\n");
return NULL;
}
_sgenrand_dc(&org, seed);
mtss = (mt_struct**)malloc(sizeof(mt_struct*)*(max_id-start_id+1));
if (NULL == mtss) return NULL;
template_mts = init_mt_search(&ck, &pre, w, p);
if (template_mts == NULL) {
free(mtss);
return NULL;
}
*count = 0;
for (i=0; i<=max_id-start_id; i++) {
mtss[i] = alloc_mt_struct(template_mts->nn);
if (NULL == mtss[i]) {
break;
}
copy_params_of_mt_struct(template_mts, mtss[i]);
if ( NOT_FOUND == get_irred_param(&ck, &pre, &org, mtss[i],
i+start_id,DEFAULT_ID_SIZE) ) {
free_mt_struct(mtss[i]);
break;
}
_get_tempering_parameter_hard_dc(mtss[i]);
++(*count);
}
free_mt_struct(template_mts);
end_mt_search(&pre);
if (*count > 0) {
return mtss;
} else {
free(mtss);
return NULL;
}
}
mt_struct **get_mt_parameters(int w, int p, int max_id, int *count)
{
mt_struct **mtss, *template_mts;
int i;
prescr_t pre;
check32_t ck;
int start_id = 0;
if ((start_id > max_id) || (max_id > 0xffff) || (start_id < 0)) {
printf("\"id\" error\n");
return NULL;
}
mtss = (mt_struct**)malloc(sizeof(mt_struct*)*(max_id-start_id+1));
if (NULL == mtss) return NULL;
template_mts = init_mt_search(&ck, &pre, w, p);
if (template_mts == NULL) {
free(mtss);
return NULL;
}
*count = 0;
for (i=0; i<=max_id-start_id; i++) {
mtss[i] = alloc_mt_struct(template_mts->nn);
if (NULL == mtss[i]) {
break;
}
copy_params_of_mt_struct(template_mts, mtss[i]);
if ( NOT_FOUND == get_irred_param(&ck, &pre, &global_mt19937, mtss[i],
i+start_id,DEFAULT_ID_SIZE) ) {
free_mt_struct(mtss[i]);
break;
}
_get_tempering_parameter_hard_dc(mtss[i]);
++(*count);
}
free_mt_struct(template_mts);
end_mt_search(&pre);
if (*count > 0) {
return mtss;
} else {
free(mtss);
return NULL;
}
}
/* n : sizeof state vector */
static mt_struct *alloc_mt_struct(int n)
{
mt_struct *mts;
mts = (mt_struct*)malloc(sizeof(mt_struct));
if (NULL == mts) return NULL;
mts->state = (uint32_t*)malloc(n*sizeof(uint32_t));
if (NULL == mts->state) {
free(mts);
return NULL;
}
return mts;
}
void free_mt_struct(mt_struct *mts)
{
free(mts->state);
free(mts);
}
void free_mt_struct_array(mt_struct **mtss, int count)
{
int i;
if (mtss == NULL) {
return;
}
for (i=0; i < count; i++) {
free_mt_struct(mtss[i]);
}
free(mtss);
}
static void copy_params_of_mt_struct(mt_struct *src, mt_struct *dst)
{
dst->nn = src->nn;
dst->mm = src->mm;
dst->rr = src->rr;
dst->ww = src->ww;
dst->wmask = src->wmask;
dst->umask = src->umask;
dst->lmask = src->lmask;
}
static int proper_mersenne_exponent(int p)
{
switch(p) {
case 521:
case 607:
case 1279:
case 2203:
case 2281:
case 3217:
case 4253:
case 4423:
case 9689:
case 9941:
case 11213:
case 19937:
case 21701:
case 23209:
case 44497:
return 1;
default:
return 0;
}
}
// prescr.c
#define LIMIT_IRRED_DEG 31
#define NIRREDPOLY 127
#define MAX_IRRED_DEG 9
/* list of irreducible polynomials whose degrees are less than 10 */
static const int irredpolylist[NIRREDPOLY][MAX_IRRED_DEG+1] = {
{0,1,0,0,0,0,0,0,0,0,},{1,1,0,0,0,0,0,0,0,0,},{1,1,1,0,0,0,0,0,0,0,},
{1,1,0,1,0,0,0,0,0,0,},{1,0,1,1,0,0,0,0,0,0,},{1,1,0,0,1,0,0,0,0,0,},
{1,0,0,1,1,0,0,0,0,0,},{1,1,1,1,1,0,0,0,0,0,},{1,0,1,0,0,1,0,0,0,0,},
{1,0,0,1,0,1,0,0,0,0,},{1,1,1,1,0,1,0,0,0,0,},{1,1,1,0,1,1,0,0,0,0,},
{1,1,0,1,1,1,0,0,0,0,},{1,0,1,1,1,1,0,0,0,0,},{1,1,0,0,0,0,1,0,0,0,},
{1,0,0,1,0,0,1,0,0,0,},{1,1,1,0,1,0,1,0,0,0,},{1,1,0,1,1,0,1,0,0,0,},
{1,0,0,0,0,1,1,0,0,0,},{1,1,1,0,0,1,1,0,0,0,},{1,0,1,1,0,1,1,0,0,0,},
{1,1,0,0,1,1,1,0,0,0,},{1,0,1,0,1,1,1,0,0,0,},{1,1,0,0,0,0,0,1,0,0,},
{1,0,0,1,0,0,0,1,0,0,},{1,1,1,1,0,0,0,1,0,0,},{1,0,0,0,1,0,0,1,0,0,},
{1,0,1,1,1,0,0,1,0,0,},{1,1,1,0,0,1,0,1,0,0,},{1,1,0,1,0,1,0,1,0,0,},
{1,0,0,1,1,1,0,1,0,0,},{1,1,1,1,1,1,0,1,0,0,},{1,0,0,0,0,0,1,1,0,0,},
{1,1,0,1,0,0,1,1,0,0,},{1,1,0,0,1,0,1,1,0,0,},{1,0,1,0,1,0,1,1,0,0,},
{1,0,1,0,0,1,1,1,0,0,},{1,1,1,1,0,1,1,1,0,0,},{1,0,0,0,1,1,1,1,0,0,},
{1,1,1,0,1,1,1,1,0,0,},{1,0,1,1,1,1,1,1,0,0,},{1,1,0,1,1,0,0,0,1,0,},
{1,0,1,1,1,0,0,0,1,0,},{1,1,0,1,0,1,0,0,1,0,},{1,0,1,1,0,1,0,0,1,0,},
{1,0,0,1,1,1,0,0,1,0,},{1,1,1,1,1,1,0,0,1,0,},{1,0,1,1,0,0,1,0,1,0,},
{1,1,1,1,1,0,1,0,1,0,},{1,1,0,0,0,1,1,0,1,0,},{1,0,1,0,0,1,1,0,1,0,},
{1,0,0,1,0,1,1,0,1,0,},{1,0,0,0,1,1,1,0,1,0,},{1,1,1,0,1,1,1,0,1,0,},
{1,1,0,1,1,1,1,0,1,0,},{1,1,1,0,0,0,0,1,1,0,},{1,1,0,1,0,0,0,1,1,0,},
{1,0,1,1,0,0,0,1,1,0,},{1,1,1,1,1,0,0,1,1,0,},{1,1,0,0,0,1,0,1,1,0,},
{1,0,0,1,0,1,0,1,1,0,},{1,0,0,0,1,1,0,1,1,0,},{1,0,1,1,1,1,0,1,1,0,},
{1,1,0,0,0,0,1,1,1,0,},{1,1,1,1,0,0,1,1,1,0,},{1,1,1,0,1,0,1,1,1,0,},
{1,0,1,1,1,0,1,1,1,0,},{1,1,1,0,0,1,1,1,1,0,},{1,1,0,0,1,1,1,1,1,0,},
{1,0,1,0,1,1,1,1,1,0,},{1,0,0,1,1,1,1,1,1,0,},{1,1,0,0,0,0,0,0,0,1,},
{1,0,0,0,1,0,0,0,0,1,},{1,1,1,0,1,0,0,0,0,1,},{1,1,0,1,1,0,0,0,0,1,},
{1,0,0,0,0,1,0,0,0,1,},{1,0,1,1,0,1,0,0,0,1,},{1,1,0,0,1,1,0,0,0,1,},
{1,1,0,1,0,0,1,0,0,1,},{1,0,0,1,1,0,1,0,0,1,},{1,1,1,1,1,0,1,0,0,1,},
{1,0,1,0,0,1,1,0,0,1,},{1,0,0,1,0,1,1,0,0,1,},{1,1,1,1,0,1,1,0,0,1,},
{1,1,1,0,1,1,1,0,0,1,},{1,0,1,1,1,1,1,0,0,1,},{1,1,1,0,0,0,0,1,0,1,},
{1,0,1,0,1,0,0,1,0,1,},{1,0,0,1,1,0,0,1,0,1,},{1,1,0,0,0,1,0,1,0,1,},
{1,0,1,0,0,1,0,1,0,1,},{1,1,1,1,0,1,0,1,0,1,},{1,1,1,0,1,1,0,1,0,1,},
{1,0,1,1,1,1,0,1,0,1,},{1,1,1,1,0,0,1,1,0,1,},{1,0,0,0,1,0,1,1,0,1,},
{1,1,0,1,1,0,1,1,0,1,},{1,0,1,0,1,1,1,1,0,1,},{1,0,0,1,1,1,1,1,0,1,},
{1,0,0,0,0,0,0,0,1,1,},{1,1,0,0,1,0,0,0,1,1,},{1,0,1,0,1,0,0,0,1,1,},
{1,1,1,1,1,0,0,0,1,1,},{1,1,0,0,0,1,0,0,1,1,},{1,0,0,0,1,1,0,0,1,1,},
{1,1,0,1,1,1,0,0,1,1,},{1,0,0,1,0,0,1,0,1,1,},{1,1,1,1,0,0,1,0,1,1,},
{1,1,0,1,1,0,1,0,1,1,},{1,0,0,0,0,1,1,0,1,1,},{1,1,0,1,0,1,1,0,1,1,},
{1,0,1,1,0,1,1,0,1,1,},{1,1,0,0,1,1,1,0,1,1,},{1,1,1,1,1,1,1,0,1,1,},
{1,0,1,0,0,0,0,1,1,1,},{1,1,1,1,0,0,0,1,1,1,},{1,0,0,0,0,1,0,1,1,1,},
{1,0,1,0,1,1,0,1,1,1,},{1,0,0,1,1,1,0,1,1,1,},{1,1,1,0,0,0,1,1,1,1,},
{1,1,0,1,0,0,1,1,1,1,},{1,0,1,1,0,0,1,1,1,1,},{1,0,1,0,1,0,1,1,1,1,},
{1,0,0,1,1,0,1,1,1,1,},{1,1,0,0,0,1,1,1,1,1,},{1,0,0,1,0,1,1,1,1,1,},
{1,1,0,1,1,1,1,1,1,1,},
};
static void MakepreModPolys(prescr_t *pre, int mm, int nn, int rr, int ww);
static Polynomial *make_tntm( int n, int m);
static Polynomial *PolynomialDup(Polynomial *pl);
static void PolynomialMod(Polynomial *wara, const Polynomial *waru);
static Polynomial *PolynomialMult(Polynomial *p0, Polynomial *p1);
static void FreePoly( Polynomial *p);
static Polynomial *NewPoly(int degree);
static int IsReducible(prescr_t *pre, uint32_t aaa, uint32_t *polylist);
static uint32_t word2bit(Polynomial *pl);
static void makemodlist(prescr_t *pre, Polynomial *pl, int nPoly);
static void NextIrredPoly(Polynomial *pl, int nth);
/*************************************************/
/*************************************************/
int _prescreening_dc(prescr_t *pre, uint32_t aaa)
{
int i;
for (i=0; i<NIRREDPOLY; i++) {
if (IsReducible(pre, aaa,pre->modlist[i])==REDU)
return REJECTED;
}
return NOT_REJECTED;
}
void _InitPrescreening_dc(prescr_t *pre, int m, int n, int r, int w)
{
int i;
Polynomial *pl;
pre->sizeofA = w;
pre->preModPolys = (Polynomial **)malloc(
(pre->sizeofA+1)*(sizeof(Polynomial*)));
if (NULL == pre->preModPolys) {
printf ("malloc error in \"InitPrescreening\"\n");
exit(1);
}
MakepreModPolys(pre, m,n,r,w);
pre->modlist = (uint32_t**)malloc(NIRREDPOLY * sizeof(uint32_t*));
if (NULL == pre->modlist) {
printf ("malloc error in \"InitPrescreening()\"\n");
exit(1);
}
for (i=0; i<NIRREDPOLY; i++) {
pre->modlist[i]
= (uint32_t*)malloc( (pre->sizeofA + 1) * (sizeof(uint32_t)) );
if (NULL == pre->modlist[i]) {
printf ("malloc error in \"InitPrescreening()\"\n");
exit(1);
}
}
for (i=0; i<NIRREDPOLY; i++) {
pl = NewPoly(MAX_IRRED_DEG);
NextIrredPoly(pl,i);
makemodlist(pre, pl, i);
FreePoly(pl);
}
for (i=pre->sizeofA; i>=0; i--)
FreePoly(pre->preModPolys[i]);
free(pre->preModPolys);
}
void _EndPrescreening_dc(prescr_t *pre)
{
int i;
for (i=0; i<NIRREDPOLY; i++)
free(pre->modlist[i]);
free(pre->modlist);
}
/*************************************************/
/****** static functions ******/
/*************************************************/
void NextIrredPoly(Polynomial *pl, int nth)
{
int i, max_deg;
for (max_deg=0,i=0; i<=MAX_IRRED_DEG; i++) {
if ( irredpolylist[nth][i] )
max_deg = i;
pl->x[i] = irredpolylist[nth][i];
}
pl->deg = max_deg;
}
static void makemodlist(prescr_t *pre, Polynomial *pl, int nPoly)
{
Polynomial *tmpPl;
int i;
for (i=0; i<=pre->sizeofA; i++) {
tmpPl = PolynomialDup(pre->preModPolys[i]);
PolynomialMod(tmpPl,pl);
pre->modlist[nPoly][i] = word2bit(tmpPl);
FreePoly(tmpPl);
}
}
/* Pack Polynomial into a word */
static uint32_t word2bit(Polynomial *pl)
{
int i;
uint32_t bx;
bx = 0;
for (i=pl->deg; i>0; i--) {
if (pl->x[i]) bx |= 0x1;
bx <<= 1;
}
if (pl->x[0]) bx |= 0x1;
return bx;
}
/* REDU -- reducible */
/* aaa = (a_{w-1}a_{w-2}...a_1a_0 */
static int IsReducible(prescr_t *pre, uint32_t aaa, uint32_t *polylist)
{
int i;
uint32_t x;
x = polylist[pre->sizeofA];
for (i=pre->sizeofA-1; i>=0; i--) {
if (aaa&0x1)
x ^= polylist[i];
aaa >>= 1;
}
if ( x == 0 ) return REDU;
else return NONREDU;
}
/***********************************/
/** functions for polynomial **/
/***********************************/
static Polynomial *NewPoly(int degree)
{
Polynomial *p;
p = (Polynomial *)calloc( 1, sizeof(Polynomial));
if( p==NULL ){
printf("calloc error in \"NewPoly()\"\n");
exit(1);
}
p->deg = degree;
if (degree < 0) {
p->x = NULL;
return p;
}
p->x = (int *)calloc( degree + 1, sizeof(int));
if( p->x == NULL ){
printf("calloc error\n");
exit(1);
}
return p;
}
static void FreePoly( Polynomial *p)
{
if (p->x != NULL)
free( p->x );
free( p );
}
/** multiplication **/
static Polynomial *PolynomialMult(Polynomial *p0,Polynomial *p1)
{
int i, j;
Polynomial *p;
/* if either p0 or p1 is 0, return 0 */
if ( (p0->deg < 0) || (p1->deg < 0) ) {
p = NewPoly(-1);
return p;
}
p = NewPoly(p0->deg + p1->deg);
for( i=0; i<=p1->deg; i++){
if( p1->x[i] ){
for( j=0; j<=p0->deg; j++){
p->x[i+j] ^= p0->x[j];
}
}
}
return p;
}
/** wara mod waru **/
/** the result is stored in wara ********/
static void PolynomialMod( Polynomial *wara, const Polynomial *waru)
{
int i;
int deg_diff;
while( wara->deg >= waru->deg ){
deg_diff = wara->deg - waru->deg;
for( i=0; i<=waru->deg; i++){
wara->x[ i+deg_diff ] ^= waru->x[i];
}
for( i=wara->deg; i>=0; i--){
if( wara->x[i] ) break;
}
wara->deg=i;
}
}
static Polynomial *PolynomialDup(Polynomial *pl)
{
Polynomial *pt;
int i;
pt = NewPoly(pl->deg);
for (i=pl->deg; i>=0; i--)
pt->x[i] = pl->x[i];
return pt;
}
/** make the polynomial "t**n + t**m" **/
static Polynomial *make_tntm( int n, int m)
{
Polynomial *p;
p = NewPoly(n);
p->x[n] = p->x[m] = 1;
return p;
}
static void MakepreModPolys(prescr_t *pre, int mm, int nn, int rr, int ww)
{
Polynomial *t, *t0, *t1, *s, *s0, *s1;
int i,j;
j = 0;
t = NewPoly(0);
t->deg = 0;
t->x[0] = 1;
pre->preModPolys[j++] = t;
t = make_tntm (nn, mm);
t0 = make_tntm (nn, mm);
s = make_tntm (nn-1, mm-1);
for( i=1; i<(ww - rr); i++){
pre->preModPolys[j++] = PolynomialDup(t0);
t1 = t0;
t0 = PolynomialMult(t0, t);
FreePoly(t1);
}
pre->preModPolys[j++] = PolynomialDup(t0);
s0 =PolynomialMult( t0, s);
FreePoly(t0); FreePoly(t);
for( i=(rr-2); i>=0; i--){
pre->preModPolys[j++] = PolynomialDup(s0);
s1 = s0;
s0 = PolynomialMult( s0, s);
FreePoly(s1);
}
pre->preModPolys[j++] = PolynomialDup(s0);
FreePoly(s0); FreePoly(s);
}
// init.c
void init_dc(uint32_t seed)
{
_sgenrand_dc(&global_mt19937, seed);
}
// genmtrand.c
#define SHIFT1 18
void sgenrand_mt(uint32_t seed, mt_struct *mts)
{
int i;
for (i=0; i<mts->nn; i++) {
mts->state[i] = seed;
seed = (UINT32_C(1812433253) * (seed ^ (seed >> 30))) + i + 1;
/* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */
/* In the previous versions, MSBs of the seed affect */
/* only MSBs of the array mt[]. */
}
mts->i = mts->nn;
for (i=0; i<mts->nn; i++)
mts->state[i] &= mts->wmask;
}
uint32_t genrand_mt(mt_struct *mts)
{
uint32_t *st, uuu, lll, aa, x;
int k,n,m,lim;
if ( mts->i >= mts->nn ) {
n = mts->nn; m = mts->mm;
aa = mts->aaa;
st = mts->state;
uuu = mts->umask; lll = mts->lmask;
lim = n - m;
for (k=0; k<lim; k++) {
x = (st[k]&uuu)|(st[k+1]&lll);
st[k] = st[k+m] ^ (x>>1) ^ (x&1U ? aa : 0U);
}
lim = n - 1;
for (; k<lim; k++) {
x = (st[k]&uuu)|(st[k+1]&lll);
st[k] = st[k+m-n] ^ (x>>1) ^ (x&1U ? aa : 0U);
}
x = (st[n-1]&uuu)|(st[0]&lll);
st[n-1] = st[m-1] ^ (x>>1) ^ (x&1U ? aa : 0U);
mts->i=0;
}
x = mts->state[mts->i];
mts->i += 1;
x ^= x >> mts->shift0;
x ^= (x << mts->shiftB) & mts->maskB;
x ^= (x << mts->shiftC) & mts->maskC;
x ^= x >> mts->shift1;
return x;
}
// check32.c
#define LSB 0x1
#define WORDLEN 32
void _InitCheck32_dc(check32_t *ck, int r, int w)
{
int i;
/* word_mask (least significant w bits) */
ck->word_mask = 0xFFFFFFFF;
ck->word_mask <<= WORDLEN - w;
ck->word_mask >>= WORDLEN - w;
/* lower_mask (least significant r bits) */
for (ck->lower_mask=0,i=0; i<r; ++i) {
ck->lower_mask <<= 1;
ck->lower_mask |= LSB;
}
/* upper_mask (most significant (w-r) bits */
ck->upper_mask = (~ck->lower_mask) & ck->word_mask;
}
int _CheckPeriod_dc(check32_t *ck, _org_state *st,
uint32_t a, int m, int n, int r, int w)
{
int i, j, p, pp;
uint32_t y, *x, *init, mat[2];
p = n*w-r;
x = (uint32_t*) malloc (2*p*sizeof(uint32_t));
if (NULL==x) {
printf("malloc error in \"_CheckPeriod_dc()\"\n");
exit(1);
}
init = (uint32_t*) malloc (n*sizeof(uint32_t));
if (NULL==init) {
printf("malloc error \"_CheckPeriod_dc()\"\n");
free(x);
exit(1);
}
/* set initial values */
for (i=0; i<n; ++i)
x[i] = init[i] = (ck->word_mask & _genrand_dc(st));
/* it is better that LSBs of x[2] and x[3] are different */
if ( (x[2]&LSB) == (x[3]&LSB) ) {
x[3] ^= 1;
init[3] ^= 1;
}
pp = 2*p-n;
mat[0] = 0; mat[1] = a;
for (j=0; j<p; ++j) {
/* generate */
for (i=0; i<pp; ++i){
y = (x[i]&ck->upper_mask) | (x[i+1]&ck->lower_mask);
x[i+n] = x[i+m] ^ ( (y>>1) ^ mat[y&LSB] );
}
/* pick up odd subscritpt elements */
for (i=2; i<=p; ++i)
x[i] = x[(i<<1)-1];
/* reverse generate */
for (i=p-n; i>=0; --i) {
y = x[i+n] ^ x[i+m] ^ mat[ x[i+1]&LSB ];
y <<=1; y |= x[i+1]&LSB;
x[i+1] = (x[i+1]&ck->upper_mask) | (y&ck->lower_mask);
x[i] = (y&ck->upper_mask) | (x[i]&ck->lower_mask);
}
}
if ((x[0]&ck->upper_mask)==(init[0]&ck->upper_mask)) {
for (i=1; i<n; ++i) {
if (x[i] != init[i])
break;
}
if (i==n) {
free(x); free(init);
return IRRED;
}
}
free(x); free(init);
return REDU;
}
#undef N
#undef NOT_REJECTED
#undef REJECTED
#undef REDU
#undef IRRED
#undef NONREDU
#undef SSS
#undef TTT
#undef S00
#undef S01
#undef LIMIT_V_BEST_OPT
#undef WORD_LEN
#undef MIN_INFINITE
#undef M
#undef MATRIX_A
#undef UPPER_MASK
#undef LOWER_MASK
#undef TEMPERING_MASK_B
#undef TEMPERING_MASK_C
#undef TEMPERING_SHIFT_U
#undef TEMPERING_SHIFT_S
#undef TEMPERING_SHIFT_T
#undef TEMPERING_SHIFT_L
#undef LSB
#undef MAX_SEARCH
#undef FOUND
#undef NOT_FOUND
#undef DEFAULT_ID_SIZE
#undef LIMIT_IRRED_DEG
#undef NIRREDPOLY
#undef MAX_IRRED_DEG
#undef SHIFT1
#undef LSB
#undef WORDLEN
|