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
|
\indexentry{A2_new@{\tt A2\_new()}}{26}
\indexentry{A2_setDefaultFields@{\tt A2\_setDefaultFields()}}{26}
\indexentry{A2_clearData@{\tt A2\_clearData()}}{26}
\indexentry{A2_free@{\tt A2\_free()}}{26}
\indexentry{A2_nrow@{\tt A2\_nrow()}}{26}
\indexentry{A2_ncol@{\tt A2\_ncol()}}{26}
\indexentry{A2_inc1@{\tt A2\_inc1()}}{26}
\indexentry{A2_inc2@{\tt A2\_inc2()}}{26}
\indexentry{A2_entries@{\tt A2\_entries()}}{26}
\indexentry{A2_row@{\tt A2\_row()}}{27}
\indexentry{A2_column@{\tt A2\_column()}}{27}
\indexentry{A2_realEntry@{\tt A2\_realEntry()}}{27}
\indexentry{A2_complexEntry@{\tt A2\_complexEntry()}}{27}
\indexentry{A2_setRealEntry@{\tt A2\_setRealEntry()}}{27}
\indexentry{A2_setComplexEntry@{\tt A2\_setComplexEntry()}}{27}
\indexentry{A2_pointerToRealEntry@{\tt A2\_pointerToRealEntry()}}{27}
\indexentry{A2_pointerToComplexEntry@{\tt A2\_pointerToComplexEntry()}}{27}
\indexentry{A2_init@{\tt A2\_init()}}{28}
\indexentry{A2_subA2@{\tt A2\_subA2()}}{28}
\indexentry{A2_makeStaircase@{\tt A2\_makeStaircase()}}{28}
\indexentry{A2_QRreduce@{\tt A2\_QRreduce()}}{28}
\indexentry{A2_computeQ@{\tt A2\_computeQ()}}{28}
\indexentry{A2_applyQT@{\tt A2\_applyQT()}}{29}
\indexentry{A2_maxabs@{\tt A2\_maxabs()}}{29}
\indexentry{A2_frobNorm@{\tt A2\_frobNorm()}}{29}
\indexentry{A2_oneNorm@{\tt A2\_oneNorm()}}{29}
\indexentry{A2_infinityNorm@{\tt A2\_infinityNorm()}}{29}
\indexentry{A2_oneNormOfColumn@{\tt A2\_oneNormOfColumn()}}{29}
\indexentry{A2_twoNormOfColumn@{\tt A2\_twoNormOfColumn()}}{29}
\indexentry{A2_infinityNormOfColumn@{\tt A2\_infinityNormOfColumn()}}{29}
\indexentry{A2_oneNormOfRow@{\tt A2\_oneNormOfRow()}}{29}
\indexentry{A2_twoNormOfRow@{\tt A2\_twoNormOfRow()}}{30}
\indexentry{A2_infinityNormOfRow@{\tt A2\_infinityNormOfRow()}}{30}
\indexentry{A2_permuteRows@{\tt A2\_permuteRows()}}{30}
\indexentry{A2_permuteColumns@{\tt A2\_permuteColumns()}}{30}
\indexentry{A2_sortRowsUp@{\tt A2\_sortRowsUp()}}{30}
\indexentry{A2_sortColumnsUp@{\tt A2\_sortColumnsUp()}}{30}
\indexentry{A2_sizeOf@{\tt A2\_sizeOf()}}{30}
\indexentry{A2_shiftbase@{\tt A2\_shiftBase()}}{30}
\indexentry{A2_rowMajor@{\tt A2\_rowMajor()}}{31}
\indexentry{A2_columnMajor@{\tt A2\_columnMajor()}}{31}
\indexentry{A2_transpose@{\tt A2\_transpose()}}{31}
\indexentry{A2_extractRow@{\tt A2\_extractRow()}}{31}
\indexentry{A2_extractRowDV@{\tt A2\_extractRowDV()}}{31}
\indexentry{A2_extractRowZV@{\tt A2\_extractRowZV()}}{31}
\indexentry{A2_extractColumn@{\tt A2\_extractColumn()}}{31}
\indexentry{A2_extractColumnDV@{\tt A2\_extractColumnDV()}}{31}
\indexentry{A2_extractColumnZV@{\tt A2\_extractColumnZV()}}{31}
\indexentry{A2_setRow@{\tt A2\_setRow()}}{31}
\indexentry{A2_setRowDV@{\tt A2\_setRowDV()}}{32}
\indexentry{A2_setRowZV@{\tt A2\_setRowZV()}}{32}
\indexentry{A2_setColumn@{\tt A2\_setColumn()}}{32}
\indexentry{A2_setColumnDV@{\tt A2\_setColumnDV()}}{32}
\indexentry{A2_setColumnZV@{\tt A2\_setColumnZV()}}{32}
\indexentry{A2_fillRandomUniform@{\tt A2\_fillRandomUniform()}}{32}
\indexentry{A2_fillRandomNormal@{\tt A2\_fillRandomNormal()}}{32}
\indexentry{A2_fillWithIdentity@{\tt A2\_fillWithIdentity()}}{32}
\indexentry{A2_zero@{\tt A2\_zero()}}{32}
\indexentry{A2_copy@{\tt A2\_copy()}}{32}
\indexentry{A2_sub@{\tt A2\_sub()}}{33}
\indexentry{A2_swapRows@{\tt A2\_swapRows()}}{33}
\indexentry{A2_swapColumns@{\tt A2\_swapColumns()}}{33}
\indexentry{A2_copyEntriesToVector@{\tt A2\_copyEntriesToVector()}}{33}
\indexentry{A2_readFromFile@{\tt A2\_readFromFile()}}{33}
\indexentry{A2_readFromFormattedFile@{\tt A2\_readFromFormattedFile()}}{33}
\indexentry{A2_readFromBinaryFile@{\tt A2\_readFromBinaryFile()}}{33}
\indexentry{A2_writeToFile@{\tt A2\_writeToFile()}}{34}
\indexentry{A2_writeToFormattedFile@{\tt A2\_writeToFormattedFile()}}{34}
\indexentry{A2_writeToBinaryFile@{\tt A2\_writeToBinaryFile()}}{34}
\indexentry{A2_writeForHumanEye@{\tt A2\_writeForHumanEye()}}{34}
\indexentry{A2_writeStats@{\tt A2\_writeStats()}}{34}
\indexentry{A2_writeForMatlab@{\tt A2\_writeForMatlab()}}{34}
\indexentry{Coords_new@{\tt Coords\_new()}}{36}
\indexentry{Coords_setDefaultFields@{\tt Coords\_setDefaultFields()}}{37}
\indexentry{Coords_clearData@{\tt Coords\_clearData()}}{37}
\indexentry{Coords_free@{\tt Coords\_free()}}{37}
\indexentry{Coords_init@{\tt Coords\_init()}}{37}
\indexentry{Coords_init9P@{\tt Coords\_init9P()}}{37}
\indexentry{Coords_init27P@{\tt Coords\_init27P()}}{37}
\indexentry{Coords_sizeOf@{\tt Coords\_sizeOf()}}{38}
\indexentry{Coords_min@{\tt Coords\_min()}}{38}
\indexentry{Coords_max@{\tt Coords\_max()}}{38}
\indexentry{Coords_value@{\tt Coords\_value()}}{38}
\indexentry{Coords_setValue@{\tt Coords\_setValue()}}{38}
\indexentry{Coords_readFromFile@{\tt Coords\_readFromFile()}}{38}
\indexentry{Coords_readFromFormattedFile@{\tt Coords\_readFromFormattedFile()}}{39}
\indexentry{Coords_readFromBinaryFile@{\tt Coords\_readFromBinaryFile()}}{39}
\indexentry{Coords_writeToFile@{\tt Coords\_writeToFile()}}{39}
\indexentry{Coords_writeToFormattedFile@{\tt Coords\_writeToFormattedFile()}}{39}
\indexentry{Coords_writeToBinaryFile@{\tt Coords\_writeToBinaryFile()}}{39}
\indexentry{Coords_writeForHumanEye@{\tt Coords\_writeForHumanEye()}}{39}
\indexentry{Coords_writeStats@{\tt Coords\_writeStats()}}{39}
\indexentry{DV_new@{\tt DV\_new()}}{42}
\indexentry{DV_setDefaultFields@{\tt DV\_setDefaultFields()}}{42}
\indexentry{DV_clearData@{\tt DV\_clearData()}}{42}
\indexentry{DV_free@{\tt DV\_free()}}{42}
\indexentry{DV_owned@{\tt DV\_owned()}}{42}
\indexentry{DV_size@{\tt DV\_size()}}{42}
\indexentry{DV_maxsize@{\tt DV\_size()}}{42}
\indexentry{DV_entry@{\tt DV\_entry()}}{43}
\indexentry{DV_entries@{\tt DV\_entries()}}{43}
\indexentry{DV_sizeAndEntries@{\tt DV\_sizeAndEntries()}}{43}
\indexentry{DV_setEntry@{\tt DV\_setEntry()}}{43}
\indexentry{DV_init@{\tt DV\_init()}}{43}
\indexentry{DV_init1@{\tt DV\_init1()}}{43}
\indexentry{DV_init2@{\tt DV\_init2()}}{43}
\indexentry{DV_setMaxsize@{\tt DV\_setMaxsize()}}{43}
\indexentry{DV_setSize@{\tt DV\_setSize()}}{44}
\indexentry{DV_shiftBase@{\tt DV\_shiftBase()}}{44}
\indexentry{DV_push@{\tt DV\_push()}}{44}
\indexentry{DV_min@{\tt DV\_min()}}{44}
\indexentry{DV_max@{\tt DV\_max()}}{44}
\indexentry{DV_sum@{\tt DV\_sum()}}{44}
\indexentry{DV_sortUp@{\tt DV\_sortUp()}}{44}
\indexentry{DV_sortDown@{\tt DV\_sortDown()}}{44}
\indexentry{DV_ramp@{\tt DV\_ramp()}}{44}
\indexentry{DV_shuffle@{\tt DV\_shuffle()}}{44}
\indexentry{DV_sizeOf@{\tt DV\_sizeOf()}}{45}
\indexentry{DV_first@{\tt DV\_first()}}{45}
\indexentry{DV_next@{\tt DV\_next()}}{45}
\indexentry{DV_fill@{\tt DV\_fill()}}{45}
\indexentry{DV_zero@{\tt DV\_zero()}}{45}
\indexentry{DV_copy@{\tt DV\_copy()}}{45}
\indexentry{DV_log10profile@{\tt DV\_log10profile()}}{45}
\indexentry{DV_readFromFile@{\tt DV\_readFromFile()}}{45}
\indexentry{DV_readFromFormattedFile@{\tt DV\_readFromFormattedFile()}}{46}
\indexentry{DV_readFromBinaryFile@{\tt DV\_readFromBinaryFile()}}{46}
\indexentry{DV_writeToFile@{\tt DV\_writeToFile()}}{46}
\indexentry{DV_writeToFormattedFile@{\tt DV\_writeToFormattedFile()}}{46}
\indexentry{DV_writeToBinaryFile@{\tt DV\_writeToBinaryFile()}}{46}
\indexentry{DV_writeForHumanEye@{\tt DV\_writeForHumanEye()}}{46}
\indexentry{DV_writeStats@{\tt DV\_writeStats()}}{46}
\indexentry{DV_writeForMatlab@{\tt DV\_writeForMatlab()}}{46}
\indexentry{Drand_new@{\tt Drand\_new()}}{49}
\indexentry{Drand_setDefaultFields@{\tt Drand\_setDefaultFields()}}{49}
\indexentry{Drand_clearData@{\tt Drand\_clearData()}}{49}
\indexentry{Drand_free@{\tt Drand\_free()}}{49}
\indexentry{Drand_init@{\tt Drand\_init()}}{49}
\indexentry{Drand_setSeed@{\tt Drand\_setSeed()}}{49}
\indexentry{Drand_setSeeds@{\tt Drand\_setSeeds()}}{49}
\indexentry{Drand_setNormal@{\tt Drand\_setNormal()}}{50}
\indexentry{Drand_setUniform@{\tt Drand\_setUniform()}}{50}
\indexentry{Drand_value@{\tt Drand\_value()}}{50}
\indexentry{Drand_fillZvector@{\tt Drand\_fillZvector()}}{50}
\indexentry{Drand_fillDvector@{\tt Drand\_fillDvector()}}{50}
\indexentry{Drand_fillIvector@{\tt Drand\_fillIvector()}}{50}
\indexentry{I2Ohash_new@{\tt I2Ohash\_new()}}{53}
\indexentry{I2Ohash_setDefaultFields@{\tt I2Ohash\_setDefaultFields()}}{53}
\indexentry{I2Ohash_clearData@{\tt I2Ohash\_clearData()}}{53}
\indexentry{I2Ohash_free@{\tt I2Ohash\_free()}}{53}
\indexentry{I2Ohash_init@{\tt I2Ohash\_init()}}{53}
\indexentry{I2Ohash_insert@{\tt I2Ohash\_insert()}}{54}
\indexentry{I2Ohash_locate@{\tt I2Ohash\_locate()}}{54}
\indexentry{I2Ohash_remove@{\tt I2Ohash\_remove()}}{54}
\indexentry{I2Ohash_measure@{\tt I2Ohash\_measure()}}{54}
\indexentry{I2Ohash_writeForHumanEye@{\tt I2Ohash\_writeForHumanEye()}}{54}
\indexentry{IIheap_new@{\tt IIheap\_new()}}{56}
\indexentry{IIheap_setDefaultFields@{\tt IIheap\_setDefaultFields()}}{57}
\indexentry{IIheap_clearData@{\tt IIheap\_clearData()}}{57}
\indexentry{IIheap_free@{\tt IIheap\_free()}}{57}
\indexentry{IIheap_init@{\tt IIheap\_init()}}{57}
\indexentry{IIheap_sizeOf@{\tt IIheap\_sizeOf()}}{57}
\indexentry{IIheap_root@{\tt IIheap\_root()}}{57}
\indexentry{IIheap_insert@{\tt IIheap\_insert()}}{57}
\indexentry{IIheap_remove@{\tt IIheap\_remove()}}{57}
\indexentry{IIheap_print@{\tt IIheap\_print()}}{57}
\indexentry{IV_new@{\tt IV\_new()}}{59}
\indexentry{IV_setDefaultFields@{\tt IV\_setDefaultFields()}}{59}
\indexentry{IV_clearData@{\tt IV\_clearData()}}{59}
\indexentry{IV_free@{\tt IV\_free()}}{59}
\indexentry{IV_owned@{\tt IV\_owned()}}{59}
\indexentry{IV_size@{\tt IV\_size()}}{60}
\indexentry{IV_maxsize@{\tt IV\_maxsize()}}{60}
\indexentry{IV_entry@{\tt IV\_entry()}}{60}
\indexentry{IV_entries@{\tt IV\_entries()}}{60}
\indexentry{IV_sizeAndEntries@{\tt IV\_sizeAndEntries()}}{60}
\indexentry{IV_setEntry@{\tt IV\_setEntry()}}{60}
\indexentry{IV_init@{\tt IV\_init()}}{60}
\indexentry{IV_init1@{\tt IV\_init1()}}{60}
\indexentry{IV_init2@{\tt IV\_init2()}}{60}
\indexentry{IV_setMaxsize@{\tt IV\_setMaxsize()}}{61}
\indexentry{IV_setSize@{\tt IV\_setSize()}}{61}
\indexentry{IV_shiftBase@{\tt IV\_shiftBase()}}{61}
\indexentry{IV_push@{\tt IV\_push()}}{61}
\indexentry{IV_min@{\tt IV\_min()}}{61}
\indexentry{IV_max@{\tt IV\_max()}}{61}
\indexentry{IV_sortUp@{\tt IV\_sortUp()}}{61}
\indexentry{IV_sortDown@{\tt IV\_sortDown()}}{61}
\indexentry{IV_ramp@{\tt IV\_ramp()}}{61}
\indexentry{IV_shuffle@{\tt IV\_shuffle()}}{62}
\indexentry{IV_sizeOf@{\tt IV\_sizeOf()}}{62}
\indexentry{IV_filterKeep@{\tt IV\_filterKeep()}}{62}
\indexentry{IV_filterPurge@{\tt IV\_filterPurge()}}{62}
\indexentry{IV_first@{\tt IV\_first()}}{62}
\indexentry{IV_next@{\tt IV\_next()}}{62}
\indexentry{IV_fill@{\tt IV\_fill()}}{62}
\indexentry{IV_copy@{\tt IV\_copy()}}{62}
\indexentry{IV_increment@{\tt IV\_increment()}}{62}
\indexentry{IV_decrement@{\tt IV\_decrement()}}{63}
\indexentry{IV_findValue@{\tt IV\_findValue()}}{63}
\indexentry{IV_findValueAscending@{\tt IV\_findValueAscending()}}{63}
\indexentry{IV_findValueDescending@{\tt IV\_findValueDescending()}}{63}
\indexentry{IV_inverseMap@{\tt IV\_inverseMap()}}{63}
\indexentry{IV_targetEntries@{\tt IV\_targetEntries()}}{63}
\indexentry{IV_readFromFile@{\tt IV\_readFromFile()}}{63}
\indexentry{IV_readFromFormattedFile@{\tt IV\_readFromFormattedFile()}}{64}
\indexentry{IV_readFromBinaryFile@{\tt IV\_readFromBinaryFile()}}{64}
\indexentry{IV_writeToFile@{\tt IV\_writeToFile()}}{64}
\indexentry{IV_writeToFormattedFile@{\tt IV\_writeToFormattedFile()}}{64}
\indexentry{IV_writeToBinaryFile@{\tt IV\_writeToBinaryFile()}}{64}
\indexentry{IV_writeForHumanEye@{\tt IV\_writeForHumanEye()}}{64}
\indexentry{IV_writeStats@{\tt IV\_writeStats()}}{64}
\indexentry{IV_fp80@{\tt IV\_fp80()}}{64}
\indexentry{IV_writeForMatlab@{\tt IV\_writeForMatlab()}}{64}
\indexentry{IVL_new@{\tt IVL\_new()}}{67}
\indexentry{IVL_setDefaultFields@{\tt IVL\_setDefaultFields()}}{67}
\indexentry{IVL_clearData@{\tt IVL\_clearData()}}{67}
\indexentry{IVL_free@{\tt IVL\_free()}}{67}
\indexentry{IVL_type@{\tt IVL\_type()}}{68}
\indexentry{IVL_maxnlist@{\tt IVL\_maxnlist()}}{68}
\indexentry{IVL_nlist@{\tt IVL\_nlist()}}{68}
\indexentry{IVL_tsize@{\tt IVL\_tsize()}}{68}
\indexentry{IVL_incr@{\tt IVL\_incr()}}{68}
\indexentry{IVL_setincr@{\tt IVL\_setincr()}}{68}
\indexentry{IVL_init@{\tt IVL\_init()}}{68}
\indexentry{IVL_init2@{\tt IVL\_init2()}}{68}
\indexentry{IVL_init3@{\tt IVL\_init3()}}{68}
\indexentry{IVL_initFromSubIVL@{\tt IVL\_initFromSubIVL()}}{69}
\indexentry{IVL_setMaxnlist@{\tt IVL\_setMaxnlist()}}{69}
\indexentry{IVL_setNlist@{\tt IVL\_setNlist()}}{69}
\indexentry{IVL_listAndSize@{\tt IVL\_listAndSize()}}{69}
\indexentry{IVL_firstInList@{\tt IVL\_firstInList()}}{69}
\indexentry{IVL_nextInList@{\tt IVL\_nextInList()}}{69}
\indexentry{IVL_setList@{\tt IVL\_setList()}}{69}
\indexentry{IVL_setPointerToList@{\tt IVL\_setPointerToList()}}{70}
\indexentry{IVL_sizeOf@{\tt IVL\_sizeOf()}}{70}
\indexentry{IVL_min@{\tt IVL\_min()}}{70}
\indexentry{IVL_max@{\tt IVL\_max()}}{70}
\indexentry{IVL_maxListSize@{\tt IVL\_maxListSize()}}{70}
\indexentry{IVL_sum@{\tt IVL\_sum()}}{70}
\indexentry{IVL_sortUp@{\tt IVL\_sortUp()}}{70}
\indexentry{IVL_equivMap1@{\tt IVL\_equivMap1()}}{70}
\indexentry{IVL_equivMap2@{\tt IVL\_equivMap2()}}{70}
\indexentry{IVL_overwrite@{\tt IVL\_overwrite()}}{71}
\indexentry{IVL_mapEntries@{\tt IVL\_mapEntries()}}{71}
\indexentry{IVL_absorbIVL@{\tt IVL\_absorbIVL()}}{71}
\indexentry{IVL_expand@{\tt IVL\_expand()}}{71}
\indexentry{IVL_make9P@{\tt IVL\_make9P()}}{71}
\indexentry{IVL_make13P@{\tt IVL\_make13P()}}{71}
\indexentry{IVL_make5P@{\tt IVL\_make5P()}}{71}
\indexentry{IVL_make27P@{\tt IVL\_make27P()}}{72}
\indexentry{IVL_readFromFile@{\tt IVL\_readFromFile()}}{72}
\indexentry{IVL_readFromFormattedFile@{\tt IVL\_readFromFormattedFile()}}{72}
\indexentry{IVL_readFromBinaryFile@{\tt IVL\_readFromBinaryFile()}}{72}
\indexentry{IVL_writeToFile@{\tt IVL\_writeToFile()}}{72}
\indexentry{IVL_writeToFormattedFile@{\tt IVL\_writeToFormattedFile()}}{72}
\indexentry{IVL_writeToBinaryFile@{\tt IVL\_writeToBinaryFile()}}{72}
\indexentry{IVL_writeForHumanEye@{\tt IVL\_writeForHumanEye()}}{72}
\indexentry{IVL_writeStats@{\tt IVL\_writeStats()}}{73}
\indexentry{Ideq_new@{\tt Ideq\_new()}}{75}
\indexentry{Ideq_setDefaultFields@{\tt Ideq\_setDefaultFields()}}{75}
\indexentry{Ideq_clearData@{\tt Ideq\_clearData()}}{75}
\indexentry{Ideq_free@{\tt Ideq\_free()}}{75}
\indexentry{Ideq_resize@{\tt Ideq\_resize()}}{75}
\indexentry{Ideq_clear@{\tt Ideq\_clear()}}{75}
\indexentry{Ideq_head@{\tt Ideq\_head()}}{75}
\indexentry{Ideq_removeFromHead@{\tt Ideq\_removeFromHead()}}{75}
\indexentry{Ideq_insertAtHead@{\tt Ideq\_insertAtHead()}}{76}
\indexentry{Ideq_tail@{\tt Ideq\_tail()}}{76}
\indexentry{Ideq_removeFromTail@{\tt Ideq\_removeFromTail()}}{76}
\indexentry{Ideq_insertAtTail@{\tt Ideq\_insertAtTail()}}{76}
\indexentry{Ideq_writeForHumanEye@{\tt Ideq\_writeForHumanEye()}}{76}
\indexentry{Lock_new@{\tt Lock\_new()}}{78}
\indexentry{Lock_setDefaultFields@{\tt Lock\_setDefaultFields()}}{78}
\indexentry{Lock_clearData@{\tt Lock\_clearData()}}{78}
\indexentry{Lock_free@{\tt Lock\_free()}}{78}
\indexentry{Lock_init@{\tt Lock\_init()}}{78}
\indexentry{Lock_lock@{\tt Lock\_lock()}}{78}
\indexentry{Lock_unlock@{\tt Lock\_unlock()}}{78}
\indexentry{Perm_new@{\tt Perm\_new()}}{79}
\indexentry{Perm_setDefaultFields@{\tt Perm\_setDefaultFields()}}{80}
\indexentry{Perm_clearData@{\tt Perm\_clearData()}}{80}
\indexentry{Perm_free@{\tt Perm\_free()}}{80}
\indexentry{Perm_initWithTypeAndSize@{\tt Perm\_initWithTypeAndSize()}}{80}
\indexentry{Perm_sizeOf@{\tt Perm\_sizeOf()}}{80}
\indexentry{Perm_checkPerm@{\tt Perm\_checkPerm()}}{80}
\indexentry{Perm_fillOldToNew@{\tt Perm\_fillOldToNew()}}{80}
\indexentry{Perm_fillNewToOld@{\tt Perm\_fillNewToOld()}}{80}
\indexentry{Perm_releaseOldToNew@{\tt Perm\_releaseOldToNew()}}{81}
\indexentry{Perm_releaseNewToOld@{\tt Perm\_releaseNewToOld()}}{81}
\indexentry{Perm_compress@{\tt Perm\_compress()}}{81}
\indexentry{Perm_readFromFile@{\tt Perm\_readFromFile()}}{81}
\indexentry{Perm_readFromFormattedFile@{\tt Perm\_readFromFormattedFile()}}{81}
\indexentry{Perm_readFromBinaryFile@{\tt Perm\_readFromBinaryFile()}}{81}
\indexentry{Perm_writeToFile@{\tt Perm\_writeToFile()}}{81}
\indexentry{Perm_writeToFormattedFile@{\tt Perm\_writeToFormattedFile()}}{82}
\indexentry{Perm_writeToBinaryFile@{\tt Perm\_writeToBinaryFile()}}{82}
\indexentry{Perm_writeForHumanEye@{\tt Perm\_writeForHumanEye()}}{82}
\indexentry{Perm_writeStats@{\tt Perm\_writeStats()}}{82}
\indexentry{CVinit@{\tt CVinit()}}{84}
\indexentry{CVinit2@{\tt CVinit2()}}{84}
\indexentry{CVfree@{\tt CVfree()}}{84}
\indexentry{CVcopy@{\tt CVcopy()}}{84}
\indexentry{CVfill@{\tt CVfill()}}{84}
\indexentry{CVfprintf@{\tt CVfprintf()}}{84}
\indexentry{CVfp80@{\tt CVfp80()}}{84}
\indexentry{CVfscanf@{\tt CVfscanf()}}{84}
\indexentry{DVinit@{\tt DVinit()}}{84}
\indexentry{DVinit2@{\tt DVinit2()}}{84}
\indexentry{DVfree@{\tt DVfree()}}{84}
\indexentry{DVfprintf@{\tt DVfprintf()}}{84}
\indexentry{DVfscanf@{\tt DVfscanf()}}{85}
\indexentry{DVadd@{\tt DVadd()}}{85}
\indexentry{DVaxpy@{\tt DVaxpy()}}{85}
\indexentry{DVaxpy@{\tt DVaxpy()}}{85}
\indexentry{DVaxpy33@{\tt DVaxpy33()}}{85}
\indexentry{DVaxpy32@{\tt DVaxpy32()}}{85}
\indexentry{DVaxpy31@{\tt DVaxpy31()}}{85}
\indexentry{DVaxpy23@{\tt DVaxpy23()}}{85}
\indexentry{DVaxpy22@{\tt DVaxpy22()}}{85}
\indexentry{DVaxpy21@{\tt DVaxpy21()}}{86}
\indexentry{DVaxpy13@{\tt DVaxpy13()}}{86}
\indexentry{DVaxpy12@{\tt DVaxpy12()}}{86}
\indexentry{DVaxpy11@{\tt DVaxpy11()}}{86}
\indexentry{DVaxpyi@{\tt DVaxpyi()}}{86}
\indexentry{DVcompress@{\tt DVcompress()}}{86}
\indexentry{DVcopy@{\tt DVcopy()}}{86}
\indexentry{DVdot@{\tt DVdot()}}{86}
\indexentry{DVdot33@{\tt DVdot33()}}{86}
\indexentry{DVdot32@{\tt DVdot32()}}{87}
\indexentry{DVdot31@{\tt DVdot31()}}{87}
\indexentry{DVdot23@{\tt DVdot23()}}{87}
\indexentry{DVdot22@{\tt DVdot22()}}{87}
\indexentry{DVdot21@{\tt DVdot21()}}{87}
\indexentry{DVdot13@{\tt DVdot13()}}{88}
\indexentry{DVdot12@{\tt DVdot12()}}{88}
\indexentry{DVdot11@{\tt DVdot11()}}{88}
\indexentry{DVdoti@{\tt DVdoti()}}{88}
\indexentry{DVfill@{\tt DVfill()}}{88}
\indexentry{DVgather@{\tt DVgather()}}{88}
\indexentry{DVgatherAddZero@{\tt DVgatherAddZero()}}{88}
\indexentry{DVgatherZero@{\tt DVgatherZero()}}{88}
\indexentry{DVinvPerm@{\tt DVinvPerm()}}{88}
\indexentry{DVmax@{\tt DVmax()}}{88}
\indexentry{DVmaxabs@{\tt DVmaxabs()}}{88}
\indexentry{DVmin@{\tt DVmin()}}{88}
\indexentry{DVminabs@{\tt DVminabs()}}{89}
\indexentry{DVperm@{\tt DVperm()}}{89}
\indexentry{DVramp@{\tt DVramp()}}{89}
\indexentry{DVscale@{\tt DVscale()}}{89}
\indexentry{DVscale@{\tt DVscale()}}{89}
\indexentry{DVscatter@{\tt DVscatter()}}{89}
\indexentry{DVscatterAdd@{\tt DVscatterAdd()}}{89}
\indexentry{DVscatterAddZero@{\tt DVscatterAddZero()}}{89}
\indexentry{DVscatterZero@{\tt DVscatterZero()}}{89}
\indexentry{DVsub@{\tt DVsub()}}{89}
\indexentry{DVsum@{\tt DVsum()}}{89}
\indexentry{DVsumabs@{\tt DVsumabs()}}{89}
\indexentry{DVswap@{\tt DVswap()}}{89}
\indexentry{DVzero@{\tt DVzero()}}{90}
\indexentry{DVshuffle@{\tt DVshuffle()}}{90}
\indexentry{ZVinit@{\tt ZVinit()}}{90}
\indexentry{ZVfprintf@{\tt ZVfprintf()}}{90}
\indexentry{Zabs@{\tt Zabs()}}{90}
\indexentry{Zrecip@{\tt Zrecip()}}{90}
\indexentry{Zrecip2@{\tt Zrecip2()}}{90}
\indexentry{ZVaxpy@{\tt ZVaxpy()}}{90}
\indexentry{ZVaxpy@{\tt ZVaxpy()}}{90}
\indexentry{ZVaxpy33@{\tt ZVaxpy33()}}{90}
\indexentry{ZVaxpy32@{\tt ZVaxpy32()}}{91}
\indexentry{ZVaxpy31@{\tt ZVaxpy31()}}{91}
\indexentry{ZVaxpy23@{\tt ZVaxpy23()}}{91}
\indexentry{ZVaxpy22@{\tt ZVaxpy22()}}{91}
\indexentry{ZVaxpy21@{\tt ZVaxpy21()}}{91}
\indexentry{ZVaxpy13@{\tt ZVaxpy13()}}{91}
\indexentry{ZVaxpy12@{\tt ZVaxpy12()}}{91}
\indexentry{ZVaxpy11@{\tt ZVaxpy11()}}{92}
\indexentry{ZVcopy@{\tt ZVcopy()}}{92}
\indexentry{ZVdotU@{\tt ZVdotU()}}{92}
\indexentry{ZVdotC@{\tt ZVdotC()}}{92}
\indexentry{ZVdotiU@{\tt ZVdotiU()}}{92}
\indexentry{ZVdotiC@{\tt ZVdotiC()}}{92}
\indexentry{ZVdotU33@{\tt ZVdotU33()}}{92}
\indexentry{ZVdotU32@{\tt ZVdotU32()}}{92}
\indexentry{ZVdotU31@{\tt ZVdotU31()}}{93}
\indexentry{ZVdotU23@{\tt ZVdotU23()}}{93}
\indexentry{ZVdotU22@{\tt ZVdotU22()}}{93}
\indexentry{ZVdotU21@{\tt ZVdotU21()}}{93}
\indexentry{ZVdotU13@{\tt ZVdotU13()}}{94}
\indexentry{ZVdotU12@{\tt ZVdotU12()}}{94}
\indexentry{ZVdotU11@{\tt ZVdotU11()}}{94}
\indexentry{ZVdotC33@{\tt ZVdotC33()}}{94}
\indexentry{ZVdotC32@{\tt ZVdotC32()}}{94}
\indexentry{ZVdotC31@{\tt ZVdotC31()}}{95}
\indexentry{ZVdotC23@{\tt ZVdotC23()}}{95}
\indexentry{ZVdotC22@{\tt ZVdotC22()}}{95}
\indexentry{ZVdotC21@{\tt ZVdotC21()}}{95}
\indexentry{ZVdotC13@{\tt ZVdotC13()}}{95}
\indexentry{ZVdotC12@{\tt ZVdotC12()}}{96}
\indexentry{ZVdotC11@{\tt ZVdotC11()}}{96}
\indexentry{ZVgather@{\tt ZVgather()}}{96}
\indexentry{ZVmaxabs@{\tt ZVmaxabs()}}{96}
\indexentry{ZVminabs@{\tt ZVminabs()}}{96}
\indexentry{ZVscale@{\tt ZVscale()}}{96}
\indexentry{ZVscale@{\tt ZVscale()}}{96}
\indexentry{ZVscatter@{\tt ZVscatter()}}{96}
\indexentry{ZVsub@{\tt ZVsub()}}{96}
\indexentry{ZVzero@{\tt ZVzero()}}{96}
\indexentry{IVinit@{\tt IVinit()}}{96}
\indexentry{IVinit2@{\tt IVinit2()}}{96}
\indexentry{IVfree@{\tt IVfree()}}{97}
\indexentry{IVfprintf@{\tt IVfprintf()}}{97}
\indexentry{IVfp80@{\tt IVfp80()}}{97}
\indexentry{IVfscanf@{\tt IVfscanf()}}{97}
\indexentry{IVcompress@{\tt IVcompress()}}{97}
\indexentry{IVcopy@{\tt IVcopy()}}{97}
\indexentry{IVfill@{\tt IVfill()}}{97}
\indexentry{IVgather@{\tt IVgather()}}{97}
\indexentry{IVinverse@{\tt IVinverse()}}{97}
\indexentry{IVinvPerm@{\tt IVinvPerm()}}{97}
\indexentry{IVlocateViaBinarySearch@{\tt IVlocateViaBinarySearch()}}{97}
\indexentry{IVmax@{\tt IVmax()}}{97}
\indexentry{IVmaxabs@{\tt IVmaxabs()}}{97}
\indexentry{IVmin@{\tt IVmin()}}{98}
\indexentry{IVminabs@{\tt IVminabs()}}{98}
\indexentry{IVperm@{\tt IVperm()}}{98}
\indexentry{IVramp@{\tt IVramp()}}{98}
\indexentry{IVscatter@{\tt IVscatter()}}{98}
\indexentry{IVsum@{\tt IVsum()}}{98}
\indexentry{IVsumabs@{\tt IVsumabs()}}{98}
\indexentry{IVswap@{\tt IVswap()}}{98}
\indexentry{IVzero@{\tt IVzero()}}{98}
\indexentry{IVshuffle@{\tt IVshuffle()}}{98}
\indexentry{FVinit@{\tt FVinit()}}{98}
\indexentry{FVinit2@{\tt FVinit2()}}{98}
\indexentry{FVfree@{\tt FVfree()}}{98}
\indexentry{FVfprintf@{\tt FVfprintf()}}{99}
\indexentry{FVfscanf@{\tt FVfscanf()}}{99}
\indexentry{FVadd@{\tt FVadd()}}{99}
\indexentry{FVaxpy@{\tt FVaxpy()}}{99}
\indexentry{FVaxpyi@{\tt FVaxpyi()}}{99}
\indexentry{FVcompress@{\tt FVcompress()}}{99}
\indexentry{FVcopy@{\tt FVcopy()}}{99}
\indexentry{FVdot@{\tt FVdot()}}{99}
\indexentry{FVfill@{\tt FVfill()}}{99}
\indexentry{FVgather@{\tt FVgather()}}{99}
\indexentry{FVgatherAddZero@{\tt FVgatherAddZero()}}{99}
\indexentry{FVgatherZero@{\tt FVgatherZero()}}{99}
\indexentry{FVinvPerm@{\tt FVinvPerm()}}{99}
\indexentry{FVmax@{\tt FVmax()}}{99}
\indexentry{FVmaxabs@{\tt FVmaxabs()}}{100}
\indexentry{FVmin@{\tt FVmin()}}{100}
\indexentry{FVminabs@{\tt FVminabs()}}{100}
\indexentry{FVperm@{\tt FVperm()}}{100}
\indexentry{FVramp@{\tt FVramp()}}{100}
\indexentry{FVscale@{\tt FVscale()}}{100}
\indexentry{FVscatter@{\tt FVscatter()}}{100}
\indexentry{FVscatterAddZero@{\tt FVscatterAddZero()}}{100}
\indexentry{FVscatterZero@{\tt FVscatterZero()}}{100}
\indexentry{FVsub@{\tt FVsub()}}{100}
\indexentry{FVsum@{\tt FVsum()}}{100}
\indexentry{FVsumabs@{\tt FVsumabs()}}{100}
\indexentry{FVswap@{\tt FVswap()}}{100}
\indexentry{FVzero@{\tt FVzero()}}{100}
\indexentry{FVshuffle@{\tt FVshuffle()}}{100}
\indexentry{PCVinit@{\tt PCVinit()}}{101}
\indexentry{PCVfree@{\tt PCVfree()}}{101}
\indexentry{PCVcopy@{\tt PCVcopy()}}{101}
\indexentry{PCVsetup@{\tt PCVsetup()}}{101}
\indexentry{PDVinit@{\tt PDVinit()}}{101}
\indexentry{PDVfree@{\tt PDVfree()}}{101}
\indexentry{PDVcopy@{\tt PDVcopy()}}{101}
\indexentry{PDVsetup@{\tt PDVsetup()}}{101}
\indexentry{PIVinit@{\tt PIVinit()}}{101}
\indexentry{PIVfree@{\tt PIVfree()}}{101}
\indexentry{PIVcopy@{\tt PIVcopy()}}{101}
\indexentry{PIVsetup@{\tt PIVsetup()}}{101}
\indexentry{PFVinit@{\tt PFVinit()}}{102}
\indexentry{PFVfree@{\tt PFVfree()}}{102}
\indexentry{PFVcopy@{\tt PFVcopy()}}{102}
\indexentry{PFVsetup@{\tt PFVsetup()}}{102}
\indexentry{IVisascending@{\tt IVisascending()}}{102}
\indexentry{IVisdescending@{\tt IVisdescending()}}{102}
\indexentry{DVisascending@{\tt DVisascending()}}{102}
\indexentry{DVisdescending@{\tt DVisdescending()}}{102}
\indexentry{IVisortUp@{\tt IVisortUp()}}{102}
\indexentry{IVisortDown@{\tt IVisortDown()}}{102}
\indexentry{IV2isortUp@{\tt IV2isortUp()}}{102}
\indexentry{IV2isortDown@{\tt IV2isortDown()}}{102}
\indexentry{IVDVisortUp@{\tt IVDVisortUp()}}{102}
\indexentry{IVDVisortDown@{\tt IVDVisortDown()}}{102}
\indexentry{IV2DVisortUp@{\tt IV2DVisortUp()}}{102}
\indexentry{IV2DVisortDown@{\tt IV2DVisortDown()}}{102}
\indexentry{IVZVisortUp@{\tt IVZVisortUp()}}{103}
\indexentry{IVZVisortDown@{\tt IVZVisortDown()}}{103}
\indexentry{IV2ZVisortUp@{\tt IV2ZVisortUp()}}{103}
\indexentry{IV2ZVisortDown@{\tt IV2ZVisortDown()}}{103}
\indexentry{DVisortUp@{\tt DVisortUp()}}{103}
\indexentry{DVisortDown@{\tt DVisortDown()}}{103}
\indexentry{DV2isortUp@{\tt DV2isortUp()}}{103}
\indexentry{DV2isortDown@{\tt DV2isortDown()}}{103}
\indexentry{DVIVisortUp@{\tt DVIVisortUp()}}{103}
\indexentry{DVIVisortDown@{\tt DVIVisortDown()}}{103}
\indexentry{IVqsortUp@{\tt IVqsortUp()}}{103}
\indexentry{IVqsortDown@{\tt IVqsortDown()}}{103}
\indexentry{IV2qsortUp@{\tt IV2qsortUp()}}{103}
\indexentry{IV2qsortDown@{\tt IV2qsortDown()}}{103}
\indexentry{IVDVqsortUp@{\tt IVDVqsortUp()}}{103}
\indexentry{IVDVqsortDown@{\tt IVDVqsortDown()}}{103}
\indexentry{IV2DVqsortUp@{\tt IV2DVqsortUp()}}{103}
\indexentry{IV2DVqsortDown@{\tt IV2DVqsortDown()}}{103}
\indexentry{IVZVqsortUp@{\tt IVZVqsortUp()}}{103}
\indexentry{IVZVqsortDown@{\tt IVZVqsortDown()}}{103}
\indexentry{IV2ZVqsortUp@{\tt IV2ZVqsortUp()}}{104}
\indexentry{IV2ZVqsortDown@{\tt IV2ZVqsortDown()}}{104}
\indexentry{DVqsortUp@{\tt DVqsortUp()}}{104}
\indexentry{DVqsortDown@{\tt DVqsortDown()}}{104}
\indexentry{DV2qsortUp@{\tt DV2qsortUp()}}{104}
\indexentry{DV2qsortDown@{\tt DV2qsortDown()}}{104}
\indexentry{DVIVqsortUp@{\tt DVIVqsortUp()}}{104}
\indexentry{DVIVqsortDown@{\tt DVIVqsortDown()}}{104}
\indexentry{IVsortUpAndCompress@{\tt IVsortUpAndCompress()}}{104}
\indexentry{IVDVsortUpAndCompress@{\tt IVDVsortUpAndCompress()}}{104}
\indexentry{IVZVsortUpAndCompress@{\tt IVZVsortUpAndCompress()}}{104}
\indexentry{IV2sortUpAndCompress@{\tt IV2sortUpAndCompress()}}{104}
\indexentry{IV2DVsortUpAndCompress@{\tt IV2DVsortUpAndCompress()}}{105}
\indexentry{IV2ZVsortUpAndCompress@{\tt IV2ZVsortUpAndCompress()}}{105}
\indexentry{IP_init@{\tt IP\_init()}}{105}
\indexentry{IP_free@{\tt IP\_free()}}{105}
\indexentry{IP_fprintf@{\tt IP\_fprintf()}}{105}
\indexentry{IP_fp80@{\tt IP\_fp80()}}{105}
\indexentry{IP_mergeUp@{\tt IP\_mergeUp()}}{105}
\indexentry{IP_mergeSortUp@{\tt IP\_mergeSortUp()}}{106}
\indexentry{IP_radixSortUp@{\tt IP\_radixSortUp()}}{106}
\indexentry{IP_radixSortDown@{\tt IP\_radixSortDown()}}{106}
\indexentry{I2OP_init@{\tt I2OP\_init()}}{106}
\indexentry{I2OP_initStorage@{\tt I2OP\_initStorage()}}{106}
\indexentry{I2OP_free@{\tt I2OP\_free()}}{106}
\indexentry{I2OP_fprintf@{\tt I2OP\_fprintf()}}{106}
\indexentry{ZV_new@{\tt ZV\_new()}}{109}
\indexentry{ZV_setDefaultFields@{\tt ZV\_setDefaultFields()}}{109}
\indexentry{ZV_clearData@{\tt ZV\_clearData()}}{109}
\indexentry{ZV_free@{\tt ZV\_free()}}{109}
\indexentry{ZV_owned@{\tt ZV\_owned()}}{109}
\indexentry{ZV_size@{\tt ZV\_size()}}{109}
\indexentry{ZV_maxsize@{\tt ZV\_size()}}{110}
\indexentry{ZV_entry@{\tt ZV\_entry()}}{110}
\indexentry{ZV_pointersToEntry@{\tt ZV\_pointersToEntry()}}{110}
\indexentry{ZV_entries@{\tt ZV\_entries()}}{110}
\indexentry{ZV_sizeAndEntries@{\tt ZV\_sizeAndEntries()}}{110}
\indexentry{ZV_setEntry@{\tt ZV\_setEntry()}}{110}
\indexentry{ZV_init@{\tt ZV\_init()}}{110}
\indexentry{ZV_init1@{\tt ZV\_init1()}}{110}
\indexentry{ZV_init2@{\tt ZV\_init2()}}{111}
\indexentry{ZV_setMaxsize@{\tt ZV\_setMaxsize()}}{111}
\indexentry{ZV_setSize@{\tt ZV\_setSize()}}{111}
\indexentry{ZV_shiftBase@{\tt ZV\_shiftBase()}}{111}
\indexentry{ZV_push@{\tt ZV\_push()}}{111}
\indexentry{ZV_minabs@{\tt ZV\_minabs()}}{111}
\indexentry{ZV_maxabs@{\tt ZV\_maxabs()}}{111}
\indexentry{ZV_sizeOf@{\tt ZV\_sizeOf()}}{111}
\indexentry{ZV_fill@{\tt ZV\_fill()}}{112}
\indexentry{ZV_zero@{\tt ZV\_zero()}}{112}
\indexentry{ZV_copy@{\tt ZV\_copy()}}{112}
\indexentry{ZV_log10profile@{\tt ZV\_log10profile()}}{112}
\indexentry{ZV_readFromFile@{\tt ZV\_readFromFile()}}{112}
\indexentry{ZV_readFromFormattedFile@{\tt ZV\_readFromFormattedFile()}}{112}
\indexentry{ZV_readFromBinaryFile@{\tt ZV\_readFromBinaryFile()}}{112}
\indexentry{ZV_writeToFile@{\tt ZV\_writeToFile()}}{113}
\indexentry{ZV_writeToFormattedFile@{\tt ZV\_writeToFormattedFile()}}{113}
\indexentry{ZV_writeToBinaryFile@{\tt ZV\_writeToBinaryFile()}}{113}
\indexentry{ZV_writeForHumanEye@{\tt ZV\_writeForHumanEye()}}{113}
\indexentry{ZV_writeStats@{\tt ZV\_writeStats()}}{113}
\indexentry{ZV_writeForMatlab@{\tt ZV\_writeForMatlab()}}{113}
\indexentry{BKL_new@{\tt BKL\_new()}}{118}
\indexentry{BKL_setDefaultFields@{\tt BKL\_setDefaultFields()}}{118}
\indexentry{BKL_clearData@{\tt BKL\_clearData()}}{118}
\indexentry{BKL_free@{\tt BKL\_free()}}{118}
\indexentry{BKL_init@{\tt BKL\_init()}}{118}
\indexentry{BKL_setRandomColors@{\tt BKL\_setRandomColors()}}{119}
\indexentry{BKL_setColorWeights@{\tt BKL\_setColorWeights()}}{119}
\indexentry{BKL_segColor@{\tt BKL\_segColor()}}{119}
\indexentry{BKL_flipDomain@{\tt BKL\_flipDomain()}}{119}
\indexentry{BKL_greyCodeDomain@{\tt BKL\_greyCodeDomain()}}{119}
\indexentry{BKL_setInitPart@{\tt BKL\_setInitPart()}}{119}
\indexentry{BKL_domAdjToSep@{\tt BKL\_domAdjToSep()}}{120}
\indexentry{BKL_evalgain@{\tt BKL\_evalgain()}}{120}
\indexentry{BKL_evalfcn@{\tt BKL\_evalfcn()}}{120}
\indexentry{BKL_eval@{\tt BKL\_eval()}}{120}
\indexentry{BKL_exhSearch@{\tt BKL\_exhSearch()}}{120}
\indexentry{BKL_fidmat@{\tt BKL\_fidmat()}}{121}
\indexentry{BPG_new@{\tt BPG\_new()}}{124}
\indexentry{BPG_setDefaultFields@{\tt BPG\_setDefaultFields()}}{124}
\indexentry{BPG_clearData@{\tt BPG\_clearData()}}{124}
\indexentry{BPG_free@{\tt BPG\_free()}}{124}
\indexentry{BPG_init@{\tt BPG\_init()}}{125}
\indexentry{BPG_initFromColoring@{\tt BPG\_initFromColoring()}}{125}
\indexentry{BPG_makeGraphXbyX@{\tt BPG\_makeGraphXbyX()}}{125}
\indexentry{BPG_makeGraphYbyY@{\tt BPG\_makeGraphYbyY()}}{125}
\indexentry{BPG_pseudoperipheralnode@{\tt BPG\_pseudoperipheralnode()}}{125}
\indexentry{BPG_levelStructure@{\tt BPG\_levelStructure()}}{125}
\indexentry{BPG_DMdecomposition@{\tt BPG\_DMdecomposition()}}{126}
\indexentry{BPG_DMviaMaxFlow@{\tt BPG\_DMviaMaxFlow()}}{126}
\indexentry{BPG_readFromFile@{\tt BPG\_readFromFile()}}{126}
\indexentry{BPG_readFromFormattedFile@{\tt BPG\_readFromFormattedFile()}}{126}
\indexentry{BPG_readFromBinaryFile@{\tt BPG\_readFromBinaryFile()}}{127}
\indexentry{BPG_writeToFile@{\tt BPG\_writeToFile()}}{127}
\indexentry{BPG_writeToFormattedFile@{\tt BPG\_writeToFormattedFile()}}{127}
\indexentry{BPG_writeToBinaryFile@{\tt BPG\_writeToBinaryFile()}}{127}
\indexentry{BPG_writeForHumanEye@{\tt BPG\_writeForHumanEye()}}{127}
\indexentry{BPG_writeStats@{\tt BPG\_writeStats()}}{127}
\indexentry{DSTree_new@{\tt DSTree\_new()}}{130}
\indexentry{DSTree_setDefaultFields@{\tt DSTree\_setDefaultFields()}}{130}
\indexentry{DSTree_clearData@{\tt DSTree\_clearData()}}{130}
\indexentry{DSTree_free@{\tt DSTree\_free()}}{130}
\indexentry{DSTree_tree@{\tt DSTree\_tree()}}{130}
\indexentry{DSTree_mapIV@{\tt DSTree\_mapIV()}}{130}
\indexentry{DSTree_init1@{\tt DSTree\_init1()}}{130}
\indexentry{DSTree_init2@{\tt DSTree\_init2()}}{131}
\indexentry{DSTree_NDstages@{\tt DSTree\_NDstages()}}{131}
\indexentry{DSTree_ND2stages@{\tt DSTree\_ND2stages()}}{131}
\indexentry{DSTree_MS2stages@{\tt DSTree\_MS2stages()}}{131}
\indexentry{DSTree_MS3stages@{\tt DSTree\_MS3stages()}}{131}
\indexentry{DSTree_stagesViaDomainWeight@{\tt DSTree\_stagesViaDomainWeight()}}{132}
\indexentry{DSTree_sizeOf@{\tt DSTree\_sizeOf()}}{132}
\indexentry{DSTree_renumberViaPostOT@{\tt DSTree\_renumberViaPostOT()}}{132}
\indexentry{DSTree_domainWeight@{\tt DSTree\_domainWeight()}}{132}
\indexentry{DSTree_separatorWeight@{\tt DSTree\_separatorWeight()}}{132}
\indexentry{DSTree_readFromFile@{\tt DSTree\_readFromFile()}}{132}
\indexentry{DSTree_readFromFormattedFile@{\tt DSTree\_readFromFormattedFile()}}{133}
\indexentry{DSTree_readFromBinaryFile@{\tt DSTree\_readFromBinaryFile()}}{133}
\indexentry{DSTree_writeToFile@{\tt DSTree\_writeToFile()}}{133}
\indexentry{DSTree_writeToFormattedFile@{\tt DSTree\_writeToFormattedFile()}}{133}
\indexentry{DSTree_writeToBinaryFile@{\tt DSTree\_writeToBinaryFile()}}{133}
\indexentry{DSTree_writeForHumanEye@{\tt DSTree\_writeForHumanEye()}}{133}
\indexentry{DSTree_writeStats@{\tt DSTree\_writeStats()}}{133}
\indexentry{EGraph_new@{\tt EGraph\_new()}}{136}
\indexentry{EGraph_setDefaultFields@{\tt EGraph\_setDefaultFields()}}{136}
\indexentry{EGraph_clearData@{\tt EGraph\_clearData()}}{136}
\indexentry{EGraph_free@{\tt EGraph\_free()}}{136}
\indexentry{EGraph_init@{\tt EGraph\_init()}}{136}
\indexentry{EGraph_mkAdjGraph@{\tt EGraph\_mkAdjGraph()}}{136}
\indexentry{EGraph_make9P@{\tt EGraph\_make9P()}}{136}
\indexentry{EGraph_make27P@{\tt EGraph\_make27P()}}{137}
\indexentry{EGraph_readFromFile@{\tt EGraph\_readFromFile()}}{137}
\indexentry{EGraph_readFromFormattedFile@{\tt EGraph\_readFromFormattedFile()}}{137}
\indexentry{EGraph_readFromBinaryFile@{\tt EGraph\_readFromBinaryFile()}}{137}
\indexentry{EGraph_writeToFile@{\tt EGraph\_writeToFile()}}{137}
\indexentry{EGraph_writeToFormattedFile@{\tt EGraph\_writeToFormattedFile()}}{137}
\indexentry{EGraph_writeToBinaryFile@{\tt EGraph\_writeToBinaryFile()}}{137}
\indexentry{EGraph_writeForHumanEye@{\tt EGraph\_writeForHumanEye()}}{138}
\indexentry{EGraph_writeStats@{\tt EGraph\_writeStats()}}{138}
\indexentry{ETree_new@{\tt ETree\_new()}}{141}
\indexentry{ETree_setDefaultFields@{\tt ETree\_setDefaultFields()}}{141}
\indexentry{ETree_clearData@{\tt ETree\_clearData()}}{141}
\indexentry{ETree_free@{\tt ETree\_free()}}{141}
\indexentry{ETree_nfront@{\tt ETree\_nfront()}}{141}
\indexentry{ETree_nvtx@{\tt ETree\_nvtx()}}{141}
\indexentry{ETree_tree@{\tt ETree\_tree()}}{141}
\indexentry{ETree_root@{\tt ETree\_root()}}{141}
\indexentry{ETree_par@{\tt ETree\_par()}}{142}
\indexentry{ETree_fch@{\tt ETree\_fch()}}{142}
\indexentry{ETree_sib@{\tt ETree\_sib()}}{142}
\indexentry{ETree_nodwghtsIV@{\tt ETree\_nodwghtsIV()}}{142}
\indexentry{ETree_nodwghts@{\tt ETree\_nodwghts()}}{142}
\indexentry{ETree_bndwghtsIV@{\tt ETree\_bndwghtsIV()}}{142}
\indexentry{ETree_bndwghts@{\tt ETree\_bndwghts()}}{142}
\indexentry{ETree_vtxToFrontIV@{\tt ETree\_vtxToFrontIV()}}{142}
\indexentry{ETree_vtxToFront@{\tt ETree\_vtxToFront()}}{142}
\indexentry{ETree_frontSize@{\tt ETree\_frontSize()}}{142}
\indexentry{ETree_frontBoundarySize@{\tt ETree\_frontBoundarySize()}}{142}
\indexentry{ETree_maxNindAndNent@{\tt ETree\_maxNindAndNent()}}{143}
\indexentry{ETree_init1@{\tt ETree\_init1()}}{143}
\indexentry{ETree_initFromGraph@{\tt ETree\_initFromGraph()}}{143}
\indexentry{ETree_initFromGraphWithPerms@{\tt ETree\_initFromGraphWithPerms()}}{143}
\indexentry{ETree_initFromDenseMatrix@{\tt ETree\_initFromDenseMatrix()}}{143}
\indexentry{ETree_initFromFile@{\tt ETree\_initFromFile()}}{144}
\indexentry{ETree_initFromSubtree@{\tt ETree\_initFromSubtree()}}{144}
\indexentry{ETree_sizeOf@{\tt ETree\_sizeOf()}}{144}
\indexentry{ETree_nFactorIndices@{\tt ETree\_nFactorIndices()}}{144}
\indexentry{ETree_nFactorEntries@{\tt ETree\_nFactorEntries()}}{144}
\indexentry{ETree_nFactorOps@{\tt ETree\_nFactorOps()}}{144}
\indexentry{ETree_nFactorEntriesInFront@{\tt ETree\_nFactorEntriesInFront()}}{144}
\indexentry{ETree_nInternalOpsInFront@{\tt ETree\_nInternalOpsInFront()}}{145}
\indexentry{ETree_nExternalOpsInFront@{\tt ETree\_nExternalOpsInFront()}}{145}
\indexentry{ETree_factorEntriesIV@{\tt ETree\_factorEntriesIV()}}{145}
\indexentry{ETree_backwardOps@{\tt ETree\_backwardOps()}}{145}
\indexentry{ETree_forwardOps@{\tt ETree\_forwardOps()}}{145}
\indexentry{ETree_expand@{\tt ETree\_expand()}}{145}
\indexentry{ETree_spliceTwoEtrees@{\tt ETree\_spliceTwoEtrees()}}{145}
\indexentry{ETree_nvtxMetric@{\tt ETree\_nvtxMetric()}}{146}
\indexentry{ETree_nentMetric@{\tt ETree\_nentMetric()}}{146}
\indexentry{ETree_nopsMetric@{\tt ETree\_nopsMetric()}}{146}
\indexentry{ETree_fundChainMap@{\tt ETree\_fundChainMap()}}{147}
\indexentry{ETree_fundSupernodeMap@{\tt ETree\_fundSupernodeMap()}}{147}
\indexentry{ETree_compress@{\tt ETree\_compress()}}{147}
\indexentry{ETree_leftJustify@{\tt ETree\_leftJustify()}}{147}
\indexentry{ETree_leftJustifyI@{\tt ETree\_leftJustifyI()}}{147}
\indexentry{ETree_leftJustifyD@{\tt ETree\_leftJustifyD()}}{147}
\indexentry{ETree_newToOldFrontPerm@{\tt ETree\_newToOldFrontPerm()}}{148}
\indexentry{ETree_oldToNewFrontPerm@{\tt ETree\_oldToNewFrontPerm()}}{148}
\indexentry{ETree_newToOldVtxPerm@{\tt ETree\_newToOldVtxPerm()}}{148}
\indexentry{ETree_oldToNewVtxPerm@{\tt ETree\_oldToNewVtxPerm()}}{148}
\indexentry{ETree_permuteVertices@{\tt ETree\_permuteVertices()}}{148}
\indexentry{ETree_msByDepth@{\tt ETree\_msByDepth()}}{148}
\indexentry{ETree_msByNvtxCutoff@{\tt ETree\_msByNvtxCutoff()}}{148}
\indexentry{ETree_msByNentCutoff@{\tt ETree\_msByNentCutoff()}}{149}
\indexentry{ETree_msByNopsCutoff@{\tt ETree\_msByNopsCutoff()}}{149}
\indexentry{ETree_msStats@{\tt ETree\_msStats()}}{149}
\indexentry{ETree_optPart@{\tt ETree\_optPart()}}{149}
\indexentry{ETree_mergeFrontsOne@{\tt ETree\_mergeFrontsOne()}}{150}
\indexentry{ETree_mergeFrontsAll@{\tt ETree\_mergeFrontsAll()}}{151}
\indexentry{ETree_mergeFrontsAny@{\tt ETree\_mergeFrontsAny()}}{151}
\indexentry{ETree_splitFronts@{\tt ETree\_splitFronts()}}{151}
\indexentry{ETree_transform@{\tt ETree\_transform()}}{151}
\indexentry{ETree_transform2@{\tt ETree\_transform2()}}{151}
\indexentry{ETree_wrapMap@{\tt ETree\_wrapMap()}}{152}
\indexentry{ETree_balancedMap@{\tt ETree\_balancedMap()}}{152}
\indexentry{ETree_subtreeSubsetMap@{\tt ETree\_subtreeSubsetMap()}}{152}
\indexentry{ETree_ddMap@{\tt ETree\_ddMap()}}{152}
\indexentry{ETree_ddMapNew@{\tt ETree\_ddMapNew()}}{152}
\indexentry{ETree_MFstackProfile@{\tt ETree\_MFstackProfile()}}{152}
\indexentry{ETree_GSstorageProfile@{\tt ETree\_GSstorageProfile()}}{152}
\indexentry{ETree_FSstorageProfile@{\tt ETree\_FSstorageProfile()}}{153}
\indexentry{ETree_forwSolveProfile@{\tt ETree\_forwSolveProfile()}}{153}
\indexentry{ETree_backSolveProfile@{\tt ETree\_backSolveProfile()}}{153}
\indexentry{ETree_readFromFile@{\tt ETree\_readFromFile()}}{153}
\indexentry{ETree_readFromFormattedFile@{\tt ETree\_readFromFormattedFile()}}{153}
\indexentry{ETree_readFromBinaryFile@{\tt ETree\_readFromBinaryFile()}}{153}
\indexentry{ETree_writeToFile@{\tt ETree\_writeToFile()}}{153}
\indexentry{ETree_writeToFormattedFile@{\tt ETree\_writeToFormattedFile()}}{154}
\indexentry{ETree_writeToBinaryFile@{\tt ETree\_writeToBinaryFile()}}{154}
\indexentry{ETree_writeForHumanEye@{\tt ETree\_writeForHumanEye()}}{154}
\indexentry{ETree_writeStats@{\tt ETree\_writeStats()}}{154}
\indexentry{GPart_new@{\tt GPart\_new()}}{167}
\indexentry{GPart_setDefaultFields@{\tt GPart\_setDefaultFields()}}{167}
\indexentry{GPart_clearData@{\tt GPart\_clearData()}}{168}
\indexentry{GPart_free@{\tt GPart\_free()}}{168}
\indexentry{GPart_init@{\tt GPart\_init()}}{168}
\indexentry{GPart_setMessageInfo@{\tt GPart\_setMessageInfo()}}{168}
\indexentry{GPart_setCweights@{\tt GPart\_setCweights()}}{168}
\indexentry{GPart_sizeOf@{\tt GPart\_sizeOf()}}{168}
\indexentry{GPart_validVtxSep@{\tt GPart\_validVtxSep()}}{168}
\indexentry{GPart_split@{\tt GPart\_split()}}{169}
\indexentry{GPart_vtxIsAdjToOneDomain@{\tt GPart\_vtxIsAdjToOneDomain()}}{169}
\indexentry{GPart_bndWeightsIV@{\tt GPart\_bndWeightsIV()}}{169}
\indexentry{GPart_DDviaFishnet@{\tt GPart\_DDviaFishnet()}}{169}
\indexentry{GPart_DDviaProjection@{\tt GPart\_DDviaProjection()}}{169}
\indexentry{GPart_TwoSetViaBKL@{\tt GPart\_TwoSetViaBKL()}}{170}
\indexentry{GPart_domSegMap@{\tt GPart\_domSegMap()}}{170}
\indexentry{GPart_identifyWideSep@{\tt GPart\_identifyWideSep()}}{170}
\indexentry{GPart_makeYCmap@{\tt GPart\_makeYCmap()}}{170}
\indexentry{GPart_smoothBy2layers@{\tt GPart\_smoothBy2layers()}}{171}
\indexentry{GPart_smoothYSep@{\tt GPart\_smoothYSep()}}{171}
\indexentry{GPart_smoothBisector@{\tt GPart\_smoothBisector()}}{171}
\indexentry{GPart_RBviaDDsep@{\tt GPart\_RBviaDDsep()}}{172}
\indexentry{DDepInfo_new@{\tt DDsepInfo\_new()}}{172}
\indexentry{DDepInfo_setDefaultFields@{\tt DDsepInfo\_setDefaultFields()}}{172}
\indexentry{DDepInfo_clearData@{\tt DDsepInfo\_clearData()}}{172}
\indexentry{DDepInfo_free@{\tt DDsepInfo\_free()}}{172}
\indexentry{DDepInfo_writeCpuTimes@{\tt DDsepInfo\_writeCpuTimes()}}{173}
\indexentry{Graph_new@{\tt Graph\_new()}}{178}
\indexentry{Graph_setDefaultFields@{\tt Graph\_setDefaultFields()}}{178}
\indexentry{Graph_clearData@{\tt Graph\_clearData()}}{179}
\indexentry{Graph_free@{\tt Graph\_free()}}{179}
\indexentry{Graph_init1@{\tt Graph\_init1()}}{179}
\indexentry{Graph_init2@{\tt Graph\_init2()}}{179}
\indexentry{Graph_fillFromOffsets@{\tt Graph\_fillFromOffsets()}}{179}
\indexentry{Graph_setListsFromOffsets@{\tt Graph\_setListsFromOffsets()}}{180}
\indexentry{Graph_equivMap@{\tt Graph\_equivMap()}}{180}
\indexentry{Graph_compress@{\tt Graph\_compress()}}{180}
\indexentry{Graph_compress2@{\tt Graph\_compress2()}}{180}
\indexentry{Graph_expand@{\tt Graph\_expand()}}{180}
\indexentry{Graph_expand2@{\tt Graph\_expand2()}}{180}
\indexentry{Graph_wirebasketStages@{\tt Graph\_wirebasketStages()}}{180}
\indexentry{Graph_sizeOf@{\tt Graph\_sizeOf()}}{181}
\indexentry{Graph_externalDegree@{\tt Graph\_externalDegree()}}{181}
\indexentry{Graph_adjAndSize@{\tt Graph\_adjAndSize()}}{181}
\indexentry{Graph_adjAndEweights@{\tt Graph\_adjAndEweights()}}{181}
\indexentry{Graph_componentMap@{\tt Graph\_componentMap()}}{181}
\indexentry{Graph_componentStats@{\tt Graph\_componentStats()}}{181}
\indexentry{Graph_subGraph@{\tt Graph\_subGraph()}}{181}
\indexentry{Graph_isSymmetric@{\tt Graph\_isSymmetric()}}{182}
\indexentry{Graph_readFromFile@{\tt Graph\_readFromFile()}}{182}
\indexentry{Graph_readFromFormattedFile@{\tt Graph\_readFromFormattedFile()}}{182}
\indexentry{Graph_readFromBinaryFile@{\tt Graph\_readFromBinaryFile()}}{182}
\indexentry{Graph_writeToFile@{\tt Graph\_writeToFile()}}{182}
\indexentry{Graph_writeToFormattedFile@{\tt Graph\_writeToFormattedFile()}}{182}
\indexentry{Graph_writeToBinaryFile@{\tt Graph\_writeToBinaryFile()}}{183}
\indexentry{Graph_writeForHumanEye@{\tt Graph\_writeForHumanEye()}}{183}
\indexentry{Graph_writeStats@{\tt Graph\_writeStats()}}{183}
\indexentry{Graph_writeToMetisFile@{\tt Graph\_writeToMetisFile()}}{183}
\indexentry{MSMDinfo_new@{\tt MSMDinfo\_new()}}{191}
\indexentry{MSMDinfo_setDefaultFields@{\tt MSMDinfo\_setDefaultFields()}}{192}
\indexentry{MSMDinfo_clearData@{\tt MSMDinfo\_clearData()}}{192}
\indexentry{MSMDinfo_free@{\tt MSMDinfo\_free()}}{192}
\indexentry{MSMDinfo_print@{\tt MSMDinfo\_print()}}{192}
\indexentry{MSMDinfo_isValid@{\tt MSMDinfo\_isValid()}}{192}
\indexentry{MSMD_new@{\tt MSMD\_new()}}{192}
\indexentry{MSMD_setDefaultFields@{\tt MSMD\_setDefaultFields()}}{192}
\indexentry{MSMD_clearData@{\tt MSMD\_clearData()}}{193}
\indexentry{MSMD_free@{\tt MSMD\_free()}}{193}
\indexentry{MSMD_init@{\tt MSMD\_init()}}{193}
\indexentry{MSMD_order@{\tt MSMD\_order()}}{193}
\indexentry{MSMD_fillPerms@{\tt MSMD\_fillPerms()}}{194}
\indexentry{MSMD_frontETree@{\tt MSMD\_frontETree()}}{194}
\indexentry{MSMD_eliminateStage@{\tt MSMD\_eliminateStage()}}{194}
\indexentry{MSMD_eliminateStep@{\tt MSMD\_eliminateStep()}}{194}
\indexentry{MSMD_eliminateVtx@{\tt MSMD\_eliminateVtx()}}{194}
\indexentry{MSMD_findInodes@{\tt MSMD\_findInodes()}}{194}
\indexentry{MSMD_cleanReachSet@{\tt MSMD\_cleanReachSet()}}{194}
\indexentry{MSMD_cleanSubtreeList@{\tt MSMD\_cleanSubtreeList()}}{194}
\indexentry{MSMD_cleanEdgeList@{\tt MSMD\_cleanEdgeList()}}{195}
\indexentry{MSMD_update@{\tt MSMD\_update()}}{195}
\indexentry{MSMD_exactDegree2@{\tt MSMD\_exactDegree2()}}{195}
\indexentry{MSMD_exactDegree3@{\tt MSMD\_exactDegree3()}}{195}
\indexentry{MSMD_approxDegree@{\tt MSMD\_approxDegree()}}{195}
\indexentry{MSMD_makeSchurComplement@{\tt MSMD\_makeSchurComplement()}}{195}
\indexentry{MSMDvtx_print@{\tt MSMDvtx\_print()}}{195}
\indexentry{Network_new@{\tt Network\_new()}}{200}
\indexentry{Network_setDefaultFields@{\tt Network\_setDefaultFields()}}{200}
\indexentry{Network_clearData@{\tt Network\_clearData()}}{200}
\indexentry{Network_free@{\tt Network\_free()}}{200}
\indexentry{Network_init@{\tt Network\_init()}}{201}
\indexentry{Network_setMessageInfo@{\tt Network\_setMessageInfo()}}{201}
\indexentry{Network_addArc@{\tt Network\_addArc()}}{201}
\indexentry{Network_findMaxFlow@{\tt Network\_findMaxFlow()}}{201}
\indexentry{Network_findAugmentingPath@{\tt Network\_findAugmentingPath()}}{201}
\indexentry{Network_augmentPath@{\tt Network\_augmentPath()}}{201}
\indexentry{Network_findMincutFromSource@{\tt Network\_findMincutFromSource()}}{202}
\indexentry{Network_findMincutFromSink@{\tt Network\_findMincutFromSink()}}{202}
\indexentry{Network_writeForHumanEye@{\tt Network\_writeForHumanEye()}}{202}
\indexentry{Network_writeStats@{\tt Network\_writeStats()}}{202}
\indexentry{SolveMap_new@{\tt SolveMap\_new()}}{204}
\indexentry{SolveMap_setDefaultFields@{\tt SolveMap\_setDefaultFields()}}{204}
\indexentry{SolveMap_clearData@{\tt SolveMap\_clearData()}}{204}
\indexentry{SolveMap_free@{\tt SolveMap\_free()}}{204}
\indexentry{SolveMap_symmetryflag@{\tt SolveMap\_symmetryflag()}}{204}
\indexentry{SolveMap_nfront@{\tt SolveMap\_nfront()}}{204}
\indexentry{SolveMap_nproc@{\tt SolveMap\_nproc()}}{204}
\indexentry{SolveMap_nblockUpper@{\tt SolveMap\_nblockUpper()}}{204}
\indexentry{SolveMap_nblockLower@{\tt SolveMap\_nblockLower()}}{205}
\indexentry{SolveMap_owners@{\tt SolveMap\_owners()}}{205}
\indexentry{SolveMap_rowidsUpper@{\tt SolveMap\_rowidsUpper()}}{205}
\indexentry{SolveMap_colidsUpper@{\tt SolveMap\_colidsUpper()}}{205}
\indexentry{SolveMap_mapUpper@{\tt SolveMap\_mapUpper()}}{205}
\indexentry{SolveMap_rowidsLower@{\tt SolveMap\_rowidsLower()}}{205}
\indexentry{SolveMap_colidsLower@{\tt SolveMap\_colidsLower()}}{205}
\indexentry{SolveMap_mapLower@{\tt SolveMap\_mapLower()}}{205}
\indexentry{SolveMap_init@{\tt SolveMap\_init()}}{205}
\indexentry{SolveMap_randomMap@{\tt SolveMap\_randomMap()}}{206}
\indexentry{SolveMap_ddMap@{\tt SolveMap\_ddMap()}}{206}
\indexentry{SolveMap_forwardSetup@{\tt SolveMap\_forwardSetup()}}{206}
\indexentry{SolveMap_backwardSetup@{\tt SolveMap\_backwardSetup()}}{206}
\indexentry{SolveMap_owners@{\tt SolveMap\_owners()}}{206}
\indexentry{SolveMap_upperSolveIVL@{\tt SolveMap\_upperSolveIVL()}}{206}
\indexentry{SolveMap_lowerSolveIVL@{\tt SolveMap\_lowerSolveIVL()}}{206}
\indexentry{SolveMap_upperAggregateIV@{\tt SolveMap\_upperAggregateIV()}}{207}
\indexentry{SolveMap_lowerAggregateIV@{\tt SolveMap\_lowerAggregateIV()}}{207}
\indexentry{SolveMap_readFromFile@{\tt SolveMap\_readFromFile()}}{207}
\indexentry{SolveMap_readFromFormattedFile@{\tt SolveMap\_readFromFormattedFile()}}{207}
\indexentry{SolveMap_readFromBinaryFile@{\tt SolveMap\_readFromBinaryFile()}}{207}
\indexentry{SolveMap_writeToFile@{\tt SolveMap\_writeToFile()}}{207}
\indexentry{SolveMap_writeToFormattedFile@{\tt SolveMap\_writeToFormattedFile()}}{208}
\indexentry{SolveMap_writeToBinaryFile@{\tt SolveMap\_writeToBinaryFile()}}{208}
\indexentry{SolveMap_writeForHumanEye@{\tt SolveMap\_writeForHumanEye()}}{208}
\indexentry{SolveMap_writeStats@{\tt SolveMap\_writeStats()}}{208}
\indexentry{Tree_new@{\tt Tree\_new()}}{210}
\indexentry{Tree_setDefaultFields@{\tt Tree\_setDefaultFields()}}{210}
\indexentry{Tree_clearData@{\tt Tree\_clearData()}}{210}
\indexentry{Tree_free@{\tt Tree\_free()}}{210}
\indexentry{Tree_nnodes@{\tt Tree\_nnodes()}}{210}
\indexentry{Tree_root@{\tt Tree\_root()}}{210}
\indexentry{Tree_par@{\tt Tree\_par()}}{210}
\indexentry{Tree_fch@{\tt Tree\_fch()}}{210}
\indexentry{Tree_sib@{\tt Tree\_sib()}}{210}
\indexentry{Tree_init1@{\tt Tree\_init1()}}{211}
\indexentry{Tree_init2@{\tt Tree\_init2()}}{211}
\indexentry{Tree_init3@{\tt Tree\_init3()}}{211}
\indexentry{Tree_initFromSubtree@{\tt Tree\_initFromSubtree()}}{211}
\indexentry{Tree_setFchSibRoot@{\tt Tree\_setFchSibRoot()}}{211}
\indexentry{Tree_setRoot@{\tt Tree\_setRoot()}}{211}
\indexentry{Tree_sizeOf@{\tt Tree\_sizeOf()}}{212}
\indexentry{Tree_postOTfirst@{\tt Tree\_postOTfirst()}}{212}
\indexentry{Tree_postOTnext@{\tt Tree\_postOTnext()}}{212}
\indexentry{Tree_preOTfirst@{\tt Tree\_preOTfirst()}}{212}
\indexentry{Tree_preOTnext@{\tt Tree\_preOTnext()}}{212}
\indexentry{Tree_nleaves@{\tt Tree\_nleaves()}}{212}
\indexentry{Tree_nroots@{\tt Tree\_nroots()}}{212}
\indexentry{Tree_nchild@{\tt Tree\_nchild()}}{212}
\indexentry{Tree_nchildIV@{\tt Tree\_nchildIV()}}{212}
\indexentry{Tree_maxNchild@{\tt Tree\_maxNchild()}}{212}
\indexentry{Tree_height@{\tt Tree\_height()}}{212}
\indexentry{Tree_maximizeGainIV@{\tt Tree\_maximizeGainIV()}}{213}
\indexentry{Tree_setSubtreeImetric@{\tt Tree\_setSubtreeImetric()}}{213}
\indexentry{Tree_setSubtreeDmetric@{\tt Tree\_setSubtreeDmetric()}}{213}
\indexentry{Tree_setDepthImetric@{\tt Tree\_setDepthImetric()}}{213}
\indexentry{Tree_setDepthDmetric@{\tt Tree\_setDepthDmetric()}}{213}
\indexentry{Tree_setHeightImetric@{\tt Tree\_setHeightImetric()}}{213}
\indexentry{Tree_setHeightDmetric@{\tt Tree\_setHeightDmetric()}}{213}
\indexentry{Tree_fundChainMap@{\tt Tree\_fundChainMap()}}{214}
\indexentry{Tree_compress@{\tt Tree\_compress()}}{214}
\indexentry{Tree_leftJustify@{\tt Tree\_leftJustify()}}{214}
\indexentry{Tree_leftJustifyI@{\tt Tree\_leftJustifyI()}}{214}
\indexentry{Tree_leftJustifyD@{\tt Tree\_leftJustifyD()}}{214}
\indexentry{Tree_fillNewToOldPerm@{\tt Tree\_fillNewToOldPerm()}}{215}
\indexentry{Tree_fillOldToNewPerm@{\tt Tree\_fillOldToNewPerm()}}{215}
\indexentry{Tree_fillBothPerms@{\tt Tree\_fillBothPerms()}}{215}
\indexentry{Tree_permute@{\tt Tree\_permute()}}{215}
\indexentry{Tree_getSimpleCoords@{\tt Tree\_getSimpleCoords()}}{215}
\indexentry{Tree_drawToEPS@{\tt Tree\_drawToEPS()}}{215}
\indexentry{Tree_readFromFile@{\tt Tree\_readFromFile()}}{216}
\indexentry{Tree_readFromFormattedFile@{\tt Tree\_readFromFormattedFile()}}{216}
\indexentry{Tree_readFromBinaryFile@{\tt Tree\_readFromBinaryFile()}}{216}
\indexentry{Tree_writeToFile@{\tt Tree\_writeToFile()}}{216}
\indexentry{Tree_writeToFormattedFile@{\tt Tree\_writeToFormattedFile()}}{216}
\indexentry{Tree_writeToBinaryFile@{\tt Tree\_writeToBinaryFile()}}{216}
\indexentry{Tree_writeForHumanEye@{\tt Tree\_writeForHumanEye()}}{217}
\indexentry{Tree_writeStats@{\tt Tree\_writeStats()}}{217}
\indexentry{Chv_new@{\tt Chv\_new()}}{224}
\indexentry{Chv_setDefaultFields@{\tt Chv\_setDefaultFields()}}{224}
\indexentry{Chv_clearData@{\tt Chv\_clearData()}}{224}
\indexentry{Chv_free@{\tt Chv\_free()}}{224}
\indexentry{Chv_id@{\tt Chv\_id()}}{224}
\indexentry{Chv_type@{\tt Chv\_type()}}{224}
\indexentry{Chv_symmetryFlag@{\tt Chv\_symmetryFlag()}}{224}
\indexentry{Chv_dimensions@{\tt Chv\_dimensions()}}{224}
\indexentry{Chv_rowIndices@{\tt Chv\_rowIndices()}}{225}
\indexentry{Chv_columnIndices@{\tt Chv\_columnIndices()}}{225}
\indexentry{Chv_nent@{\tt Chv\_nent()}}{225}
\indexentry{Chv_entries@{\tt Chv\_entries()}}{225}
\indexentry{Chv_diagLocation@{\tt Chv\_diagLocation()}}{225}
\indexentry{Chv_workspace@{\tt Chv\_workspace()}}{225}
\indexentry{Chv_realEntry@{\tt Chv\_realEntry()}}{225}
\indexentry{Chv_locationOfRealEntry@{\tt Chv\_locationOfRealEntry()}}{225}
\indexentry{Chv_setRealEntry@{\tt Chv\_setRealEntry()}}{225}
\indexentry{Chv_complexEntry@{\tt Chv\_complexEntry()}}{226}
\indexentry{Chv_locationOfComplexEntry@{\tt Chv\_locationOfComplexEntry()}}{226}
\indexentry{Chv_setComplexEntry@{\tt Chv\_setComplexEntry()}}{226}
\indexentry{Chv_init@{\tt Chv\_init()}}{226}
\indexentry{Chv_initWithPointers@{\tt Chv\_initWithPointers()}}{226}
\indexentry{Chv_initFromBuffer@{\tt Chv\_initFromBuffer()}}{226}
\indexentry{Chv_maxabsInDiagonal11@{\tt Chv\_maxabsInDiagonal11()}}{227}
\indexentry{Chv_maxabsInRow11@{\tt Chv\_maxabsInRow11()}}{227}
\indexentry{Chv_maxabsInColumn11@{\tt Chv\_maxabsInColumn11()}}{227}
\indexentry{Chv_maxabsInRow@{\tt Chv\_maxabsInRow()}}{227}
\indexentry{Chv_maxabsInColumn@{\tt Chv\_maxabsInColumn()}}{227}
\indexentry{Chv_quasimax@{\tt Chv\_quasimax()}}{227}
\indexentry{Chv_fastBunchParlettPivot@{\tt Chv\_fastBunchParlettPivot()}}{228}
\indexentry{Chv_findPivot@{\tt Chv\_findPivot()}}{228}
\indexentry{Chv_updateS@{\tt Chv\_updateS()}}{228}
\indexentry{Chv_updateH@{\tt Chv\_updateH()}}{228}
\indexentry{Chv_updateN@{\tt Chv\_updateN()}}{228}
\indexentry{Chv_addChevron@{\tt Chv\_addChevron()}}{229}
\indexentry{Chv_assembleChv@{\tt Chv\_assembleChv()}}{229}
\indexentry{Chv_assemblePostponedData@{\tt Chv\_assemblePostponedData()}}{229}
\indexentry{Chv_factorWithPivoting@{\tt Chv\_factorWithPivoting()}}{229}
\indexentry{Chv_factorWithNoPivoting@{\tt Chv\_factorWithNoPivoting()}}{230}
\indexentry{Chv_r1upd@{\tt Chv\_r1upd()}}{230}
\indexentry{Chv_r2upd@{\tt Chv\_r2upd()}}{230}
\indexentry{Chv_maxabsInChevron@{\tt Chv\_maxabsInChevron()}}{230}
\indexentry{Chv_zeroOffdiagonalOfChevron@{\tt Chv\_zeroOffdiagonalOfChevron()}}{230}
\indexentry{Chv_countEntries@{\tt Chv\_countEntries()}}{230}
\indexentry{Chv_countBigEntries@{\tt Chv\_countBigEntries()}}{231}
\indexentry{Chv_copyEntriesToVector@{\tt Chv\_copyEntriesToVector()}}{231}
\indexentry{Chv_copyBigEntriesToVector@{\tt Chv\_copyBigEntriesToVector()}}{232}
\indexentry{Chv_copyTrailingPortion@{\tt Chv\_copyTrailingPortion()}}{232}
\indexentry{Chv_swapRows@{\tt Chv\_swapRows()}}{232}
\indexentry{Chv_swapColumns@{\tt Chv\_swapColumns()}}{233}
\indexentry{Chv_swapRowsAndColumns@{\tt Chv\_swapRowsAndColumns()}}{233}
\indexentry{Chv_nbytesNeeded@{\tt Chv\_nbytesNeeded()}}{233}
\indexentry{Chv_nbytesInWorkspace@{\tt Chv\_nbytesInWorkspace()}}{233}
\indexentry{Chv_setNbytesInWorkspace@{\tt Chv\_setNbytesInWorkspace()}}{233}
\indexentry{Chv_setFields@{\tt Chv\_setFields()}}{233}
\indexentry{Chv_shift@{\tt Chv\_shift()}}{233}
\indexentry{Chv_fill11block@{\tt Chv\_fill11block()}}{234}
\indexentry{Chv_fill12block@{\tt Chv\_fill12block()}}{234}
\indexentry{Chv_fill21block@{\tt Chv\_fill21block()}}{234}
\indexentry{Chv_maxabs@{\tt Chv\_maxabs()}}{234}
\indexentry{Chv_frobNorm@{\tt Chv\_frobNorm()}}{234}
\indexentry{Chv_sub@{\tt Chv\_sub()}}{234}
\indexentry{Chv_zero@{\tt Chv\_zero()}}{234}
\indexentry{Chv_writeForHumanEye@{\tt Chv\_writeForHumanEye()}}{234}
\indexentry{Chv_writeForMatlab@{\tt Chv\_writeForMatlab()}}{234}
\indexentry{ChvList_new@{\tt ChvList\_new()}}{241}
\indexentry{ChvList_setDefaultFields@{\tt ChvList\_setDefaultFields()}}{241}
\indexentry{ChvList_clearData@{\tt ChvList\_clearData()}}{241}
\indexentry{ChvList_free@{\tt ChvList\_free()}}{241}
\indexentry{ChvList_init@{\tt ChvList\_init()}}{242}
\indexentry{ChvList_isListNonempty@{\tt ChvList\_isListNonempty()}}{242}
\indexentry{ChvList_isCountZero@{\tt ChvList\_isCountZero()}}{242}
\indexentry{ChvList_getList@{\tt ChvList\_getList()}}{242}
\indexentry{ChvList_addObjectToList@{\tt ChvList\_addObjectToList()}}{242}
\indexentry{ChvList_writeForHumanEye@{\tt ChvList\_writeForHumanEye()}}{242}
\indexentry{ChvManager_new@{\tt ChvManager\_new()}}{244}
\indexentry{ChvManager_setDefaultFields@{\tt ChvManager\_setDefaultFields()}}{244}
\indexentry{ChvManager_clearData@{\tt ChvManager\_clearData()}}{244}
\indexentry{ChvManager_free@{\tt ChvManager\_free()}}{245}
\indexentry{ChvManager_init@{\tt ChvManager\_init()}}{245}
\indexentry{ChvManager_newObjectOfSizeNbytes@{\tt ChvManager\_newObjectOfSizeNbytes()}}{245}
\indexentry{ChvManager_releaseObject@{\tt ChvManager\_releaseObject()}}{245}
\indexentry{ChvManager_releaseListOfObjects@{\tt ChvManager\_releaseListOfObjects()}}{245}
\indexentry{ChvManager_writeForHumanEye@{\tt ChvManager\_writeForHumanEye()}}{245}
\indexentry{DenseMtx_new@{\tt DenseMtx\_new()}}{247}
\indexentry{DenseMtx_setDefaultFields@{\tt DenseMtx\_setDefaultFields()}}{247}
\indexentry{DenseMtx_clearData@{\tt DenseMtx\_clearData()}}{247}
\indexentry{DenseMtx_free@{\tt DenseMtx\_free()}}{247}
\indexentry{DenseMtx_rowid@{\tt DenseMtx\_rowid()}}{247}
\indexentry{DenseMtx_colid@{\tt DenseMtx\_colid()}}{247}
\indexentry{DenseMtx_dimensions@{\tt DenseMtx\_dimensions()}}{247}
\indexentry{DenseMtx_columnIncrement@{\tt DenseMtx\_columnIncrement()}}{247}
\indexentry{DenseMtx_rowIncrement@{\tt DenseMtx\_rowIncrement()}}{248}
\indexentry{DenseMtx_rowIndices@{\tt DenseMtx\_rowIndices()}}{248}
\indexentry{DenseMtx_columnIndices@{\tt DenseMtx\_columnIndices()}}{248}
\indexentry{DenseMtx_entries@{\tt DenseMtx\_entries()}}{248}
\indexentry{DenseMtx_workspace@{\tt DenseMtx\_workspace()}}{248}
\indexentry{DenseMtx_realEntry@{\tt DenseMtx\_realEntry()}}{248}
\indexentry{DenseMtx_complexEntry@{\tt DenseMtx\_complexEntry()}}{248}
\indexentry{DenseMtx_setRealEntry@{\tt DenseMtx\_setRealEntry()}}{248}
\indexentry{DenseMtx_setComplexEntry@{\tt DenseMtx\_setComplexEntry()}}{248}
\indexentry{DenseMtx_row@{\tt DenseMtx\_row()}}{249}
\indexentry{DenseMtx_column@{\tt DenseMtx\_column()}}{249}
\indexentry{DenseMtx_init@{\tt DenseMtx\_init()}}{249}
\indexentry{DenseMtx_initWithPointers@{\tt DenseMtx\_initWithPointers()}}{249}
\indexentry{DenseMtx_initAsSubmatrix@{\tt DenseMtx\_initAsSubmatrix()}}{249}
\indexentry{DenseMtx_initFromBuffer@{\tt DenseMtx\_initFromBuffer()}}{249}
\indexentry{DenseMtx_setA2@{\tt DenseMtx\_setA2()}}{249}
\indexentry{DenseMtx_nbytesNeeded@{\tt DenseMtx\_nbytesNeeded()}}{250}
\indexentry{DenseMtx_nbytesInWorkspace@{\tt DenseMtx\_nbytesInWorkspace()}}{250}
\indexentry{DenseMtx_setNbytesInWorkspace@{\tt DenseMtx\_setNbytesInWorkspace()}}{250}
\indexentry{DenseMtx_setFields@{\tt DenseMtx\_setFields()}}{250}
\indexentry{DenseMtx_permuteRows@{\tt DenseMtx\_permuteRows()}}{250}
\indexentry{DenseMtx_permuteColumns@{\tt DenseMtx\_permuteColumns()}}{250}
\indexentry{DenseMtx_sort@{\tt DenseMtx\_sort()}}{250}
\indexentry{DenseMtx_copyRow@{\tt DenseMtx\_copyRow()}}{250}
\indexentry{DenseMtx_copyRowAndIndex@{\tt DenseMtx\_copyRowAndIndex()}}{250}
\indexentry{DenseMtx_addRow@{\tt DenseMtx\_addRow()}}{251}
\indexentry{DenseMtx_zero@{\tt DenseMtx\_zero()}}{251}
\indexentry{DenseMtx_fillRandomEntries@{\tt DenseMtx\_fillRandomEntries()}}{251}
\indexentry{DenseMtx_checksums@{\tt DenseMtx\_checksums()}}{251}
\indexentry{DenseMtx_scale@{\tt DenseMtx\_scale()}}{251}
\indexentry{DenseMtx_maxabs@{\tt DenseMtx\_maxabs()}}{251}
\indexentry{DenseMtx_sub@{\tt DenseMtx\_sub()}}{251}
\indexentry{DenseMtx_copyRowIntoVector@{\tt DenseMtx\_copyRowIntoVector()}}{251}
\indexentry{DenseMtx_copyVectorIntoRow@{\tt DenseMtx\_copyVectorIntoRow()}}{251}
\indexentry{DenseMtx_addVectorIntoRow@{\tt DenseMtx\_addVectorIntoRow()}}{251}
\indexentry{DenseMtx_readFromFile@{\tt DenseMtx\_readFromFile()}}{252}
\indexentry{DenseMtx_readFromFormattedFile@{\tt DenseMtx\_readFromFormattedFile()}}{252}
\indexentry{DenseMtx_readFromBinaryFile@{\tt DenseMtx\_readFromBinaryFile()}}{252}
\indexentry{DenseMtx_writeToFile@{\tt DenseMtx\_writeToFile()}}{252}
\indexentry{DenseMtx_writeToFormattedFile@{\tt DenseMtx\_writeToFormattedFile()}}{252}
\indexentry{DenseMtx_writeToBinaryFile@{\tt DenseMtx\_writeToBinaryFile()}}{252}
\indexentry{DenseMtx_writeStats@{\tt DenseMtx\_writeStats()}}{252}
\indexentry{DenseMtx_writeForHumanEye@{\tt DenseMtx\_writeForHumanEye()}}{252}
\indexentry{DenseMtx_writeForMatlab@{\tt DenseMtx\_writeForMatlab()}}{253}
\indexentry{FrontMtx_new@{\tt FrontMtx\_new()}}{259}
\indexentry{FrontMtx_setDefaultFields@{\tt FrontMtx\_setDefaultFields()}}{259}
\indexentry{FrontMtx_clearData@{\tt FrontMtx\_clearData()}}{259}
\indexentry{FrontMtx_free@{\tt FrontMtx\_free()}}{259}
\indexentry{FrontMtx_nfront@{\tt FrontMtx\_nfront()}}{259}
\indexentry{FrontMtx_neqns@{\tt FrontMtx\_neqns()}}{259}
\indexentry{FrontMtx_frontTree@{\tt FrontMtx\_frontTree()}}{260}
\indexentry{FrontMtx_initialFrontDimensions@{\tt FrontMtx\_initialFrontDimensions()}}{260}
\indexentry{FrontMtx_frontSize@{\tt FrontMtx\_frontSize()}}{260}
\indexentry{FrontMtx_setFrontsize@{\tt FrontMtx\_setFrontSize()}}{260}
\indexentry{FrontMtx_columnIndices@{\tt FrontMtx\_columnIndices()}}{260}
\indexentry{FrontMtx_rowIndices@{\tt FrontMtx\_rowIndices()}}{260}
\indexentry{FrontMtx_diagMtx@{\tt FrontMtx\_diagMtx()}}{260}
\indexentry{FrontMtx_upperMtx@{\tt FrontMtx\_upperMtx()}}{260}
\indexentry{FrontMtx_lowerMtx@{\tt FrontMtx\_lowerMtx()}}{261}
\indexentry{FrontMtx_lowerAdjFronts@{\tt FrontMtx\_lowerAdjFronts()}}{261}
\indexentry{FrontMtx_upperAdjFronts@{\tt FrontMtx\_upperAdjFronts()}}{261}
\indexentry{FrontMtx_nLowerBlocks@{\tt FrontMtx\_nLowerBlocks()}}{261}
\indexentry{FrontMtx_nUpperBlocks@{\tt FrontMtx\_nUpperBlocks()}}{261}
\indexentry{FrontMtx_upperBlockIVL@{\tt FrontMtx\_upperBlockIVL()}}{261}
\indexentry{FrontMtx_lowerBlockIVL@{\tt FrontMtx\_lowerBlockIVL()}}{261}
\indexentry{FrontMtx_init@{\tt FrontMtx\_init()}}{261}
\indexentry{FrontMtx_initializeFront@{\tt FrontMtx\_initializeFront()}}{262}
\indexentry{FrontMtx_factorVisit@{\tt FrontMtx\_factorVisit()}}{262}
\indexentry{FrontMtx_setupFront@{\tt FrontMtx\_setupFront()}}{262}
\indexentry{FrontMtx_factorSetup@{\tt FrontMtx\_factorSetup()}}{262}
\indexentry{FrontMtx_nactiveChild@{\tt FrontMtx\_nactiveChild()}}{263}
\indexentry{FrontMtx_nactiveChild@{\tt FrontMtx\_nactiveChild()}}{263}
\indexentry{FrontMtx_loadActiveLeaves@{\tt FrontMtx\_loadActiveLeaves()}}{263}
\indexentry{FrontMtx_postList@{\tt FrontMtx\_postList()}}{263}
\indexentry{FrontMtx_aggregateList@{\tt FrontMtx\_aggregateList()}}{263}
\indexentry{FrontMtx_loadEntries@{\tt FrontMtx\_loadEntries()}}{263}
\indexentry{FrontMtx_update@{\tt FrontMtx\_update()}}{263}
\indexentry{FrontMtx_assemblePostponedData@{\tt FrontMtx\_assemblePostponedData()}}{264}
\indexentry{FrontMtx_storePostponedData@{\tt FrontMtx\_storePostponedData()}}{264}
\indexentry{FrontMtx_storeFront@{\tt FrontMtx\_storeFront()}}{264}
\indexentry{FrontMtx_factorInpMtx@{\tt FrontMtx\_factorInpMtx()}}{264}
\indexentry{FrontMtx_factorPencil@{\tt FrontMtx\_factorPencil()}}{264}
\indexentry{FrontMtx_QR_setup@{\tt FrontMtx\_QR\_setup()}}{265}
\indexentry{FrontMtx_QR_factorVisit@{\tt FrontMtx\_QR\_factorVisit()}}{265}
\indexentry{FrontMtx_QR_assembleFront@{\tt FrontMtx\_QR\_assembleFront()}}{265}
\indexentry{FrontMtx_QR_storeFront@{\tt FrontMtx\_QR\_storeFront()}}{266}
\indexentry{FrontMtx_QR_storeUpdate@{\tt FrontMtx\_QR\_storeUpdate()}}{266}
\indexentry{FrontMtx_QR_factor@{\tt FrontMtx\_QR\_factor()}}{266}
\indexentry{FrontMtx_postProcess@{\tt FrontMtx\_postProcess()}}{266}
\indexentry{FrontMtx_permuteUpperAdj@{\tt FrontMtx\_permuteUpperAdj()}}{267}
\indexentry{FrontMtx_permuteLowerAdj@{\tt FrontMtx\_permuteLowerAdj()}}{267}
\indexentry{FrontMtx_permuteUpperMatrices@{\tt FrontMtx\_permuteUpperMatrices()}}{267}
\indexentry{FrontMtx_permuteLowerMatrices@{\tt FrontMtx\_permuteLowerMatrices()}}{267}
\indexentry{FrontMtx_splitUpperMatrices@{\tt FrontMtx\_splitUpperMatrices()}}{267}
\indexentry{FrontMtx_splitLowerMatrices@{\tt FrontMtx\_splitLowerMatrices()}}{267}
\indexentry{FrontMtx_loadRightHandSide@{\tt FrontMtx\_loadRightHandSide()}}{267}
\indexentry{FrontMtx_forwardVisit@{\tt FrontMtx\_forwardVisit()}}{267}
\indexentry{FrontMtx_diagonalVisit@{\tt FrontMtx\_diagonalVisit()}}{267}
\indexentry{FrontMtx_backwardVisit@{\tt FrontMtx\_backwardVisit()}}{268}
\indexentry{FrontMtx_storeSolution@{\tt FrontMtx\_storeSolution()}}{268}
\indexentry{FrontMtx_forwardSetup@{\tt FrontMtx\_forwardSetup()}}{268}
\indexentry{FrontMtx_backwardSetup@{\tt FrontMtx\_backwardSetup()}}{268}
\indexentry{FrontMtx_loadActiveRoots@{\tt FrontMtx\_loadActiveRoots()}}{268}
\indexentry{FrontMtx_solve@{\tt FrontMtx\_solve()}}{268}
\indexentry{FrontMtx_QR_solve@{\tt FrontMtx\_QR\_solve()}}{269}
\indexentry{FrontMtx_colmapIV@{\tt FrontMtx\_colmapIV()}}{269}
\indexentry{FrontMtx_rowmapIV@{\tt FrontMtx\_rowmapIV()}}{269}
\indexentry{FrontMtx_ownedColumns@{\tt FrontMtx\_ownedColumns()}}{269}
\indexentry{FrontMtx_ownedRows@{\tt FrontMtx\_ownedRows()}}{269}
\indexentry{FrontMtx_makeUpperBlockIVL@{\tt FrontMtx\_makeUpperBlockIVL()}}{269}
\indexentry{FrontMtx_makeLowerBlockIVL@{\tt FrontMtx\_makeLowerBlockIVL()}}{269}
\indexentry{FrontMtx_inertia@{\tt FrontMtx\_inertia()}}{270}
\indexentry{FrontMtx_nSolveOps@{\tt FrontMtx\_nSolveOps()}}{270}
\indexentry{FrontMtx_readFromFile@{\tt FrontMtx\_readFromFile()}}{270}
\indexentry{FrontMtx_readFromFormattedFile@{\tt FrontMtx\_readFromFormattedFile()}}{270}
\indexentry{FrontMtx_readFromBinaryFile@{\tt FrontMtx\_readFromBinaryFile()}}{270}
\indexentry{FrontMtx_writeToFile@{\tt FrontMtx\_writeToFile()}}{270}
\indexentry{FrontMtx_writeToFormattedFile@{\tt FrontMtx\_writeToFormattedFile()}}{270}
\indexentry{FrontMtx_writeToBinaryFile@{\tt FrontMtx\_writeToBinaryFile()}}{271}
\indexentry{FrontMtx_writeForHumanEye@{\tt FrontMtx\_writeForHumanEye()}}{271}
\indexentry{FrontMtx_writeStats@{\tt FrontMtx\_writeStats()}}{271}
\indexentry{FrontMtx_writeForMatlab@{\tt FrontMtx\_writeForMatlab()}}{271}
\indexentry{ILUMtx_new@{\tt ILUMtx\_new()}}{274}
\indexentry{ILUMtx_setDefaultFields@{\tt ILUMtx\_setDefaultFields()}}{274}
\indexentry{ILUMtx_clearData@{\tt ILUMtx\_clearData()}}{274}
\indexentry{ILUMtx_free@{\tt ILUMtx\_free()}}{274}
\indexentry{ILUMtx_init@{\tt ILUMtx\_init()}}{275}
\indexentry{ILUMtx_factor@{\tt ILUMtx\_factor()}}{275}
\indexentry{ILUMtx_solveVector@{\tt ILUMtx\_solveVector()}}{275}
\indexentry{ILUMtx_fillRandom@{\tt ILUMtx\_fillRandom()}}{276}
\indexentry{ILUMtx_writeForMatlab@{\tt ILUMtx\_writeForMatlab()}}{276}
\indexentry{InpMtx_new@{\tt InpMtx\_new()}}{281}
\indexentry{InpMtx_setDefaultFields@{\tt InpMtx\_setDefaultFields()}}{281}
\indexentry{InpMtx_clearData@{\tt InpMtx\_clearData()}}{281}
\indexentry{InpMtx_free@{\tt InpMtx\_free()}}{281}
\indexentry{InpMtx_coordType@{\tt InpMtx\_coordType()}}{281}
\indexentry{InpMtx_storageMode@{\tt InpMtx\_storageMode()}}{282}
\indexentry{InpMtx_inputMode@{\tt InpMtx\_inputMode()}}{282}
\indexentry{InpMtx_maxnent@{\tt InpMtx\_maxnent()}}{282}
\indexentry{InpMtx_nent@{\tt InpMtx\_nent()}}{282}
\indexentry{InpMtx_maxnvector@{\tt InpMtx\_maxnvector()}}{282}
\indexentry{InpMtx_nvector@{\tt InpMtx\_nvector()}}{282}
\indexentry{InpMtx_resizeMultiple@{\tt InpMtx\_resizeMultiple()}}{282}
\indexentry{InpMtx_ivec1@{\tt InpMtx\_ivec1()}}{282}
\indexentry{InpMtx_ivec2@{\tt InpMtx\_ivec2()}}{282}
\indexentry{InpMtx_dvec@{\tt InpMtx\_dvec()}}{283}
\indexentry{InpMtx_vecids@{\tt InpMtx\_vecids()}}{283}
\indexentry{InpMtx_sizes@{\tt InpMtx\_sizes()}}{283}
\indexentry{InpMtx_offsets@{\tt InpMtx\_offsets()}}{283}
\indexentry{InpMtx_vector@{\tt InpMtx\_vector()}}{283}
\indexentry{InpMtx_realVector@{\tt InpMtx\_realVector()}}{283}
\indexentry{InpMtx_complexVector@{\tt InpMtx\_complexVector()}}{283}
\indexentry{InpMtx_range@{\tt InpMtx\_range()}}{283}
\indexentry{InpMtx_setMaxnent@{\tt InpMtx\_setMaxnent()}}{283}
\indexentry{InpMtx_setNent@{\tt InpMtx\_setNent()}}{283}
\indexentry{InpMtx_setMaxnvector@{\tt InpMtx\_setMaxnvector()}}{284}
\indexentry{InpMtx_setNvector@{\tt InpMtx\_setNvector()}}{284}
\indexentry{InpMtx_setResizeMultiple@{\tt InpMtx\_setResizeMultiple()}}{284}
\indexentry{InpMtx_setCoordType@{\tt InpMtx\_setCoordType()}}{284}
\indexentry{InpMtx_init@{\tt InpMtx\_init()}}{284}
\indexentry{InpMtx_changeCoordType@{\tt InpMtx\_changeCoordType()}}{284}
\indexentry{InpMtx_changeStorageMode@{\tt InpMtx\_changeStorageMode()}}{284}
\indexentry{InpMtx_inputEntry@{\tt InpMtx\_inputEntry()}}{285}
\indexentry{InpMtx_inputRealEntry@{\tt InpMtx\_inputRealEntry()}}{285}
\indexentry{InpMtx_inputComplexEntry@{\tt InpMtx\_inputComplexEntry()}}{285}
\indexentry{InpMtx_inputRow@{\tt InpMtx\_inputRow()}}{285}
\indexentry{InpMtx_inputRealRow@{\tt InpMtx\_inputRealRow()}}{285}
\indexentry{InpMtx_inputComplexRow@{\tt InpMtx\_inputComplexRow()}}{285}
\indexentry{InpMtx_inputColumn@{\tt InpMtx\_inputColumn()}}{285}
\indexentry{InpMtx_inputRealColumn@{\tt InpMtx\_inputRealColumn()}}{285}
\indexentry{InpMtx_inputComplexColumn@{\tt InpMtx\_inputComplexColumn()}}{285}
\indexentry{InpMtx_inputChevron@{\tt InpMtx\_inputChevron()}}{285}
\indexentry{InpMtx_inputRealChevron@{\tt InpMtx\_inputRealChevron()}}{285}
\indexentry{InpMtx_inputComplexChevron@{\tt InpMtx\_inputComplexChevron()}}{285}
\indexentry{InpMtx_inputMatrix@{\tt InpMtx\_inputMatrix()}}{286}
\indexentry{InpMtx_inputRealMatrix@{\tt InpMtx\_inputRealMatrix()}}{286}
\indexentry{InpMtx_inputComplexMatrix@{\tt InpMtx\_inputComplexMatrix()}}{286}
\indexentry{InpMtx_inputTriples@{\tt InpMtx\_inputTriples()}}{286}
\indexentry{InpMtx_inputRealTriples@{\tt InpMtx\_inputRealTriples()}}{286}
\indexentry{InpMtx_inputComplexTriples@{\tt InpMtx\_inputComplexTriples()}}{286}
\indexentry{InpMtx_supportNonsym@{\tt InpMtx\_supportNonsym()}}{286}
\indexentry{InpMtx_supportNonsymT@{\tt InpMtx\_supportNonsymT()}}{286}
\indexentry{InpMtx_supportNonsymH@{\tt InpMtx\_supportNonsymH()}}{286}
\indexentry{InpMtx_supportSym@{\tt InpMtx\_supportSym()}}{286}
\indexentry{InpMtx_supportSymH@{\tt InpMtx\_supportSymH()}}{286}
\indexentry{InpMtx_mapEntries@{\tt InpMtx\_mapEntries()}}{286}
\indexentry{InpMtx_permute@{\tt InpMtx\_permute()}}{287}
\indexentry{InpMtx_nonsym_mmm@{\tt InpMtx\_nonsym\_mmm()}}{287}
\indexentry{InpMtx_sym_mmm@{\tt InpMtx\_sym\_mmm()}}{287}
\indexentry{InpMtx_herm_mmm@{\tt InpMtx\_herm\_mmm()}}{287}
\indexentry{InpMtx_nonsym_mmm_T@{\tt InpMtx\_nonsym\_mmm\_T()}}{287}
\indexentry{InpMtx_nonsym_mmm_H@{\tt InpMtx\_nonsym\_mmm\_H()}}{287}
\indexentry{InpMtx_nonsym_mmmVector@{\tt InpMtx\_nonsym\_mmmVector()}}{288}
\indexentry{InpMtx_sym_mmmVector@{\tt InpMtx\_sym\_mmmVector()}}{288}
\indexentry{InpMtx_herm_mmmVector@{\tt InpMtx\_herm\_mmmVector()}}{288}
\indexentry{InpMtx_nonsym_mmmVector_T@{\tt InpMtx\_nonsym\_mmmVector\_T()}}{288}
\indexentry{InpMtx_nonsym_mmmVector_H@{\tt InpMtx\_nonsym\_mmmVector\_H()}}{288}
\indexentry{InpMtx_nonsym_gmmm@{\tt InpMtx\_nonsym\_gmmm()}}{288}
\indexentry{InpMtx_sym_gmmm@{\tt InpMtx\_sym\_gmmm()}}{288}
\indexentry{InpMtx_herm_gmmm@{\tt InpMtx\_herm\_gmmm()}}{288}
\indexentry{InpMtx_nonsym_gmmm_T@{\tt InpMtx\_nonsym\_gmmm\_T()}}{288}
\indexentry{InpMtx_nonsym_gmmm_H@{\tt InpMtx\_nonsym\_gmmm\_H()}}{288}
\indexentry{InpMtx_nonsym_gmvm@{\tt InpMtx\_nonsym\_gmvm()}}{289}
\indexentry{InpMtx_sym_gmvm@{\tt InpMtx\_sym\_gmvm()}}{289}
\indexentry{InpMtx_herm_gmvm@{\tt InpMtx\_herm\_gmvm()}}{289}
\indexentry{InpMtx_nonsym_gmvm_T@{\tt InpMtx\_nonsym\_gmvm\_T()}}{289}
\indexentry{InpMtx_nonsym_gmvm_H@{\tt InpMtx\_nonsym\_gmvm\_H()}}{289}
\indexentry{InpMtx_fullAdjacency@{\tt InpMtx\_fullAdjacency()}}{289}
\indexentry{InpMtx_fullAdjacency2@{\tt InpMtx\_fullAdjacency2()}}{289}
\indexentry{InpMtx_adjForATA@{\tt InpMtx\_adjForATA()}}{289}
\indexentry{InpMtx_initFromSubmatrix@{\tt InpMtx\_initFromSubmatrix()}}{290}
\indexentry{InpMtx_sortAndCompress@{\tt InpMtx\_sortAndCompress()}}{290}
\indexentry{InpMtx_convertToVectors@{\tt InpMtx\_convertToVectors()}}{290}
\indexentry{InpMtx_dropOffDiagonalEntries@{\tt InpMtx\_dropOffDiagonalEntries()}}{290}
\indexentry{InpMtx_dropLowerTriangle@{\tt InpMtx\_dropLowerTriangle()}}{290}
\indexentry{InpMtx_dropUpperTriangle@{\tt InpMtx\_dropUpperTriangle()}}{290}
\indexentry{InpMtx_mapToLowerTriangle@{\tt InpMtx\_mapToLowerTriangle()}}{290}
\indexentry{InpMtx_mapToUpperTriangle@{\tt InpMtx\_mapToUpperTriangle()}}{290}
\indexentry{InpMtx_mapToUpperTriangleH@{\tt InpMtx\_mapToUpperTriangleH()}}{290}
\indexentry{InpMtx_log10profile@{\tt InpMtx\_log10profile()}}{291}
\indexentry{InpMtx_checksums@{\tt InpMtx\_checksums()}}{291}
\indexentry{InpMtx_randomMatrix@{\tt InpMtx\_randomMatrix()}}{291}
\indexentry{InpMtx_readFromFile@{\tt InpMtx\_readFromFile()}}{292}
\indexentry{InpMtx_readFromFormattedFile@{\tt InpMtx\_readFromFormattedFile()}}{292}
\indexentry{InpMtx_readFromBinaryFile@{\tt InpMtx\_readFromBinaryFile()}}{292}
\indexentry{InpMtx_writeToFile@{\tt InpMtx\_writeToFile()}}{292}
\indexentry{InpMtx_writeToFormattedFile@{\tt InpMtx\_writeToFormattedFile()}}{292}
\indexentry{InpMtx_writeToBinaryFile@{\tt InpMtx\_writeToBinaryFile()}}{292}
\indexentry{InpMtx_writeForHumanEye@{\tt InpMtx\_writeForHumanEye()}}{292}
\indexentry{InpMtx_writeStats@{\tt InpMtx\_writeStats()}}{293}
\indexentry{InpMtx_writeForMatlab@{\tt InpMtx\_writeForMatlab()}}{293}
\indexentry{InpMtx_readFromHBFile@{\tt InpMtx\_readFromHBFile()}}{293}
\indexentry{DenseMtx_frobNorm@{\tt DenseMtx\_frobNorm()}}{301}
\indexentry{DenseMtx_twoNormOfColumn@{\tt DenseMtx\_twoNormOfColumn()}}{302}
\indexentry{DenseMtx_colCopy@{\tt DenseMtx\_colCopy()}}{302}
\indexentry{DenseMtx_colDotProduct@{\tt DenseMtx\_colDotProduct()}}{302}
\indexentry{DenseMtx_colGenAxpy@{\tt DenseMtx\_colGenAxpy()}}{302}
\indexentry{DenseMtx_mmm@{\tt DenseMtx\_mmm()}}{302}
\indexentry{FrontMtx_solveOneColumn@{\tt FrontMtx\_solveOneColumn()}}{302}
\indexentry{bicgstabr@{\tt bicgstabr()}}{304}
\indexentry{bicgstabl@{\tt bicgstabl()}}{304}
\indexentry{mlbicgstabr@{\tt mlbicgstabr()}}{304}
\indexentry{mlbicgstabl@{\tt mlbicgstabl()}}{304}
\indexentry{tfqmrr@{\tt tfqmrr()}}{304}
\indexentry{tfqmrl@{\tt tfqmrl()}}{304}
\indexentry{pcgr@{\tt pcgr()}}{304}
\indexentry{pcgl@{\tt pcgl()}}{304}
\indexentry{pcgl@{\tt pcgl()}}{305}
\indexentry{pcgl@{\tt pcgl()}}{305}
\indexentry{zbicgstabr@{\tt zbicgstabr()}}{305}
\indexentry{zbicgstabl@{\tt zbicgstabl()}}{305}
\indexentry{zmlbicgstabr@{\tt zmlbicgstabr()}}{305}
\indexentry{zmlbicgstabl@{\tt zmlbicgstabl()}}{305}
\indexentry{ztfqmrr@{\tt ztfqmrr()}}{305}
\indexentry{ztfqmrl@{\tt ztfqmrl()}}{305}
\indexentry{zpcgr@{\tt zpcgr()}}{306}
\indexentry{zpcgl@{\tt zpcgl()}}{306}
\indexentry{PatchAndGoInfo_new@{\tt PatchAndGoInfo\_new()}}{312}
\indexentry{PatchAndGoInfo_setDefaultFields@{\tt PatchAndGoInfo\_setDefaultFields()}}{312}
\indexentry{PatchAndGoInfo_clearData@{\tt PatchAndGoInfo\_clearData()}}{312}
\indexentry{PatchAndGoInfo_free@{\tt PatchAndGoInfo\_free()}}{312}
\indexentry{PatchAndGoInfo_init@{\tt PatchAndGoInfo\_init()}}{313}
\indexentry{Pencil_new@{\tt Pencil\_new()}}{315}
\indexentry{Pencil_setDefaultFields@{\tt Pencil\_setDefaultFields()}}{315}
\indexentry{Pencil_clearData@{\tt Pencil\_clearData()}}{315}
\indexentry{Pencil_free@{\tt Pencil\_free()}}{315}
\indexentry{Pencil_init@{\tt Pencil\_init()}}{315}
\indexentry{Pencil_changeCoordType@{\tt Pencil\_changeCoordType()}}{315}
\indexentry{Pencil_changeStorageMode@{\tt Pencil\_changeStorageMode()}}{315}
\indexentry{Pencil_sortAndCompress@{\tt Pencil\_sortAndCompress()}}{315}
\indexentry{Pencil_convertToVectors@{\tt Pencil\_convertToVectors()}}{315}
\indexentry{Pencil_mapToLowerTriangle@{\tt Pencil\_mapToLowerTriangle()}}{315}
\indexentry{Pencil_mapToUpperTriangle@{\tt Pencil\_mapToUpperTriangle()}}{316}
\indexentry{Pencil_permute@{\tt Pencil\_permute()}}{316}
\indexentry{Pencil_mmm@{\tt Pencil\_mmm()}}{316}
\indexentry{Pencil_fullAdjacency@{\tt Pencil\_fullAdjacency()}}{316}
\indexentry{Pencil_setup@{\tt Pencil\_setup()}}{316}
\indexentry{Pencil_readFromFiles@{\tt Pencil\_readFromFiles()}}{316}
\indexentry{Pencil_writeForHumanEye@{\tt Pencil\_writeForHumanEye()}}{316}
\indexentry{Pencil_writeStats@{\tt Pencil\_writeStats()}}{316}
\indexentry{SemiImplMtx_new@{\tt SemiImplMtx\_new()}}{318}
\indexentry{SemiImplMtx_setDefaultFields@{\tt SemiImplMtx\_setDefaultFields()}}{318}
\indexentry{SemiImplMtx_clearData@{\tt SemiImplMtx\_clearData()}}{318}
\indexentry{SemiImplMtx_free@{\tt SemiImplMtx\_free()}}{319}
\indexentry{SemiImplMtx_initFromFrontMtx@{\tt SemiImplMtx\_initFromFrontMtx()}}{319}
\indexentry{FrontMtx_initFromSubMtx@{\tt FrontMtx\_initFromSubMtx()}}{319}
\indexentry{SemiImplMtx_solve@{\tt SemiImplMtx\_solve()}}{319}
\indexentry{SemiImplMtx_stats@{\tt SemiImplMtx\_stats()}}{320}
\indexentry{SemiImplMtx_writeForHumanEye@{\tt SemiImplMtx\_writeForHumanEye()}}{320}
\indexentry{SubMtx_new@{\tt SubMtx\_new()}}{325}
\indexentry{SubMtx_setDefaultFields@{\tt SubMtx\_setDefaultFields()}}{325}
\indexentry{SubMtx_clearData@{\tt SubMtx\_clearData()}}{325}
\indexentry{SubMtx_free@{\tt SubMtx\_free()}}{325}
\indexentry{SubMtx_ids@{\tt SubMtx\_ids()}}{325}
\indexentry{SubMtx_setIds@{\tt SubMtx\_setIds()}}{325}
\indexentry{SubMtx_dimensions@{\tt SubMtx\_dimensions()}}{325}
\indexentry{SubMtx_rowIndices@{\tt SubMtx\_rowIndices()}}{325}
\indexentry{SubMtx_columnIndices@{\tt SubMtx\_columnIndices()}}{325}
\indexentry{SubMtx_denseInfo@{\tt SubMtx\_denseInfo()}}{326}
\indexentry{SubMtx_sparseRowsInfo@{\tt SubMtx\_sparseRowsInfo()}}{326}
\indexentry{SubMtx_sparseColumnsInfo@{\tt SubMtx\_sparseColumnsInfo()}}{326}
\indexentry{SubMtx_sparseTriplesInfo@{\tt SubMtx\_sparseTriplesInfo()}}{326}
\indexentry{SubMtx_denseSubrowsInfo@{\tt SubMtx\_denseSubrowsInfo()}}{326}
\indexentry{SubMtx_denseSubcolumnsInfo@{\tt SubMtx\_denseSubcolumnsInfo()}}{327}
\indexentry{SubMtx_diagonalInfo@{\tt SubMtx\_diagonalInfo()}}{327}
\indexentry{SubMtx_blockDiagonalInfo@{\tt SubMtx\_blockDiagonalInfo()}}{327}
\indexentry{SubMtx_realEntry@{\tt SubMtx\_realEntry()}}{327}
\indexentry{SubMtx_complexEntry@{\tt SubMtx\_complesEntry()}}{327}
\indexentry{SubMtx_locationOfRealEntry@{\tt SubMtx\_locationOfRealEntry()}}{327}
\indexentry{SubMtx_locationOfComplexEntry@{\tt SubMtx\_locationOfComplexEntry()}}{328}
\indexentry{SubMtx_init@{\tt SubMtx\_init()}}{328}
\indexentry{SubMtx_initFromBuffer@{\tt SubMtx\_initFromBuffer()}}{328}
\indexentry{SubMtx_initRandom@{\tt SubMtx\_initRandom()}}{328}
\indexentry{SubMtx_initRandomLowerTriangle@{\tt SubMtx\_initRandomLowerTriangle()}}{328}
\indexentry{SubMtx_initRandomUpperTriangle@{\tt SubMtx\_initRandomUpperTriangle()}}{328}
\indexentry{SubMtx_scale1vec@{\tt SubMtx\_scale1vec()}}{329}
\indexentry{SubMtx_scale2vec@{\tt SubMtx\_scale2vec()}}{329}
\indexentry{SubMtx_scale3vec@{\tt SubMtx\_scale3vec()}}{329}
\indexentry{SubMtx_solve@{\tt SubMtx\_solve()}}{329}
\indexentry{SubMtx_solveH@{\tt SubMtx\_solveH()}}{329}
\indexentry{SubMtx_solveT@{\tt SubMtx\_solveT()}}{329}
\indexentry{SubMtx_solveupd@{\tt SubMtx\_solveupd()}}{329}
\indexentry{SubMtx_solveupdH@{\tt SubMtx\_solveupdH()}}{330}
\indexentry{SubMtx_solveupdT@{\tt SubMtx\_solveupdT()}}{330}
\indexentry{SubMtx_nbytesNeeded@{\tt SubMtx\_nbytesNeeded()}}{330}
\indexentry{SubMtx_nbytesInUse@{\tt SubMtx\_nbytesInUse()}}{330}
\indexentry{SubMtx_nbytesInWorkspace@{\tt SubMtx\_nbytesInWorkspace()}}{330}
\indexentry{SubMtx_setNbytesInWorkspace@{\tt SubMtx\_setNbytesInWorkspace()}}{330}
\indexentry{SubMtx_workspace@{\tt SubMtx\_workspace()}}{330}
\indexentry{SubMtx_setFields@{\tt SubMtx\_setFields()}}{330}
\indexentry{SubMtx_sortRowsUp@{\tt SubMtx\_sortRowsUp()}}{330}
\indexentry{SubMtx_sortColumnsUp@{\tt SubMtx\_sortColumnsUp()}}{330}
\indexentry{SubMtx_fillRowDV@{\tt SubMtx\_fillRowDV()}}{331}
\indexentry{SubMtx_fillColumnDV@{\tt SubMtx\_fillColumnDV()}}{331}
\indexentry{SubMtx_fillRowZV@{\tt SubMtx\_fillRowZV()}}{331}
\indexentry{SubMtx_fillColumnZV@{\tt SubMtx\_fillColumnZV()}}{331}
\indexentry{SubMtx_maxabs@{\tt SubMtx\_maxabs()}}{331}
\indexentry{SubMtx_zero@{\tt SubMtx\_zero()}}{331}
\indexentry{SubMtx_readFromFile@{\tt SubMtx\_readFromFile()}}{331}
\indexentry{SubMtx_readFromFormattedFile@{\tt SubMtx\_readFromFormattedFile()}}{331}
\indexentry{SubMtx_readFromBinaryFile@{\tt SubMtx\_readFromBinaryFile()}}{332}
\indexentry{SubMtx_writeToFile@{\tt SubMtx\_writeToFile()}}{332}
\indexentry{SubMtx_writeToFormattedFile@{\tt SubMtx\_writeToFormattedFile()}}{332}
\indexentry{SubMtx_writeToBinaryFile@{\tt SubMtx\_writeToBinaryFile()}}{332}
\indexentry{SubMtx_writeForHumanEye@{\tt SubMtx\_writeForHumanEye()}}{332}
\indexentry{SubMtx_writeStats@{\tt SubMtx\_writeStats()}}{332}
\indexentry{SubMtx_writeForMatlab@{\tt SubMtx\_writeForMatlab()}}{332}
\indexentry{SubMtxList_new@{\tt SubMtxList\_new()}}{338}
\indexentry{SubMtxList_setDefaultFields@{\tt SubMtxList\_setDefaultFields()}}{338}
\indexentry{SubMtxList_clearData@{\tt SubMtxList\_clearData()}}{338}
\indexentry{SubMtxList_free@{\tt SubMtxList\_free()}}{338}
\indexentry{SubMtxList_init@{\tt SubMtxList\_init()}}{339}
\indexentry{SubMtxList_isListNonempty@{\tt SubMtxList\_isListNonempty()}}{339}
\indexentry{SubMtxList_isCountZero@{\tt SubMtxList\_isCountZero()}}{339}
\indexentry{SubMtxList_getList@{\tt SubMtxList\_getList()}}{339}
\indexentry{SubMtxList_addObjectToList@{\tt SubMtxList\_addObjectToList()}}{339}
\indexentry{SubMtxList_writeForHumanEye@{\tt SubMtxList\_writeForHumanEye()}}{339}
\indexentry{SubMtxManager_new@{\tt SubMtxManager\_new()}}{341}
\indexentry{SubMtxManager_setDefaultFields@{\tt SubMtxManager\_setDefaultFields()}}{341}
\indexentry{SubMtxManager_clearData@{\tt SubMtxManager\_clearData()}}{341}
\indexentry{SubMtxManager_free@{\tt SubMtxManager\_free()}}{342}
\indexentry{SubMtxManager_init@{\tt SubMtxManager\_init()}}{342}
\indexentry{SubMtxManager_newObjectOfSizeNbytes@{\tt SubMtxManager\_newObjectOfSizeNbytes()}}{342}
\indexentry{SubMtxManager_releaseObject@{\tt SubMtxManager\_releaseObject()}}{342}
\indexentry{SubMtxManager_releaseListOfObjects@{\tt SubMtxManager\_releaseListOfObjects()}}{342}
\indexentry{SubMtxManager_writeForHumanEye@{\tt SubMtxManager\_writeForHumanEye()}}{342}
\indexentry{SymbFac_initFromGraph@{\tt SymbFac\_initFromGraph()}}{343}
\indexentry{SymbFac_initFromInpMtx@{\tt SymbFac\_initFromInpMtx()}}{344}
\indexentry{Symbfac_initFromPencil@{\tt Symbfac\_initFromPencil()}}{344}
\indexentry{mkNDperm@{\tt mkNDperm()}}{348}
\indexentry{mkNDperm2@{\tt mkNDperm2()}}{348}
\indexentry{localND2D@{\tt localND2D()}}{349}
\indexentry{localND3D@{\tt localND3D()}}{349}
\indexentry{fp2DGrid@{\tt fp2DGrid()}}{349}
\indexentry{fp3DGrid@{\tt fp3DGrid()}}{349}
\indexentry{orderViaMMD@{\tt orderViaMMD()}}{350}
\indexentry{orderViaND@{\tt orderViaND()}}{350}
\indexentry{orderViaMS@{\tt orderViaMS()}}{350}
\indexentry{orderViaBestOfNDandMS@{\tt orderViaBestOfNDandMS()}}{350}
\indexentry{drawGraphEPS@{\tt drawGraphEPS()}}{351}
\indexentry{mkNDlinsys@{\tt mkNDlinsys()}}{351}
\indexentry{mkNDlinsysQR@{\tt mkNDlinsysQR()}}{352}
\indexentry{InpMtx_MT_nonsym_mmm@{\tt InpMtx\_MT\_nonsym\_mmm()}}{364}
\indexentry{InpMtx_MT_sym_mmm@{\tt InpMtx\_MT\_sym\_mmm()}}{364}
\indexentry{InpMtx_MT_herm_mmm@{\tt InpMtx\_MT\_herm\_mmm()}}{364}
\indexentry{InpMtx_MT_nonsym_mmm_T@{\tt InpMtx\_MT\_nonsym\_mm\_Tm()}}{364}
\indexentry{InpMtx_MT_nonsym_mmm_H@{\tt InpMtx\_MT\_nonsym\_mmm\_H()}}{365}
\indexentry{FrontMtx_MT_factorInpMtx@{\tt FrontMtx\_MT\_factorInpMtx()}}{365}
\indexentry{FrontMtx_MT_factorPencil@{\tt FrontMtx\_MT\_factorPencil()}}{365}
\indexentry{FrontMtx_MT_QR_factor@{\tt FrontMtx\_MT\_QR\_factor()}}{366}
\indexentry{FrontMtx_MT_solve@{\tt FrontMtx\_MT\_solve()}}{366}
\indexentry{FrontMtx_MT_QR_solve@{\tt FrontMtx\_MT\_QR\_solve()}}{367}
\indexentry{DenseMtx_MPI_splitByRows@{\tt DenseMtx\_MPI\_splitByRows()}}{376}
\indexentry{DenseMtx_MPI_splitFromGlobalByRows@{\tt DenseMtx\_MPI\_splitFromGlobalByRows()}}{377}
\indexentry{DenseMtx_MPI_mergeToGlobalByRows@{\tt DenseMtx\_MPI\_mergeToGlobalByRows()}}{377}
\indexentry{InpMtx_MPI_split@{\tt InpMtx\_MPI\_split()}}{377}
\indexentry{InpMtx_MPI_splitFromGlobal@{\tt InpMtx\_MPI\_splitFromGlobal()}}{378}
\indexentry{Pencil_MPI_split@{\tt Pencil\_MPI\_split()}}{378}
\indexentry{FrontMtx_MPI_split@{\tt FrontMtx\_MPI\_split()}}{378}
\indexentry{DenseMtx_MPI_gatherRows@{\tt DenseMtx\_MPI\_gatherRows()}}{379}
\indexentry{DenseMtx_MPI_scatterAddRows@{\tt DenseMtx\_MPI\_scatterAddRows()}}{379}
\indexentry{SymbFac_MPI_initFromInpMtx@{\tt SymbFac\_MPI\_initFromInpMtx()}}{379}
\indexentry{SymbFac_MPI_initFromPencil@{\tt SymbFac\_MPI\_initFromPencil()}}{379}
\indexentry{FrontMtx_MPI_factorPencil@{\tt FrontMtx\_MPI\_factorPencil()}}{380}
\indexentry{FrontMtx_MPI_factorInpMtx@{\tt FrontMtx\_MPI\_factorInpMtx()}}{380}
\indexentry{FrontMtx_MPI_postProcess@{\tt FrontMtx\_MPI\_postProcess()}}{381}
\indexentry{FrontMtx_MPI_permuteUpperAdj@{\tt FrontMtx\_MPI\_permuteUpperAdj()}}{381}
\indexentry{FrontMtx_MPI_permuteLowerAdj@{\tt FrontMtx\_MPI\_permuteLowerAdj()}}{381}
\indexentry{IV_MPI_allgather@{\tt IV\_MPI\_allgather()}}{381}
\indexentry{IVL_MPI_allgather@{\tt IVL\_MPI\_allgather()}}{382}
\indexentry{FrontMtx_MPI_solve@{\tt FrontMtx\_MPI\_solve()}}{382}
\indexentry{MatMul_MPI_setup@{\tt MatMul\_MPI\_setup()}}{383}
\indexentry{MatMul_setLocalIndices@{\tt MatMul\_setLocalIndices()}}{383}
\indexentry{MatMul_setGlobalIndices@{\tt MatMul\_setGlobalIndices()}}{383}
\indexentry{MatMul_MPI_mmm@{\tt MatMul\_MPI\_mmm()}}{384}
\indexentry{MatMul_cleanup@{\tt MatMul\_cleanup()}}{384}
\indexentry{ETree_MPI_Bcast@{\tt ETree\_MPI\_Bcast()}}{384}
\indexentry{Graph_MPI_Bcast@{\tt Graph\_MPI\_Bcast()}}{384}
\indexentry{IVL_MPI_Bcast@{\tt IVL\_MPI\_Bcast()}}{384}
\indexentry{IV_MPI_Bcast@{\tt IV\_MPI\_Bcast()}}{384}
\indexentry{InpMtx_MPI_fullAdjacency@{\tt InpMtx\_MPI\_fullAdjacency()}}{385}
\indexentry{Pencil_MPI_fullAdjacency@{\tt Pencil\_MPI\_fullAdjacency()}}{385}
\indexentry{FrontMtx_MPI_aggregateList@{\tt FrontMtx\_MPI\_aggregateList()}}{385}
\indexentry{FrontMtx_MPI_colmapIV@{\tt FrontMtx\_MPI\_colmapIV()}}{385}
\indexentry{FrontMtx_MPI_rowmapIV@{\tt FrontMtx\_MPI\_rowmapIV()}}{385}
\indexentry{InpMtx_MPI_alltoall@{\tt InpMtx\_MPI\_alltoall}}{385}
\indexentry{makeSendRecvIVLs@{\tt makeSendRecvIVLs}}{386}
\indexentry{maxTagMPI@{\tt maxTagMPI()}}{386}
|