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 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922
|
// binomial.cc
// implementation of class binomial
#ifndef BINOMIAL_CC
#define BINOMIAL_CC
#include <climits>
#include "binomial__term_ordering.h"
///////////////////////// constructors and destructor //////////////////////
// For a better overview, the constructor code is separated for
// NO_SUPPORT_DRIVEN_METHODS and SUPPORT_DRIVEN_METHODS.
#ifdef NO_SUPPORT_DRIVEN_METHODS
binomial::binomial(const short& number_of_variables)
:_number_of_variables(number_of_variables)
{
exponent_vector=new Integer[_number_of_variables];
}
binomial::binomial(const short& number_of_variables,const Integer* exponents)
:_number_of_variables(number_of_variables)
{
// range check for rarely used constructors
if(_number_of_variables<=0)
{
cerr<<"\nWARNING: binomial::binomial(const short&, const Integer*):\n"
"argument out of range"<<endl;
exponent_vector=NULL;
// to avoid problems when deleting
return;
}
// initialization
exponent_vector=new Integer[_number_of_variables];
for(short i=0;i<_number_of_variables;i++)
exponent_vector[i]=exponents[i];
}
binomial::binomial(const short& number_of_variables,const Integer* exponents,
const term_ordering& w)
:_number_of_variables(number_of_variables)
{
// range check for rarely used constructors
if(_number_of_variables<=0)
{
cerr<<"\nWARNING: binomial::binomial(const short&, const Integer*):\n"
"argument out of range"<<endl;
exponent_vector=NULL;
// to avoid problems when deleting
return;
}
exponent_vector=new Integer[_number_of_variables];
// determine head and tail
if(w.compare_to_zero(exponents)>=0)
for(short i=0;i<_number_of_variables;i++)
exponent_vector[i]=exponents[i];
else
for(short i=0;i<_number_of_variables;i++)
exponent_vector[i]=-exponents[i];
}
binomial::binomial(const binomial& b)
:_number_of_variables(b._number_of_variables)
{
exponent_vector=new Integer[_number_of_variables];
for(short i=0;i<_number_of_variables;i++)
exponent_vector[i]=b.exponent_vector[i];
}
#endif // NO_SUPPORT_DRIVEN_METHODS
#ifdef SUPPORT_DRIVEN_METHODS
binomial::binomial(const short& number_of_variables)
:_number_of_variables(number_of_variables),head_support(0),tail_support(0)
{
exponent_vector=new Integer[_number_of_variables];
}
binomial::binomial(const short& number_of_variables, const Integer* exponents)
:_number_of_variables(number_of_variables),head_support(0),tail_support(0)
{
// range check for rarely used constructors
if(_number_of_variables<=0)
{
exponent_vector=NULL;
// to avoid problems when deleting
cerr<<"\nWARNING: binomial::binomial(const short&, const Integer*):\n"
"argument out of range"<<endl;
return;
}
exponent_vector=new Integer[_number_of_variables];
short size_of_support_vectors=CHAR_BIT*sizeof(unsigned long);
// number of bits of a long int
for(short i=0;i<_number_of_variables;i++)
{
#ifdef SUPPORT_VARIABLES_FIRST
Integer actual_entry=exponents[i];
exponent_vector[i]=actual_entry;
#endif // SUPPORT_VARIABLES_FIRST
#ifdef SUPPORT_VARIABLES_LAST
short j=_number_of_variables-1-i;
Integer actual_entry=exponents[j];
exponent_vector[j]=actual_entry;
#endif // SUPPORT_VARIABLES_LAST
if(i<size_of_support_vectors)
{
// variable i is considered in the support vectors
if(actual_entry>0)
head_support|=(1<<i);
// bit i of head_support is set to 1 (counting from 0)
else if(actual_entry<0)
tail_support|=(1<<i);
// bit i of tail_support is set to 1
}
}
}
binomial::binomial(const short& number_of_variables, const Integer* exponents,
const term_ordering& w)
:_number_of_variables(number_of_variables),head_support(0),tail_support(0)
{
// range check for rarely used constructors
if(_number_of_variables<=0)
{
cerr<<"\nWARNING: binomial::binomial(const short&, const Integer*):\n"
"argument out of range"<<endl;
exponent_vector=NULL;
// to avoid problems when deleting
return;
}
exponent_vector=new Integer[_number_of_variables];
short size_of_support_vectors=CHAR_BIT*sizeof(unsigned long);
// number of bits of a long int
// determine head and tail
short sign;
if(w.compare_to_zero(exponents)>=0)
sign=1;
else
sign=-1;
for(short i=0;i<_number_of_variables;i++)
{
#ifdef SUPPORT_VARIABLES_FIRST
Integer actual_entry=sign*exponents[i];
exponent_vector[i]=actual_entry;
#endif // SUPPORT_VARIABLES_FIRST
#ifdef SUPPORT_VARIABLES_LAST
short j=_number_of_variables-1-i;
Integer actual_entry=sign*exponents[j];
exponent_vector[j]=actual_entry;
#endif // SUPPORT_VARIABLES_LAST
if(i<size_of_support_vectors)
{
// variable i is considered in the support vectors
if(actual_entry>0)
head_support|=(1<<i);
// bit i of head_support is set to 1 (counting from 0)
else if(actual_entry<0)
tail_support|=(1<<i);
// bit i of tail_support is set to 1
}
}
}
binomial::binomial(const binomial& b)
:_number_of_variables(b._number_of_variables),
head_support(b.head_support),tail_support(b.tail_support)
{
exponent_vector=new Integer[_number_of_variables];
for(short i=0;i<_number_of_variables;i++)
exponent_vector[i]=b.exponent_vector[i];
}
#endif // SUPPORT_DRIVEN_METHODS
binomial::~binomial()
{
delete[] exponent_vector;
}
/////////////////// object information /////////////////////////////////////
short binomial::number_of_variables() const
{
return _number_of_variables;
}
short binomial::error_status() const
{
if(_number_of_variables<0)
return _number_of_variables;
return 0;
}
//////////////////// assignment and access operators ////////////////////////
binomial& binomial::operator=(const binomial& b)
{
if(&b==this)
return *this;
#ifdef SUPPORT_DRIVEN_METHODS
head_support=b.head_support;
tail_support=b.tail_support;
#endif // SUPPORT_DRIVEN_METHODS
if(_number_of_variables!=b._number_of_variables)
{
delete[] exponent_vector;
_number_of_variables=b._number_of_variables;
if(_number_of_variables<=0)
{
cerr<<"\nWARNING: binomial& binomial::operator=(const binomial&):\n"
"assignment from corrupt binomial"<<endl;
exponent_vector=NULL;
return (*this);
}
exponent_vector=new Integer[_number_of_variables];
}
for(short i=0;i<_number_of_variables;i++)
exponent_vector[i]=b.exponent_vector[i];
return(*this);
}
Integer binomial::operator[](const short& i) const
{
return exponent_vector[i];
}
//////////////////// comparison operators ///////////////////////////////////
BOOLEAN binomial::operator==(const binomial& b) const
{
if(this == &b)
return(TRUE);
#ifdef SUPPORT_DRIVEN_METHODS
if(head_support!=b.head_support)
return(FALSE);
if(tail_support!=b.tail_support)
return(FALSE);
#endif // SUPPORT_DRIVEN_METHODS
for(short i=0;i<_number_of_variables;i++)
if(exponent_vector[i]!=b.exponent_vector[i])
return(FALSE);
return(TRUE);
}
BOOLEAN binomial::operator!=(const binomial& b) const
{
if(this == &b)
return(FALSE);
#ifdef SUPPORT_DRIVEN_METHODS
if(head_support!=b.head_support)
return(TRUE);
if(tail_support!=b.tail_support)
return(TRUE);
#endif // SUPPORT_DRIVEN_METHODS
for(short i=0;i<_number_of_variables;i++)
if(exponent_vector[i]!=b.exponent_vector[i])
return(TRUE);
return(FALSE);
}
// operators for efficient comparisons with the zero binomial (comp_value=0)
BOOLEAN binomial::operator==(const Integer comp_value) const
{
#ifdef SUPPORT_DRIVEN_METHODS
if(comp_value==0)
{
if(head_support!=0)
return(FALSE);
if(tail_support!=0)
return(FALSE);
}
#endif // SUPPORT_DRIVEN_METHODS
for(short i=0;i<_number_of_variables;i++)
if(exponent_vector[i]!=comp_value)
return(FALSE);
return(TRUE);
}
BOOLEAN binomial::operator!=(const Integer comp_value) const
{
#ifdef SUPPORT_DRIVEN_METHODS
if(comp_value==0)
{
if(head_support!=0)
return(TRUE);
if(tail_support!=0)
return(TRUE);
}
#endif // SUPPORT_DRIVEN_METHODS
for(short i=0;i<_number_of_variables;i++)
if(exponent_vector[i]!=comp_value)
return(TRUE);
return(FALSE);
}
BOOLEAN binomial::operator<=(const Integer comp_value) const
{
#ifdef SUPPORT_DRIVEN_METHODS
if(comp_value==0)
if(head_support!=0)
return(FALSE);
#endif // SUPPORT_DRIVEN_METHODS
for(short i=0;i<_number_of_variables;i++)
if(exponent_vector[i]>comp_value)
return(FALSE);
return(TRUE);
}
BOOLEAN binomial::operator>=(const Integer comp_value) const
{
#ifdef SUPPORT_DRIVEN_METHODS
if(comp_value==0)
if(tail_support!=0)
return(FALSE);
#endif
for(short i=0;i<_number_of_variables;i++)
if(exponent_vector[i]<comp_value)
return(FALSE);
return(TRUE);
}
////////////// basic routines for Buchbergers's algorithm //////////////////
Integer binomial::head_reductions_by(const binomial& b) const
// Returns the number of possible reductions of the actual binomial´s head
// by the binomial b. This is the minimum of the quotients
// exponent_vector[i]/b.exponent_vector[i]
// where exponent_vector[i]>0 and b.exponent_vector[i]>0
// (0 if there are no such quotients).
// A negative return value means b=0 or head(b)=1.
{
#ifdef NO_SUPPORT_DRIVEN_METHODS
Integer result=-1;
Integer new_result=-1;
// -1 stands for infinitely many reductions
for(short i=0;i<_number_of_variables;i++)
// explicit sign tests for all components
{
Integer actual_b_component=b.exponent_vector[i];
if(actual_b_component>0)
// else variable i is not involved in the head of b
{
Integer actual_component=exponent_vector[i];
if(actual_component<actual_b_component)
return 0;
new_result=(Integer) (actual_component/actual_b_component);
// new_result>=1
if((new_result<result) || (result==-1))
// new (or first) minimum
result=new_result;
}
}
#endif // NO_SUPPORT_DRIVEN_METHODS
#ifdef SUPPORT_DRIVEN_METHODS
if((head_support&b.head_support)!=b.head_support)
// head support of b not contained in head support, no reduction possible
return 0;
Integer result=-1;
Integer new_result=-1;
// -1 stands for infinitely many reductions
short size_of_support_vectors=CHAR_BIT*sizeof(long);
// number of bits of a long int
if(size_of_support_vectors>_number_of_variables)
size_of_support_vectors=_number_of_variables;
// number of components of the support vectors
#ifdef SUPPORT_VARIABLES_FIRST
for(short i=0;i<size_of_support_vectors;i++)
// test support variables
if(b.head_support&(1<<i))
// bit i of b.head_support is 1
{
new_result=(Integer) (exponent_vector[i]/b.exponent_vector[i]);
// remember that exponent_vector[i]>0 !
// (head support contains that of b)
if(new_result==0)
// exponent_vector[i]<b.exponent_vector[i]
return 0;
// new_result>=1
if((new_result<result) || (result==-1))
// new (or first) minimum
result=new_result;
}
for(short i=size_of_support_vectors;i<_number_of_variables;i++)
// test non-support variables
// from now on we need explicit sign tests
{
Integer actual_b_component=b.exponent_vector[i];
if(actual_b_component>0)
// else variable i is not involved in the head of b
{
Integer actual_component=exponent_vector[i];
if(actual_component<actual_b_component)
return 0;
new_result=(Integer) (actual_component/actual_b_component);
// new_result>=1
if((new_result<result) || (result==-1))
// new (or first) minimum
result=new_result;
}
}
#endif // SUPPORT_VARIABLES_FIRST
#ifdef SUPPORT_VARIABLES_LAST
for(short i=0;i<size_of_support_vectors;i++)
// test support variables
if(b.head_support&(1<<i))
// bit i of b.head_support is 1
{
short j=_number_of_variables-1-i;
new_result=(Integer) (exponent_vector[j]/ b.exponent_vector[j]);
// remember that exponent_vector[_number_of_variables-1-i]>0 !
// (head support contains that of b)
if(new_result==0)
// exponent_vector[_number_of_variables-1-i]
// <b.exponent_vector[_number_of_variables-1-i]
return 0;
// new_result>=1
if((new_result<result) || (result==-1))
// new (or first) minimum
result=new_result;
}
for(short i=size_of_support_vectors;i<_number_of_variables;i++)
// test non-support variables
// from now on we need explicit sign tests
{
short j=_number_of_variables-1-i;
Integer actual_b_component=b.exponent_vector[j];
if(actual_b_component>0)
// else variable number_of_variables-1-i is not involved in the head of b
{
Integer actual_component=exponent_vector[j];
if(actual_component<actual_b_component)
return 0;
new_result=(Integer) (actual_component/actual_b_component);
// new_result>=1
if((new_result<result) || (result==-1))
// new (or first) minimum
result=new_result;
}
}
#endif // SUPPORT_VARIABLES_LAST
#endif // SUPPORT_DRIVEN_METHODS
return(result);
}
Integer binomial::tail_reductions_by(const binomial& b) const
// Returns the number of possible reductions of the actual binomial´s tail
// by the binomial b. This is the minimum of the quotients
// - exponent_vector[i]/b.exponent_vector[i]
// where exponent_vector[i]<0 and b.exponent_vector[i]>0
// (0 if there are no such quotients).
// A negative return value means b=0 or head(b)=1.
{
#ifdef NO_SUPPORT_DRIVEN_METHODS
Integer result=-1;
Integer new_result=-1;
// -1 stands for infinitely many reductions
for(short i=0;i<_number_of_variables;i++)
// explicit sign tests for all components
{
Integer actual_b_component=b.exponent_vector[i];
if(actual_b_component>0)
// else variable i is not involved in the head of b
{
Integer actual_component=-exponent_vector[i];
if(actual_component<actual_b_component)
return 0;
new_result=(Integer) (actual_component/actual_b_component);
// new_result>=1
if((new_result<result) || (result==-1))
// new (or first) minimum
result=new_result;
}
}
#endif // NO_SUPPORT_DRIVEN_METHODS
#ifdef SUPPORT_DRIVEN_METHODS
if((tail_support&b.head_support)!=b.head_support)
// head support of b not contained in tail support, no reduction possible
return 0;
Integer result=-1;
Integer new_result=-1;
// -1 stands for infinitely many reductions
short size_of_support_vectors=CHAR_BIT*sizeof(long);
// number of bits of a long int
if(size_of_support_vectors>_number_of_variables)
size_of_support_vectors=_number_of_variables;
// number of components of the support vectors
#ifdef SUPPORT_VARIABLES_FIRST
for(short i=0;i<size_of_support_vectors;i++)
// test support variables
if(b.head_support&(1<<i))
// bit i of b.head_support is 1
{
new_result=(Integer) (-exponent_vector[i]/b.exponent_vector[i]);
// remember that exponent_vector[i]<0 !
// (tail support contains the head support of b)
if(new_result==0)
// -exponent_vector[i]<b.exponent_vector[i]
return 0;
// new_result>=1
if((new_result<result) || (result==-1))
// new (or first) minimum
result=new_result;
}
for(short i=size_of_support_vectors;i<_number_of_variables;i++)
// test non-support variables
// from now on we need explicit sign tests
{
Integer actual_b_component=b.exponent_vector[i];
if(actual_b_component>0)
// else variable i is not involved in the head of b
{
Integer actual_component=-exponent_vector[i];
if(actual_component<actual_b_component)
return 0;
new_result=(Integer) (actual_component/actual_b_component);
// new_result>=1
if((new_result<result) || (result==-1))
// new (or first) minimum
result=new_result;
}
}
#endif // SUPPORT_VARIABLES_FIRST
#ifdef SUPPORT_VARIABLES_LAST
for(short i=0;i<size_of_support_vectors;i++)
// test support variables
if(b.head_support&(1<<i))
// bit i of b.head_support is 1
{
short j=_number_of_variables-1-i;
new_result=(Integer) (-exponent_vector[j] / b.exponent_vector[j]);
// remember that exponent_vector[_number_of_variables-1-i]<0 !
// (tail support contains the head support of b)
if(new_result==0)
// -exponent_vector[_number_of_variables-1-i]
// <b.exponent_vector[_number_of_variables-1-i]
return 0;
// new_result>=1
if((new_result<result) || (result==-1))
// new (or first) minimum
result=new_result;
}
for(short i=size_of_support_vectors;i<_number_of_variables;i++)
// test non-support variables
// from now on we need explicit sign tests
{
short j=_number_of_variables-1-i;
Integer actual_b_component=b.exponent_vector[j];
if(actual_b_component>0)
// else variable number_of_variables-1-i is not involved in the head of b
{
Integer actual_component=-exponent_vector[j];
if(actual_component<actual_b_component)
return 0;
new_result=(Integer) (actual_component/actual_b_component);
// new_result>=1
if((new_result<result) || (result==-1))
// new (or first) minimum
result=new_result;
}
}
#endif // SUPPORT_VARIABLES_LAST
#endif // SUPPORT_DRIVEN_METHODS
return(result);
}
int binomial::reduce_head_by(const binomial& b, const term_ordering& w)
{
Integer reduction_number=head_reductions_by(b);
if(reduction_number<=0)
return 0;
for(short i=0;i<_number_of_variables;i++)
exponent_vector[i]-=(reduction_number * b.exponent_vector[i]);
// multiple reduction
// reduction corresponds to subtraction of vectors
short sign=w.compare_to_zero(exponent_vector);
#ifdef NO_SUPPORT_DRIVEN_METHODS
if(sign==0)
// binomial reduced to zero
return 2;
for(short i=0;i<_number_of_variables;i++)
exponent_vector[i]*=sign;
#endif // NO_SUPPORT_DRIVEN_METHODS
#ifdef SUPPORT_DRIVEN_METHODS
head_support=0;
tail_support=0;
if(sign==0)
// binomial reduced to zero
return 2;
short size_of_support_vectors=CHAR_BIT*sizeof(unsigned long);
// recompute the support vectors
#ifdef SUPPORT_VARIABLES_FIRST
for(short i=0;i<_number_of_variables;i++)
{
Integer& actual_entry=exponent_vector[i];
// to avoid unnecessary pointer arithmetic
actual_entry*=sign;
if(i<size_of_support_vectors)
if(actual_entry>0)
head_support|=(1<<i);
else
if(actual_entry<0)
tail_support|=(1<<i);
}
#endif // SUPPORT_VARIABLES_FIRST
#ifdef SUPPORT_VARIABLES_LAST
for(short i=0;i<_number_of_variables;i++)
{
Integer& actual_entry=exponent_vector[_number_of_variables-1-i];
// to avoid unnecessary pointer arithmetic
actual_entry*=sign;
if(i<size_of_support_vectors)
{
if(actual_entry>0)
head_support|=(1<<i);
else if(actual_entry<0)
tail_support|=(1<<i);
}
}
#endif // SUPPORT_VARIABLES_LAST
#endif // SUPPORT_DRIVEN_METHODS
return 1;
}
int binomial::reduce_tail_by(const binomial& b, const term_ordering& w)
{
Integer reduction_number=tail_reductions_by(b);
if(reduction_number<=0)
return 0;
for(short i=0;i<_number_of_variables;i++)
exponent_vector[i]+=(reduction_number * b.exponent_vector[i]);
// multiple reduction
// reduction corresponds to addition of vectors
// a tail reduction does not require a sign check
#ifdef SUPPORT_DRIVEN_METHODS
head_support=0;
tail_support=0;
short size_of_support_vectors=CHAR_BIT*sizeof(unsigned long);
// recompute the support vectors
#ifdef SUPPORT_VARIABLES_FIRST
for(short i=0;i<_number_of_variables;i++)
{
Integer& actual_entry=exponent_vector[i];
// to avoid unnecessary pointer arithmetic
if(i<size_of_support_vectors)
{
if(actual_entry>0)
head_support|=(1<<i);
else if(actual_entry<0)
tail_support|=(1<<i);
}
}
#endif // SUPPORT_VARIABLES_FIRST
#ifdef SUPPORT_VARIABLES_LAST
for(short i=0;i<_number_of_variables;i++)
{
Integer& actual_entry=exponent_vector[_number_of_variables-1-i];
// to avoid unnecessary pointer arithmetic
if(i<size_of_support_vectors)
{
if(actual_entry>0)
head_support|=(1<<i);
else if(actual_entry<0)
tail_support|=(1<<i);
}
}
#endif // SUPPORT_VARIABLES_LAST
#endif // SUPPORT_DRIVEN_METHODS
return 1;
}
binomial& S_binomial(const binomial& a, const binomial& b,
const term_ordering& w)
{
binomial* S_bin=new binomial(a._number_of_variables);
binomial& result=*S_bin;
// Note that we allocate memory for the result binomial. We often use
// pointers or references as argument and return types because the
// generating binomials of an ideal are kept in lists. For the performance
// of Buchberger's algorithm it it very important to avoid local copies
// of binomials, so a lot of attention is paid on the choice of argument
// and return types. As this choice is done in order to improve performance,
// it might be a bad choice with respect to code reuse (there are some
// dangerous constructions).
for(short i=0;i<result._number_of_variables;i++)
result.exponent_vector[i]=a.exponent_vector[i]-b.exponent_vector[i];
// The S-binomial corresponds to the vector difference.
// compute head and tail
short sign=w.compare_to_zero(result.exponent_vector);
#ifdef NO_SUPPORT_DRIVEN_METHODS
if(sign==0)
// binomial reduced to zero
return result;
for(short i=0;i<result._number_of_variables;i++)
result.exponent_vector[i]*=sign;
#endif // NO_SUPPORT_DRIVEN_METHODS
#ifdef SUPPORT_DRIVEN_METHODS
result.head_support=0;
result.tail_support=0;
if(sign==0)
// binomial reduced to zero
return result;
short size_of_support_vectors=CHAR_BIT*sizeof(unsigned long);
// recompute the support vectors
#ifdef SUPPORT_VARIABLES_FIRST
for(short i=0;i<result._number_of_variables;i++)
{
Integer& actual_entry=result.exponent_vector[i];
// to avoid unnecessary pointer arithmetic
actual_entry*=sign;
if(i<size_of_support_vectors)
{
if(actual_entry>0)
result.head_support|=(1<<i);
else if(actual_entry<0)
result.tail_support|=(1<<i);
}
}
#endif // SUPPORT_VARIABLES_FIRST
#ifdef SUPPORT_VARIABLES_LAST
for(short i=0;i<result._number_of_variables;i++)
{
Integer& actual_entry=result.exponent_vector
[result._number_of_variables-1-i];
// to avoid unnecessary pointer arithmetic
actual_entry*=sign;
if(i<size_of_support_vectors)
{
if(actual_entry>0)
result.head_support|=(1<<i);
else if(actual_entry<0)
result.tail_support|=(1<<i);
}
}
#endif // SUPPORT_VARIABLES_LAST
#endif // SUPPORT_DRIVEN_METHODS
return result;
}
///////////// criteria for unnecessary S-pairs ///////////////////////////////
// The criteria are programmed in a way that tries to minimize pointer
// arithmetic. Therefore the code may appear a little bit inflated.
BOOLEAN relatively_prime(const binomial& a, const binomial& b)
{
#ifdef NO_SUPPORT_DRIVEN_METHODS
// look at all variables
for(short i=0;i<a._number_of_variables;i++)
if((a.exponent_vector[i]>0) && (b.exponent_vector[i]>0))
return FALSE;
return TRUE;
#endif // NO_SUPPORT_DRIVEN_METHODS
#ifdef SUPPORT_DRIVEN_METHODS
if((a.head_support & b.head_support)!=0)
// common support variable in the heads
return FALSE;
// no common support variable in the heads, look at remaining variables
short size_of_support_vectors=CHAR_BIT*sizeof(unsigned long);
#ifdef SUPPORT_VARIABLES_FIRST
for(short i=size_of_support_vectors;i<a._number_of_variables;i++)
if((a.exponent_vector[i]>0) && (b.exponent_vector[i]>0))
return FALSE;
return TRUE;
#endif // SUPPORT_VARIABLES_FIRST
#ifdef SUPPORT_VARIABLES_LAST
for(short i=a._number_of_variables-1-size_of_support_vectors;i>=0;i--)
if((a.exponent_vector[i]>0) && (b.exponent_vector[i]>0))
return FALSE;
return TRUE;
#endif // SUPPORT_VARIABLES_LAST
#endif // SUPPORT_DRIVEN_METHODS
}
BOOLEAN M(const binomial& a, const binomial& b, const binomial& c)
// Returns TRUE iff lcm(head(a),head(c)) divides properly lcm(head(b),head(c)).
// This is checked by comparing the positive components of the exponent
// vectors.
{
#ifdef SUPPORT_DRIVEN_METHODS
long b_or_c=b.head_support|c.head_support;
if((a.head_support|b_or_c) != b_or_c)
return FALSE;
// The support of lcm(head(a),head(c)) equals the union of the head supports
// of a and c. The above condition verifies if the support of
// lcm(head(a),head(c)) is contained in the support of lcm(head(b),head(c))
// by checking if head a involves a variable that is not involved in
// head(b) or head(c).
#endif // SUPPORT_DRIVEN_METHODS
BOOLEAN properly=FALSE;
for(short i=0;i<a._number_of_variables;i++)
{
Integer a_exponent=a.exponent_vector[i];
Integer b_exponent=b.exponent_vector[i];
Integer c_exponent=c.exponent_vector[i];
Integer m1=MAXIMUM(a_exponent,c_exponent);
Integer m2=MAXIMUM(b_exponent,c_exponent);
if(m1>0)
{
if(m1>m2)
return FALSE;
if(m1<m2)
properly=TRUE;
}
}
return properly;
}
BOOLEAN F(const binomial& a, const binomial& b, const binomial& c)
// verifies if lcm(head(a),head(c))=lcm(head(b),head(c))
{
#ifdef SUPPORT_DRIVEN_METHODS
if((a.head_support|c.head_support)!=(b.head_support|c.head_support))
return FALSE;
// The above condition verifies if the support of lcm(head(a),head(c))
// equals the support of lcm(head(b),head(c)).
#endif // SUPPORT_DRIVEN_METHODS
for(short i=0;i<a._number_of_variables;i++)
{
Integer a_exponent=a.exponent_vector[i];
Integer b_exponent=b.exponent_vector[i];
Integer c_exponent=c.exponent_vector[i];
Integer m1=MAXIMUM(a_exponent,c_exponent);
Integer m2=MAXIMUM(b_exponent,c_exponent);
if((m1!=m2) && (m1>0 || m2>0))
return FALSE;
}
return TRUE;
}
BOOLEAN B(const binomial& a, const binomial& b, const binomial& c)
// verifies if head(a) divides lcm(head(b),head(c)) and
// lcm(head(a),head(b))!=lcm(head(b),head(c))!=lcm(head(a),head(c))
{
#ifdef SUPPORT_DRIVEN_METHODS
long a_or_b=a.head_support|b.head_support;
long a_or_c=a.head_support|c.head_support;
long b_or_c=b.head_support|c.head_support;
if((a.head_support & b_or_c)!=a.head_support)
return FALSE;
// The above condition verifies if the support of head(a) is contained in
// the support of lcm(head(b),head(c)).
if( (a_or_c != b_or_c) && (a_or_b != b_or_c))
// Then the inequality conditions are guaranteed...
{
for(short i=0;i<a._number_of_variables;i++)
{
Integer b_exponent=b.exponent_vector[i];
Integer c_exponent=c.exponent_vector[i];
if(a.exponent_vector[i]>MAXIMUM(b_exponent,c_exponent))
return FALSE;
}
return (TRUE);
}
if(a_or_b != b_or_c)
// Then the first inequality conditions is guaranteed...
// Verify only the second.
{
BOOLEAN not_equal=FALSE;
for(short i=0;i<a._number_of_variables;i++)
{
Integer a_exponent=a.exponent_vector[i];
Integer b_exponent=b.exponent_vector[i];
Integer c_exponent=c.exponent_vector[i];
Integer m=MAXIMUM(b_exponent, c_exponent);
if(a_exponent>m)
return FALSE;
if(MAXIMUM(a_exponent,c_exponent) != m)
not_equal=TRUE;
}
return(not_equal);
}
if( a_or_c != b_or_c )
// Then the second inequality conditions is guaranteed...
// Verify only the first.
{
BOOLEAN not_equal=FALSE;
for(short i=0;i<a._number_of_variables;i++)
{
Integer a_exponent=a.exponent_vector[i];
Integer b_exponent=b.exponent_vector[i];
Integer c_exponent=c.exponent_vector[i];
Integer m=MAXIMUM(b_exponent, c_exponent);
if(a_exponent > m)
return FALSE;
if(MAXIMUM(a_exponent,b_exponent) != m)
not_equal=TRUE;
}
return(not_equal);
}
#endif // SUPPORT_DRIVEN_METHODS
BOOLEAN not_equal_1=FALSE;
BOOLEAN not_equal_2=FALSE;
for(short i=0;i<a._number_of_variables;i++)
{
Integer a_exponent=a.exponent_vector[i];
Integer b_exponent=b.exponent_vector[i];
Integer c_exponent=c.exponent_vector[i];
Integer m=MAXIMUM(b_exponent, c_exponent);
if(a_exponent > m)
return FALSE;
if(MAXIMUM(a_exponent,b_exponent) != m)
not_equal_1=TRUE;
if(MAXIMUM(a_exponent,c_exponent) != m)
not_equal_2=TRUE;
}
return (not_equal_1 && not_equal_2);
}
BOOLEAN second_crit(const binomial& a, const binomial& b,
const binomial& c)
// verifies if head(a) divides lcm(head(b),head(c))
{
#ifdef SUPPORT_DRIVEN_METHODS
if((a.head_support & (b.head_support|c.head_support))!=a.head_support)
return FALSE;
// The above condition verifies if the support of head(a) is contained in
// the support of lcm(head(b),head(c))
#endif // SUPPORT_DRIVEN_METHODS.
for(short i=0;i<a._number_of_variables;i++)
{
Integer b_exponent=b.exponent_vector[i];
Integer c_exponent=c.exponent_vector[i];
if(a.exponent_vector[i]>MAXIMUM(b_exponent,c_exponent))
return FALSE;
}
return (TRUE);
}
//////// special routines needed by the IP-algorithms ///////////////////////
BOOLEAN binomial::involves_elimination_variables(const term_ordering& w)
{
// The use of support information would require the distinction of various
// cases here (relation between the number of variables to eliminate
// and the number of support variables) and be quite difficult.
// It is doubtful if this would improve performance.
// As this function is not used in Buchberger´s algorithm (and therefore
// rather rarely), I renounce to implement this.
for(short i=0;i<w.number_of_elimination_variables();i++)
// elimination variables are always the last ones
if(exponent_vector[_number_of_variables-1-i]!=0)
return TRUE;
return FALSE;
}
BOOLEAN binomial::drop_elimination_variables(const term_ordering& w)
{
_number_of_variables-=w.number_of_elimination_variables();
// dangerous (no compatibility check)!!
// copy components of interest to save memory
// the leading term has to be recomputed!!
Integer *aux=exponent_vector;
exponent_vector=new Integer[_number_of_variables];
if(w.weight(aux)>=0)
for(short i=0;i<_number_of_variables;i++)
exponent_vector[i]=aux[i];
else
for(short i=0;i<_number_of_variables;i++)
exponent_vector[i]=-aux[i];
delete[] aux;
#ifdef SUPPORT_DRIVEN_METHODS
// Recompute head and tail.
// Normally, this routine is only called for binomials that do not involve
// the variables to eliminate. But if SUPPORT_VARIABLES_LAST is enabled,
// the support changes in spite of this. Therefore, the support is
// recomputed... For the same reasons as mentioned in the preceding
// routine, the existing support information is not used.
head_support=0;
tail_support=0;
short size_of_support_vectors=CHAR_BIT*sizeof(unsigned long);
if(size_of_support_vectors>_number_of_variables)
size_of_support_vectors=_number_of_variables;
#ifdef SUPPORT_VARIABLES_FIRST
for(short i=0;i<size_of_support_vectors;i++)
{
Integer actual_entry=exponent_vector[i];
if(actual_entry>0)
head_support|=(1<<i);
else if(actual_entry[i]<0)
tail_support|=(1<<i);
}
#endif // SUPPORT_VARIABLES_FIRST
#ifdef SUPPORT_VARIABLES_LAST
for(short i=0;i<size_of_support_vectors;i++)
{
Integer actual_entry=exponent_vector[_number_of_variables-1-i];
if(actual_entry>0)
head_support|=(1<<i);
else if(actual_entry<0)
tail_support|=(1<<i);
}
#endif // SUPPORT_VARIABLES_LAST
#endif // SUPPORT_DRIVEN_METHODS
return TRUE;
}
BOOLEAN binomial::drop_last_weighted_variable(const term_ordering& w)
{
_number_of_variables--;
// dangerous!!
// copy components of interest to save memory
// the leading term has to be recomputed!!
Integer *aux=exponent_vector;
exponent_vector=new Integer[_number_of_variables];
short last_weighted_variable=w.number_of_weighted_variables()-1;
aux[last_weighted_variable]=0;
// set last component to zero, so it cannot influence the weight
if(w.weight(aux)>=0)
{
for(short i=0;i<last_weighted_variable;i++)
exponent_vector[i]=aux[i];
for(short i=last_weighted_variable;i<_number_of_variables;i++)
exponent_vector[i]=aux[i+1];
}
else
{
for(short i=0;i<last_weighted_variable;i++)
exponent_vector[i]=-aux[i];
for(short i=last_weighted_variable;i<_number_of_variables;i++)
exponent_vector[i]=-aux[i+1];
}
delete[] aux;
#ifdef SUPPORT_DRIVEN_METHODS
// Recompute head and tail.
// Normally, this routine is only called for binomials that do not involve
// the variable to be dropped. But if SUPPORT_VARIABLES_LAST is enabled,
// the support changes in spite of this. Therefore, the support is
// recomputed... For the same reasons as mentioned in the preceding
// routines, the existing support information is not used.
head_support=0;
tail_support=0;
short size_of_support_vectors=CHAR_BIT*sizeof(unsigned long);
if(size_of_support_vectors>_number_of_variables)
size_of_support_vectors=_number_of_variables;
#ifdef SUPPORT_VARIABLES_FIRST
for(short i=0;i<size_of_support_vectors;i++)
{
Integer actual_entry=exponent_vector[i];
if(actual_entry>0)
head_support|=(1<<i);
else if(actual_entry<0)
tail_support|=(1<<i);
}
#endif // SUPPORT_VARIABLES_FIRST
#ifdef SUPPORT_VARIABLES_LAST
for(short i=0;i<size_of_support_vectors;i++)
{
Integer actual_entry=exponent_vector[_number_of_variables-1-i];
if(actual_entry>0)
head_support|=(1<<i);
else if(actual_entry<0)
tail_support|=(1<<i);
}
#endif // SUPPORT_VARIABLES_LAST
#endif // SUPPORT_DRIVEN_METHODS
return TRUE;
}
int binomial::adapt_to_term_ordering(const term_ordering& w)
{
if(w.compare_to_zero(exponent_vector)<0)
{
// then exchange head and tail
for(short i=0;i<_number_of_variables;i++)
exponent_vector[i]*=(-1);
#ifdef SUPPORT_DRIVEN_METHODS
unsigned long swap=head_support;
head_support=tail_support;
tail_support=swap;
#endif
return -1;
// binomial changed
}
else
return 1;
// binomial unchanged
}
binomial& binomial::swap_variables(const short& i, const short& j)
{
#ifdef SUPPORT_DRIVEN_METHODS
// First adjust head_support and tail_support.
short size_of_support_vectors=CHAR_BIT*sizeof(unsigned long);
if(size_of_support_vectors>_number_of_variables)
size_of_support_vectors=_number_of_variables;
#ifdef SUPPORT_VARIABLES_FIRST
if(i<size_of_support_vectors)
// else i is no support variable
{
if(exponent_vector[j]>0)
// bit i will be 1 in the new head_support, 0 in the new tail_support
{
head_support|=(1<<i);
// bit i is set to 1
tail_support&=~(1<<i);
// bit i is set to 0
// (in the complement ~(1<<i) all bits are 1 except from bit i)
}
if(exponent_vector[j]==0)
// bit i will be 0 in the new head_support, 0 in the new tail_support
{
head_support&=~(1<<i);
// bit i is set to 0
tail_support&=~(1<<i);
// bit i is set to 0
}
if(exponent_vector[j]<0)
// bit i will be 0 in the new head_support, 1 in the new tail_support
{
head_support&=~(1<<i);
// bit i is set to 0
tail_support|=(1<<i);
// bit i is set to 1
}
}
if(j<size_of_support_vectors)
// else j is no support variable
{
if(exponent_vector[i]>0)
// bit j will be 1 in the new head_support, 0 in the new tail_support
{
head_support|=(1<<j);
// bit j is set to 1
tail_support&=~(1<<j);
// bit j is set to 0
// (in the complement ~(1<<j) all bits are 1 except from bit j)
}
if(exponent_vector[i]==0)
// bit j will be 0 in the new head_support, 0 in the new tail_support
{
head_support&=~(1<<j);
// bit j is set to 0
tail_support&=~(1<<j);
// bit j is set to 0
}
if(exponent_vector[i]<0)
// bit j will be 0 in the new head_support, 1 in the new tail_support
{
head_support&=~(1<<j);
// bit j is set to 0
tail_support|=(1<<j);
// bit j is set to 1
}
}
#endif // SUPPORT_VARIABLES_FIRST
#ifdef SUPPORT_VARIABLES_LAST
// Using SUPPORT_VARIABLES_LAST, bit k of the support vectors
// corresponds to exponent_vector[_number_of_variables-1-k],
// hence bit _number_of_variables-1-i to exponent_vector[i].
if(i>=_number_of_variables-size_of_support_vectors)
// else i is no support variable
{
if(exponent_vector[j]>0)
// bit _number_of_variables-1-i will be 1 in the new head_support,
// 0 in the new tail_support
{
short k=_number_of_variables-1-i;
head_support|=(1<<k);
// bit _number_of_variables-1-i is set to 1
tail_support&=~(1<<k);
// bit _number_of_variables-1-i is set to 0
// (in the complement ~(1<<(_number_of_variables-1-i)) all bits are 1
// except from bit _number_of_variables-1-i)
}
if(exponent_vector[j]==0)
// bit _number_of_variables-1-i will be 0 in the new head_support,
// 0 in the new tail_support
{
short k=_number_of_variables-1-i;
head_support&=~(1<<k);
// bit _number_of_variables-1-i is set to 0
tail_support&=~(1<<k);
// bit _number_of_variables-1-i is set to 0
}
if(exponent_vector[j]<0)
// bit _number_of_variables-1-i will be 0 in the new head_support,
// 1 in the new tail_support
{
short k=_number_of_variables-1-i;
head_support&=~(1<<k);
// bit _number_of_variables-1-i is set to 0
tail_support|=(1<<k);
// bit _number_of_variables-1-i is set to 1
}
}
if(j>=_number_of_variables-size_of_support_vectors)
// else j is no support variable
{
if(exponent_vector[i]>0)
// bit _number_of_variables-1-j will be 1 in the new head_support,
// 0 in the new tail_support
{
short k=_number_of_variables-1-j;
head_support|=(1<<k);
// bit _number_of_variables-1-j is set to 1
tail_support&=~(1<<k);
// bit _number_of_variables-1-j is set to 0
// (in the complement ~(1<<(_number_of_variables-1-j)) all bits are 1
// except from bit _number_of_variables-1-j)
}
if(exponent_vector[i]==0)
// bit _number_of_variables-1-j will be 0 in the new head_support,
// 0 in the new tail_support
{
short k=_number_of_variables-1-j;
head_support&=~(1<<k);
// bit _number_of_variables-1-j is set to 0
tail_support&=~(1<<k);
// bit _number_of_variables-1-j is set to 0
}
if(exponent_vector[i]<0)
// bit _number_of_variables-1-j will be 0 in the new head_support,
// 1 in the new tail_support
{
short k=_number_of_variables-1-j;
head_support&=~(1<<k);
// bit _number_of_variables-1-j is set to 0
tail_support|=(1<<k);
// bit _number_of_variables-1-j is set to 1
}
}
#endif // SUPPORT_VARIABLES_LAST
#endif // SUPPORT_DRIVEN_METHODS
// Now swap the components.
Integer swap=exponent_vector[j];
exponent_vector[j]=exponent_vector[i];
exponent_vector[i]=swap;
return *this;
}
binomial& binomial::flip_variable(const short& i)
{
if(exponent_vector[i]==0)
// binomial does not involve variable to flip
return *this;
#ifdef SUPPORT_DRIVEN_METHODS
// First adjust head_support and tail_support.
short size_of_support_vectors=CHAR_BIT*sizeof(unsigned long);
if(size_of_support_vectors>_number_of_variables)
size_of_support_vectors=_number_of_variables;
#ifdef SUPPORT_VARIABLES_FIRST
if(i<size_of_support_vectors)
// else i is no support variable
{
if(exponent_vector[i]>0)
// variable i will be moved from head to tail
{
head_support&=~(1<<i);
// bit i is set to 0
tail_support|=(1<<i);
// bit i is set to 1
}
else
// variable i will be moved from tail to head
// remember that exponent_vector[i]!=0
{
tail_support&=~(1<<i);
// bit i is set to 0
head_support|=(1<<i);
// bit i is set to 1
}
}
#endif // SUPPORT_VARIABLES_FIRST
#ifdef SUPPORT_VARIABLES_LAST
// Using SUPPORT_VARIABLES_LAST, bit k of the support vectors
// corresponds to exponent_vector[_number_of_variables-1-k],
// hence bit _number_of_variables-1-i to exponent_vector[i].
if(i>=_number_of_variables-size_of_support_vectors)
// else i is no support variable
{
if(exponent_vector[i]>0)
// variable i will be moved from head to tail
{
short k=_number_of_variables-1-i;
head_support&=~(1<<k);
// bit _number_of_variables-1-i is set to 0
tail_support|=(1<<k);
// bit _number_of_variables-1-i is set to 1
}
else
// variable i will be moved from tail to head
{
short k=_number_of_variables-1-i;
tail_support&=~(1<<k);
// bit _number_of_variables-1-i is set to 0
head_support|=(1<<k);
// bit _number_of_variables-1-i is set to 1
}
}
#endif // SUPPORT_VARIABLES_LAST
#endif // SUPPORT_DRIVEN_METHODS
// Now flip the variable.
exponent_vector[i]*=-1;
return *this;
}
////////////////////////// output /////////////////////////////////////////
void binomial::print() const
{
printf("(");
for(short i=0;i<_number_of_variables-1;i++)
printf("%6d,",exponent_vector[i]);
printf("%6d)\n",exponent_vector[_number_of_variables-1]);
}
void binomial::print_all() const
{
print();
#ifdef SUPPORT_DRIVEN_METHODS
printf("head: %ld, tail %ld\n",head_support,tail_support);
#endif // SUPPORT_DRIVEN_METHODS
}
void binomial::print(FILE* output) const
{
fprintf(output,"(");
for(short i=0;i<_number_of_variables-1;i++)
fprintf(output,"%6d,",exponent_vector[i]);
fprintf(output,"%6d)\n",exponent_vector[_number_of_variables-1]);
}
void binomial::print_all(FILE* output) const
{
print(output);
#ifdef SUPPORT_DRIVEN_METHODS
fprintf(output,"head: %ld, tail %ld\n",head_support,tail_support);
#endif // SUPPORT_DRIVEN_METHODS
}
void binomial::print(ofstream& output) const
{
output<<"(";
for(short i=0;i<_number_of_variables-1;i++)
output<<setw(6)<<exponent_vector[i]<<",";
output<<setw(6)<<exponent_vector[_number_of_variables-1]<<")"<<endl;
}
void binomial::print_all(ofstream& output) const
{
print(output);
#ifdef SUPPORT_DRIVEN_METHODS
output<<"head: "<<setw(16)<<head_support<<", tail: "<<setw(16)
<<tail_support<<endl;
#endif // SUPPORT_DRIVEN_METHODS
}
void binomial::format_print(ofstream& output) const
{
for(short i=0;i<_number_of_variables;i++)
output<<setw(6)<<exponent_vector[i];
output<<endl;
}
#endif // BINOMIAL_CC
|