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 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010
|
// Copyright (c) 1997-2007 ETH Zurich (Switzerland).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
//
// $URL: https://github.com/CGAL/cgal/blob/v6.1.1/QP_solver/include/CGAL/QP_solver/QP_solver.h $
// $Id: include/CGAL/QP_solver/QP_solver.h 08b27d3db14 $
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Kaspar Fischer
// : Bernd Gaertner <gaertner@inf.ethz.ch>
// : Sven Schoenherr
// : Franz Wessendorp
#ifndef CGAL_QP_SOLVER_H
#define CGAL_QP_SOLVER_H
#include <CGAL/license/QP_solver.h>
#include <CGAL/disable_warnings.h>
#include <CGAL/iterator.h>
#include <CGAL/QP_solver/basic.h>
#include <CGAL/QP_solver/functors.h>
#include <CGAL/QP_options.h>
#include <CGAL/QP_solution.h>
#include <CGAL/QP_solver/QP_basis_inverse.h>
#include <CGAL/QP_solver/QP_pricing_strategy.h>
#include <CGAL/QP_solver/QP_full_exact_pricing.h>
#include <CGAL/QP_solver/QP_partial_exact_pricing.h>
#include <CGAL/QP_solver/QP_full_filtered_pricing.h>
#include <CGAL/QP_solver/QP_partial_filtered_pricing.h>
#include <CGAL/QP_solver/QP_exact_bland_pricing.h>
#include <CGAL/algorithm.h>
#include <CGAL/NT_converter.h>
#include <CGAL/IO/Verbose_ostream.h>
#include <CGAL/boost/iterator/transform_iterator.hpp>
#include <vector>
#include <numeric>
#include <algorithm>
namespace CGAL {
// ==================
// class declarations
// ==================
template < typename Q, typename ET, typename Tags >
class QP_solver;
template <class ET>
class QP_solution;
namespace QP_solver_impl { // namespace for implementation details
// --------------
// Tags generator
// --------------
template < typename Linear,
typename Nonnegative >
struct QP_tags {
typedef Linear Is_linear;
typedef Nonnegative Is_nonnegative;
};
template < class Q, class Is_linear >
struct D_selector {};
template <class Q>
struct D_selector<Q, Tag_false> // quadratic
{
typedef typename Q::D_iterator D_iterator;
};
template <class Q>
struct D_selector<Q, Tag_true> // linear
{
// dummy type, not used
typedef int** D_iterator;
};
template < class Q, class Is_nonnegative >
struct Bd_selector {};
template < class Q >
struct Bd_selector<Q, Tag_false> // nonstandard form
{
typedef typename Q::FL_iterator FL_iterator;
typedef typename Q::L_iterator L_iterator;
typedef typename Q::FU_iterator FU_iterator;
typedef typename Q::U_iterator U_iterator;
};
template < class Q >
struct Bd_selector<Q, Tag_true> // standard form
{
// dummy types, not used
typedef int* FL_iterator;
typedef int* L_iterator;
typedef int* FU_iterator;
typedef int* U_iterator;
};
// only allow filtered pricing if NT = double
template <typename Q, typename ET, typename Tags, typename NT>
struct Filtered_pricing_strategy_selector
{
typedef QP_full_exact_pricing<Q, ET, Tags> FF;
typedef QP_partial_exact_pricing<Q, ET, Tags> PF;
};
template <typename Q, typename ET, typename Tags>
struct Filtered_pricing_strategy_selector<Q, ET, Tags, double>
{
typedef QP_full_filtered_pricing<Q, ET, Tags> FF;
typedef QP_partial_filtered_pricing<Q, ET, Tags> PF;
};
} // end of namespace for implementation details
// ================
// class interfaces
// ================
template < typename Q, typename ET, typename Tags >
class QP_solver : public QP_solver_base<ET> {
public: // public types
typedef QP_solver<Q, ET, Tags> Self;
typedef QP_solver_base<ET> Base;
// types from the QP
typedef typename Q::A_iterator A_iterator;
typedef typename Q::B_iterator B_iterator;
typedef typename Q::C_iterator C_iterator;
typedef CGAL::Comparison_result Row_type;
typedef typename Q::R_iterator Row_type_iterator;
// the remaining types might not be present in the qp, so the
// following selectors generate dummy types for them
typedef typename QP_solver_impl::
D_selector<Q, typename Tags::Is_linear>::
D_iterator D_iterator;
typedef typename QP_solver_impl::
Bd_selector<Q, typename Tags::Is_nonnegative>::
L_iterator L_iterator;
typedef typename QP_solver_impl::
Bd_selector<Q, typename Tags::Is_nonnegative>::
U_iterator U_iterator;
typedef typename QP_solver_impl::
Bd_selector<Q, typename Tags::Is_nonnegative>::
FL_iterator FL_iterator;
typedef typename QP_solver_impl::
Bd_selector<Q, typename Tags::Is_nonnegative>::
FU_iterator FU_iterator;
// types from the Tags
typedef typename Tags::Is_linear Is_linear;
typedef typename Tags::Is_nonnegative Is_nonnegative;
// friends
template <class Q_, class ET_>
friend bool has_linearly_independent_equations
(const Q_& qp, const ET_& dummy);
private: // private types
// types of original problem:
typedef typename std::iterator_traits<A_iterator>::value_type A_column;
typedef typename std::iterator_traits<D_iterator>::value_type D_row;
typedef typename std::iterator_traits<A_column >::value_type A_entry;
typedef typename std::iterator_traits<B_iterator>::value_type B_entry;
typedef typename std::iterator_traits<C_iterator>::value_type C_entry;
typedef typename std::iterator_traits<D_row >::value_type D_entry;
typedef typename std::iterator_traits<L_iterator>::value_type L_entry;
typedef typename std::iterator_traits<U_iterator>::value_type U_entry;
// slack columns:
//
// The following two types are used to (conceptually) add to the matrix A
// additional columns that model the constraints "x_s>=0" for the slack
// variables x_s. Of course, we do not store the column (which is just
// plus/minus a unit vector), but maintain a pair (int,bool): the first
// entry says in which column the +-1 is and the second entry of the pair
// says whether it is +1 (false) or -1 (true).
typedef std::pair<int,bool> Slack_column;
typedef std::vector<Slack_column> A_slack;
// artificial columns
//
// Artificial columns that are (conceptually) added to the matrix A are
// handled exactly like slack columns (see above).
typedef std::pair<int,bool> Art_column;
typedef std::vector<Art_column> A_art;
// special artificial column:
//
// Also for the special artificial variable we (conceptually) add a column
// to A. This column contains only +-1's (but it may contain several nonzero
// entries).
typedef std::vector<A_entry> S_art;
// auxiliary objective vector (i.e., the objective vector for phase I):
typedef std::vector<C_entry> C_aux;
public: // export some additional types:
typedef typename Base::Indices Indices;
typedef typename Base::Index_mutable_iterator Index_iterator;
typedef typename Base::Index_const_iterator Index_const_iterator;
// For problems in nonstandard form we also export the following type, which
// for an original variable will say whether it sits at is lower, upper, at
// its lower and upper (fixed) bound, or at zero, or whether the variable is
// basic:
enum Bound_index { LOWER, ZERO, UPPER, FIXED, BASIC };
private:
typedef std::vector<Bound_index> Bound_index_values;
typedef typename Bound_index_values::iterator
Bound_index_value_iterator;
typedef typename Bound_index_values::const_iterator
Bound_index_value_const_iterator;
// values (variables' numerators):
typedef std::vector<ET> Values;
typedef typename Values::iterator Value_iterator;
typedef typename Values::const_iterator
Value_const_iterator;
// access values by basic index functor:
typedef CGAL::Value_by_basic_index<Value_const_iterator>
Value_by_basic_index;
// access to original problem by basic variable/constraint index:
typedef QP_vector_accessor<A_column, false, false > A_by_index_accessor;
typedef boost::transform_iterator
< A_by_index_accessor,Index_const_iterator >
A_by_index_iterator;
// todo kf: following can be removed once we have all these (outdated)
// accessors removed:
typedef QP_vector_accessor< B_iterator, false, false >
B_by_index_accessor;
typedef boost::transform_iterator
< B_by_index_accessor, Index_const_iterator >
B_by_index_iterator;
typedef QP_vector_accessor< C_iterator, false, false >
C_by_index_accessor;
typedef boost::transform_iterator
<C_by_index_accessor, Index_const_iterator >
C_by_index_iterator;
typedef QP_matrix_accessor< A_iterator, false, true, false, false>
A_accessor;
typedef std::function<typename A_accessor::result_type(int)>
A_row_by_index_accessor;
typedef boost::transform_iterator
< A_row_by_index_accessor, Index_iterator >
A_row_by_index_iterator;
// Access to the matrix D sometimes converts to ET, and
// sometimes returns the original input type
typedef QP_matrix_pairwise_accessor< D_iterator, ET >
D_pairwise_accessor;
typedef boost::transform_iterator
< D_pairwise_accessor, Index_const_iterator>
D_pairwise_iterator;
typedef QP_matrix_pairwise_accessor< D_iterator, D_entry >
D_pairwise_accessor_input_type;
typedef boost::transform_iterator
< D_pairwise_accessor_input_type, Index_const_iterator >
D_pairwise_iterator_input_type;
// access to special artificial column by basic constraint index:
typedef QP_vector_accessor< typename S_art::const_iterator, false, false>
S_by_index_accessor;
typedef boost::transform_iterator
< S_by_index_accessor, Index_iterator >
S_by_index_iterator;
public:
typedef typename A_slack::const_iterator
A_slack_iterator;
typedef typename A_art::const_iterator
A_artificial_iterator;
typedef typename C_aux::const_iterator
C_auxiliary_iterator;
typedef typename Base::Variable_numerator_iterator
Variable_numerator_iterator;
typedef Index_const_iterator Basic_variable_index_iterator;
typedef Value_const_iterator Basic_variable_numerator_iterator;
typedef Index_const_iterator Basic_constraint_index_iterator;
typedef QP_pricing_strategy<Q, ET, Tags> Pricing_strategy;
private:
// compile time tag for symbolic perturbation, should be moved into traits
// class when symbolic perturbation is to be implemented
Tag_false is_perturbed;
// some constants
const ET et0, et1, et2;
// verbose output streams
mutable Verbose_ostream vout; // used for any diagnostic output
mutable Verbose_ostream vout1; // used for some diagnostic output
mutable Verbose_ostream vout2; // used for more diagnostic output
mutable Verbose_ostream vout3; // used for full diagnostic output
mutable Verbose_ostream vout4; // used for output of basis inverse
mutable Verbose_ostream vout5; // used for output of validity tests
// pricing strategy
Pricing_strategy* strategyP;
// given QP
int qp_n; // number of variables
int qp_m; // number of constraints
// min x^T D x + c^T x + c0
A_iterator qp_A; // constraint matrix
B_iterator qp_b; // right-hand-side vector
C_iterator qp_c; // objective vector
C_entry qp_c0; // constant term in objective function
// attention: qp_D represents *twice* the matrix D
D_iterator qp_D; // objective matrix
Row_type_iterator qp_r; // row-types of constraints
FL_iterator qp_fl; // lower bound finiteness vector
L_iterator qp_l; // lower bound vector
FU_iterator qp_fu; // upper bound finiteness vector
U_iterator qp_u; // upper bound vector
A_slack slack_A; // slack part of constraint matrix
// auxiliary problem
A_art art_A; // artificial part of constraint matrix
// Note: in phase I there is an
// additional "fake" column attached
// to this "matrix", see init_basis()
S_art art_s; // special artificial column for slacks
int art_s_i; // art_s_i>=0 -> index of special
// artificial column
// art_s_i==-1 -> no sp. art. col
// art_s_i==-2 -> sp. art. col removed
// after it left basis
int art_basic; // number of basic artificial variables
C_aux aux_c; // objective function for phase I
// initially has the same size as A_art
Indices B_O; // basis (original variables)
// Note: the size of B_O is always
// correct, i.e., equals the number of
// basic original variables, plus (in
// phase I) the number of basic
// artificial variables.
Indices B_S; // basis ( slack variables)
Indices C; // basic constraints ( C = E+S_N )
// Note: the size of C is always
// correct, i.e., corresponds to the
// size of the (conceptual) set
// $E\cup S_N$.
Indices S_B; // nonbasic constraints ( S_B '=' B_S)
QP_basis_inverse<ET,Is_linear>
inv_M_B; // inverse of basis matrix
const ET& d; // reference to `inv_M_B.denominator()'
Values x_B_O; // basic variables (original)
// Note: x_B_O is only enlarged,
// so its size need not be |B|.
Values x_B_S; // basic variables (slack)
Values lambda; // lambda (from KKT conditions)
Bound_index_values x_O_v_i; // bounds value index vector
// the following vectors are updated
// with each update in order to avoid
// evaluating a matrix vector
// multiplication
Values r_C; // r_C = A_{C,N_O}x_{N_O}
// Note: r_C.size() == C.size().
Values r_S_B; // r_S_B = A_{S_B,N_O}x_{N_O}
// The following to variables are initialized (if used at all) in
// transition(). They are not used in case Is_linear or
// Is_nonnegative is set to Tag_true.
Values r_B_O; // r_B_O = 2D_{B_O,N_O}x_{N_O}
Values w; // w = 2D_{O, N_O}x_{N_O}
int m_phase; // phase of the Simplex method
Quadratic_program_status m_status; // status of last pivot step
int m_pivots; // number of pivot steps
bool is_phaseI; // flag indicating phase I
bool is_phaseII;// flag indicating phase II
bool is_RTS_transition; // flag indicating transition
// from Ratio Test Step1 to Ratio
// Test Step2
const bool is_LP; // flag indicating a linear program
const bool is_QP; // flag indicating a quadratic program
// the following flag indicates whether the program is in equational form
// AND still has all its equations; this is given in phase I for any
// program in equational form, but it may change if redundant constraints
// get removed from the basis. If no_ineq == true, the program is treated
// in a more efficient manner, since in that case we need no bookkeeping
// for basic constraints
bool no_ineq;
bool has_ineq; // !no_ineq
const bool is_nonnegative; // standard form, from Tag
// additional variables
int l; // minimum of 'qp_n+e+1' and 'qp_m'
// Note: this is an upper bound for
// the size of the reduced basis in
// phase I (in phase II, the reduced
// basis size can be arbitrarily
// large)
int e; // number of equality constraints
// Given a variable number i, in_B[i] is -1 iff x_i is not in the current
// basis. If the number in_B[i] is >=0, it is the basis heading of x_i.
Indices in_B; // variable in basis, -1 if non-basic
// Given a number i in {0,...,qp_m-1} of a constraint,
Indices in_C; // constraint in basis, -1 if non-basic
// Note: in_C is only maintained if
// there are inequality constraints.
Values b_C; // exact version of `qp_b'
// restricted to basic constraints C
Values minus_c_B; // exact version of `-qp_c'
// restricted to basic variables B_O
// Note: minus_c_B is only enlarged,
// so its size need not be |B|.
Values A_Cj; // exact version of j-th column of A
// restricted to basic constraints C
Values two_D_Bj; // exact version of twice the j-th
// column of D restricted to B_O
// Note: tmp_x_2 is only enlarged,
// so its size need not be |B|.
int j; // index of entering variable `x_j'
int i; // index of leaving variable `x_i'
ET x_i; // numerator of leaving variable `x_i'
ET q_i; // corresponding `q_i'
int direction; // indicates whether the current
// entering variable x_j is increased
// or decreased
Bound_index ratio_test_bound_index; // indicates for leaving
// original variables which bound
// was hit with upper bounding
ET mu; // numerator of `t_j'
ET nu; // denominator of `t_j'
Values q_lambda; // length dependent on C
Values q_x_O; // used in the ratio test & update
// Note: q_x_O is only enlarged,
// so its size need not be |B|.
Values q_x_S; //
Values tmp_l; // temporary vector of size l
Values tmp_x; // temporary vector of s. >= B_O.size()
// Note: tmp_x is only enlarged,
// so its size need not be |B|.
Values tmp_l_2; // temporary vector of size l
Values tmp_x_2; // temporary vector of s. >= B_O.size()
// Note: tmp_x_2 is only enlarged,
// so its size need not be |B|.
// Diagnostics
struct Diagnostics {
bool redundant_equations;
};
Diagnostics diagnostics;
public:
/*
* Note: Some member functions below are suffixed with '_'.
* They are member templates and their declaration is "hidden",
* because they are also implemented in the class interface.
* This is a workaround for M$-VC++, which otherwise fails to
* instantiate them correctly.
*/
// creation & initialization
// -------------------------
// creation
QP_solver(const Q& qp,
const Quadratic_program_options& options =
Quadratic_program_options());
virtual ~QP_solver()
{
if (strategyP != static_cast<Pricing_strategy*>(0))
delete strategyP;
}
private:
// set-up of QP
void set( const Q& qp);
void set_D (const Q& qp, Tag_true is_linear);
void set_D (const Q& qp, Tag_false is_linear);
// set-up of explicit bounds
void set_explicit_bounds(const Q& qp);
void set_explicit_bounds(const Q& qp, Tag_true /*is_nonnegative*/);
void set_explicit_bounds(const Q& qp, Tag_false /*is_nonnegative*/);
// initialization (of phase I)
void init( );
// initialization (of phase II)
/*
template < class InputIterator >
void init( InputIterator basic_variables_first,
InputIterator basic_variables_beyond);
*/
// operations
// ----------
// pivot step
Quadratic_program_status pivot( )
{ CGAL_qpe_assertion( phase() > 0);
CGAL_qpe_assertion( phase() < 3);
pivot_step();
return status(); }
// solve QP
Quadratic_program_status solve( )
{ CGAL_qpe_assertion( phase() > 0);
while ( phase() < 3) { pivot_step(); }
return status(); }
public:
// access
// ------
// access to QP
int number_of_variables ( ) const { return qp_n; }
int number_of_constraints( ) const { return qp_m; }
A_iterator a_begin( ) const { return qp_A; }
A_iterator a_end ( ) const { return qp_A+qp_n; }
B_iterator b_begin( ) const { return qp_b; }
B_iterator b_end ( ) const { return qp_b+qp_m; }
C_iterator c_begin( ) const { return qp_c; }
C_iterator c_end ( ) const { return qp_c+qp_n; }
C_entry c_0 ( ) const { return qp_c0;}
D_iterator d_begin( ) const { return qp_D; }
D_iterator d_end ( ) const { return qp_D+qp_n; }
Row_type_iterator row_type_begin( ) const { return qp_r; }
Row_type_iterator row_type_end ( ) const { return qp_r+qp_m; }
// access to current status
int phase ( ) const { return m_phase; }
Quadratic_program_status status ( ) const { return m_status; }
int iterations( ) const { return m_pivots; }
// access to common denominator
const ET& variables_common_denominator( ) const
{
CGAL_qpe_assertion (d > 0);
return d;
}
// access to current solution
ET solution_numerator( ) const;
// access to current solution
ET solution_denominator( ) const { return et2*d*d; }
// access to original variables
int number_of_original_variables( ) const { return qp_n; }
// access to slack variables
int number_of_slack_variables( ) const { return static_cast<int>(slack_A.size()); }
// access to artificial variables
int number_of_artificial_variables( ) const { return static_cast<int>(art_A.size()); }
C_auxiliary_iterator
c_auxiliary_value_iterator_begin( ) const { return aux_c.begin(); }
C_auxiliary_iterator
c_auxiliary_value_iterator_end( ) const {return aux_c.end(); }
// access to basic variables
int number_of_basic_variables( ) const { return static_cast<int>(B_O.size()+B_S.size()); }
int number_of_basic_original_variables( ) const { return static_cast<int>(B_O.size()); }
int number_of_basic_slack_variables( ) const { return static_cast<int>(B_S.size()); }
Basic_variable_index_iterator
basic_original_variable_indices_begin( ) const { return B_O.begin(); }
Basic_variable_index_iterator
basic_original_variable_indices_end ( ) const { return B_O.end(); }
Basic_variable_numerator_iterator
basic_original_variables_numerator_begin( ) const { return x_B_O.begin(); }
Basic_variable_numerator_iterator
basic_original_variables_numerator_end ( ) const { return x_B_O.begin()
+ B_O.size(); }
public: // only the pricing strategies (including user-defined ones
// need access to this) -- make them friends?
// access to working variables
int number_of_working_variables( ) const { return static_cast<int>(in_B.size()); }
bool is_basic( int j) const
{
CGAL_qpe_assertion(j >= 0);
CGAL_qpe_assertion(j < number_of_working_variables());
return (in_B[ j] >= 0);
}
bool is_original(int j) const
{
CGAL_qpe_assertion(j >= 0);
CGAL_qpe_assertion(j < number_of_working_variables());
return (j < qp_n);
}
bool phaseI( ) const {return is_phaseI;}
bool is_artificial(int k) const;
int get_l() const;
// Returns w[j] for an original variable x_j.
ET w_j_numerator(int j) const
{
CGAL_qpe_assertion((0 <= j) && (j < qp_n) && is_phaseII);
return w[j];
}
Bound_index nonbasic_original_variable_bound_index(int i) const
// Returns on which bound the nonbasic variable x_i is currently
// sitting:
//
// - LOWER: the variable is sitting on its lower bound.
// - UPPER: the variable is sitting on its upper bound.
// - FIXED: the variable is sitting on its lower and upper bound.
// - ZERO: the variable has value zero and is sitting on its lower
// bound, its upper bound, or between the two bounds.
//
// Note: in the latter case you can call state_of_zero_nonbasic_variable()
// to find out which bound is active, if any.
{
CGAL_assertion(!check_tag(Is_nonnegative()) &&
!is_basic(i) && i < qp_n);
if (x_O_v_i[i] == BASIC) {
CGAL_qpe_assertion(false);
}
return x_O_v_i[i];
};
int state_of_zero_nonbasic_variable(int i) const
// Returns -1 if the original variable x_i equals its lower bound,
// 0 if it lies strictly between its lower and upper bound, and 1 if
// it coincides with its upper bound.
//
// See also the documentation of nonbasic_original_variable_bound_index()
// above.
{
CGAL_assertion(!check_tag(Is_nonnegative()) &&
!is_basic(i) && i < qp_n && x_O_v_i[i] == ZERO);
if (*(qp_fl+i) && CGAL::is_zero(*(qp_l+i)))
return -1;
if (*(qp_fu+i) && CGAL::is_zero(*(qp_u+i)))
return 1;
return 0;
}
private:
// miscellaneous
// -------------
// setting the pricing strategy:
void set_pricing_strategy ( Quadratic_program_pricing_strategy strategy);
// diagnostic output
void set_verbosity( int verbose = 0, std::ostream& stream = std::cout);
public:
// access to indices of basic constraints
int number_of_basic_constraints( ) const { return static_cast<int>(C.size()); }
Basic_constraint_index_iterator
basic_constraint_indices_begin( ) const { return C.begin(); }
Basic_constraint_index_iterator
basic_constraint_indices_end ( ) const { return C.end(); }
// helper functions
template < class RndAccIt1, class RndAccIt2, class NT >
NT mu_j_( int j, RndAccIt1 lambda_it, RndAccIt2 x_it, const NT& dd) const;
ET dual_variable( int i)
{
for ( int j = 0; j < qp_m; ++j) {
tmp_x[ j] = inv_M_B.entry( j, i);
}
return std::inner_product( tmp_x.begin(), tmp_x.begin()+qp_m,
minus_c_B.begin(), et0);
}
public:
// public access to compressed lambda (used in filtered base)
Value_const_iterator get_lambda_begin() const
{
return lambda.begin();
}
Value_const_iterator get_lambda_end() const
{
return lambda.begin() + C.size();
}
private:
// private member functions
// ------------------------
// initialization
void init_basis( );
void init_basis__slack_variables( int s_i, Tag_true has_no_inequalities);
void init_basis__slack_variables( int s_i, Tag_false has_no_inequalities);
void init_basis__slack_variables( int s_i, bool has_no_inequalities) {
if (has_no_inequalities)
init_basis__slack_variables (s_i, Tag_true());
else
init_basis__slack_variables (s_i, Tag_false());
}
void init_basis__constraints ( int s_i, Tag_true has_no_inequalities);
void init_basis__constraints ( int s_i, Tag_false has_no_inequalities);
void init_basis__constraints ( int s_i, bool has_no_inequalities) {
if (has_no_inequalities)
init_basis__constraints (s_i, Tag_true());
else
init_basis__constraints (s_i, Tag_false());
}
void init_x_O_v_i();
void init_r_C(Tag_true /*is_nonnegative*/);
void init_r_C(Tag_false /*is_nonnegative*/);
void init_r_S_B(Tag_true /*is_nonnegative*/);
void init_r_S_B(Tag_false /*is_nonnegative*/);
void init_r_B_O();
void init_w();
void init_solution( );
void init_solution__b_C( Tag_true has_no_inequalities);
void init_solution__b_C( Tag_false has_no_inequalities);
void init_solution__b_C( bool has_no_inequalities) {
if (has_no_inequalities)
init_solution__b_C (Tag_true());
else
init_solution__b_C (Tag_false());
}
void init_additional_data_members( );
// function needed for set up of auxiliary problem for symbolic perturbation
int signed_leading_exponent( int row);
// This is a variant of set_up_auxiliary_problem for symbolic perturbation
// for the perturbed case
void set_up_auxiliary_problemI( Tag_true is_perturbed);
void set_up_auxiliary_problem();
// transition (to phase II)
void transition( );
void transition( Tag_true is_linear);
void transition( Tag_false is_linear);
// pivot step
void pivot_step( );
// pricing
void pricing( );
template < class NT, class It >
void mu_j__linear_part_( NT& mu_j, int j, It lambda_it,
Tag_true has_no_inequalities) const;
template < class NT, class It >
void mu_j__linear_part_( NT& mu_j, int j, It lambda_it,
Tag_false has_no_inequalities) const;
template < class NT, class It >
void mu_j__linear_part_( NT& mu_j, int j, It lambda_it,
bool has_no_inequalities) const {
if (has_no_inequalities)
mu_j__linear_part_ (mu_j, j, lambda_it, Tag_true());
else
mu_j__linear_part_ (mu_j, j, lambda_it, Tag_false());
}
// template < class NT, class It >
// void mu_j__quadratic_part_( NT& mu_j, int j, It x_it,
// Tag_true is_linear) const;
// template < class NT, class It >
// void mu_j__quadratic_part_( NT& mu_j, int j, It x_it,
// Tag_false is_linear) const;
// template < class NT, class It >
// void mu_j__quadratic_part_( NT& mu_j, int j, It x_it,
// Tag_false is_linear,
// Tag_true is_symmetric) const;
// template < class NT, class It >
// void mu_j__quadratic_part_( NT& mu_j, int j, It x_it,
// Tag_false is_linear,
// Tag_false is_symmetric) const;
template < class NT, class It >
void mu_j__slack_or_artificial_( NT& mu_j, int j, It lambda_it,
const NT& dd,
Tag_true has_no_inequalities) const;
template < class NT, class It >
void mu_j__slack_or_artificial_( NT& mu_j, int j, It lambda_it,
const NT& dd,
Tag_false has_no_inequalities) const;
template < class NT, class It >
void mu_j__slack_or_artificial_( NT& mu_j, int j, It lambda_it,
const NT& dd,
bool has_no_inequalities) const {
if (has_no_inequalities)
mu_j__slack_or_artificial_ (mu_j, j, lambda_it, dd, Tag_true());
else
mu_j__slack_or_artificial_ (mu_j, j, lambda_it, dd, Tag_false());
}
// ratio test
void ratio_test_init( );
void ratio_test_init__A_Cj( Value_iterator A_Cj_it, int j,
Tag_true has_no_inequalities);
void ratio_test_init__A_Cj( Value_iterator A_Cj_it, int j,
Tag_false has_no_inequalities);
void ratio_test_init__A_Cj( Value_iterator A_Cj_it, int j,
bool has_no_inequalities) {
if (has_no_inequalities)
ratio_test_init__A_Cj (A_Cj_it, j, Tag_true());
else
ratio_test_init__A_Cj (A_Cj_it, j, Tag_false());
}
void ratio_test_init__2_D_Bj( Value_iterator two_D_Bj_it, int j,
Tag_true is_linear);
void ratio_test_init__2_D_Bj( Value_iterator two_D_Bj_it, int j,
Tag_false is_linear);
void ratio_test_init__2_D_Bj( Value_iterator two_D_Bj_it, int j,
Tag_false is_linear,
Tag_true has_no_inequalities);
void ratio_test_init__2_D_Bj( Value_iterator two_D_Bj_it, int j,
Tag_false is_linear,
Tag_false has_no_inequalities);
void ratio_test_init__2_D_Bj( Value_iterator two_D_Bj_it, int j,
Tag_false is_linear,
bool has_no_inequalities) {
if (has_no_inequalities)
ratio_test_init__2_D_Bj( two_D_Bj_it, j, is_linear, Tag_true());
else
ratio_test_init__2_D_Bj( two_D_Bj_it, j, is_linear, Tag_false());
}
void ratio_test_1( );
void ratio_test_1__q_x_O( Tag_true is_linear);
void ratio_test_1__q_x_O( Tag_false is_linear);
void ratio_test_1__q_x_S( Tag_true has_no_inequalities);
void ratio_test_1__q_x_S( Tag_false has_no_inequalities);
void ratio_test_1__q_x_S( bool has_no_inequalities) {
if (has_no_inequalities)
ratio_test_1__q_x_S (Tag_true());
else
ratio_test_1__q_x_S (Tag_false());
}
void ratio_test_1__t_min_j(Tag_true /*is_nonnegative*/);
void ratio_test_1__t_min_j(Tag_false /*is_nonnegative*/);
void ratio_test_1__t_i( Index_iterator i_it, Index_iterator end_it,
Value_iterator x_it, Value_iterator q_it,
Tag_true no_check);
void ratio_test_1__t_i( Index_iterator i_it, Index_iterator end_it,
Value_iterator x_it, Value_iterator q_it,
Tag_false no_check);
// replaces the above two functions
void ratio_test_1__t_min_B(Tag_true has_no_inequalities );
void ratio_test_1__t_min_B(Tag_false has_no_inequalities );
void ratio_test_1__t_min_B(bool has_no_inequalities ) {
if (has_no_inequalities)
ratio_test_1__t_min_B (Tag_true());
else
ratio_test_1__t_min_B (Tag_false());
}
void ratio_test_1_B_O__t_i(Index_iterator i_it, Index_iterator end_it,
Value_iterator x_it, Value_iterator q_it,
Tag_true /*is_nonnegative*/);
void ratio_test_1_B_O__t_i(Index_iterator i_it, Index_iterator end_it,
Value_iterator x_it, Value_iterator q_it,
Tag_false /*is_nonnegative*/);
void ratio_test_1_B_S__t_i(Index_iterator i_it, Index_iterator end_it,
Value_iterator x_it, Value_iterator q_it,
Tag_true /*is_nonnegative*/);
void ratio_test_1_B_S__t_i(Index_iterator i_it, Index_iterator end_it,
Value_iterator x_it, Value_iterator q_it,
Tag_false /*is_nonnegative*/);
void test_implicit_bounds_dir_pos(int k, const ET& x_k, const ET& q_k,
int& i_min, ET& d_min, ET& q_min);
void test_implicit_bounds_dir_neg(int k, const ET& x_k, const ET& q_k,
int& i_min, ET& d_min, ET& q_min);
void test_explicit_bounds_dir_pos(int k, const ET& x_k, const ET& q_k,
int& i_min, ET& d_min, ET& q_min);
void test_explicit_bounds_dir_neg(int k, const ET& x_k, const ET& q_k,
int& i_min, ET& d_min, ET& q_min);
void test_mixed_bounds_dir_pos(int k, const ET& x_k, const ET& q_k,
int& i_min, ET& d_min, ET& q_min);
void test_mixed_bounds_dir_neg(int k, const ET& x_k, const ET& q_k,
int& i_min, ET& d_min, ET& q_min);
void ratio_test_1__t_j( Tag_true is_linear);
void ratio_test_1__t_j( Tag_false is_linear);
void ratio_test_2( Tag_true is_linear);
void ratio_test_2( Tag_false is_linear);
void ratio_test_2__p( Tag_true has_no_inequalities);
void ratio_test_2__p( Tag_false has_no_inequalities);
void ratio_test_2__p( bool has_no_inequalities) {
if (has_no_inequalities)
ratio_test_2__p (Tag_true());
else
ratio_test_2__p (Tag_false());
}
// update
void update_1( );
void update_1( Tag_true is_linear);
void update_1( Tag_false is_linear);
void update_2( Tag_true is_linear);
void update_2( Tag_false is_linear);
void replace_variable( );
void replace_variable( Tag_true has_no_inequalities);
void replace_variable( Tag_false has_no_inequalities);
void replace_variable( bool has_no_inequalities) {
if (has_no_inequalities)
replace_variable (Tag_true());
else
replace_variable (Tag_false());
}
void replace_variable_original_original( );
// update of the vector r
void replace_variable_original_original_upd_r(Tag_true
/*is_nonnegative*/);
void replace_variable_original_original_upd_r(Tag_false
/*is_nonnegative*/);
void replace_variable_original_slack( );
// update of the vector r
void replace_variable_original_slack_upd_r(Tag_true /*is_nonnegative*/);
void replace_variable_original_slack_upd_r(Tag_false /*is_nonnegative*/);
void replace_variable_slack_original( );
// update of the vector r
void replace_variable_slack_original_upd_r(Tag_true /*is_nonnegative*/);
void replace_variable_slack_original_upd_r(Tag_false /*is_nonnegative*/);
void replace_variable_slack_slack( );
// update of the vector r
void replace_variable_slack_slack_upd_r(Tag_true /*is_nonnegative*/);
void replace_variable_slack_slack_upd_r(Tag_false /*is_nonnegative*/);
void remove_artificial_variable_and_constraint( );
// update of the vector r
void remove_artificial_variable_and_constraint_upd_r(Tag_true
/*is_nonnegative*/);
void remove_artificial_variable_and_constraint_upd_r(Tag_false
/*is_nonnegative*/);
void expel_artificial_variables_from_basis( );
// update that occurs only with upper bounding in ratio test step 1
void enter_and_leave_variable( );
void enter_variable( );
// update of the vectors w and r
void enter_variable_original_upd_w_r(Tag_true /*is_nonnegative*/);
void enter_variable_original_upd_w_r(Tag_false /*is_nonnegative*/);
void enter_variable_slack_upd_w_r(Tag_true /*is_nonnegative*/);
void enter_variable_slack_upd_w_r(Tag_false /*is_nonnegative*/);
void leave_variable( );
// update of the vectors w and r
void leave_variable_original_upd_w_r(Tag_true /*is_nonnegative*/);
void leave_variable_original_upd_w_r(Tag_false /*is_nonnegative*/);
void leave_variable_slack_upd_w_r(Tag_true /*is_nonnegative*/);
void leave_variable_slack_upd_w_r(Tag_false /*is_nonnegative*/);
void z_replace_variable( );
void z_replace_variable( Tag_true has_no_inequalities);
void z_replace_variable( Tag_false has_no_inequalities);
void z_replace_variable( bool has_no_inequalities) {
if (has_no_inequalities)
z_replace_variable (Tag_true());
else
z_replace_variable (Tag_false());
}
void z_replace_variable_original_by_original( );
// update of the vectors w and r
void z_replace_variable_original_by_original_upd_w_r(Tag_true
/*is_nonnegative*/);
void z_replace_variable_original_by_original_upd_w_r(Tag_false
/*is_nonnegative*/);
void z_replace_variable_original_by_slack( );
// update of the vectors w and r
void z_replace_variable_original_by_slack_upd_w_r(Tag_true
/*is_nonnegative*/);
void z_replace_variable_original_by_slack_upd_w_r(Tag_false
/*is_nonnegative*/);
void z_replace_variable_slack_by_original( );
// update of the vectors w and r
void z_replace_variable_slack_by_original_upd_w_r(Tag_true
/*is_nonnegative*/);
void z_replace_variable_slack_by_original_upd_w_r(Tag_false
/*is_nonnegative*/);
void z_replace_variable_slack_by_slack( );
// update of the vectors w and r
void z_replace_variable_slack_by_slack_upd_w_r(Tag_true
/*is_nonnegative*/);
void z_replace_variable_slack_by_slack_upd_w_r(Tag_false
/*is_nonnegative*/);
// update of the parts r_C and r_S_B
void update_r_C_r_S_B__j(ET& x_j);
void update_r_C_r_S_B__j_i(ET& x_j, ET& x_i);
void update_r_C_r_S_B__i(ET& x_i);
// update of w and r_B_O
void update_w_r_B_O__j(ET& x_j);
void update_w_r_B_O__j_i(ET& x_j, ET& x_i);
void update_w_r_B_O__i(ET& x_i);
bool basis_matrix_stays_regular( );
// current solution
void compute_solution(Tag_true /*is_nonnegative*/);
void compute_solution(Tag_false /*is_nonnegative*/);
void compute__x_B_S( Tag_false has_no_inequalities,
Tag_false /*is_nonnegative*/);
void compute__x_B_S( Tag_false has_no_inequalities,
Tag_true /*is_nonnegative*/);
void compute__x_B_S( Tag_true has_no_inequalities,
Tag_false /*is_nonnegative*/);
void compute__x_B_S( Tag_true has_no_inequalities,
Tag_true /*is_nonnegative*/);
void compute__x_B_S( bool has_no_inequalities,
Tag_true is_nonnegative) {
if (has_no_inequalities)
compute__x_B_S (Tag_true(), is_nonnegative);
else
compute__x_B_S (Tag_false(), is_nonnegative);
}
void compute__x_B_S( bool has_no_inequalities,
Tag_false is_nonnegative) {
if (has_no_inequalities)
compute__x_B_S (Tag_true(), is_nonnegative);
else
compute__x_B_S (Tag_false(), is_nonnegative);
}
void multiply__A_S_BxB_O( Value_iterator in, Value_iterator out) const;
ET multiply__A_ixO(int row) const;
void multiply__A_CxN_O(Value_iterator out) const;
bool check_r_C(Tag_true /*is_nonnegative*/) const;
bool check_r_C(Tag_false /*is_nonnegative*/) const;
void multiply__A_S_BxN_O(Value_iterator out) const;
bool check_r_S_B(Tag_true /*is_nonnegative*/) const;
bool check_r_S_B(Tag_false /*is_nonnegative*/) const;
void multiply__2D_B_OxN_O(Value_iterator out) const;
bool check_r_B_O(Tag_true /*is_nonnegative*/) const;
bool check_r_B_O(Tag_false /*is_nonnegative*/) const;
void multiply__2D_OxN_O(Value_iterator out) const;
bool check_w(Tag_true /*is_nonnegative*/) const;
bool check_w(Tag_false /*is_nonnegative*/) const;
// utility routines for QP's in nonstandard form:
ET original_variable_value_under_bounds(int i) const;
ET nonbasic_original_variable_value (int i) const;
public:
// for original variables
ET variable_numerator_value(int i) const;
ET unbounded_direction_value(int i) const;
ET lambda_numerator(int i) const
{
// we use the vector lambda which conforms to C (basic constraints)
CGAL_qpe_assertion (i >= 0);
CGAL_qpe_assertion (i <= qp_m);
if (no_ineq)
return lambda[i];
else {
int k = in_C[i]; // position of i in C
if (k != -1)
return lambda[k];
else
return et0;
}
}
private:
// check basis inverse
bool check_basis_inverse( );
bool check_basis_inverse( Tag_true is_linear);
bool check_basis_inverse( Tag_false is_linear);
// diagnostic output
void print_program ( ) const;
void print_basis ( ) const;
void print_solution( ) const;
void print_ratio_1_original(int k, const ET& x_k, const ET& q_k);
void print_ratio_1_slack(int k, const ET& x_k, const ET& q_k);
const char* variable_type( int k) const;
// ensure container size
template <class Container>
void ensure_size(Container& c, typename Container::size_type desired_size) {
typedef typename Container::value_type Value_type;
for (typename Container::size_type i=c.size(); i < desired_size; ++i) {
c.push_back(Value_type());
}
}
private:
private: // (inefficient) access to bounds of variables:
// Given an index of an original or slack variable, returns whether
// or not the variable has a finite lower bound.
bool has_finite_lower_bound(int i) const;
// Given an index of an original or slack variable, returns whether
// or not the variable has a finite upper bound.
bool has_finite_upper_bound(int i) const;
// Given an index of an original or slack variable, returns its
// lower bound.
ET lower_bound(int i) const;
// Given an index of an original variable, returns its upper bound.
ET upper_bound(int i) const;
struct Bnd { // (inefficient) utility class representing a possibly
// infinite bound
enum Kind { MINUS_INF=-1, FINITE=0, PLUS_INF=1 };
const Kind kind; // whether the bound is finite or not
const ET value; // bound's value in case it is finite
Bnd(bool is_upper, bool is_finite, const ET& value)
: kind(is_upper? (is_finite? FINITE : PLUS_INF) :
(is_finite? FINITE : MINUS_INF)),
value(value) {}
Bnd(Kind kind, const ET& value) : kind(kind), value(value) {}
bool operator==(const ET& v) const { return kind == FINITE && value == v; }
bool operator==(const Bnd& b) const {
return kind == b.kind && (kind != FINITE || value == b.value);
}
bool operator!=(const Bnd& b) const { return !(*this == b); }
bool operator<(const ET& v) const { return kind == FINITE && value < v; }
bool operator<(const Bnd& b) const {
return kind < b.kind ||
(kind == b.kind && kind == FINITE && value < b.value);
}
bool operator<=(const Bnd& b) const { return *this < b || *this == b; }
bool operator>(const ET& v) const { return kind == FINITE && value > v; }
bool operator>(const Bnd& b) const { return !(*this <= b); }
bool operator>=(const Bnd& b) const { return !(*this < b); }
Bnd operator*(const ET& f) const { return Bnd(kind, value*f); }
};
// Given an index of an original, slack, or artificial variable,
// return its lower bound.
Bnd lower_bnd(int i) const;
// Given an index of an original, slack, or artificial variable,
// return its upper bound.
Bnd upper_bnd(int i) const;
private:
bool is_value_correct() const;
// ----------------------------------------------------------------------------
// ===============================
// class implementation (template)
// ===============================
public:
// pricing
// -------
// The solver provides three methods to compute mu_j; the first
// two below take additional information (which the pricing
// strategy either provides in exact- or NT-form), and the third
// simply does the exact computation. (Note: internally, we use
// the third version, too, see ratio_test_1__t_j().)
// computation of mu_j with standard form
template < class RndAccIt1, class RndAccIt2, class NT >
NT
mu_j( int j, RndAccIt1 lambda_it, RndAccIt2 x_it, const NT& dd) const
{
NT mu_j;
if ( j < qp_n) { // original variable
// [c_j +] A_Cj^T * lambda_C
mu_j = ( is_phaseI ? NT( 0) : dd * NT(*(qp_c+ j)));
mu_j__linear_part( mu_j, j, lambda_it, no_ineq);
// ... + 2 D_Bj^T * x_B
mu_j__quadratic_part( mu_j, j, x_it, Is_linear());
} else { // slack or artificial
mu_j__slack_or_artificial( mu_j, j, lambda_it, dd,
no_ineq);
}
return mu_j;
}
// computation of mu_j with upper bounding
template < class RndAccIt1, class RndAccIt2, class NT >
NT
mu_j( int j, RndAccIt1 lambda_it, RndAccIt2 x_it, const NT& w_j,
const NT& dd) const
{
NT mu_j;
if ( j < qp_n) { // original variable
// [c_j +] A_Cj^T * lambda_C
mu_j = ( is_phaseI ? NT( 0) : dd * NT(*(qp_c+ j)));
mu_j__linear_part( mu_j, j, lambda_it, no_ineq);
// ... + 2 D_Bj^T * x_B + 2 D_Nj x_N
mu_j__quadratic_part( mu_j, j, x_it, w_j, dd, Is_linear());
} else { // slack or artificial
mu_j__slack_or_artificial( mu_j, j, lambda_it, dd,
no_ineq);
}
return mu_j;
}
// computation of mu_j (exact, both for upper bounding and standard form)
ET
mu_j( int j) const
{
CGAL_qpe_assertion(!is_basic(j));
if (!check_tag(Is_nonnegative()) &&
!check_tag(Is_linear()) &&
!is_phaseI && is_original(j)) {
return mu_j(j,
lambda.begin(),
basic_original_variables_numerator_begin(),
w_j_numerator(j),
variables_common_denominator());
} else {
return mu_j(j,
lambda.begin(),
basic_original_variables_numerator_begin(),
variables_common_denominator());
}
}
private:
// pricing (private helper functions)
// ----------------------------------
template < class NT, class It > inline // no ineq.
void
mu_j__linear_part( NT& mu_j, int j, It lambda_it, Tag_true) const
{
mu_j += inv_M_B.inner_product_l( lambda_it, *(qp_A+ j));
}
template < class NT, class It > inline // has ineq.
void
mu_j__linear_part( NT& mu_j, int j, It lambda_it, Tag_false) const
{
mu_j += inv_M_B.inner_product_l
( lambda_it,
A_by_index_iterator( C.begin(),
A_by_index_accessor( *(qp_A + j))));
}
template < class NT, class It > inline
void
mu_j__linear_part( NT& mu_j, int j, It lambda_it,
bool has_no_inequalities) const {
if (has_no_inequalities)
mu_j__linear_part (mu_j, j, lambda_it, Tag_true());
else
mu_j__linear_part (mu_j, j, lambda_it, Tag_false());
}
template < class NT, class It > inline // LP case, standard form
void
mu_j__quadratic_part( NT&, int, It, Tag_true) const
{
// nop
}
template < class NT, class It > inline // LP case, upper bounded
void
mu_j__quadratic_part( NT&, int, It, const NT& /*w_j*/, const NT& /*dd*/,
Tag_true) const
{
// nop
}
template < class NT, class It > inline // QP case, standard form
void
mu_j__quadratic_part( NT& mu_j, int j, It x_it, Tag_false) const
{
if ( is_phaseII) {
// 2 D_Bj^T * x_B
mu_j += inv_M_B.inner_product_x
( x_it,
D_pairwise_iterator_input_type( B_O.begin(),
D_pairwise_accessor_input_type(qp_D, j)));
}
}
template < class NT, class It > inline // QP case, upper bounded
void
mu_j__quadratic_part( NT& mu_j, int j, It x_it, const NT& w_j,
const NT& dd, Tag_false) const
{
if ( is_phaseII) {
mu_j += dd * w_j;
// 2 D_Bj^T * x_B
mu_j += inv_M_B.inner_product_x
( x_it,
D_pairwise_iterator_input_type( B_O.begin(),
D_pairwise_accessor_input_type(qp_D, j)));
}
}
template < class NT, class It > inline // no ineq.
void
mu_j__slack_or_artificial( NT& mu_j, int j, It lambda_it, const NT& dd, Tag_true) const
{
j -= qp_n;
// artificial variable
// A_j^T * lambda
mu_j = lambda_it[ j];
if ( art_A[ j].second) mu_j = -mu_j;
// c_j + ...
mu_j += dd*NT(aux_c[ j]);
}
template < class NT, class It > inline // has ineq.
void
mu_j__slack_or_artificial( NT& mu_j, int j, It lambda_it, const NT& dd, Tag_false) const
{
j -= qp_n;
if ( j < static_cast<int>(slack_A.size())) { // slack variable
// A_Cj^T * lambda_C
mu_j = lambda_it[ in_C[ slack_A[ j].first]];
if ( slack_A[ j].second) mu_j = -mu_j;
} else { // artificial variable
j -= static_cast<int>(slack_A.size());
// A_Cj^T * lambda_C
mu_j = lambda_it[ in_C[ art_A[ j].first]];
if ( art_A[ j].second) mu_j = -mu_j;
// c_j + ...
mu_j += dd*NT(aux_c[ j]);
}
}
template < class NT, class It > inline
void
mu_j__slack_or_artificial( NT& mu_j, int j, It lambda_it,
const NT& dd, bool has_no_inequalities) const {
if (has_no_inequalities)
mu_j__slack_or_artificial (mu_j, j, lambda_it, dd, Tag_true());
else
mu_j__slack_or_artificial (mu_j, j, lambda_it, dd, Tag_false());
}
};
// ----------------------------------------------------------------------------
// =============================
// class implementation (inline)
// =============================
// initialization
// --------------
// transition
// ----------
template < class Q, typename ET, typename Tags > inline // QP case
void QP_solver<Q, ET, Tags>::
transition( Tag_false)
{
typedef Creator_2< D_iterator, int,
D_pairwise_accessor > D_transition_creator_accessor;
typedef Creator_2< Index_iterator, D_pairwise_accessor,
D_pairwise_iterator > D_transition_creator_iterator;
// initialization of vector w and vector r_B_O:
if (!check_tag(Is_nonnegative())) {
init_w();
init_r_B_O();
}
// here is what we need in the transition: an iterator that steps through
// the basic indices, where dereferencing
// yields an iterator through the corresponding row of D, restricted
// to the basic indices. This means that we select the principal minor of D
// corresponding to the current basis.
// To realize this, we transform B_O.begin() via the function h where
// h(i) = D_pairwise_iterator
// (B_O.begin(),
// D_pairwise_accessor(qp_D, i))
inv_M_B.transition
(boost::make_transform_iterator
(B_O.begin(),
[this](int i)
{
return D_transition_creator_iterator()(
this->B_O.begin(),D_transition_creator_accessor()(this->qp_D, i));
})
);
}
template < typename Q, typename ET, typename Tags > inline // LP case
void QP_solver<Q, ET, Tags>::
transition( Tag_true)
{
inv_M_B.transition();
}
// ratio test
// ----------
template < typename Q, typename ET, typename Tags > inline // LP case
void QP_solver<Q, ET, Tags>::
ratio_test_init__2_D_Bj( Value_iterator, int, Tag_true)
{
// nop
}
template < typename Q, typename ET, typename Tags > inline // QP case
void QP_solver<Q, ET, Tags>::
ratio_test_init__2_D_Bj( Value_iterator two_D_Bj_it, int j_, Tag_false)
{
if ( is_phaseII) {
ratio_test_init__2_D_Bj( two_D_Bj_it, j_,
Tag_false(), no_ineq);
}
}
template < typename Q, typename ET, typename Tags > inline // QP, no ineq.
void QP_solver<Q, ET, Tags>::
ratio_test_init__2_D_Bj( Value_iterator two_D_Bj_it, int j_, Tag_false,
Tag_true )
{
// store exact version of `2 D_{B_O,j}'
D_pairwise_accessor d_accessor( qp_D, j_);
std::copy( D_pairwise_iterator( B_O.begin(), d_accessor),
D_pairwise_iterator( B_O.end (), d_accessor),
two_D_Bj_it);
}
template < typename Q, typename ET, typename Tags > inline // QP, has ineq
void QP_solver<Q, ET, Tags>::
ratio_test_init__2_D_Bj( Value_iterator two_D_Bj_it, int j_, Tag_false,
Tag_false)
{
// store exact version of `2 D_{B_O,j}'
if ( j_ < qp_n) { // original variable
ratio_test_init__2_D_Bj( two_D_Bj_it, j_, Tag_false(), Tag_true());
} else { // slack variable
std::fill_n( two_D_Bj_it, B_O.size(), et0);
}
}
template < typename Q, typename ET, typename Tags > inline // LP case
void QP_solver<Q, ET, Tags>::
ratio_test_1__q_x_O( Tag_true)
{
inv_M_B.multiply_x( A_Cj.begin(), q_x_O.begin());
}
template < typename Q, typename ET, typename Tags > inline // QP case
void QP_solver<Q, ET, Tags>::
ratio_test_1__q_x_O( Tag_false)
{
if ( is_phaseI) { // phase I
inv_M_B.multiply_x( A_Cj.begin(), q_x_O.begin());
} else { // phase II
inv_M_B.multiply ( A_Cj.begin(), two_D_Bj.begin(),
q_lambda.begin(), q_x_O.begin());
}
}
template < typename Q, typename ET, typename Tags > inline // no ineq.
void QP_solver<Q, ET, Tags>::
ratio_test_1__q_x_S( Tag_true)
{
// nop
}
template < typename Q, typename ET, typename Tags > inline // has ineq.
void QP_solver<Q, ET, Tags>::
ratio_test_1__q_x_S( Tag_false)
{
// A_S_BxB_O * q_x_O
multiply__A_S_BxB_O( q_x_O.begin(), q_x_S.begin());
// ( A_S_BxB_O * q_x_O) - A_S_Bxj
if ( j < qp_n) {
typedef typename std::iterator_traits<A_by_index_iterator>::value_type RT;
std::transform( q_x_S.begin(),
q_x_S.begin()+S_B.size(),
A_by_index_iterator( S_B.begin(),
A_by_index_accessor( *(qp_A + j))),
q_x_S.begin(),
[this](const ET& n1, const RT& n2)
{
return std::minus<ET>()(n1,this->d * NT_converter<RT,ET>() (n2));
});
}
// q_x_S = -+ ( A_S_BxB_O * q_x_O - A_S_Bxj)
Value_iterator q_it = q_x_S.begin();
Index_iterator i_it;
for ( i_it = B_S.begin(); i_it != B_S.end(); ++i_it, ++q_it) {
if ( ! slack_A[ *i_it - qp_n].second) *q_it = -(*q_it);
}
}
template < typename Q, typename ET, typename Tags > inline // no check
void QP_solver<Q, ET, Tags>::
ratio_test_1__t_i( Index_iterator, Index_iterator,
Value_iterator, Value_iterator, Tag_true)
{
// nop
}
template < typename Q, typename ET, typename Tags > inline // check
void QP_solver<Q, ET, Tags>::
ratio_test_1__t_i( Index_iterator i_it, Index_iterator end_it,
Value_iterator x_it, Value_iterator q_it, Tag_false)
{
// check `t_i's
for ( ; i_it != end_it; ++i_it, ++x_it, ++q_it) {
// BLAND rule: In case the ratios are the same, only update if the new index
// is smaller. The special artificial variable is always made to leave first.
if ( (*q_it > et0) && (
(( *x_it * q_i) < ( x_i * *q_it)) ||
( (*i_it < i) && (i != art_s_i) && (( *x_it * q_i) == ( x_i * *q_it)) )
)
) {
i = *i_it; x_i = *x_it; q_i = *q_it;
}
}
}
template < typename Q, typename ET, typename Tags > inline // LP case
void QP_solver<Q, ET, Tags>::
ratio_test_1__t_j( Tag_true)
{
// nop
}
template < typename Q, typename ET, typename Tags > inline // QP case
void QP_solver<Q, ET, Tags>::
ratio_test_1__t_j( Tag_false)
{
if ( is_phaseII) {
// compute `nu' and `mu_j'
mu = mu_j(j);
nu = inv_M_B.inner_product( A_Cj.begin(), two_D_Bj.begin(),
q_lambda.begin(), q_x_O.begin());
if ( j < qp_n) { // original variable
nu -= d*ET( (*(qp_D + j))[ j]);
}
CGAL_qpe_assertion_msg(nu <= et0,
"nu <= et0 violated -- is your D matrix positive semidefinite?");
// check `t_j'
CGAL_qpe_assertion(mu != et0);
// bg: formula below compares abs values, assuming mu < 0
if ( ( nu < et0) && ( ( (mu < et0 ? mu : -mu) * q_i) > ( x_i * nu))) {
i = -1; q_i = et1;
}
}
}
template < typename Q, typename ET, typename Tags > inline // LP case
void QP_solver<Q, ET, Tags>::
ratio_test_2( Tag_true)
{
// nop
}
template < typename Q, typename ET, typename Tags > inline // no ineq.
void QP_solver<Q, ET, Tags>::
ratio_test_2__p( Tag_true)
{
// get column index of entering variable in basis
int col = in_B[ j];
CGAL_qpe_assertion( col >= 0);
col += l;
// get (last) column of `M_B^{-1}' (Note: `p_...' is stored in `q_...')
Value_iterator it;
int row;
unsigned int k;
for ( k = 0, row = 0, it = q_lambda.begin();
k < C.size();
++k, ++row, ++it ) {
*it = inv_M_B.entry( row, col);
}
for ( k = 0, row = l, it = q_x_O.begin();
k < B_O.size();
++k, ++row, ++it ) {
*it = inv_M_B.entry( row, col);
}
}
template < typename Q, typename ET, typename Tags > inline // has ineq.
void QP_solver<Q, ET, Tags>::
ratio_test_2__p( Tag_false)
{
Value_iterator v_it;
Index_iterator i_it;
// compute 'p_lambda' and 'p_x_O' (Note: `p_...' is stored in `q_...')
// -------------------------------------------------------------------
// type of entering variable
if ( j < qp_n) { // original
// use 'no_ineq' variant
ratio_test_2__p( Tag_true());
} else { // slack
j -= qp_n;
// get column A_{S_j,B_O}^T (i.e. row of A_{S_B,B_O})
int row = slack_A[ j].first;
bool sign = slack_A[ j].second;
for ( i_it = B_O.begin(), v_it = tmp_x.begin();
i_it != B_O.end();
++i_it, ++v_it ) {
*v_it = ( sign ?
*((*(qp_A+ *i_it))+ row) : - (*((*(qp_A + *i_it))+ row)));
}
// compute ( p_l | p_x_O )^T = M_B^{-1} * ( 0 | A_{S_j,B_O} )^T
std::fill_n( tmp_l.begin(), C.size(), et0);
inv_M_B.multiply( tmp_l .begin(), tmp_x .begin(),
q_lambda.begin(), q_x_O.begin());
j += qp_n;
}
// compute 'p_x_S'
// ---------------
// A_S_BxB_O * p_x_O
multiply__A_S_BxB_O( q_x_O.begin(), q_x_S.begin());
// p_x_S = +- ( A_S_BxB_O * p_x_O)
for ( i_it = B_S.begin(), v_it = q_x_S.begin();
i_it != B_S.end();
++i_it, ++v_it ) {
if ( ! slack_A[ *i_it - qp_n].second) *v_it = -(*v_it);
}
}
// update
// ------
template < typename Q, typename ET, typename Tags > inline // LP case
void QP_solver<Q, ET, Tags>::
update_1( Tag_true)
{
// replace leaving with entering variable
if ((i == j) && (i >= 0)) {
enter_and_leave_variable();
} else {
replace_variable();
}
}
template < typename Q, typename ET, typename Tags > inline // QP case
void QP_solver<Q, ET, Tags>::
update_1( Tag_false)
{
if ( is_phaseI) { // phase I
// replace leaving with entering variable
if ((i == j) && (i >= 0)) {
enter_and_leave_variable();
} else {
replace_variable();
}
} else { // phase II
if ((i == j) && (i >= 0)) {
enter_and_leave_variable();
} else {
if ( ( i >= 0) && basis_matrix_stays_regular()) {
// leave variable from basis, if
// - some leaving variable was found and
// - basis matrix stays regular
leave_variable();
} else {
// enter variable into basis, if
// - no leaving variable was found or
// - basis matrix would become singular when variable i leaves
if ( i < 0 ) {
enter_variable();
} else {
z_replace_variable();
}
}
}
}
}
template < typename Q, typename ET, typename Tags > inline // LP case
void QP_solver<Q, ET, Tags>::
update_2( Tag_true)
{
// nop
}
template < typename Q, typename ET, typename Tags > inline // no ineq.
void QP_solver<Q, ET, Tags>::
replace_variable( Tag_true)
{
replace_variable_original_original();
strategyP->leaving_basis( i);
}
template < typename Q, typename ET, typename Tags > inline // has ineq.
void QP_solver<Q, ET, Tags>::
replace_variable( Tag_false)
{
// determine type of variables
bool enter_original = ( (j < qp_n) || (j >= static_cast<int>( qp_n+slack_A.size())));
bool leave_original = ( (i < qp_n) || (i >= static_cast<int>( qp_n+slack_A.size())));
// update basis & basis inverse
if ( leave_original) {
if ( enter_original) { // orig <--> orig
replace_variable_original_original();
} else { // slack <--> orig
replace_variable_slack_original();
}
// special artificial variable removed?
if ( is_phaseI && ( i == art_s_i)) {
// remove the fake column - it corresponds
// to the special artificial variable which is
// (like all artificial variables) not needed
// anymore once it leaves the basis. Note:
// regular artificial variables are only removed
// from the problem after phase I
// art_s_i == -1 -> there is no special artificial variable
// art_s_i == -2 -> there was a special artificial variable,
// but has been removed
art_s_i = -2;
art_A.pop_back();
CGAL_qpe_assertion(in_B[in_B.size()-1] == -1); // really removed?
in_B.pop_back();
// BG: shouldn't the pricing strategy be notfied also here?
} else {
strategyP->leaving_basis( i);
}
} else {
if ( enter_original) { // orig <--> slack
replace_variable_original_slack();
} else { // slack <--> slack
replace_variable_slack_slack();
}
strategyP->leaving_basis( i);
}
}
template < typename Q, typename ET, typename Tags > inline
bool QP_solver<Q, ET, Tags>::
basis_matrix_stays_regular()
{
CGAL_qpe_assertion( is_phaseII);
int new_row, k;
if ( has_ineq && (i >= qp_n)) { // slack variable
new_row = slack_A[ i-qp_n].first;
A_row_by_index_accessor a_accessor =
[new_row, this](int i){ return A_accessor( this->qp_A, 0, this->qp_n)(i, new_row); };
typedef typename std::iterator_traits<A_row_by_index_iterator>::value_type RT;
std::transform(A_row_by_index_iterator( B_O.begin(), a_accessor),
A_row_by_index_iterator( B_O.end (), a_accessor),
tmp_x.begin(),
NT_converter<RT,ET>());
inv_M_B.multiply( tmp_x.begin(), // dummy (not used)
tmp_x.begin(), tmp_l_2.begin(), tmp_x_2.begin(),
Tag_false(), // QP
Tag_false()); // ignore 1st argument
return ( -inv_M_B.inner_product_x( tmp_x_2.begin(), tmp_x.begin()) != et0);
} else { // check original variable
k = l+in_B[ i];
return ( inv_M_B.entry( k, k) != et0);
}
/* ToDo: check, if really not needed in 'update_1':
- basis has already minimal size or
|| ( B_O.size()==C.size())
*/
}
// current solution
// ----------------
template < typename Q, typename ET, typename Tags > inline // no inequalities, upper bounded
void QP_solver<Q, ET, Tags>::
compute__x_B_S( Tag_true /*has_equalities_only_and_full_rank*/,
Tag_false /*is_nonnegative*/)
{
// nop
}
template < typename Q, typename ET, typename Tags > inline // no inequalities, standard form
void QP_solver<Q, ET, Tags>::
compute__x_B_S( Tag_true /*has_equalities_only_and_full_rank*/,
Tag_true /*is_nonnegative*/)
{
// nop
}
template < typename Q, typename ET, typename Tags > inline // has inequalities, upper bounded
void QP_solver<Q, ET, Tags>::
compute__x_B_S( Tag_false /*has_equalities_only_and_full_rank*/,
Tag_false /*is_nonnegative*/)
{
// A_S_BxB_O * x_B_O
multiply__A_S_BxB_O( x_B_O.begin(), x_B_S.begin());
// b_S_B - ( A_S_BxB_O * x_B_O)
B_by_index_accessor b_accessor( qp_b);
std::transform( B_by_index_iterator( S_B.begin(), b_accessor),
B_by_index_iterator( S_B.end (), b_accessor),
x_B_S.begin(),
x_B_S.begin(),
[this](const ET& n1, const ET& n2)
{ return std::minus<ET>()(this->d * n1, n2); });
// b_S_B - ( A_S_BxB_O * x_B_O) - r_S_B
std::transform(x_B_S.begin(), x_B_S.begin()+S_B.size(),
r_S_B.begin(), x_B_S.begin(),
[this](const ET& n1, const ET& n2)
{ return std::minus<ET>()(n1, this->d * n2); });
// x_B_S = +- ( b_S_B - A_S_BxB_O * x_B_O)
Value_iterator x_it = x_B_S.begin();
Index_iterator i_it;
for ( i_it = B_S.begin(); i_it != B_S.end(); ++i_it, ++x_it) {
if ( slack_A[ *i_it - qp_n].second) *x_it = -(*x_it);
}
}
namespace QP_solver_impl {
// Writing it with 5 boost::bind was becoming unreadable.
template<class ET, class RT>
struct submul {
ET const& d;
submul(ET const&d):d(d) {}
ET operator()(RT const&x, ET const&y) const {
NT_converter<RT, ET> cast;
return cast(x) * d - y;
}
};
}
template < typename Q, typename ET, typename Tags > inline // has inequalities, standard form
void QP_solver<Q, ET, Tags>::
compute__x_B_S( Tag_false /*has_equalities_only_and_full_rank*/,
Tag_true /*is_nonnegative*/)
{
// A_S_BxB_O * x_B_O
multiply__A_S_BxB_O( x_B_O.begin(), x_B_S.begin());
// b_S_B - ( A_S_BxB_O * x_B_O)
B_by_index_accessor b_accessor( qp_b);
typedef typename std::iterator_traits<B_by_index_iterator>::value_type RT;
std::transform( B_by_index_iterator( S_B.begin(), b_accessor),
B_by_index_iterator( S_B.end (), b_accessor),
x_B_S.begin(),
x_B_S.begin(),
QP_solver_impl::submul<ET,RT>(d));
// x_B_S = +- ( b_S_B - A_S_BxB_O * x_B_O)
Value_iterator x_it = x_B_S.begin();
Index_iterator i_it;
for ( i_it = B_S.begin(); i_it != B_S.end(); ++i_it, ++x_it) {
if ( slack_A[ *i_it - qp_n].second) *x_it = -(*x_it);
}
}
} //namespace CGAL
#include <CGAL/QP_solver/Unbounded_direction.h>
#include <CGAL/QP_solver/QP_solver_nonstandardform_impl.h>
#include <CGAL/QP_solver/QP_solver_bounds_impl.h>
#include <CGAL/QP_solver/QP_solver_impl.h>
#include <CGAL/enable_warnings.h>
#endif // CGAL_QP_SOLVER_H
// ===== EOF ==================================================================
|