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 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250
|
man:+PetscViewer++PetscViewer++++man+manualpages/Viewer/PetscViewer.html#PetscViewer
man:+PetscViewerType++PetscViewerType++++man+manualpages/Viewer/PetscViewerType.html#PetscViewerType
man:+PetscViewerRegisterDynamic++PetscViewerRegisterDynamic++++man+manualpages/Viewer/PetscViewerRegisterDynamic.html#PetscViewerRegisterDynamic
man:+PetscViewerFormat++PetscViewerFormat++++man+manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_STDOUT_WORLD++PETSC_VIEWER_STDOUT_WORLD++++man+manualpages/Viewer/PETSC_VIEWER_STDOUT_WORLD.html#PETSC_VIEWER_STDOUT_WORLD
man:+PETSC_VIEWER_STDOUT_SELF++PETSC_VIEWER_STDOUT_SELF++++man+manualpages/Viewer/PETSC_VIEWER_STDOUT_SELF.html#PETSC_VIEWER_STDOUT_SELF
man:+PETSC_VIEWER_DRAW_WORLD++PETSC_VIEWER_DRAW_WORLD++++man+manualpages/Viewer/PETSC_VIEWER_DRAW_WORLD.html#PETSC_VIEWER_DRAW_WORLD
man:+PETSC_VIEWER_DRAW_SELF++PETSC_VIEWER_DRAW_SELF++++man+manualpages/Viewer/PETSC_VIEWER_DRAW_SELF.html#PETSC_VIEWER_DRAW_SELF
man:+PETSC_VIEWER_SOCKET_WORLD++PETSC_VIEWER_SOCKET_WORLD++++man+manualpages/Viewer/PETSC_VIEWER_SOCKET_WORLD.html#PETSC_VIEWER_SOCKET_WORLD
man:+PETSC_VIEWER_SOCKET_SELF++PETSC_VIEWER_SOCKET_SELF++++man+manualpages/Viewer/PETSC_VIEWER_SOCKET_SELF.html#PETSC_VIEWER_SOCKET_SELF
man:+PETSC_VIEWER_BINARY_WORLD++PETSC_VIEWER_BINARY_WORLD++++man+manualpages/Viewer/PETSC_VIEWER_BINARY_WORLD.html#PETSC_VIEWER_BINARY_WORLD
man:+PETSC_VIEWER_BINARY_SELF++PETSC_VIEWER_BINARY_SELF++++man+manualpages/Viewer/PETSC_VIEWER_BINARY_SELF.html#PETSC_VIEWER_BINARY_SELF
man:+PETSC_VIEWER_MATLAB_WORLD++PETSC_VIEWER_MATLAB_WORLD++++man+manualpages/Viewer/PETSC_VIEWER_MATLAB_WORLD.html#PETSC_VIEWER_MATLAB_WORLD
man:+PETSC_VIEWER_MATLAB_SELF++PETSC_VIEWER_MATLAB_SELF++++man+manualpages/Viewer/PETSC_VIEWER_MATLAB_SELF.html#PETSC_VIEWER_MATLAB_SELF
man:+PetscViewers++PetscViewers++++man+manualpages/Viewer/PetscViewers.html#PetscViewers
man:+PetscViewerSocketPutScalar++PetscViewerSocketPutScalar++++man+manualpages/Viewer/PetscViewerSocketPutScalar.html#PetscViewerSocketPutScalar
man:+PetscViewerSocketPutReal++PetscViewerSocketPutReal++++man+manualpages/Viewer/PetscViewerSocketPutReal.html#PetscViewerSocketPutReal
man:+PetscViewerSocketPutInt++PetscViewerSocketPutInt++++man+manualpages/Viewer/PetscViewerSocketPutInt.html#PetscViewerSocketPutInt
man:+PetscViewerSocketOpen++PetscViewerSocketOpen++++man+manualpages/Viewer/PetscViewerSocketOpen.html#PetscViewerSocketOpen
man:+PetscViewerSocketSetConnection++PetscViewerSocketSetConnection++++man+manualpages/Viewer/PetscViewerSocketSetConnection.html#PetscViewerSocketSetConnection
man:+PETSC_VIEWER_SOCKET_++PETSC_VIEWER_SOCKET_++++man+manualpages/Viewer/PETSC_VIEWER_SOCKET_.html#PETSC_VIEWER_SOCKET_
man:+PetscViewerASCIIGetPointer++PetscViewerASCIIGetPointer++++man+manualpages/Viewer/PetscViewerASCIIGetPointer.html#PetscViewerASCIIGetPointer
man:+PetscViewerFileSetMode++PetscViewerFileSetMode++++man+manualpages/Viewer/PetscViewerFileSetMode.html#PetscViewerFileSetMode
man:+PetscViewerASCIISetTab++PetscViewerASCIISetTab++++man+manualpages/Viewer/PetscViewerASCIISetTab.html#PetscViewerASCIISetTab
man:+PetscViewerASCIIPushTab++PetscViewerASCIIPushTab++++man+manualpages/Viewer/PetscViewerASCIIPushTab.html#PetscViewerASCIIPushTab
man:+PetscViewerASCIIPopTab++PetscViewerASCIIPopTab++++man+manualpages/Viewer/PetscViewerASCIIPopTab.html#PetscViewerASCIIPopTab
man:+PetscViewerASCIIUseTabs++PetscViewerASCIIUseTabs++++man+manualpages/Viewer/PetscViewerASCIIUseTabs.html#PetscViewerASCIIUseTabs
man:+PetscViewerASCIIPrintf++PetscViewerASCIIPrintf++++man+manualpages/Viewer/PetscViewerASCIIPrintf.html#PetscViewerASCIIPrintf
man:+PetscViewerFileSetName++PetscViewerFileSetName++++man+manualpages/Viewer/PetscViewerFileSetName.html#PetscViewerFileSetName
man:+PetscViewerFileGetName++PetscViewerFileGetName++++man+manualpages/Viewer/PetscViewerFileGetName.html#PetscViewerFileGetName
man:+PetscViewerASCIISynchronizedPrintf++PetscViewerASCIISynchronizedPrintf++++man+manualpages/Viewer/PetscViewerASCIISynchronizedPrintf.html#PetscViewerASCIISynchronizedPrintf
man:+PETSC_VIEWER_STDOUT_++PETSC_VIEWER_STDOUT_++++man+manualpages/Viewer/PETSC_VIEWER_STDOUT_.html#PETSC_VIEWER_STDOUT_
man:+PETSC_VIEWER_STDERR_++PETSC_VIEWER_STDERR_++++man+manualpages/Viewer/PETSC_VIEWER_STDERR_.html#PETSC_VIEWER_STDERR_
man:+PetscViewerASCIIOpen++PetscViewerASCIIOpen++++man+manualpages/Viewer/PetscViewerASCIIOpen.html#PetscViewerASCIIOpen
man:+PetscViewerBinaryGetDescriptor++PetscViewerBinaryGetDescriptor++++man+manualpages/Viewer/PetscViewerBinaryGetDescriptor.html#PetscViewerBinaryGetDescriptor
man:+PetscViewerBinarySkipInfo++PetscViewerBinarySkipInfo++++man+manualpages/Viewer/PetscViewerBinarySkipInfo.html#PetscViewerBinarySkipInfo
man:+PetscViewerBinarySetSkipOptions++PetscViewerBinarySetSkipOptions++++man+manualpages/Viewer/PetscViewerBinarySetSkipOptions.html#PetscViewerBinarySetSkipOptions
man:+PetscViewerBinaryGetSkipOptions++PetscViewerBinaryGetSkipOptions++++man+manualpages/Viewer/PetscViewerBinaryGetSkipOptions.html#PetscViewerBinaryGetSkipOptions
man:+PetscViewerBinaryGetInfoPointer++PetscViewerBinaryGetInfoPointer++++man+manualpages/Viewer/PetscViewerBinaryGetInfoPointer.html#PetscViewerBinaryGetInfoPointer
man:+PetscViewerBinaryCreate++PetscViewerBinaryCreate++++man+manualpages/Viewer/PetscViewerBinaryCreate.html#PetscViewerBinaryCreate
man:+PetscViewerBinaryOpen++PetscViewerBinaryOpen++++man+manualpages/Viewer/PetscViewerBinaryOpen.html#PetscViewerBinaryOpen
man:+PetscViewerBinaryRead++PetscViewerBinaryRead++++man+manualpages/Viewer/PetscViewerBinaryRead.html#PetscViewerBinaryRead
man:+PetscViewerBinaryWrite++PetscViewerBinaryWrite++++man+manualpages/Viewer/PetscViewerBinaryWrite.html#PetscViewerBinaryWrite
man:+PetscViewerBinaryWriteStringArray++PetscViewerBinaryWriteStringArray++++man+manualpages/Viewer/PetscViewerBinaryWriteStringArray.html#PetscViewerBinaryWriteStringArray
man:+PetscViewerBinaryReadStringArray++PetscViewerBinaryReadStringArray++++man+manualpages/Viewer/PetscViewerBinaryReadStringArray.html#PetscViewerBinaryReadStringArray
man:+PetscViewerFileGetMode++PetscViewerFileGetMode++++man+manualpages/Viewer/PetscViewerFileGetMode.html#PetscViewerFileGetMode
man:+PetscViewerFileSetMode++PetscViewerFileSetMode++++man+manualpages/Viewer/PetscViewerFileSetMode.html#PetscViewerFileSetMode
man:+PetscViewerBinaryLoadInfo++PetscViewerBinaryLoadInfo++++man+manualpages/Viewer/PetscViewerBinaryLoadInfo.html#PetscViewerBinaryLoadInfo
man:+PETSC_VIEWER_BINARY_++PETSC_VIEWER_BINARY_++++man+manualpages/Viewer/PETSC_VIEWER_BINARY_.html#PETSC_VIEWER_BINARY_
man:+PetscViewerStringSPrintf++PetscViewerStringSPrintf++++man+manualpages/Viewer/PetscViewerStringSPrintf.html#PetscViewerStringSPrintf
man:+PetscViewerStringOpen++PetscViewerStringOpen++++man+manualpages/Viewer/PetscViewerStringOpen.html#PetscViewerStringOpen
man:+PetscViewerStringSetString++PetscViewerStringSetString++++man+manualpages/Viewer/PetscViewerStringSetString.html#PetscViewerStringSetString
man:+PetscViewerDrawGetDraw++PetscViewerDrawGetDraw++++man+manualpages/Viewer/PetscViewerDrawGetDraw.html#PetscViewerDrawGetDraw
man:+PetscViewerDrawGetDrawLG++PetscViewerDrawGetDrawLG++++man+manualpages/Viewer/PetscViewerDrawGetDrawLG.html#PetscViewerDrawGetDrawLG
man:+PetscViewerDrawGetDrawAxis++PetscViewerDrawGetDrawAxis++++man+manualpages/Viewer/PetscViewerDrawGetDrawAxis.html#PetscViewerDrawGetDrawAxis
man:+PetscViewerDrawOpen++PetscViewerDrawOpen++++man+manualpages/Viewer/PetscViewerDrawOpen.html#PetscViewerDrawOpen
man:+PetscViewerDrawClear++PetscViewerDrawClear++++man+manualpages/Viewer/PetscViewerDrawClear.html#PetscViewerDrawClear
man:+PETSC_VIEWER_DRAW_++PETSC_VIEWER_DRAW_++++man+manualpages/Viewer/PETSC_VIEWER_DRAW_.html#PETSC_VIEWER_DRAW_
man:+PetscViewerVUGetPointer++PetscViewerVUGetPointer++++man+manualpages/Viewer/PetscViewerVUGetPointer.html#PetscViewerVUGetPointer
man:+PetscViewerVUSetMode++PetscViewerVUSetMode++++man+manualpages/Viewer/PetscViewerVUSetMode.html#PetscViewerVUSetMode
man:+PetscViewerVUSetVecSeen++PetscViewerVUSetVecSeen++++man+manualpages/Viewer/PetscViewerVUSetVecSeen.html#PetscViewerVUSetVecSeen
man:+PetscViewerVUGetVecSeen++PetscViewerVUGetVecSeen++++man+manualpages/Viewer/PetscViewerVUGetVecSeen.html#PetscViewerVUGetVecSeen
man:+PetscViewerVUPrintDeferred++PetscViewerVUPrintDeferred++++man+manualpages/Viewer/PetscViewerVUPrintDeferred.html#PetscViewerVUPrintDeferred
man:+PetscViewerVUFlushDeferred++PetscViewerVUFlushDeferred++++man+manualpages/Viewer/PetscViewerVUFlushDeferred.html#PetscViewerVUFlushDeferred
man:+PetscViewerMathematicaInitializePackage++PetscViewerMathematicaInitializePackage++++man+manualpages/Viewer/PetscViewerMathematicaInitializePackage.html#PetscViewerMathematicaInitializePackage
man:+PetscViewerMathematicaDestroyPackage++PetscViewerMathematicaDestroyPackage++++man+manualpages/Viewer/PetscViewerMathematicaDestroyPackage.html#PetscViewerMathematicaDestroyPackage
man:+PetscViewerMathematicaOpen++PetscViewerMathematicaOpen++++man+manualpages/Viewer/PetscViewerMathematicaOpen.html#PetscViewerMathematicaOpen
man:+PetscViewerMathematicaGetLink++PetscViewerMathematicaGetLink++++man+manualpages/Viewer/PetscViewerMathematicaGetLink.html#PetscViewerMathematicaGetLink
man:+PetscViewerMathematicaSkipPackets++PetscViewerMathematicaSkipPackets++++man+manualpages/Viewer/PetscViewerMathematicaSkipPackets.html#PetscViewerMathematicaSkipPackets
man:+PetscViewerMathematicaGetName++PetscViewerMathematicaGetName++++man+manualpages/Viewer/PetscViewerMathematicaGetName.html#PetscViewerMathematicaGetName
man:+PetscViewerMathematicaSetName++PetscViewerMathematicaSetName++++man+manualpages/Viewer/PetscViewerMathematicaSetName.html#PetscViewerMathematicaSetName
man:+PetscViewerMathematicaClearName++PetscViewerMathematicaClearName++++man+manualpages/Viewer/PetscViewerMathematicaClearName.html#PetscViewerMathematicaClearName
man:+PetscViewerMathematicaGetVector++PetscViewerMathematicaGetVector++++man+manualpages/Viewer/PetscViewerMathematicaGetVector.html#PetscViewerMathematicaGetVector
man:+PetscViewerMathematicaPutVector++PetscViewerMathematicaPutVector++++man+manualpages/Viewer/PetscViewerMathematicaPutVector.html#PetscViewerMathematicaPutVector
man:+PetscViewerSiloGetFilePointer++PetscViewerSiloGetFilePointer++++man+manualpages/Viewer/PetscViewerSiloGetFilePointer.html#PetscViewerSiloGetFilePointer
man:+PetscViewerSiloOpen++PetscViewerSiloOpen++++man+manualpages/Viewer/PetscViewerSiloOpen.html#PetscViewerSiloOpen
man:+PetscViewerSiloCheckMesh++PetscViewerSiloCheckMesh++++man+manualpages/Viewer/PetscViewerSiloCheckMesh.html#PetscViewerSiloCheckMesh
man:+PetscViewerSiloGetName++PetscViewerSiloGetName++++man+manualpages/Viewer/PetscViewerSiloGetName.html#PetscViewerSiloGetName
man:+PetscViewerSiloSetName++PetscViewerSiloSetName++++man+manualpages/Viewer/PetscViewerSiloSetName.html#PetscViewerSiloSetName
man:+PetscViewerSiloClearName++PetscViewerSiloClearName++++man+manualpages/Viewer/PetscViewerSiloClearName.html#PetscViewerSiloClearName
man:+PetscViewerSiloGetMeshName++PetscViewerSiloGetMeshName++++man+manualpages/Viewer/PetscViewerSiloGetMeshName.html#PetscViewerSiloGetMeshName
man:+PetscViewerSiloSetMeshName++PetscViewerSiloSetMeshName++++man+manualpages/Viewer/PetscViewerSiloSetMeshName.html#PetscViewerSiloSetMeshName
man:+PetscViewerSiloClearMeshName++PetscViewerSiloClearMeshName++++man+manualpages/Viewer/PetscViewerSiloClearMeshName.html#PetscViewerSiloClearMeshName
man:+PETSC_VIEWER_MATLAB++PETSC_VIEWER_MATLAB++++man+manualpages/Sys/PETSC_VIEWER_MATLAB.html#PETSC_VIEWER_MATLAB
man:+PetscViewerMatlabPutArray++PetscViewerMatlabPutArray++++man+manualpages/Sys/PetscViewerMatlabPutArray.html#PetscViewerMatlabPutArray
man:+PetscViewerMatlabGetArray++PetscViewerMatlabGetArray++++man+manualpages/Sys/PetscViewerMatlabGetArray.html#PetscViewerMatlabGetArray
man:+PetscViewerMatlabOpen++PetscViewerMatlabOpen++++man+manualpages/Sys/PetscViewerMatlabOpen.html#PetscViewerMatlabOpen
man:+PETSC_VIEWER_MATLAB_++PETSC_VIEWER_MATLAB_++++man+manualpages/Sys/PETSC_VIEWER_MATLAB_.html#PETSC_VIEWER_MATLAB_
man:+PetscViewerDestroy++PetscViewerDestroy++++man+manualpages/Viewer/PetscViewerDestroy.html#PetscViewerDestroy
man:+PetscViewerGetType++PetscViewerGetType++++man+manualpages/Viewer/PetscViewerGetType.html#PetscViewerGetType
man:+PetscViewerSetOptionsPrefix++PetscViewerSetOptionsPrefix++++man+manualpages/Viewer/PetscViewerSetOptionsPrefix.html#PetscViewerSetOptionsPrefix
man:+PetscViewerAppendOptionsPrefix++PetscViewerAppendOptionsPrefix++++man+manualpages/Viewer/PetscViewerAppendOptionsPrefix.html#PetscViewerAppendOptionsPrefix
man:+PetscViewerGetOptionsPrefix++PetscViewerGetOptionsPrefix++++man+manualpages/Viewer/PetscViewerGetOptionsPrefix.html#PetscViewerGetOptionsPrefix
man:+PetscViewerSetUp++PetscViewerSetUp++++man+manualpages/Viewer/PetscViewerSetUp.html#PetscViewerSetUp
man:+PetscViewerView++PetscViewerView++++man+manualpages/Viewer/PetscViewerView.html#PetscViewerView
man:+PetscViewerFlush++PetscViewerFlush++++man+manualpages/Viewer/PetscViewerFlush.html#PetscViewerFlush
man:+PetscViewerRegisterAll++PetscViewerRegisterAll++++man+manualpages/Viewer/PetscViewerRegisterAll.html#PetscViewerRegisterAll
man:+PetscViewerCreate++PetscViewerCreate++++man+manualpages/Viewer/PetscViewerCreate.html#PetscViewerCreate
man:+PetscViewerSetType++PetscViewerSetType++++man+manualpages/Viewer/PetscViewerSetType.html#PetscViewerSetType
man:+PetscViewerRegisterDestroy++PetscViewerRegisterDestroy++++man+manualpages/Viewer/PetscViewerRegisterDestroy.html#PetscViewerRegisterDestroy
man:+PetscViewerSetFromOptions++PetscViewerSetFromOptions++++man+manualpages/Viewer/PetscViewerSetFromOptions.html#PetscViewerSetFromOptions
man:+PetscViewerSetFormat++PetscViewerSetFormat++++man+manualpages/Viewer/PetscViewerSetFormat.html#PetscViewerSetFormat
man:+PetscViewerPushFormat++PetscViewerPushFormat++++man+manualpages/Viewer/PetscViewerPushFormat.html#PetscViewerPushFormat
man:+PetscViewerPopFormat++PetscViewerPopFormat++++man+manualpages/Viewer/PetscViewerPopFormat.html#PetscViewerPopFormat
man:+PetscInitializePackage++PetscInitializePackage++++man+manualpages/Viewer/PetscInitializePackage.html#PetscInitializePackage
man:+PetscViewersDestroy++PetscViewersDestroy++++man+manualpages/Viewer/PetscViewersDestroy.html#PetscViewersDestroy
man:+PetscViewersCreate++PetscViewersCreate++++man+manualpages/Viewer/PetscViewersCreate.html#PetscViewersCreate
man:+PetscViewersGetViewer++PetscViewersGetViewer++++man+manualpages/Viewer/PetscViewersGetViewer.html#PetscViewersGetViewer
man:+PetscViewerGetSingleton++PetscViewerGetSingleton++++man+manualpages/Viewer/PetscViewerGetSingleton.html#PetscViewerGetSingleton
man:+PetscViewerRestoreSingleton++PetscViewerRestoreSingleton++++man+manualpages/Viewer/PetscViewerRestoreSingleton.html#PetscViewerRestoreSingleton
man:+PetscDrawType++PetscDrawType++++man+manualpages/Draw/PetscDrawType.html#PetscDrawType
man:+PetscDraw++PetscDraw++++man+manualpages/Draw/PetscDraw.html#PetscDraw
man:+PetscDrawRegisterDynamic++PetscDrawRegisterDynamic++++man+manualpages/Draw/PetscDrawRegisterDynamic.html#PetscDrawRegisterDynamic
man:+PetscDrawButton++PetscDrawButton++++man+manualpages/Draw/PetscDrawButton.html#PetscDrawButton
man:+PetscDrawViewPorts++PetscDrawViewPorts++++man+manualpages/Draw/PetscDrawViewPorts.html#PetscDrawViewPorts
man:+PetscDrawAxis++PetscDrawAxis++++man+manualpages/Draw/PetscDrawAxis.html#PetscDrawAxis
man:+PetscDrawLG++PetscDrawLG++++man+manualpages/Draw/PetscDrawLG.html#PetscDrawLG
man:+PetscDrawSP++PetscDrawSP++++man+manualpages/Draw/PetscDrawSP.html#PetscDrawSP
man:+PetscDrawHG++PetscDrawHG++++man+manualpages/Draw/PetscDrawHG.html#PetscDrawHG
man:+PetscDrawResizeWindow++PetscDrawResizeWindow++++man+manualpages/Draw/PetscDrawResizeWindow.html#PetscDrawResizeWindow
man:+PetscDrawCheckResizedWindow++PetscDrawCheckResizedWindow++++man+manualpages/Draw/PetscDrawCheckResizedWindow.html#PetscDrawCheckResizedWindow
man:+PetscDrawGetTitle++PetscDrawGetTitle++++man+manualpages/Draw/PetscDrawGetTitle.html#PetscDrawGetTitle
man:+PetscDrawSetTitle++PetscDrawSetTitle++++man+manualpages/Draw/PetscDrawSetTitle.html#PetscDrawSetTitle
man:+PetscDrawAppendTitle++PetscDrawAppendTitle++++man+manualpages/Draw/PetscDrawAppendTitle.html#PetscDrawAppendTitle
man:+PetscDrawDestroy++PetscDrawDestroy++++man+manualpages/Draw/PetscDrawDestroy.html#PetscDrawDestroy
man:+PetscDrawGetPopup++PetscDrawGetPopup++++man+manualpages/Draw/PetscDrawGetPopup.html#PetscDrawGetPopup
man:+PetscDrawSetDisplay++PetscDrawSetDisplay++++man+manualpages/Draw/PetscDrawSetDisplay.html#PetscDrawSetDisplay
man:+PetscDrawGetSingleton++PetscDrawGetSingleton++++man+manualpages/Draw/PetscDrawGetSingleton.html#PetscDrawGetSingleton
man:+PetscDrawRestoreSingleton++PetscDrawRestoreSingleton++++man+manualpages/Draw/PetscDrawRestoreSingleton.html#PetscDrawRestoreSingleton
man:+PetscDrawLine++PetscDrawLine++++man+manualpages/Draw/PetscDrawLine.html#PetscDrawLine
man:+PetscDrawIsNull++PetscDrawIsNull++++man+manualpages/Draw/PetscDrawIsNull.html#PetscDrawIsNull
man:+PetscDrawLineSetWidth++PetscDrawLineSetWidth++++man+manualpages/Draw/PetscDrawLineSetWidth.html#PetscDrawLineSetWidth
man:+PetscDrawLineGetWidth++PetscDrawLineGetWidth++++man+manualpages/Draw/PetscDrawLineGetWidth.html#PetscDrawLineGetWidth
man:+PetscDrawString++PetscDrawString++++man+manualpages/Draw/PetscDrawString.html#PetscDrawString
man:+PetscDrawStringVertical++PetscDrawStringVertical++++man+manualpages/Draw/PetscDrawStringVertical.html#PetscDrawStringVertical
man:+PetscDrawStringSetSize++PetscDrawStringSetSize++++man+manualpages/Draw/PetscDrawStringSetSize.html#PetscDrawStringSetSize
man:+PetscDrawStringGetSize++PetscDrawStringGetSize++++man+manualpages/Draw/PetscDrawStringGetSize.html#PetscDrawStringGetSize
man:+PetscDrawPoint++PetscDrawPoint++++man+manualpages/Draw/PetscDrawPoint.html#PetscDrawPoint
man:+PetscDrawPointSetSize++PetscDrawPointSetSize++++man+manualpages/Draw/PetscDrawPointSetSize.html#PetscDrawPointSetSize
man:+PetscDrawSetViewPort++PetscDrawSetViewPort++++man+manualpages/Draw/PetscDrawSetViewPort.html#PetscDrawSetViewPort
man:+PetscDrawSplitViewPort++PetscDrawSplitViewPort++++man+manualpages/Draw/PetscDrawSplitViewPort.html#PetscDrawSplitViewPort
man:+PetscDrawViewPortsCreate++PetscDrawViewPortsCreate++++man+manualpages/Draw/PetscDrawViewPortsCreate.html#PetscDrawViewPortsCreate
man:+PetscDrawViewPortsDestroy++PetscDrawViewPortsDestroy++++man+manualpages/Draw/PetscDrawViewPortsDestroy.html#PetscDrawViewPortsDestroy
man:+PetscDrawViewPortsSet++PetscDrawViewPortsSet++++man+manualpages/Draw/PetscDrawViewPortsSet.html#PetscDrawViewPortsSet
man:+PetscDrawSetCoordinates++PetscDrawSetCoordinates++++man+manualpages/Draw/PetscDrawSetCoordinates.html#PetscDrawSetCoordinates
man:+PetscDrawPause++PetscDrawPause++++man+manualpages/Draw/PetscDrawPause.html#PetscDrawPause
man:+PetscDrawGetPause++PetscDrawGetPause++++man+manualpages/Draw/PetscDrawGetPause.html#PetscDrawGetPause
man:+PetscDrawGetCoordinates++PetscDrawGetCoordinates++++man+manualpages/Draw/PetscDrawGetCoordinates.html#PetscDrawGetCoordinates
man:+PetscDrawSetDoubleBuffer++PetscDrawSetDoubleBuffer++++man+manualpages/Draw/PetscDrawSetDoubleBuffer.html#PetscDrawSetDoubleBuffer
man:+PetscDrawSetPause++PetscDrawSetPause++++man+manualpages/Draw/PetscDrawSetPause.html#PetscDrawSetPause
man:+PetscDrawFlush++PetscDrawFlush++++man+manualpages/Draw/PetscDrawFlush.html#PetscDrawFlush
man:+PetscDrawSynchronizedFlush++PetscDrawSynchronizedFlush++++man+manualpages/Draw/PetscDrawSynchronizedFlush.html#PetscDrawSynchronizedFlush
man:+PetscDrawClear++PetscDrawClear++++man+manualpages/Draw/PetscDrawClear.html#PetscDrawClear
man:+PetscDrawBOP++PetscDrawBOP++++man+manualpages/Draw/PetscDrawBOP.html#PetscDrawBOP
man:+PetscDrawEOP++PetscDrawEOP++++man+manualpages/Draw/PetscDrawEOP.html#PetscDrawEOP
man:+PetscDrawSynchronizedClear++PetscDrawSynchronizedClear++++man+manualpages/Draw/PetscDrawSynchronizedClear.html#PetscDrawSynchronizedClear
man:+PetscDrawRectangle++PetscDrawRectangle++++man+manualpages/Draw/PetscDrawRectangle.html#PetscDrawRectangle
man:+PetscDrawTriangle++PetscDrawTriangle++++man+manualpages/Draw/PetscDrawTriangle.html#PetscDrawTriangle
man:+PetscDrawScalePopup++PetscDrawScalePopup++++man+manualpages/Draw/PetscDrawScalePopup.html#PetscDrawScalePopup
man:+PetscDrawTensorContour++PetscDrawTensorContour++++man+manualpages/Draw/PetscDrawTensorContour.html#PetscDrawTensorContour
man:+PetscDrawTensorContourPatch++PetscDrawTensorContourPatch++++man+manualpages/Draw/PetscDrawTensorContourPatch.html#PetscDrawTensorContourPatch
man:+PetscDrawGetMouseButton++PetscDrawGetMouseButton++++man+manualpages/Draw/PetscDrawGetMouseButton.html#PetscDrawGetMouseButton
man:+PetscDrawSynchronizedGetMouseButton++PetscDrawSynchronizedGetMouseButton++++man+manualpages/Draw/PetscDrawSynchronizedGetMouseButton.html#PetscDrawSynchronizedGetMouseButton
man:+PetscDrawCreate++PetscDrawCreate++++man+manualpages/Draw/PetscDrawCreate.html#PetscDrawCreate
man:+PetscDrawSetType++PetscDrawSetType++++man+manualpages/Draw/PetscDrawSetType.html#PetscDrawSetType
man:+PetscDrawRegisterDestroy++PetscDrawRegisterDestroy++++man+manualpages/Draw/PetscDrawRegisterDestroy.html#PetscDrawRegisterDestroy
man:+PetscDrawGetType++PetscDrawGetType++++man+manualpages/Draw/PetscDrawGetType.html#PetscDrawGetType
man:+PetscDrawSetFromOptions++PetscDrawSetFromOptions++++man+manualpages/Draw/PetscDrawSetFromOptions.html#PetscDrawSetFromOptions
man:+PetscDrawRegisterAll++PetscDrawRegisterAll++++man+manualpages/Draw/PetscDrawRegisterAll.html#PetscDrawRegisterAll
man:+PetscDrawEllipse++PetscDrawEllipse++++man+manualpages/Draw/PetscDrawEllipse.html#PetscDrawEllipse
man:+PetscDrawOpenX++PetscDrawOpenX++++man+manualpages/Draw/PetscDrawOpenX.html#PetscDrawOpenX
man:+PetscDrawOpenPS++PetscDrawOpenPS++++man+manualpages/Draw/PetscDrawOpenPS.html#PetscDrawOpenPS
man:+PetscDrawAxisCreate++PetscDrawAxisCreate++++man+manualpages/Draw/PetscDrawAxisCreate.html#PetscDrawAxisCreate
man:+PetscDrawAxisDestroy++PetscDrawAxisDestroy++++man+manualpages/Draw/PetscDrawAxisDestroy.html#PetscDrawAxisDestroy
man:+PetscDrawAxisSetColors++PetscDrawAxisSetColors++++man+manualpages/Draw/PetscDrawAxisSetColors.html#PetscDrawAxisSetColors
man:+PetscDrawAxisSetLabels++PetscDrawAxisSetLabels++++man+manualpages/Draw/PetscDrawAxisSetLabels.html#PetscDrawAxisSetLabels
man:+PetscDrawAxisSetHoldLimits++PetscDrawAxisSetHoldLimits++++man+manualpages/Draw/PetscDrawAxisSetHoldLimits.html#PetscDrawAxisSetHoldLimits
man:+PetscDrawAxisSetLimits++PetscDrawAxisSetLimits++++man+manualpages/Draw/PetscDrawAxisSetLimits.html#PetscDrawAxisSetLimits
man:+PetscDrawAxisDraw++PetscDrawAxisDraw++++man+manualpages/Draw/PetscDrawAxisDraw.html#PetscDrawAxisDraw
man:+PetscDrawLGCreate++PetscDrawLGCreate++++man+manualpages/Draw/PetscDrawLGCreate.html#PetscDrawLGCreate
man:+PetscDrawLGSetDimension++PetscDrawLGSetDimension++++man+manualpages/Draw/PetscDrawLGSetDimension.html#PetscDrawLGSetDimension
man:+PetscDrawLGReset++PetscDrawLGReset++++man+manualpages/Draw/PetscDrawLGReset.html#PetscDrawLGReset
man:+PetscDrawLGDestroy++PetscDrawLGDestroy++++man+manualpages/Draw/PetscDrawLGDestroy.html#PetscDrawLGDestroy
man:+PetscDrawLGAddPoint++PetscDrawLGAddPoint++++man+manualpages/Draw/PetscDrawLGAddPoint.html#PetscDrawLGAddPoint
man:+PetscDrawLGIndicateDataPoints++PetscDrawLGIndicateDataPoints++++man+manualpages/Draw/PetscDrawLGIndicateDataPoints.html#PetscDrawLGIndicateDataPoints
man:+PetscDrawLGAddPoints++PetscDrawLGAddPoints++++man+manualpages/Draw/PetscDrawLGAddPoints.html#PetscDrawLGAddPoints
man:+PetscDrawLGDraw++PetscDrawLGDraw++++man+manualpages/Draw/PetscDrawLGDraw.html#PetscDrawLGDraw
man:+PetscDrawLGPrint++PetscDrawLGPrint++++man+manualpages/Draw/PetscDrawLGPrint.html#PetscDrawLGPrint
man:+PetscDrawLGSetLimits++PetscDrawLGSetLimits++++man+manualpages/Draw/PetscDrawLGSetLimits.html#PetscDrawLGSetLimits
man:+PetscDrawLGGetAxis++PetscDrawLGGetAxis++++man+manualpages/Draw/PetscDrawLGGetAxis.html#PetscDrawLGGetAxis
man:+PetscDrawLGGetDraw++PetscDrawLGGetDraw++++man+manualpages/Draw/PetscDrawLGGetDraw.html#PetscDrawLGGetDraw
man:+PetscDrawLGSPDraw++PetscDrawLGSPDraw++++man+manualpages/Draw/PetscDrawLGSPDraw.html#PetscDrawLGSPDraw
man:+PetscDrawSPCreate++PetscDrawSPCreate++++man+manualpages/Draw/PetscDrawSPCreate.html#PetscDrawSPCreate
man:+PetscDrawSPSetDimension++PetscDrawSPSetDimension++++man+manualpages/Draw/PetscDrawSPSetDimension.html#PetscDrawSPSetDimension
man:+PetscDrawSPReset++PetscDrawSPReset++++man+manualpages/Draw/PetscDrawSPReset.html#PetscDrawSPReset
man:+PetscDrawSPDestroy++PetscDrawSPDestroy++++man+manualpages/Draw/PetscDrawSPDestroy.html#PetscDrawSPDestroy
man:+PetscDrawSPAddPoint++PetscDrawSPAddPoint++++man+manualpages/Draw/PetscDrawSPAddPoint.html#PetscDrawSPAddPoint
man:+PetscDrawSPAddPoints++PetscDrawSPAddPoints++++man+manualpages/Draw/PetscDrawSPAddPoints.html#PetscDrawSPAddPoints
man:+PetscDrawSPDraw++PetscDrawSPDraw++++man+manualpages/Draw/PetscDrawSPDraw.html#PetscDrawSPDraw
man:+PetscDrawSPSetLimits++PetscDrawSPSetLimits++++man+manualpages/Draw/PetscDrawSPSetLimits.html#PetscDrawSPSetLimits
man:+PetscDrawSPGetAxis++PetscDrawSPGetAxis++++man+manualpages/Draw/PetscDrawSPGetAxis.html#PetscDrawSPGetAxis
man:+PetscDrawSPGetDraw++PetscDrawSPGetDraw++++man+manualpages/Draw/PetscDrawSPGetDraw.html#PetscDrawSPGetDraw
man:+PetscDrawHGCreate++PetscDrawHGCreate++++man+manualpages/Draw/PetscDrawHGCreate.html#PetscDrawHGCreate
man:+PetscDrawHGSetNumberBins++PetscDrawHGSetNumberBins++++man+manualpages/Draw/PetscDrawHGSetNumberBins.html#PetscDrawHGSetNumberBins
man:+PetscDrawHGReset++PetscDrawHGReset++++man+manualpages/Draw/PetscDrawHGReset.html#PetscDrawHGReset
man:+PetscDrawHGDestroy++PetscDrawHGDestroy++++man+manualpages/Draw/PetscDrawHGDestroy.html#PetscDrawHGDestroy
man:+PetscDrawHGAddValue++PetscDrawHGAddValue++++man+manualpages/Draw/PetscDrawHGAddValue.html#PetscDrawHGAddValue
man:+PetscDrawHGDraw++PetscDrawHGDraw++++man+manualpages/Draw/PetscDrawHGDraw.html#PetscDrawHGDraw
man:+PetscDrawHGPrint++PetscDrawHGPrint++++man+manualpages/Draw/PetscDrawHGPrint.html#PetscDrawHGPrint
man:+PetscDrawHGSetColor++PetscDrawHGSetColor++++man+manualpages/Draw/PetscDrawHGSetColor.html#PetscDrawHGSetColor
man:+PetscDrawHGSetLimits++PetscDrawHGSetLimits++++man+manualpages/Draw/PetscDrawHGSetLimits.html#PetscDrawHGSetLimits
man:+PetscDrawHGCalcStats++PetscDrawHGCalcStats++++man+manualpages/Draw/PetscDrawHGCalcStats.html#PetscDrawHGCalcStats
man:+PetscDrawHGIntegerBins++PetscDrawHGIntegerBins++++man+manualpages/Draw/PetscDrawHGIntegerBins.html#PetscDrawHGIntegerBins
man:+PetscDrawHGGetAxis++PetscDrawHGGetAxis++++man+manualpages/Draw/PetscDrawHGGetAxis.html#PetscDrawHGGetAxis
man:+PetscDrawHGGetDraw++PetscDrawHGGetDraw++++man+manualpages/Draw/PetscDrawHGGetDraw.html#PetscDrawHGGetDraw
man:+PetscDrawZoom++PetscDrawZoom++++man+manualpages/Draw/PetscDrawZoom.html#PetscDrawZoom
man:+PetscSetDebugger++PetscSetDebugger++++man+manualpages/Sys/PetscSetDebugger.html#PetscSetDebugger
man:+PetscSetDefaultDebugger++PetscSetDefaultDebugger++++man+manualpages/Sys/PetscSetDefaultDebugger.html#PetscSetDefaultDebugger
man:+PetscSetDebuggerFromString++PetscSetDebuggerFromString++++man+manualpages/Sys/PetscSetDebuggerFromString.html#PetscSetDebuggerFromString
man:+PetscAttachDebugger++PetscAttachDebugger++++man+manualpages/Sys/PetscAttachDebugger.html#PetscAttachDebugger
man:+PetscAttachDebuggerErrorHandler++PetscAttachDebuggerErrorHandler++++man+manualpages/Sys/PetscAttachDebuggerErrorHandler.html#PetscAttachDebuggerErrorHandler
man:+PetscStopForDebugger++PetscStopForDebugger++++man+manualpages/Sys/PetscStopForDebugger.html#PetscStopForDebugger
man:+PetscEmacsClientErrorHandler++PetscEmacsClientErrorHandler++++man+manualpages/Sys/PetscEmacsClientErrorHandler.html#PetscEmacsClientErrorHandler
man:+PetscPushErrorHandler++PetscPushErrorHandler++++man+manualpages/Sys/PetscPushErrorHandler.html#PetscPushErrorHandler
man:+PetscPopErrorHandler++PetscPopErrorHandler++++man+manualpages/Sys/PetscPopErrorHandler.html#PetscPopErrorHandler
man:+PetscReturnErrorHandler++PetscReturnErrorHandler++++man+manualpages/Sys/PetscReturnErrorHandler.html#PetscReturnErrorHandler
man:+PetscErrorMessage++PetscErrorMessage++++man+manualpages/Sys/PetscErrorMessage.html#PetscErrorMessage
man:+PetscErrorIsCatchable++PetscErrorIsCatchable++++man+manualpages/Sys/PetscErrorIsCatchable.html#PetscErrorIsCatchable
man:+PetscErrorSetCatchable++PetscErrorSetCatchable++++man+manualpages/Sys/PetscErrorSetCatchable.html#PetscErrorSetCatchable
man:+PetscExceptionPush++PetscExceptionPush++++man+manualpages/Sys/PetscExceptionPush.html#PetscExceptionPush
man:+PetscExceptionPop++PetscExceptionPop++++man+manualpages/Sys/PetscExceptionPop.html#PetscExceptionPop
man:+PetscError++PetscError++++man+manualpages/Sys/PetscError.html#PetscError
man:+PetscIntView++PetscIntView++++man+manualpages/Sys/PetscIntView.html#PetscIntView
man:+PetscRealView++PetscRealView++++man+manualpages/Sys/PetscRealView.html#PetscRealView
man:+PetscScalarView++PetscScalarView++++man+manualpages/Sys/PetscScalarView.html#PetscScalarView
man:+PetscIgnoreErrorHandler++PetscIgnoreErrorHandler++++man+manualpages/Sys/PetscIgnoreErrorHandler.html#PetscIgnoreErrorHandler
man:+PetscTraceBackErrorHandler++PetscTraceBackErrorHandler++++man+manualpages/Sys/PetscTraceBackErrorHandler.html#PetscTraceBackErrorHandler
man:+PetscAbortErrorHandler++PetscAbortErrorHandler++++man+manualpages/Sys/PetscAbortErrorHandler.html#PetscAbortErrorHandler
man:+PetscStopErrorHandler++PetscStopErrorHandler++++man+manualpages/Sys/PetscStopErrorHandler.html#PetscStopErrorHandler
man:+PetscSetFPTrap++PetscSetFPTrap++++man+manualpages/Sys/PetscSetFPTrap.html#PetscSetFPTrap
man:+PetscDefaultSignalHandler++PetscDefaultSignalHandler++++man+manualpages/Sys/PetscDefaultSignalHandler.html#PetscDefaultSignalHandler
man:+PetscPushSignalHandler++PetscPushSignalHandler++++man+manualpages/Sys/PetscPushSignalHandler.html#PetscPushSignalHandler
man:+PetscPopSignalHandler++PetscPopSignalHandler++++man+manualpages/Sys/PetscPopSignalHandler.html#PetscPopSignalHandler
man:+SETERRQ++SETERRQ++++man+manualpages/Sys/SETERRQ.html#SETERRQ
man:+SETERRQ1++SETERRQ1++++man+manualpages/Sys/SETERRQ1.html#SETERRQ1
man:+SETERRQ2++SETERRQ2++++man+manualpages/Sys/SETERRQ2.html#SETERRQ2
man:+SETERRQ3++SETERRQ3++++man+manualpages/Sys/SETERRQ3.html#SETERRQ3
man:+CHKERRQ++CHKERRQ++++man+manualpages/Sys/CHKERRQ.html#CHKERRQ
man:+CHKMEMQ++CHKMEMQ++++man+manualpages/Sys/CHKMEMQ.html#CHKMEMQ
man:+PetscExceptionCaught++PetscExceptionCaught++++man+manualpages/Sys/PetscExceptionCaught.html#PetscExceptionCaught
man:+PetscExceptionValue++PetscExceptionValue++++man+manualpages/Sys/PetscExceptionValue.html#PetscExceptionValue
man:+PetscExceptionTry1++PetscExceptionTry1++++man+manualpages/Sys/PetscExceptionTry1.html#PetscExceptionTry1
man:+PetscFunctionBegin++PetscFunctionBegin++++man+manualpages/Sys/PetscFunctionBegin.html#PetscFunctionBegin
man:+PetscFunctionReturn++PetscFunctionReturn++++man+manualpages/Sys/PetscFunctionReturn.html#PetscFunctionReturn
man:+PetscDLLibraryRetrieve++PetscDLLibraryRetrieve++++man+manualpages/Sys/PetscDLLibraryRetrieve.html#PetscDLLibraryRetrieve
man:+PetscDLLibraryOpen++PetscDLLibraryOpen++++man+manualpages/Sys/PetscDLLibraryOpen.html#PetscDLLibraryOpen
man:+PetscDLLibrarySym++PetscDLLibrarySym++++man+manualpages/Sys/PetscDLLibrarySym.html#PetscDLLibrarySym
man:+PetscDLLibraryAppend++PetscDLLibraryAppend++++man+manualpages/Sys/PetscDLLibraryAppend.html#PetscDLLibraryAppend
man:+PetscDLLibraryPrepend++PetscDLLibraryPrepend++++man+manualpages/Sys/PetscDLLibraryPrepend.html#PetscDLLibraryPrepend
man:+PetscDLLibraryClose++PetscDLLibraryClose++++man+manualpages/Sys/PetscDLLibraryClose.html#PetscDLLibraryClose
man:+PetscDLLibraryCCAAppend++PetscDLLibraryCCAAppend++++man+manualpages/Sys/PetscDLLibraryCCAAppend.html#PetscDLLibraryCCAAppend
man:+PetscFListAddDynamic++PetscFListAddDynamic++++man+manualpages/Sys/PetscFListAddDynamic.html#PetscFListAddDynamic
man:+PetscFListDestroy++PetscFListDestroy++++man+manualpages/Sys/PetscFListDestroy.html#PetscFListDestroy
man:+PetscFListFind++PetscFListFind++++man+manualpages/Sys/PetscFListFind.html#PetscFListFind
man:+PetscFListView++PetscFListView++++man+manualpages/Sys/PetscFListView.html#PetscFListView
man:+PetscFListGet++PetscFListGet++++man+manualpages/Sys/PetscFListGet.html#PetscFListGet
man:+PetscFListPrintTypes++PetscFListPrintTypes++++man+manualpages/Sys/PetscFListPrintTypes.html#PetscFListPrintTypes
man:+PetscFListDuplicate++PetscFListDuplicate++++man+manualpages/Sys/PetscFListDuplicate.html#PetscFListDuplicate
man:+PetscGetFileFromPath++PetscGetFileFromPath++++man+manualpages/Sys/PetscGetFileFromPath.html#PetscGetFileFromPath
man:+PetscGetHomeDirectory++PetscGetHomeDirectory++++man+manualpages/Sys/PetscGetHomeDirectory.html#PetscGetHomeDirectory
man:+PetscFixFilename++PetscFixFilename++++man+manualpages/Sys/PetscFixFilename.html#PetscFixFilename
man:+PetscFOpen++PetscFOpen++++man+manualpages/Sys/PetscFOpen.html#PetscFOpen
man:+PetscFClose++PetscFClose++++man+manualpages/Sys/PetscFClose.html#PetscFClose
man:+PetscPClose++PetscPClose++++man+manualpages/Sys/PetscPClose.html#PetscPClose
man:+PetscPOpen++PetscPOpen++++man+manualpages/Sys/PetscPOpen.html#PetscPOpen
man:+PetscGetRelativePath++PetscGetRelativePath++++man+manualpages/Sys/PetscGetRelativePath.html#PetscGetRelativePath
man:+PetscGetFullPath++PetscGetFullPath++++man+manualpages/Sys/PetscGetFullPath.html#PetscGetFullPath
man:+PetscGetWorkingDirectory++PetscGetWorkingDirectory++++man+manualpages/Sys/PetscGetWorkingDirectory.html#PetscGetWorkingDirectory
man:+PetscGetRealPath++PetscGetRealPath++++man+manualpages/Sys/PetscGetRealPath.html#PetscGetRealPath
man:+PetscSNPrintf++PetscSNPrintf++++man+manualpages/Sys/PetscSNPrintf.html#PetscSNPrintf
man:+PetscSynchronizedPrintf++PetscSynchronizedPrintf++++man+manualpages/Sys/PetscSynchronizedPrintf.html#PetscSynchronizedPrintf
man:+PetscSynchronizedFPrintf++PetscSynchronizedFPrintf++++man+manualpages/Sys/PetscSynchronizedFPrintf.html#PetscSynchronizedFPrintf
man:+PetscSynchronizedFlush++PetscSynchronizedFlush++++man+manualpages/Sys/PetscSynchronizedFlush.html#PetscSynchronizedFlush
man:+PetscFPrintf++PetscFPrintf++++man+manualpages/Sys/PetscFPrintf.html#PetscFPrintf
man:+PetscPrintf++PetscPrintf++++man+manualpages/Sys/PetscPrintf.html#PetscPrintf
man:+PetscSynchronizedFGets++PetscSynchronizedFGets++++man+manualpages/Sys/PetscSynchronizedFGets.html#PetscSynchronizedFGets
man:+PetscBinaryRead++PetscBinaryRead++++man+manualpages/Sys/PetscBinaryRead.html#PetscBinaryRead
man:+PetscBinaryWrite++PetscBinaryWrite++++man+manualpages/Sys/PetscBinaryWrite.html#PetscBinaryWrite
man:+PetscBinaryOpen++PetscBinaryOpen++++man+manualpages/Sys/PetscBinaryOpen.html#PetscBinaryOpen
man:+PetscBinaryClose++PetscBinaryClose++++man+manualpages/Sys/PetscBinaryClose.html#PetscBinaryClose
man:+PetscBinarySeek++PetscBinarySeek++++man+manualpages/Sys/PetscBinarySeek.html#PetscBinarySeek
man:+PetscSynchronizedBinaryRead++PetscSynchronizedBinaryRead++++man+manualpages/Sys/PetscSynchronizedBinaryRead.html#PetscSynchronizedBinaryRead
man:+PetscSynchronizedBinaryWrite++PetscSynchronizedBinaryWrite++++man+manualpages/Sys/PetscSynchronizedBinaryWrite.html#PetscSynchronizedBinaryWrite
man:+PetscSynchronizedBinarySeek++PetscSynchronizedBinarySeek++++man+manualpages/Sys/PetscSynchronizedBinarySeek.html#PetscSynchronizedBinarySeek
man:+PetscGetTmp++PetscGetTmp++++man+manualpages/Sys/PetscGetTmp.html#PetscGetTmp
man:+PetscSharedTmp++PetscSharedTmp++++man+manualpages/Sys/PetscSharedTmp.html#PetscSharedTmp
man:+PetscSharedWorkingDirectory++PetscSharedWorkingDirectory++++man+manualpages/Sys/PetscSharedWorkingDirectory.html#PetscSharedWorkingDirectory
man:+PetscFileRetrieve++PetscFileRetrieve++++man+manualpages/Sys/PetscFileRetrieve.html#PetscFileRetrieve
man:+PetscStartMatlab++PetscStartMatlab++++man+manualpages/Sys/PetscStartMatlab.html#PetscStartMatlab
man:+PetscSetMalloc++PetscSetMalloc++++man+manualpages/Sys/PetscSetMalloc.html#PetscSetMalloc
man:+PetscClearMalloc++PetscClearMalloc++++man+manualpages/Sys/PetscClearMalloc.html#PetscClearMalloc
man:+PetscMemoryGetCurrentUsage++PetscMemoryGetCurrentUsage++++man+manualpages/Sys/PetscMemoryGetCurrentUsage.html#PetscMemoryGetCurrentUsage
man:+PetscMemoryGetMaximumUsage++PetscMemoryGetMaximumUsage++++man+manualpages/Sys/PetscMemoryGetMaximumUsage.html#PetscMemoryGetMaximumUsage
man:+PetscMemorySetGetMaximumUsage++PetscMemorySetGetMaximumUsage++++man+manualpages/Sys/PetscMemorySetGetMaximumUsage.html#PetscMemorySetGetMaximumUsage
man:+PetscMallocValidate++PetscMallocValidate++++man+manualpages/Sys/PetscMallocValidate.html#PetscMallocValidate
man:+PetscMemoryShowUsage++PetscMemoryShowUsage++++man+manualpages/Sys/PetscMemoryShowUsage.html#PetscMemoryShowUsage
man:+PetscMallocGetCurrentUsage++PetscMallocGetCurrentUsage++++man+manualpages/Sys/PetscMallocGetCurrentUsage.html#PetscMallocGetCurrentUsage
man:+PetscMallocGetMaximumUsage++PetscMallocGetMaximumUsage++++man+manualpages/Sys/PetscMallocGetMaximumUsage.html#PetscMallocGetMaximumUsage
man:+PetscMallocDump++PetscMallocDump++++man+manualpages/Sys/PetscMallocDump.html#PetscMallocDump
man:+PetscMallocSetDumpLog++PetscMallocSetDumpLog++++man+manualpages/Sys/PetscMallocSetDumpLog.html#PetscMallocSetDumpLog
man:+PetscMallocDumpLog++PetscMallocDumpLog++++man+manualpages/Sys/PetscMallocDumpLog.html#PetscMallocDumpLog
man:+PetscMallocDebug++PetscMallocDebug++++man+manualpages/Sys/PetscMallocDebug.html#PetscMallocDebug
man:+PetscObjectGetComm++PetscObjectGetComm++++man+manualpages/Sys/PetscObjectGetComm.html#PetscObjectGetComm
man:+PetscObjectGetType++PetscObjectGetType++++man+manualpages/Sys/PetscObjectGetType.html#PetscObjectGetType
man:+PetscObjectSetType++PetscObjectSetType++++man+manualpages/Sys/PetscObjectSetType.html#PetscObjectSetType
man:+PetscObjectSetName++PetscObjectSetName++++man+manualpages/Sys/PetscObjectSetName.html#PetscObjectSetName
man:+PetscObjectName++PetscObjectName++++man+manualpages/Sys/PetscObjectName.html#PetscObjectName
man:+PetscObjectPublish++PetscObjectPublish++++man+manualpages/Sys/PetscObjectPublish.html#PetscObjectPublish
man:+PetscObjectGetNewTag++PetscObjectGetNewTag++++man+manualpages/Sys/PetscObjectGetNewTag.html#PetscObjectGetNewTag
man:+PetscCommGetNewTag++PetscCommGetNewTag++++man+manualpages/Sys/PetscCommGetNewTag.html#PetscCommGetNewTag
man:+PetscCommDuplicate++PetscCommDuplicate++++man+manualpages/Sys/PetscCommDuplicate.html#PetscCommDuplicate
man:+PetscCommDestroy++PetscCommDestroy++++man+manualpages/Sys/PetscCommDestroy.html#PetscCommDestroy
man:+PetscObjectCreate++PetscObjectCreate++++man+manualpages/Sys/PetscObjectCreate.html#PetscObjectCreate
man:+PetscObjectCreateGeneric++PetscObjectCreateGeneric++++man+manualpages/Sys/PetscObjectCreateGeneric.html#PetscObjectCreateGeneric
man:+PetscObjectDestroy++PetscObjectDestroy++++man+manualpages/Sys/PetscObjectDestroy.html#PetscObjectDestroy
man:+PetscObjectView++PetscObjectView++++man+manualpages/Sys/PetscObjectView.html#PetscObjectView
man:+PetscTypeCompare++PetscTypeCompare++++man+manualpages/Sys/PetscTypeCompare.html#PetscTypeCompare
man:+PetscObjectRegisterDestroy++PetscObjectRegisterDestroy++++man+manualpages/Sys/PetscObjectRegisterDestroy.html#PetscObjectRegisterDestroy
man:+PetscObjectRegisterDestroyAll++PetscObjectRegisterDestroyAll++++man+manualpages/Sys/PetscObjectRegisterDestroyAll.html#PetscObjectRegisterDestroyAll
man:+PetscObjectGetCookie++PetscObjectGetCookie++++man+manualpages/Sys/PetscObjectGetCookie.html#PetscObjectGetCookie
man:+PetscObjectExists++PetscObjectExists++++man+manualpages/Sys/PetscObjectExists.html#PetscObjectExists
man:+PetscObjectReference++PetscObjectReference++++man+manualpages/Sys/PetscObjectReference.html#PetscObjectReference
man:+PetscObjectGetReference++PetscObjectGetReference++++man+manualpages/Sys/PetscObjectGetReference.html#PetscObjectGetReference
man:+PetscObjectDereference++PetscObjectDereference++++man+manualpages/Sys/PetscObjectDereference.html#PetscObjectDereference
man:+PetscObjectCompose++PetscObjectCompose++++man+manualpages/Sys/PetscObjectCompose.html#PetscObjectCompose
man:+PetscObjectQuery++PetscObjectQuery++++man+manualpages/Sys/PetscObjectQuery.html#PetscObjectQuery
man:+PetscObjectQueryFunction++PetscObjectQueryFunction++++man+manualpages/Sys/PetscObjectQueryFunction.html#PetscObjectQueryFunction
man:+PetscObjectContainerGetPointer++PetscObjectContainerGetPointer++++man+manualpages/Sys/PetscObjectContainerGetPointer.html#PetscObjectContainerGetPointer
man:+PetscObjectContainerSetPointer++PetscObjectContainerSetPointer++++man+manualpages/Sys/PetscObjectContainerSetPointer.html#PetscObjectContainerSetPointer
man:+PetscObjectContainerDestroy++PetscObjectContainerDestroy++++man+manualpages/Sys/PetscObjectContainerDestroy.html#PetscObjectContainerDestroy
man:+PetscObjectContainerSetUserDestroy++PetscObjectContainerSetUserDestroy++++man+manualpages/Sys/PetscObjectContainerSetUserDestroy.html#PetscObjectContainerSetUserDestroy
man:+PetscObjectContainerCreate++PetscObjectContainerCreate++++man+manualpages/Sys/PetscObjectContainerCreate.html#PetscObjectContainerCreate
man:+PetscObjectSetFromOptions++PetscObjectSetFromOptions++++man+manualpages/Sys/PetscObjectSetFromOptions.html#PetscObjectSetFromOptions
man:+PetscObjectSetUp++PetscObjectSetUp++++man+manualpages/Sys/PetscObjectSetUp.html#PetscObjectSetUp
man:+PetscGetProgramName++PetscGetProgramName++++man+manualpages/Sys/PetscGetProgramName.html#PetscGetProgramName
man:+PetscOptionsInsertString++PetscOptionsInsertString++++man+manualpages/Sys/PetscOptionsInsertString.html#PetscOptionsInsertString
man:+PetscOptionsInsertFile++PetscOptionsInsertFile++++man+manualpages/Sys/PetscOptionsInsertFile.html#PetscOptionsInsertFile
man:+PetscOptionsInsert++PetscOptionsInsert++++man+manualpages/Sys/PetscOptionsInsert.html#PetscOptionsInsert
man:+PetscOptionsPrint++PetscOptionsPrint++++man+manualpages/Sys/PetscOptionsPrint.html#PetscOptionsPrint
man:+PetscOptionsGetAll++PetscOptionsGetAll++++man+manualpages/Sys/PetscOptionsGetAll.html#PetscOptionsGetAll
man:+PetscOptionsDestroy++PetscOptionsDestroy++++man+manualpages/Sys/PetscOptionsDestroy.html#PetscOptionsDestroy
man:+PetscOptionsSetValue++PetscOptionsSetValue++++man+manualpages/Sys/PetscOptionsSetValue.html#PetscOptionsSetValue
man:+PetscOptionsClearValue++PetscOptionsClearValue++++man+manualpages/Sys/PetscOptionsClearValue.html#PetscOptionsClearValue
man:+PetscOptionsReject++PetscOptionsReject++++man+manualpages/Sys/PetscOptionsReject.html#PetscOptionsReject
man:+PetscOptionsReject++PetscOptionsReject++++man+manualpages/Sys/PetscOptionsReject.html#PetscOptionsReject
man:+PetscOptionsHasName++PetscOptionsHasName++++man+manualpages/Sys/PetscOptionsHasName.html#PetscOptionsHasName
man:+PetscOptionsGetInt++PetscOptionsGetInt++++man+manualpages/Sys/PetscOptionsGetInt.html#PetscOptionsGetInt
man:+PetscOptionsGetEList++PetscOptionsGetEList++++man+manualpages/Sys/PetscOptionsGetEList.html#PetscOptionsGetEList
man:+PetscOptionsGetEnum++PetscOptionsGetEnum++++man+manualpages/Sys/PetscOptionsGetEnum.html#PetscOptionsGetEnum
man:+PetscOptionsGetTruth++PetscOptionsGetTruth++++man+manualpages/Sys/PetscOptionsGetTruth.html#PetscOptionsGetTruth
man:+PetscOptionsGetReal++PetscOptionsGetReal++++man+manualpages/Sys/PetscOptionsGetReal.html#PetscOptionsGetReal
man:+PetscOptionsGetScalar++PetscOptionsGetScalar++++man+manualpages/Sys/PetscOptionsGetScalar.html#PetscOptionsGetScalar
man:+PetscOptionsGetRealArray++PetscOptionsGetRealArray++++man+manualpages/Sys/PetscOptionsGetRealArray.html#PetscOptionsGetRealArray
man:+PetscOptionsGetIntArray++PetscOptionsGetIntArray++++man+manualpages/Sys/PetscOptionsGetIntArray.html#PetscOptionsGetIntArray
man:+PetscOptionsGetString++PetscOptionsGetString++++man+manualpages/Sys/PetscOptionsGetString.html#PetscOptionsGetString
man:+PetscOptionsGetStringArray++PetscOptionsGetStringArray++++man+manualpages/Sys/PetscOptionsGetStringArray.html#PetscOptionsGetStringArray
man:+PetscOptionsAllUsed++PetscOptionsAllUsed++++man+manualpages/Sys/PetscOptionsAllUsed.html#PetscOptionsAllUsed
man:+PetscOptionsLeft++PetscOptionsLeft++++man+manualpages/Sys/PetscOptionsLeft.html#PetscOptionsLeft
man:+PetscOptionsSetFromOptions++PetscOptionsSetFromOptions++++man+manualpages/Sys/PetscOptionsSetFromOptions.html#PetscOptionsSetFromOptions
man:+PetscOptionsDefaultMonitor++PetscOptionsDefaultMonitor++++man+manualpages/Sys/PetscOptionsDefaultMonitor.html#PetscOptionsDefaultMonitor
man:+PetscOptionsSetMonitor++PetscOptionsSetMonitor++++man+manualpages/Sys/PetscOptionsSetMonitor.html#PetscOptionsSetMonitor
man:+PetscOptionsClearMonitor++PetscOptionsClearMonitor++++man+manualpages/Sys/PetscOptionsClearMonitor.html#PetscOptionsClearMonitor
man:+PetscObjectGetName++PetscObjectGetName++++man+manualpages/Sys/PetscObjectGetName.html#PetscObjectGetName
man:+PetscEnd++PetscEnd++++man+manualpages/Sys/PetscEnd.html#PetscEnd
man:+PetscSetHelpVersionFunctions++PetscSetHelpVersionFunctions++++man+manualpages/Sys/PetscSetHelpVersionFunctions.html#PetscSetHelpVersionFunctions
man:+PetscInitializeNoArguments++PetscInitializeNoArguments++++man+manualpages/Sys/PetscInitializeNoArguments.html#PetscInitializeNoArguments
man:+PetscInitialized++PetscInitialized++++man+manualpages/Sys/PetscInitialized.html#PetscInitialized
man:+PetscFinalized++PetscFinalized++++man+manualpages/Sys/PetscFinalized.html#PetscFinalized
man:+PetscGetArgs++PetscGetArgs++++man+manualpages/Sys/PetscGetArgs.html#PetscGetArgs
man:+PetscInitialize++PetscInitialize++++man+manualpages/Sys/PetscInitialize.html#PetscInitialize
man:+PetscFinalize++PetscFinalize++++man+manualpages/Sys/PetscFinalize.html#PetscFinalize
man:+PetscGlobalMax++PetscGlobalMax++++man+manualpages/Sys/PetscGlobalMax.html#PetscGlobalMax
man:+PetscGlobalMin++PetscGlobalMin++++man+manualpages/Sys/PetscGlobalMin.html#PetscGlobalMin
man:+PetscGlobalSum++PetscGlobalSum++++man+manualpages/Sys/PetscGlobalSum.html#PetscGlobalSum
man:+PetscDataTypeToMPIDataType++PetscDataTypeToMPIDataType++++man+manualpages/Sys/PetscDataTypeToMPIDataType.html#PetscDataTypeToMPIDataType
man:+PetscDataTypeGetSize++PetscDataTypeGetSize++++man+manualpages/Sys/PetscDataTypeGetSize.html#PetscDataTypeGetSize
man:+PetscObjectStateQuery++PetscObjectStateQuery++++man+manualpages/Sys/PetscObjectStateQuery.html#PetscObjectStateQuery
man:+PetscObjectSetState++PetscObjectSetState++++man+manualpages/Sys/PetscObjectSetState.html#PetscObjectSetState
man:+PetscObjectComposedDataRegister++PetscObjectComposedDataRegister++++man+manualpages/Sys/PetscObjectComposedDataRegister.html#PetscObjectComposedDataRegister
man:+PetscOptionsEnum++PetscOptionsEnum++++man+manualpages/Sys/PetscOptionsEnum.html#PetscOptionsEnum
man:+PetscOptionsInt++PetscOptionsInt++++man+manualpages/Sys/PetscOptionsInt.html#PetscOptionsInt
man:+PetscOptionsString++PetscOptionsString++++man+manualpages/Sys/PetscOptionsString.html#PetscOptionsString
man:+PetscOptionsReal++PetscOptionsReal++++man+manualpages/Sys/PetscOptionsReal.html#PetscOptionsReal
man:+PetscOptionsScalar++PetscOptionsScalar++++man+manualpages/Sys/PetscOptionsScalar.html#PetscOptionsScalar
man:+PetscOptionsName++PetscOptionsName++++man+manualpages/Sys/PetscOptionsName.html#PetscOptionsName
man:+PetscOptionsList++PetscOptionsList++++man+manualpages/Sys/PetscOptionsList.html#PetscOptionsList
man:+PetscOptionsEList++PetscOptionsEList++++man+manualpages/Sys/PetscOptionsEList.html#PetscOptionsEList
man:+PetscOptionsTruthGroupBegin++PetscOptionsTruthGroupBegin++++man+manualpages/Sys/PetscOptionsTruthGroupBegin.html#PetscOptionsTruthGroupBegin
man:+PetscOptionsTruthGroup++PetscOptionsTruthGroup++++man+manualpages/Sys/PetscOptionsTruthGroup.html#PetscOptionsTruthGroup
man:+PetscOptionsTruthGroupEnd++PetscOptionsTruthGroupEnd++++man+manualpages/Sys/PetscOptionsTruthGroupEnd.html#PetscOptionsTruthGroupEnd
man:+PetscOptionsTruth++PetscOptionsTruth++++man+manualpages/Sys/PetscOptionsTruth.html#PetscOptionsTruth
man:+PetscOptionsRealArray++PetscOptionsRealArray++++man+manualpages/Sys/PetscOptionsRealArray.html#PetscOptionsRealArray
man:+PetscOptionsIntArray++PetscOptionsIntArray++++man+manualpages/Sys/PetscOptionsIntArray.html#PetscOptionsIntArray
man:+PetscOptionsStringArray++PetscOptionsStringArray++++man+manualpages/Sys/PetscOptionsStringArray.html#PetscOptionsStringArray
man:+PetscOptionsHead++PetscOptionsHead++++man+manualpages/Sys/PetscOptionsHead.html#PetscOptionsHead
man:+PetscOptionsBegin++PetscOptionsBegin++++man+manualpages/Sys/PetscOptionsBegin.html#PetscOptionsBegin
man:+PetscOptionsEnd++PetscOptionsEnd++++man+manualpages/Sys/PetscOptionsEnd.html#PetscOptionsEnd
man:+PetscOptionsTail++PetscOptionsTail++++man+manualpages/Sys/PetscOptionsTail.html#PetscOptionsTail
man:+PetscGetCPUTime++PetscGetCPUTime++++man+manualpages/Sys/PetscGetCPUTime.html#PetscGetCPUTime
man:+PetscGetDate++PetscGetDate++++man+manualpages/Sys/PetscGetDate.html#PetscGetDate
man:+PetscGetTime++PetscGetTime++++man+manualpages/Sys/PetscGetTime.html#PetscGetTime
man:+PetscGetArchType++PetscGetArchType++++man+manualpages/Sys/PetscGetArchType.html#PetscGetArchType
man:+PetscGetHostName++PetscGetHostName++++man+manualpages/Sys/PetscGetHostName.html#PetscGetHostName
man:+PetscGetUserName++PetscGetUserName++++man+manualpages/Sys/PetscGetUserName.html#PetscGetUserName
man:+PetscMemcpy++PetscMemcpy++++man+manualpages/Sys/PetscMemcpy.html#PetscMemcpy
man:+PetscBitMemcpy++PetscBitMemcpy++++man+manualpages/Sys/PetscBitMemcpy.html#PetscBitMemcpy
man:+PetscMemzero++PetscMemzero++++man+manualpages/Sys/PetscMemzero.html#PetscMemzero
man:+PetscMemcmp++PetscMemcmp++++man+manualpages/Sys/PetscMemcmp.html#PetscMemcmp
man:+PetscMemmove++PetscMemmove++++man+manualpages/Sys/PetscMemmove.html#PetscMemmove
man:+PetscSequentialPhaseBegin++PetscSequentialPhaseBegin++++man+manualpages/Sys/PetscSequentialPhaseBegin.html#PetscSequentialPhaseBegin
man:+PetscSequentialPhaseEnd++PetscSequentialPhaseEnd++++man+manualpages/Sys/PetscSequentialPhaseEnd.html#PetscSequentialPhaseEnd
man:+PetscSleep++PetscSleep++++man+manualpages/Sys/PetscSleep.html#PetscSleep
man:+PetscSortReal++PetscSortReal++++man+manualpages/Sys/PetscSortReal.html#PetscSortReal
man:+PetscSortInt++PetscSortInt++++man+manualpages/Sys/PetscSortInt.html#PetscSortInt
man:+PetscSortIntWithArray++PetscSortIntWithArray++++man+manualpages/Sys/PetscSortIntWithArray.html#PetscSortIntWithArray
man:+PetscSortIntWithScalarArray++PetscSortIntWithScalarArray++++man+manualpages/Sys/PetscSortIntWithScalarArray.html#PetscSortIntWithScalarArray
man:+PetscStrlen++PetscStrlen++++man+manualpages/Sys/PetscStrlen.html#PetscStrlen
man:+PetscStrallocpy++PetscStrallocpy++++man+manualpages/Sys/PetscStrallocpy.html#PetscStrallocpy
man:+PetscStrcpy++PetscStrcpy++++man+manualpages/Sys/PetscStrcpy.html#PetscStrcpy
man:+PetscStrncpy++PetscStrncpy++++man+manualpages/Sys/PetscStrncpy.html#PetscStrncpy
man:+PetscStrcat++PetscStrcat++++man+manualpages/Sys/PetscStrcat.html#PetscStrcat
man:+PetscStrncat++PetscStrncat++++man+manualpages/Sys/PetscStrncat.html#PetscStrncat
man:+PetscStrcmp++PetscStrcmp++++man+manualpages/Sys/PetscStrcmp.html#PetscStrcmp
man:+PetscStrgrt++PetscStrgrt++++man+manualpages/Sys/PetscStrgrt.html#PetscStrgrt
man:+PetscStrcasecmp++PetscStrcasecmp++++man+manualpages/Sys/PetscStrcasecmp.html#PetscStrcasecmp
man:+PetscStrncmp++PetscStrncmp++++man+manualpages/Sys/PetscStrncmp.html#PetscStrncmp
man:+PetscStrchr++PetscStrchr++++man+manualpages/Sys/PetscStrchr.html#PetscStrchr
man:+PetscStrrchr++PetscStrrchr++++man+manualpages/Sys/PetscStrrchr.html#PetscStrrchr
man:+PetscStrtolower++PetscStrtolower++++man+manualpages/Sys/PetscStrtolower.html#PetscStrtolower
man:+PetscTokenFind++PetscTokenFind++++man+manualpages/Sys/PetscTokenFind.html#PetscTokenFind
man:+PetscTokenCreate++PetscTokenCreate++++man+manualpages/Sys/PetscTokenCreate.html#PetscTokenCreate
man:+PetscTokenDestroy++PetscTokenDestroy++++man+manualpages/Sys/PetscTokenDestroy.html#PetscTokenDestroy
man:+PetscStrrstr++PetscStrrstr++++man+manualpages/Sys/PetscStrrstr.html#PetscStrrstr
man:+PetscStrstr++PetscStrstr++++man+manualpages/Sys/PetscStrstr.html#PetscStrstr
man:+PetscGetPetscDir++PetscGetPetscDir++++man+manualpages/Sys/PetscGetPetscDir.html#PetscGetPetscDir
man:+PetscStrreplace++PetscStrreplace++++man+manualpages/Sys/PetscStrreplace.html#PetscStrreplace
man:+PetscStrfree++PetscStrfree++++man+manualpages/Sys/PetscStrfree.html#PetscStrfree
man:+PetscSortIntWithPermutation++PetscSortIntWithPermutation++++man+manualpages/Sys/PetscSortIntWithPermutation.html#PetscSortIntWithPermutation
man:+PetscSortRealWithPermutation++PetscSortRealWithPermutation++++man+manualpages/Sys/PetscSortRealWithPermutation.html#PetscSortRealWithPermutation
man:+PetscSortStrWithPermutation++PetscSortStrWithPermutation++++man+manualpages/Sys/PetscSortStrWithPermutation.html#PetscSortStrWithPermutation
man:+PetscBarrier++PetscBarrier++++man+manualpages/Sys/PetscBarrier.html#PetscBarrier
man:+PetscOptionsGetenv++PetscOptionsGetenv++++man+manualpages/Sys/PetscOptionsGetenv.html#PetscOptionsGetenv
man:+PetscSplitOwnershipBlock++PetscSplitOwnershipBlock++++man+manualpages/Sys/PetscSplitOwnershipBlock.html#PetscSplitOwnershipBlock
man:+PetscSplitOwnership++PetscSplitOwnership++++man+manualpages/Sys/PetscSplitOwnership.html#PetscSplitOwnership
man:+PetscPopUpSelect++PetscPopUpSelect++++man+manualpages/Sys/PetscPopUpSelect.html#PetscPopUpSelect
man:+PetscGatherNumberOfMessages++PetscGatherNumberOfMessages++++man+manualpages/Sys/PetscGatherNumberOfMessages.html#PetscGatherNumberOfMessages
man:+PetscGatherMessageLengths++PetscGatherMessageLengths++++man+manualpages/Sys/PetscGatherMessageLengths.html#PetscGatherMessageLengths
man:+PetscGatherMessageLengths2++PetscGatherMessageLengths2++++man+manualpages/Sys/PetscGatherMessageLengths2.html#PetscGatherMessageLengths2
man:+PetscSSEIsEnabled++PetscSSEIsEnabled++++man+manualpages/Sys/PetscSSEIsEnabled.html#PetscSSEIsEnabled
man:+PetscMPIDump++PetscMPIDump++++man+manualpages/Sys/PetscMPIDump.html#PetscMPIDump
man:+PetscRandom++PetscRandom++++man+manualpages/Sys/PetscRandom.html#PetscRandom
man:+PetscRandomRegisterDynamic++PetscRandomRegisterDynamic++++man+manualpages/Sys/PetscRandomRegisterDynamic.html#PetscRandomRegisterDynamic
man:+PetscBinarySeekType++PetscBinarySeekType++++man+manualpages/Sys/PetscBinarySeekType.html#PetscBinarySeekType
man:+InsertMode++InsertMode++++man+manualpages/Sys/InsertMode.html#InsertMode
man:+INSERT_VALUES++INSERT_VALUES++++man+manualpages/Sys/INSERT_VALUES.html#INSERT_VALUES
man:+ADD_VALUES++ADD_VALUES++++man+manualpages/Sys/ADD_VALUES.html#ADD_VALUES
man:+MAX_VALUES++MAX_VALUES++++man+manualpages/Sys/MAX_VALUES.html#MAX_VALUES
man:+ScatterMode++ScatterMode++++man+manualpages/Sys/ScatterMode.html#ScatterMode
man:+SCATTER_FORWARD++SCATTER_FORWARD++++man+manualpages/Sys/SCATTER_FORWARD.html#SCATTER_FORWARD
man:+SCATTER_REVERSE++SCATTER_REVERSE++++man+manualpages/Sys/SCATTER_REVERSE.html#SCATTER_REVERSE
man:+SCATTER_FORWARD_LOCAL++SCATTER_FORWARD_LOCAL++++man+manualpages/Sys/SCATTER_FORWARD_LOCAL.html#SCATTER_FORWARD_LOCAL
man:+SCATTER_REVERSE_LOCAL++SCATTER_REVERSE_LOCAL++++man+manualpages/Sys/SCATTER_REVERSE_LOCAL.html#SCATTER_REVERSE_LOCAL
man:+PetscRandomDestroy++PetscRandomDestroy++++man+manualpages/Sys/PetscRandomDestroy.html#PetscRandomDestroy
man:+PetscRandomGetInterval++PetscRandomGetInterval++++man+manualpages/Sys/PetscRandomGetInterval.html#PetscRandomGetInterval
man:+PetscRandomSetInterval++PetscRandomSetInterval++++man+manualpages/Sys/PetscRandomSetInterval.html#PetscRandomSetInterval
man:+PetscRandomGetSeed++PetscRandomGetSeed++++man+manualpages/Sys/PetscRandomGetSeed.html#PetscRandomGetSeed
man:+PetscRandomSetSeed++PetscRandomSetSeed++++man+manualpages/Sys/PetscRandomSetSeed.html#PetscRandomSetSeed
man:+PetscRandomSetFromOptions++PetscRandomSetFromOptions++++man+manualpages/Sys/PetscRandomSetFromOptions.html#PetscRandomSetFromOptions
man:+PetscRandomView++PetscRandomView++++man+manualpages/Sys/PetscRandomView.html#PetscRandomView
man:+PetscRandomViewFromOptions++PetscRandomViewFromOptions++++man+manualpages/Sys/PetscRandomViewFromOptions.html#PetscRandomViewFromOptions
man:+PetscRandomCreate++PetscRandomCreate++++man+manualpages/Sys/PetscRandomCreate.html#PetscRandomCreate
man:+PetscRandomSeed++PetscRandomSeed++++man+manualpages/Sys/PetscRandomSeed.html#PetscRandomSeed
man:+PetscRandomGetValue++PetscRandomGetValue++++man+manualpages/Sys/PetscRandomGetValue.html#PetscRandomGetValue
man:+PetscRandomGetValueReal++PetscRandomGetValueReal++++man+manualpages/Sys/PetscRandomGetValueReal.html#PetscRandomGetValueReal
man:+PetscRandomGetValueImaginary++PetscRandomGetValueImaginary++++man+manualpages/Sys/PetscRandomGetValueImaginary.html#PetscRandomGetValueImaginary
man:+PetscRandomSetType++PetscRandomSetType++++man+manualpages/Sys/PetscRandomSetType.html#PetscRandomSetType
man:+PetscRandomGetType++PetscRandomGetType++++man+manualpages/Sys/PetscRandomGetType.html#PetscRandomGetType
man:+PetscRandomRegister++PetscRandomRegister++++man+manualpages/Sys/PetscRandomRegister.html#PetscRandomRegister
man:+PetscRandomRegisterDestroy++PetscRandomRegisterDestroy++++man+manualpages/Sys/PetscRandomRegisterDestroy.html#PetscRandomRegisterDestroy
man:+PetscRandomRegisterAll++PetscRandomRegisterAll++++man+manualpages/Sys/PetscRandomRegisterAll.html#PetscRandomRegisterAll
man:+PetscRandomInitializePackage++PetscRandomInitializePackage++++man+manualpages/Sys/PetscRandomInitializePackage.html#PetscRandomInitializePackage
man:+PetscLogDestroy++PetscLogDestroy++++man+manualpages/Profiling/PetscLogDestroy.html#PetscLogDestroy
man:+PetscLogSet++PetscLogSet++++man+manualpages/Profiling/PetscLogSet.html#PetscLogSet
man:+PetscLogBegin++PetscLogBegin++++man+manualpages/Profiling/PetscLogBegin.html#PetscLogBegin
man:+PetscLogAllBegin++PetscLogAllBegin++++man+manualpages/Profiling/PetscLogAllBegin.html#PetscLogAllBegin
man:+PetscLogTraceBegin++PetscLogTraceBegin++++man+manualpages/Profiling/PetscLogTraceBegin.html#PetscLogTraceBegin
man:+PetscLogActions++PetscLogActions++++man+manualpages/Profiling/PetscLogActions.html#PetscLogActions
man:+PetscLogObjects++PetscLogObjects++++man+manualpages/Profiling/PetscLogObjects.html#PetscLogObjects
man:+PetscLogStageRegister++PetscLogStageRegister++++man+manualpages/Profiling/PetscLogStageRegister.html#PetscLogStageRegister
man:+PetscLogStagePush++PetscLogStagePush++++man+manualpages/Profiling/PetscLogStagePush.html#PetscLogStagePush
man:+PetscLogStagePop++PetscLogStagePop++++man+manualpages/Profiling/PetscLogStagePop.html#PetscLogStagePop
man:+PetscLogStageSetActive++PetscLogStageSetActive++++man+manualpages/Profiling/PetscLogStageSetActive.html#PetscLogStageSetActive
man:+PetscLogStageGetActive++PetscLogStageGetActive++++man+manualpages/Profiling/PetscLogStageGetActive.html#PetscLogStageGetActive
man:+PetscLogStageSetVisible++PetscLogStageSetVisible++++man+manualpages/Profiling/PetscLogStageSetVisible.html#PetscLogStageSetVisible
man:+PetscLogStageGetVisible++PetscLogStageGetVisible++++man+manualpages/Profiling/PetscLogStageGetVisible.html#PetscLogStageGetVisible
man:+PetscLogStageGetId++PetscLogStageGetId++++man+manualpages/Profiling/PetscLogStageGetId.html#PetscLogStageGetId
man:+PetscLogEventRegister++PetscLogEventRegister++++man+manualpages/Profiling/PetscLogEventRegister.html#PetscLogEventRegister
man:+PetscLogEventActivate++PetscLogEventActivate++++man+manualpages/Profiling/PetscLogEventActivate.html#PetscLogEventActivate
man:+PetscLogEventDeactivate++PetscLogEventDeactivate++++man+manualpages/Profiling/PetscLogEventDeactivate.html#PetscLogEventDeactivate
man:+PetscLogEventSetActiveAll++PetscLogEventSetActiveAll++++man+manualpages/Profiling/PetscLogEventSetActiveAll.html#PetscLogEventSetActiveAll
man:+PetscLogEventActivateClass++PetscLogEventActivateClass++++man+manualpages/Profiling/PetscLogEventActivateClass.html#PetscLogEventActivateClass
man:+PetscLogEventDeactivateClass++PetscLogEventDeactivateClass++++man+manualpages/Profiling/PetscLogEventDeactivateClass.html#PetscLogEventDeactivateClass
man:+PetscLogEventBegin++PetscLogEventBegin++++man+manualpages/Profiling/PetscLogEventBegin.html#PetscLogEventBegin
man:+PetscLogEventEnd++PetscLogEventEnd++++man+manualpages/Profiling/PetscLogEventEnd.html#PetscLogEventEnd
man:+PetscLogEventBarrierBegin++PetscLogEventBarrierBegin++++man+manualpages/Profiling/PetscLogEventBarrierBegin.html#PetscLogEventBarrierBegin
man:+PetscLogEventBarrierEnd++PetscLogEventBarrierEnd++++man+manualpages/Profiling/PetscLogEventBarrierEnd.html#PetscLogEventBarrierEnd
man:+PetscLogClassRegister++PetscLogClassRegister++++man+manualpages/Profiling/PetscLogClassRegister.html#PetscLogClassRegister
man:+PetscLogDump++PetscLogDump++++man+manualpages/Profiling/PetscLogDump.html#PetscLogDump
man:+PetscLogPrintSummary++PetscLogPrintSummary++++man+manualpages/Profiling/PetscLogPrintSummary.html#PetscLogPrintSummary
man:+PetscGetFlops++PetscGetFlops++++man+manualpages/Profiling/PetscGetFlops.html#PetscGetFlops
man:+PetscLogGetStageLog++PetscLogGetStageLog++++man+manualpages/Profiling/PetscLogGetStageLog.html#PetscLogGetStageLog
man:+PetscLogFlops++PetscLogFlops++++man+manualpages/Profiling/PetscLogFlops.html#PetscLogFlops
man:+PreLoadBegin++PreLoadBegin++++man+manualpages/Profiling/PreLoadBegin.html#PreLoadBegin
man:+PreLoadEnd++PreLoadEnd++++man+manualpages/Profiling/PreLoadEnd.html#PreLoadEnd
man:+PreLoadStage++PreLoadStage++++man+manualpages/Profiling/PreLoadStage.html#PreLoadStage
man:+StackDestroy++StackDestroy++++man+manualpages/Profiling/StackDestroy.html#StackDestroy
man:+StackEmpty++StackEmpty++++man+manualpages/Profiling/StackEmpty.html#StackEmpty
man:+StackTop++StackTop++++man+manualpages/Profiling/StackTop.html#StackTop
man:+StackPush++StackPush++++man+manualpages/Profiling/StackPush.html#StackPush
man:+StackPop++StackPop++++man+manualpages/Profiling/StackPop.html#StackPop
man:+StackCreate++StackCreate++++man+manualpages/Profiling/StackCreate.html#StackCreate
man:+PetscLogMPEBegin++PetscLogMPEBegin++++man+manualpages/Profiling/PetscLogMPEBegin.html#PetscLogMPEBegin
man:+PetscLogMPEDump++PetscLogMPEDump++++man+manualpages/Profiling/PetscLogMPEDump.html#PetscLogMPEDump
man:+PetscLogGetRGBColor++PetscLogGetRGBColor++++man+manualpages/Profiling/PetscLogGetRGBColor.html#PetscLogGetRGBColor
man:+ClassRegLogCreate++ClassRegLogCreate++++man+manualpages/Profiling/ClassRegLogCreate.html#ClassRegLogCreate
man:+ClassRegLogDestroy++ClassRegLogDestroy++++man+manualpages/Profiling/ClassRegLogDestroy.html#ClassRegLogDestroy
man:+ClassRegInfoDestroy++ClassRegInfoDestroy++++man+manualpages/Profiling/ClassRegInfoDestroy.html#ClassRegInfoDestroy
man:+ClassPerfLogCreate++ClassPerfLogCreate++++man+manualpages/Profiling/ClassPerfLogCreate.html#ClassPerfLogCreate
man:+ClassPerfLogDestroy++ClassPerfLogDestroy++++man+manualpages/Profiling/ClassPerfLogDestroy.html#ClassPerfLogDestroy
man:+ClassPerfInfoClear++ClassPerfInfoClear++++man+manualpages/Profiling/ClassPerfInfoClear.html#ClassPerfInfoClear
man:+ClassPerfLogEnsureSize++ClassPerfLogEnsureSize++++man+manualpages/Profiling/ClassPerfLogEnsureSize.html#ClassPerfLogEnsureSize
man:+ClassRegLogRegister++ClassRegLogRegister++++man+manualpages/Profiling/ClassRegLogRegister.html#ClassRegLogRegister
man:+ClassRegLogGetClass++ClassRegLogGetClass++++man+manualpages/Profiling/ClassRegLogGetClass.html#ClassRegLogGetClass
man:+StageInfoDestroy++StageInfoDestroy++++man+manualpages/Profiling/StageInfoDestroy.html#StageInfoDestroy
man:+StageLogDestroy++StageLogDestroy++++man+manualpages/Profiling/StageLogDestroy.html#StageLogDestroy
man:+StageLogRegister++StageLogRegister++++man+manualpages/Profiling/StageLogRegister.html#StageLogRegister
man:+StageLogPush++StageLogPush++++man+manualpages/Profiling/StageLogPush.html#StageLogPush
man:+StageLogPop++StageLogPop++++man+manualpages/Profiling/StageLogPop.html#StageLogPop
man:+StageLogGetCurrent++StageLogGetCurrent++++man+manualpages/Profiling/StageLogGetCurrent.html#StageLogGetCurrent
man:+StageLogGetClassRegLog++StageLogGetClassRegLog++++man+manualpages/Profiling/StageLogGetClassRegLog.html#StageLogGetClassRegLog
man:+StageLogGetEventRegLog++StageLogGetEventRegLog++++man+manualpages/Profiling/StageLogGetEventRegLog.html#StageLogGetEventRegLog
man:+StageLogGetClassPerfLog++StageLogGetClassPerfLog++++man+manualpages/Profiling/StageLogGetClassPerfLog.html#StageLogGetClassPerfLog
man:+StageLogGetEventPerfLog++StageLogGetEventPerfLog++++man+manualpages/Profiling/StageLogGetEventPerfLog.html#StageLogGetEventPerfLog
man:+StageLogSetActive++StageLogSetActive++++man+manualpages/Profiling/StageLogSetActive.html#StageLogSetActive
man:+StageLogGetActive++StageLogGetActive++++man+manualpages/Profiling/StageLogGetActive.html#StageLogGetActive
man:+StageLogSetVisible++StageLogSetVisible++++man+manualpages/Profiling/StageLogSetVisible.html#StageLogSetVisible
man:+StageLogGetVisible++StageLogGetVisible++++man+manualpages/Profiling/StageLogGetVisible.html#StageLogGetVisible
man:+StageLogGetStage++StageLogGetStage++++man+manualpages/Profiling/StageLogGetStage.html#StageLogGetStage
man:+StageLogCreate++StageLogCreate++++man+manualpages/Profiling/StageLogCreate.html#StageLogCreate
man:+EventRegLogCreate++EventRegLogCreate++++man+manualpages/Profiling/EventRegLogCreate.html#EventRegLogCreate
man:+EventRegLogDestroy++EventRegLogDestroy++++man+manualpages/Profiling/EventRegLogDestroy.html#EventRegLogDestroy
man:+EventPerfLogCreate++EventPerfLogCreate++++man+manualpages/Profiling/EventPerfLogCreate.html#EventPerfLogCreate
man:+EventPerfLogDestroy++EventPerfLogDestroy++++man+manualpages/Profiling/EventPerfLogDestroy.html#EventPerfLogDestroy
man:+EventPerfInfoClear++EventPerfInfoClear++++man+manualpages/Profiling/EventPerfInfoClear.html#EventPerfInfoClear
man:+EventPerfInfoCopy++EventPerfInfoCopy++++man+manualpages/Profiling/EventPerfInfoCopy.html#EventPerfInfoCopy
man:+EventPerfLogEnsureSize++EventPerfLogEnsureSize++++man+manualpages/Profiling/EventPerfLogEnsureSize.html#EventPerfLogEnsureSize
man:+EventRegLogRegister++EventRegLogRegister++++man+manualpages/Profiling/EventRegLogRegister.html#EventRegLogRegister
man:+EventPerfLogActivate++EventPerfLogActivate++++man+manualpages/Profiling/EventPerfLogActivate.html#EventPerfLogActivate
man:+EventPerfLogDeactivate++EventPerfLogDeactivate++++man+manualpages/Profiling/EventPerfLogDeactivate.html#EventPerfLogDeactivate
man:+EventPerfLogActivateClass++EventPerfLogActivateClass++++man+manualpages/Profiling/EventPerfLogActivateClass.html#EventPerfLogActivateClass
man:+EventPerfLogDeactivateClass++EventPerfLogDeactivateClass++++man+manualpages/Profiling/EventPerfLogDeactivateClass.html#EventPerfLogDeactivateClass
man:+EventPerfLogSetVisible++EventPerfLogSetVisible++++man+manualpages/Profiling/EventPerfLogSetVisible.html#EventPerfLogSetVisible
man:+EventPerfLogGetVisible++EventPerfLogGetVisible++++man+manualpages/Profiling/EventPerfLogGetVisible.html#EventPerfLogGetVisible
man:+PetscMatlabEngineCreate++PetscMatlabEngineCreate++++man+manualpages/Sys/PetscMatlabEngineCreate.html#PetscMatlabEngineCreate
man:+PetscMatlabEngineDestroy++PetscMatlabEngineDestroy++++man+manualpages/Sys/PetscMatlabEngineDestroy.html#PetscMatlabEngineDestroy
man:+PetscMatlabEngineEvaluate++PetscMatlabEngineEvaluate++++man+manualpages/Sys/PetscMatlabEngineEvaluate.html#PetscMatlabEngineEvaluate
man:+PetscMatlabEngineGetOutput++PetscMatlabEngineGetOutput++++man+manualpages/Sys/PetscMatlabEngineGetOutput.html#PetscMatlabEngineGetOutput
man:+PetscMatlabEnginePrintOutput++PetscMatlabEnginePrintOutput++++man+manualpages/Sys/PetscMatlabEnginePrintOutput.html#PetscMatlabEnginePrintOutput
man:+PetscMatlabEnginePut++PetscMatlabEnginePut++++man+manualpages/Sys/PetscMatlabEnginePut.html#PetscMatlabEnginePut
man:+PetscMatlabEngineGet++PetscMatlabEngineGet++++man+manualpages/Sys/PetscMatlabEngineGet.html#PetscMatlabEngineGet
man:+PETSC_MATLAB_ENGINE_++PETSC_MATLAB_ENGINE_++++man+manualpages/Sys/PETSC_MATLAB_ENGINE_.html#PETSC_MATLAB_ENGINE_
man:+PetscMatlabEnginePutArray++PetscMatlabEnginePutArray++++man+manualpages/Sys/PetscMatlabEnginePutArray.html#PetscMatlabEnginePutArray
man:+PetscMatlabEngineGetArray++PetscMatlabEngineGetArray++++man+manualpages/Sys/PetscMatlabEngineGetArray.html#PetscMatlabEngineGetArray
man:+PetscMatlabEngine++PetscMatlabEngine++++man+manualpages/Sys/PetscMatlabEngine.html#PetscMatlabEngine
man:+PETSC_MATLAB_ENGINE_WORLD++PETSC_MATLAB_ENGINE_WORLD++++man+manualpages/Sys/PETSC_MATLAB_ENGINE_WORLD.html#PETSC_MATLAB_ENGINE_WORLD
man:+PETSC_MATLAB_ENGINE_SELF++PETSC_MATLAB_ENGINE_SELF++++man+manualpages/Sys/PETSC_MATLAB_ENGINE_SELF.html#PETSC_MATLAB_ENGINE_SELF
man:+PetscBagRegisterEnum++PetscBagRegisterEnum++++man+manualpages/Sys/PetscBagRegisterEnum.html#PetscBagRegisterEnum
man:+PetscBagRegisterInt++PetscBagRegisterInt++++man+manualpages/Sys/PetscBagRegisterInt.html#PetscBagRegisterInt
man:+PetscBagRegisterString++PetscBagRegisterString++++man+manualpages/Sys/PetscBagRegisterString.html#PetscBagRegisterString
man:+PetscBagRegisterReal++PetscBagRegisterReal++++man+manualpages/Sys/PetscBagRegisterReal.html#PetscBagRegisterReal
man:+PetscBagRegisterScalar++PetscBagRegisterScalar++++man+manualpages/Sys/PetscBagRegisterScalar.html#PetscBagRegisterScalar
man:+PetscBagRegisterTruth++PetscBagRegisterTruth++++man+manualpages/Sys/PetscBagRegisterTruth.html#PetscBagRegisterTruth
man:+PetscBagDestroy++PetscBagDestroy++++man+manualpages/Sys/PetscBagDestroy.html#PetscBagDestroy
man:+PetscBagSetFromOptions++PetscBagSetFromOptions++++man+manualpages/Sys/PetscBagSetFromOptions.html#PetscBagSetFromOptions
man:+PetscBagView++PetscBagView++++man+manualpages/Sys/PetscBagView.html#PetscBagView
man:+PetscBagLoad++PetscBagLoad++++man+manualpages/Sys/PetscBagLoad.html#PetscBagLoad
man:+PetscBagCreate++PetscBagCreate++++man+manualpages/Sys/PetscBagCreate.html#PetscBagCreate
man:+PetscBagSetName++PetscBagSetName++++man+manualpages/Sys/PetscBagSetName.html#PetscBagSetName
man:+PetscBagGetName++PetscBagGetName++++man+manualpages/Sys/PetscBagGetName.html#PetscBagGetName
man:+PetscBagGetData++PetscBagGetData++++man+manualpages/Sys/PetscBagGetData.html#PetscBagGetData
man:+PetscInfoAllow++PetscInfoAllow++++man+manualpages/Profiling/PetscInfoAllow.html#PetscInfoAllow
man:+PetscInfoDeactivateClass++PetscInfoDeactivateClass++++man+manualpages/Profiling/PetscInfoDeactivateClass.html#PetscInfoDeactivateClass
man:+PetscInfoActivateClass++PetscInfoActivateClass++++man+manualpages/Profiling/PetscInfoActivateClass.html#PetscInfoActivateClass
man:+PetscInfo++PetscInfo++++man+manualpages/Profiling/PetscInfo.html#PetscInfo
man:+Vec++Vec++++man+manualpages/Vec/Vec.html#Vec
man:+VecScatter++VecScatter++++man+manualpages/Vec/VecScatter.html#VecScatter
man:+VecType++VecType++++man+manualpages/Vec/VecType.html#VecType
man:+NormType++NormType++++man+manualpages/Vec/NormType.html#NormType
man:+NORM_1++NORM_1++++man+manualpages/Vec/NORM_1.html#NORM_1
man:+NORM_2++NORM_2++++man+manualpages/Vec/NORM_2.html#NORM_2
man:+NORM_FROBENIUS++NORM_FROBENIUS++++man+manualpages/Vec/NORM_FROBENIUS.html#NORM_FROBENIUS
man:+NORM_INFINITY++NORM_INFINITY++++man+manualpages/Vec/NORM_INFINITY.html#NORM_INFINITY
man:+NORM_1_AND_2++NORM_1_AND_2++++man+manualpages/Vec/NORM_1_AND_2.html#NORM_1_AND_2
man:+NORM_MAX++NORM_MAX++++man+manualpages/Vec/NORM_MAX.html#NORM_MAX
man:+VecSetValue++VecSetValue++++man+manualpages/Vec/VecSetValue.html#VecSetValue
man:+VecRegisterDynamic++VecRegisterDynamic++++man+manualpages/Vec/VecRegisterDynamic.html#VecRegisterDynamic
man:+VecSetValueLocal++VecSetValueLocal++++man+manualpages/Vec/VecSetValueLocal.html#VecSetValueLocal
man:+Vecs++Vecs++++man+manualpages/Vec/Vecs.html#Vecs
man:+VecStrideScale++VecStrideScale++++man+manualpages/Vec/VecStrideScale.html#VecStrideScale
man:+VecStrideNorm++VecStrideNorm++++man+manualpages/Vec/VecStrideNorm.html#VecStrideNorm
man:+VecStrideMax++VecStrideMax++++man+manualpages/Vec/VecStrideMax.html#VecStrideMax
man:+VecStrideMin++VecStrideMin++++man+manualpages/Vec/VecStrideMin.html#VecStrideMin
man:+VecStrideScaleAll++VecStrideScaleAll++++man+manualpages/Vec/VecStrideScaleAll.html#VecStrideScaleAll
man:+VecStrideNormAll++VecStrideNormAll++++man+manualpages/Vec/VecStrideNormAll.html#VecStrideNormAll
man:+VecStrideMaxAll++VecStrideMaxAll++++man+manualpages/Vec/VecStrideMaxAll.html#VecStrideMaxAll
man:+VecStrideMinAll++VecStrideMinAll++++man+manualpages/Vec/VecStrideMinAll.html#VecStrideMinAll
man:+VecStrideGatherAll++VecStrideGatherAll++++man+manualpages/Vec/VecStrideGatherAll.html#VecStrideGatherAll
man:+VecStrideScatterAll++VecStrideScatterAll++++man+manualpages/Vec/VecStrideScatterAll.html#VecStrideScatterAll
man:+VecStrideGather++VecStrideGather++++man+manualpages/Vec/VecStrideGather.html#VecStrideGather
man:+VecStrideScatter++VecStrideScatter++++man+manualpages/Vec/VecStrideScatter.html#VecStrideScatter
man:+VecSqrt++VecSqrt++++man+manualpages/Vec/VecSqrt.html#VecSqrt
man:+VecSum++VecSum++++man+manualpages/Vec/VecSum.html#VecSum
man:+VecShift++VecShift++++man+manualpages/Vec/VecShift.html#VecShift
man:+VecAbs++VecAbs++++man+manualpages/Vec/VecAbs.html#VecAbs
man:+VecPermute++VecPermute++++man+manualpages/Vec/VecPermute.html#VecPermute
man:+VecEqual++VecEqual++++man+manualpages/Vec/VecEqual.html#VecEqual
man:+VecScatterCreate++VecScatterCreate++++man+manualpages/Vec/VecScatterCreate.html#VecScatterCreate
man:+VecScatterGetMerged++VecScatterGetMerged++++man+manualpages/Vec/VecScatterGetMerged.html#VecScatterGetMerged
man:+VecScatterBegin++VecScatterBegin++++man+manualpages/Vec/VecScatterBegin.html#VecScatterBegin
man:+VecScatterEnd++VecScatterEnd++++man+manualpages/Vec/VecScatterEnd.html#VecScatterEnd
man:+VecScatterDestroy++VecScatterDestroy++++man+manualpages/Vec/VecScatterDestroy.html#VecScatterDestroy
man:+VecScatterCopy++VecScatterCopy++++man+manualpages/Vec/VecScatterCopy.html#VecScatterCopy
man:+VecScatterView++VecScatterView++++man+manualpages/Vec/VecScatterView.html#VecScatterView
man:+VecScatterRemap++VecScatterRemap++++man+manualpages/Vec/VecScatterRemap.html#VecScatterRemap
man:+VecContourScale++VecContourScale++++man+manualpages/Vec/VecContourScale.html#VecContourScale
man:+VecLoad++VecLoad++++man+manualpages/Vec/VecLoad.html#VecLoad
man:+VecDotBegin++VecDotBegin++++man+manualpages/Vec/VecDotBegin.html#VecDotBegin
man:+VecDotEnd++VecDotEnd++++man+manualpages/Vec/VecDotEnd.html#VecDotEnd
man:+VecTDotBegin++VecTDotBegin++++man+manualpages/Vec/VecTDotBegin.html#VecTDotBegin
man:+VecTDotEnd++VecTDotEnd++++man+manualpages/Vec/VecTDotEnd.html#VecTDotEnd
man:+VecNormBegin++VecNormBegin++++man+manualpages/Vec/VecNormBegin.html#VecNormBegin
man:+VecNormEnd++VecNormEnd++++man+manualpages/Vec/VecNormEnd.html#VecNormEnd
man:+VecMDotBegin++VecMDotBegin++++man+manualpages/Vec/VecMDotBegin.html#VecMDotBegin
man:+VecMDotEnd++VecMDotEnd++++man+manualpages/Vec/VecMDotEnd.html#VecMDotEnd
man:+VecMTDotBegin++VecMTDotBegin++++man+manualpages/Vec/VecMTDotBegin.html#VecMTDotBegin
man:+VecMTDotEnd++VecMTDotEnd++++man+manualpages/Vec/VecMTDotEnd.html#VecMTDotEnd
man:+VecScatterCreateToAll++VecScatterCreateToAll++++man+manualpages/Vec/VecScatterCreateToAll.html#VecScatterCreateToAll
man:+VecScatterCreateToZero++VecScatterCreateToZero++++man+manualpages/Vec/VecScatterCreateToZero.html#VecScatterCreateToZero
man:+VecStashGetInfo++VecStashGetInfo++++man+manualpages/Vec/VecStashGetInfo.html#VecStashGetInfo
man:+VecSetLocalToGlobalMapping++VecSetLocalToGlobalMapping++++man+manualpages/Vec/VecSetLocalToGlobalMapping.html#VecSetLocalToGlobalMapping
man:+VecSetLocalToGlobalMappingBlock++VecSetLocalToGlobalMappingBlock++++man+manualpages/Vec/VecSetLocalToGlobalMappingBlock.html#VecSetLocalToGlobalMappingBlock
man:+VecAssemblyBegin++VecAssemblyBegin++++man+manualpages/Vec/VecAssemblyBegin.html#VecAssemblyBegin
man:+VecAssemblyEnd++VecAssemblyEnd++++man+manualpages/Vec/VecAssemblyEnd.html#VecAssemblyEnd
man:+VecPointwiseMax++VecPointwiseMax++++man+manualpages/Vec/VecPointwiseMax.html#VecPointwiseMax
man:+VecPointwiseMin++VecPointwiseMin++++man+manualpages/Vec/VecPointwiseMin.html#VecPointwiseMin
man:+VecPointwiseMaxAbs++VecPointwiseMaxAbs++++man+manualpages/Vec/VecPointwiseMaxAbs.html#VecPointwiseMaxAbs
man:+VecPointwiseDivide++VecPointwiseDivide++++man+manualpages/Vec/VecPointwiseDivide.html#VecPointwiseDivide
man:+VecDuplicate++VecDuplicate++++man+manualpages/Vec/VecDuplicate.html#VecDuplicate
man:+VecDestroy++VecDestroy++++man+manualpages/Vec/VecDestroy.html#VecDestroy
man:+VecDuplicateVecs++VecDuplicateVecs++++man+manualpages/Vec/VecDuplicateVecs.html#VecDuplicateVecs
man:+VecDestroyVecs++VecDestroyVecs++++man+manualpages/Vec/VecDestroyVecs.html#VecDestroyVecs
man:+VecViewFromOptions++VecViewFromOptions++++man+manualpages/Vec/VecViewFromOptions.html#VecViewFromOptions
man:+VecView++VecView++++man+manualpages/Vec/VecView.html#VecView
man:+VecGetSize++VecGetSize++++man+manualpages/Vec/VecGetSize.html#VecGetSize
man:+VecGetLocalSize++VecGetLocalSize++++man+manualpages/Vec/VecGetLocalSize.html#VecGetLocalSize
man:+VecGetOwnershipRange++VecGetOwnershipRange++++man+manualpages/Vec/VecGetOwnershipRange.html#VecGetOwnershipRange
man:+VecSetOption++VecSetOption++++man+manualpages/Vec/VecSetOption.html#VecSetOption
man:+VecResetArray++VecResetArray++++man+manualpages/Vec/VecResetArray.html#VecResetArray
man:+VecLoadIntoVector++VecLoadIntoVector++++man+manualpages/Vec/VecLoadIntoVector.html#VecLoadIntoVector
man:+VecReciprocal++VecReciprocal++++man+manualpages/Vec/VecReciprocal.html#VecReciprocal
man:+VecStashSetInitialSize++VecStashSetInitialSize++++man+manualpages/Vec/VecStashSetInitialSize.html#VecStashSetInitialSize
man:+VecConjugate++VecConjugate++++man+manualpages/Vec/VecConjugate.html#VecConjugate
man:+VecPointwiseMult++VecPointwiseMult++++man+manualpages/Vec/VecPointwiseMult.html#VecPointwiseMult
man:+VecSetRandom++VecSetRandom++++man+manualpages/Vec/VecSetRandom.html#VecSetRandom
man:+VecZeroEntries++VecZeroEntries++++man+manualpages/Vec/VecZeroEntries.html#VecZeroEntries
man:+VecSetFromOptions++VecSetFromOptions++++man+manualpages/Vec/VecSetFromOptions.html#VecSetFromOptions
man:+VecSetSizes++VecSetSizes++++man+manualpages/Vec/VecSetSizes.html#VecSetSizes
man:+VecSetBlockSize++VecSetBlockSize++++man+manualpages/Vec/VecSetBlockSize.html#VecSetBlockSize
man:+VecGetBlockSize++VecGetBlockSize++++man+manualpages/Vec/VecGetBlockSize.html#VecGetBlockSize
man:+VecValid++VecValid++++man+manualpages/Vec/VecValid.html#VecValid
man:+VecSetOptionsPrefix++VecSetOptionsPrefix++++man+manualpages/Vec/VecSetOptionsPrefix.html#VecSetOptionsPrefix
man:+VecAppendOptionsPrefix++VecAppendOptionsPrefix++++man+manualpages/Vec/VecAppendOptionsPrefix.html#VecAppendOptionsPrefix
man:+VecGetOptionsPrefix++VecGetOptionsPrefix++++man+manualpages/Vec/VecGetOptionsPrefix.html#VecGetOptionsPrefix
man:+VecSetUp++VecSetUp++++man+manualpages/Vec/VecSetUp.html#VecSetUp
man:+VecCopy++VecCopy++++man+manualpages/Vec/VecCopy.html#VecCopy
man:+VecSwap++VecSwap++++man+manualpages/Vec/VecSwap.html#VecSwap
man:+VecStashView++VecStashView++++man+manualpages/Vec/VecStashView.html#VecStashView
man:+VecCreate++VecCreate++++man+manualpages/Vec/VecCreate.html#VecCreate
man:+VecSetType++VecSetType++++man+manualpages/Vec/VecSetType.html#VecSetType
man:+VecGetType++VecGetType++++man+manualpages/Vec/VecGetType.html#VecGetType
man:+VecRegister++VecRegister++++man+manualpages/Vec/VecRegister.html#VecRegister
man:+VecRegisterDestroy++VecRegisterDestroy++++man+manualpages/Vec/VecRegisterDestroy.html#VecRegisterDestroy
man:+VecRegisterAll++VecRegisterAll++++man+manualpages/Vec/VecRegisterAll.html#VecRegisterAll
man:+VecInitializePackage++VecInitializePackage++++man+manualpages/Vec/VecInitializePackage.html#VecInitializePackage
man:+VecMaxPointwiseDivide++VecMaxPointwiseDivide++++man+manualpages/Vec/VecMaxPointwiseDivide.html#VecMaxPointwiseDivide
man:+VecDot++VecDot++++man+manualpages/Vec/VecDot.html#VecDot
man:+VecNorm++VecNorm++++man+manualpages/Vec/VecNorm.html#VecNorm
man:+VecNormalize++VecNormalize++++man+manualpages/Vec/VecNormalize.html#VecNormalize
man:+VecMax++VecMax++++man+manualpages/Vec/VecMax.html#VecMax
man:+VecMin++VecMin++++man+manualpages/Vec/VecMin.html#VecMin
man:+VecTDot++VecTDot++++man+manualpages/Vec/VecTDot.html#VecTDot
man:+VecScale++VecScale++++man+manualpages/Vec/VecScale.html#VecScale
man:+VecSet++VecSet++++man+manualpages/Vec/VecSet.html#VecSet
man:+VecAXPY++VecAXPY++++man+manualpages/Vec/VecAXPY.html#VecAXPY
man:+VecAXPBY++VecAXPBY++++man+manualpages/Vec/VecAXPBY.html#VecAXPBY
man:+VecAYPX++VecAYPX++++man+manualpages/Vec/VecAYPX.html#VecAYPX
man:+VecWAXPY++VecWAXPY++++man+manualpages/Vec/VecWAXPY.html#VecWAXPY
man:+VecSetValues++VecSetValues++++man+manualpages/Vec/VecSetValues.html#VecSetValues
man:+VecGetValues++VecGetValues++++man+manualpages/Vec/VecGetValues.html#VecGetValues
man:+VecSetValuesBlocked++VecSetValuesBlocked++++man+manualpages/Vec/VecSetValuesBlocked.html#VecSetValuesBlocked
man:+VecSetValuesLocal++VecSetValuesLocal++++man+manualpages/Vec/VecSetValuesLocal.html#VecSetValuesLocal
man:+VecSetValuesBlockedLocal++VecSetValuesBlockedLocal++++man+manualpages/Vec/VecSetValuesBlockedLocal.html#VecSetValuesBlockedLocal
man:+VecMTDot++VecMTDot++++man+manualpages/Vec/VecMTDot.html#VecMTDot
man:+VecMDot++VecMDot++++man+manualpages/Vec/VecMDot.html#VecMDot
man:+VecMAXPY++VecMAXPY++++man+manualpages/Vec/VecMAXPY.html#VecMAXPY
man:+VecGetArray++VecGetArray++++man+manualpages/Vec/VecGetArray.html#VecGetArray
man:+VecGetArrays++VecGetArrays++++man+manualpages/Vec/VecGetArrays.html#VecGetArrays
man:+VecRestoreArrays++VecRestoreArrays++++man+manualpages/Vec/VecRestoreArrays.html#VecRestoreArrays
man:+VecRestoreArray++VecRestoreArray++++man+manualpages/Vec/VecRestoreArray.html#VecRestoreArray
man:+VecPlaceArray++VecPlaceArray++++man+manualpages/Vec/VecPlaceArray.html#VecPlaceArray
man:+VecReplaceArray++VecReplaceArray++++man+manualpages/Vec/VecReplaceArray.html#VecReplaceArray
man:+VecDuplicateVecsF90++VecDuplicateVecsF90++++man+manualpages/Vec/VecDuplicateVecsF90.html#VecDuplicateVecsF90
man:+VecRestoreArrayF90++VecRestoreArrayF90++++man+manualpages/Vec/VecRestoreArrayF90.html#VecRestoreArrayF90
man:+VecDestroyVecsF90++VecDestroyVecsF90++++man+manualpages/Vec/VecDestroyVecsF90.html#VecDestroyVecsF90
man:+VecGetArrayF90++VecGetArrayF90++++man+manualpages/Vec/VecGetArrayF90.html#VecGetArrayF90
man:+VecGetArray2d++VecGetArray2d++++man+manualpages/Vec/VecGetArray2d.html#VecGetArray2d
man:+VecRestoreArray2d++VecRestoreArray2d++++man+manualpages/Vec/VecRestoreArray2d.html#VecRestoreArray2d
man:+VecGetArray1d++VecGetArray1d++++man+manualpages/Vec/VecGetArray1d.html#VecGetArray1d
man:+VecRestoreArray1d++VecRestoreArray1d++++man+manualpages/Vec/VecRestoreArray1d.html#VecRestoreArray1d
man:+VecGetArray3d++VecGetArray3d++++man+manualpages/Vec/VecGetArray3d.html#VecGetArray3d
man:+VecRestoreArray3d++VecRestoreArray3d++++man+manualpages/Vec/VecRestoreArray3d.html#VecRestoreArray3d
man:+VecGetArray4d++VecGetArray4d++++man+manualpages/Vec/VecGetArray4d.html#VecGetArray4d
man:+VecRestoreArray4d++VecRestoreArray4d++++man+manualpages/Vec/VecRestoreArray4d.html#VecRestoreArray4d
man:+VecCreateSeqWithArray++VecCreateSeqWithArray++++man+manualpages/Vec/VecCreateSeqWithArray.html#VecCreateSeqWithArray
man:+VECSEQ++VECSEQ++++man+manualpages/Vec/VECSEQ.html#VECSEQ
man:+VecCreateSeq++VecCreateSeq++++man+manualpages/Vec/VecCreateSeq.html#VecCreateSeq
man:+VECMPI++VECMPI++++man+manualpages/Vec/VECMPI.html#VECMPI
man:+VecCreateMPIWithArray++VecCreateMPIWithArray++++man+manualpages/Vec/VecCreateMPIWithArray.html#VecCreateMPIWithArray
man:+VecGhostGetLocalForm++VecGhostGetLocalForm++++man+manualpages/Vec/VecGhostGetLocalForm.html#VecGhostGetLocalForm
man:+VecGhostRestoreLocalForm++VecGhostRestoreLocalForm++++man+manualpages/Vec/VecGhostRestoreLocalForm.html#VecGhostRestoreLocalForm
man:+VecGhostUpdateBegin++VecGhostUpdateBegin++++man+manualpages/Vec/VecGhostUpdateBegin.html#VecGhostUpdateBegin
man:+VecGhostUpdateEnd++VecGhostUpdateEnd++++man+manualpages/Vec/VecGhostUpdateEnd.html#VecGhostUpdateEnd
man:+VecCreateGhostWithArray++VecCreateGhostWithArray++++man+manualpages/Vec/VecCreateGhostWithArray.html#VecCreateGhostWithArray
man:+VecCreateGhost++VecCreateGhost++++man+manualpages/Vec/VecCreateGhost.html#VecCreateGhost
man:+VecCreateGhostBlockWithArray++VecCreateGhostBlockWithArray++++man+manualpages/Vec/VecCreateGhostBlockWithArray.html#VecCreateGhostBlockWithArray
man:+VecCreateGhostBlock++VecCreateGhostBlock++++man+manualpages/Vec/VecCreateGhostBlock.html#VecCreateGhostBlock
man:+PetscMapInitialize++PetscMapInitialize++++man+manualpages/Vec/PetscMapInitialize.html#PetscMapInitialize
man:+PetscMapSetLocalSize++PetscMapSetLocalSize++++man+manualpages/Vec/PetscMapSetLocalSize.html#PetscMapSetLocalSize
man:+PetscMapGetLocalSize++PetscMapGetLocalSize++++man+manualpages/Vec/PetscMapGetLocalSize.html#PetscMapGetLocalSize
man:+PetscMapSetSize++PetscMapSetSize++++man+manualpages/Vec/PetscMapSetSize.html#PetscMapSetSize
man:+PetscMapGetSize++PetscMapGetSize++++man+manualpages/Vec/PetscMapGetSize.html#PetscMapGetSize
man:+PetscMapSetBlockSize++PetscMapSetBlockSize++++man+manualpages/Vec/PetscMapSetBlockSize.html#PetscMapSetBlockSize
man:+PetscMapGetBlockSize++PetscMapGetBlockSize++++man+manualpages/Vec/PetscMapGetBlockSize.html#PetscMapGetBlockSize
man:+PetscMapGetLocalRange++PetscMapGetLocalRange++++man+manualpages/Vec/PetscMapGetLocalRange.html#PetscMapGetLocalRange
man:+PetscMapGetGlobalRange++PetscMapGetGlobalRange++++man+manualpages/Vec/PetscMapGetGlobalRange.html#PetscMapGetGlobalRange
man:+VecCreateMPI++VecCreateMPI++++man+manualpages/Vec/VecCreateMPI.html#VecCreateMPI
man:+VecCreateShared++VecCreateShared++++man+manualpages/Vec/VecCreateShared.html#VecCreateShared
man:+IS++IS++++man+manualpages/IS/IS.html#IS
man:+ISLocalToGlobalMapping++ISLocalToGlobalMapping++++man+manualpages/IS/ISLocalToGlobalMapping.html#ISLocalToGlobalMapping
man:+ISGlobalToLocalMappingType++ISGlobalToLocalMappingType++++man+manualpages/IS/ISGlobalToLocalMappingType.html#ISGlobalToLocalMappingType
man:+ISColoringType++ISColoringType++++man+manualpages/IS/ISColoringType.html#ISColoringType
man:+ISColoring++ISColoring++++man+manualpages/IS/ISColoring.html#ISColoring
man:+ISIdentity++ISIdentity++++man+manualpages/IS/ISIdentity.html#ISIdentity
man:+ISSetIdentity++ISSetIdentity++++man+manualpages/IS/ISSetIdentity.html#ISSetIdentity
man:+ISPermutation++ISPermutation++++man+manualpages/IS/ISPermutation.html#ISPermutation
man:+ISSetPermutation++ISSetPermutation++++man+manualpages/IS/ISSetPermutation.html#ISSetPermutation
man:+ISDestroy++ISDestroy++++man+manualpages/IS/ISDestroy.html#ISDestroy
man:+ISInvertPermutation++ISInvertPermutation++++man+manualpages/IS/ISInvertPermutation.html#ISInvertPermutation
man:+ISGetSize++ISGetSize++++man+manualpages/IS/ISGetSize.html#ISGetSize
man:+ISGetLocalSize++ISGetLocalSize++++man+manualpages/IS/ISGetLocalSize.html#ISGetLocalSize
man:+ISGetIndices++ISGetIndices++++man+manualpages/IS/ISGetIndices.html#ISGetIndices
man:+ISRestoreIndices++ISRestoreIndices++++man+manualpages/IS/ISRestoreIndices.html#ISRestoreIndices
man:+ISView++ISView++++man+manualpages/IS/ISView.html#ISView
man:+ISSort++ISSort++++man+manualpages/IS/ISSort.html#ISSort
man:+ISSorted++ISSorted++++man+manualpages/IS/ISSorted.html#ISSorted
man:+ISDuplicate++ISDuplicate++++man+manualpages/IS/ISDuplicate.html#ISDuplicate
man:+ISGetIndicesF90++ISGetIndicesF90++++man+manualpages/IS/ISGetIndicesF90.html#ISGetIndicesF90
man:+ISRestoreIndicesF90++ISRestoreIndicesF90++++man+manualpages/IS/ISRestoreIndicesF90.html#ISRestoreIndicesF90
man:+ISBlockGetIndicesF90++ISBlockGetIndicesF90++++man+manualpages/IS/ISBlockGetIndicesF90.html#ISBlockGetIndicesF90
man:+ISBlockRestoreIndicesF90++ISBlockRestoreIndicesF90++++man+manualpages/IS/ISBlockRestoreIndicesF90.html#ISBlockRestoreIndicesF90
man:+ISCreateGeneral++ISCreateGeneral++++man+manualpages/IS/ISCreateGeneral.html#ISCreateGeneral
man:+ISCreateGeneralWithArray++ISCreateGeneralWithArray++++man+manualpages/IS/ISCreateGeneralWithArray.html#ISCreateGeneralWithArray
man:+ISStrideToGeneral++ISStrideToGeneral++++man+manualpages/IS/ISStrideToGeneral.html#ISStrideToGeneral
man:+ISStrideGetInfo++ISStrideGetInfo++++man+manualpages/IS/ISStrideGetInfo.html#ISStrideGetInfo
man:+ISStride++ISStride++++man+manualpages/IS/ISStride.html#ISStride
man:+ISCreateStride++ISCreateStride++++man+manualpages/IS/ISCreateStride.html#ISCreateStride
man:+ISCreateBlock++ISCreateBlock++++man+manualpages/IS/ISCreateBlock.html#ISCreateBlock
man:+ISBlockGetIndices++ISBlockGetIndices++++man+manualpages/IS/ISBlockGetIndices.html#ISBlockGetIndices
man:+ISBlockRestoreIndices++ISBlockRestoreIndices++++man+manualpages/IS/ISBlockRestoreIndices.html#ISBlockRestoreIndices
man:+ISBlockGetBlockSize++ISBlockGetBlockSize++++man+manualpages/IS/ISBlockGetBlockSize.html#ISBlockGetBlockSize
man:+ISBlock++ISBlock++++man+manualpages/IS/ISBlock.html#ISBlock
man:+ISBlockGetSize++ISBlockGetSize++++man+manualpages/IS/ISBlockGetSize.html#ISBlockGetSize
man:+ISEqual++ISEqual++++man+manualpages/IS/ISEqual.html#ISEqual
man:+ISColoringDestroy++ISColoringDestroy++++man+manualpages/IS/ISColoringDestroy.html#ISColoringDestroy
man:+ISColoringView++ISColoringView++++man+manualpages/IS/ISColoringView.html#ISColoringView
man:+ISColoringGetIS++ISColoringGetIS++++man+manualpages/IS/ISColoringGetIS.html#ISColoringGetIS
man:+ISColoringRestoreIS++ISColoringRestoreIS++++man+manualpages/IS/ISColoringRestoreIS.html#ISColoringRestoreIS
man:+ISColoringCreate++ISColoringCreate++++man+manualpages/IS/ISColoringCreate.html#ISColoringCreate
man:+ISPartitioningToNumbering++ISPartitioningToNumbering++++man+manualpages/IS/ISPartitioningToNumbering.html#ISPartitioningToNumbering
man:+ISPartitioningCount++ISPartitioningCount++++man+manualpages/IS/ISPartitioningCount.html#ISPartitioningCount
man:+ISAllGather++ISAllGather++++man+manualpages/IS/ISAllGather.html#ISAllGather
man:+ISAllGatherIndices++ISAllGatherIndices++++man+manualpages/IS/ISAllGatherIndices.html#ISAllGatherIndices
man:+ISAllGatherColors++ISAllGatherColors++++man+manualpages/IS/ISAllGatherColors.html#ISAllGatherColors
man:+ISLocalToGlobalMappingGetSize++ISLocalToGlobalMappingGetSize++++man+manualpages/IS/ISLocalToGlobalMappingGetSize.html#ISLocalToGlobalMappingGetSize
man:+ISLocalToGlobalMappingView++ISLocalToGlobalMappingView++++man+manualpages/IS/ISLocalToGlobalMappingView.html#ISLocalToGlobalMappingView
man:+ISLocalToGlobalMappingCreateIS++ISLocalToGlobalMappingCreateIS++++man+manualpages/IS/ISLocalToGlobalMappingCreateIS.html#ISLocalToGlobalMappingCreateIS
man:+ISLocalToGlobalMappingCreate++ISLocalToGlobalMappingCreate++++man+manualpages/IS/ISLocalToGlobalMappingCreate.html#ISLocalToGlobalMappingCreate
man:+ISLocalToGlobalMappingCreateNC++ISLocalToGlobalMappingCreateNC++++man+manualpages/IS/ISLocalToGlobalMappingCreateNC.html#ISLocalToGlobalMappingCreateNC
man:+ISLocalToGlobalMappingBlock++ISLocalToGlobalMappingBlock++++man+manualpages/IS/ISLocalToGlobalMappingBlock.html#ISLocalToGlobalMappingBlock
man:+ISLocalToGlobalMappingDestroy++ISLocalToGlobalMappingDestroy++++man+manualpages/IS/ISLocalToGlobalMappingDestroy.html#ISLocalToGlobalMappingDestroy
man:+ISLocalToGlobalMappingApplyIS++ISLocalToGlobalMappingApplyIS++++man+manualpages/IS/ISLocalToGlobalMappingApplyIS.html#ISLocalToGlobalMappingApplyIS
man:+ISLocalToGlobalMappingApply++ISLocalToGlobalMappingApply++++man+manualpages/IS/ISLocalToGlobalMappingApply.html#ISLocalToGlobalMappingApply
man:+ISGlobalToLocalMappingApply++ISGlobalToLocalMappingApply++++man+manualpages/IS/ISGlobalToLocalMappingApply.html#ISGlobalToLocalMappingApply
man:+ISLocalToGlobalMappingGetInfo++ISLocalToGlobalMappingGetInfo++++man+manualpages/IS/ISLocalToGlobalMappingGetInfo.html#ISLocalToGlobalMappingGetInfo
man:+ISLocalToGlobalMappingRestoreInfo++ISLocalToGlobalMappingRestoreInfo++++man+manualpages/IS/ISLocalToGlobalMappingRestoreInfo.html#ISLocalToGlobalMappingRestoreInfo
man:+ISDifference++ISDifference++++man+manualpages/IS/ISDifference.html#ISDifference
man:+ISSum++ISSum++++man+manualpages/IS/ISSum.html#ISSum
man:+ISExpand++ISExpand++++man+manualpages/IS/ISExpand.html#ISExpand
man:+ISCompressIndicesGeneral++ISCompressIndicesGeneral++++man+manualpages/IS/ISCompressIndicesGeneral.html#ISCompressIndicesGeneral
man:+PFType++PFType++++man+manualpages/PF/PFType.html#PFType
man:+PF++PF++++man+manualpages/PF/PF.html#PF
man:+PFSet++PFSet++++man+manualpages/PF/PFSet.html#PFSet
man:+PFDestroy++PFDestroy++++man+manualpages/PF/PFDestroy.html#PFDestroy
man:+PFCreate++PFCreate++++man+manualpages/PF/PFCreate.html#PFCreate
man:+PFApplyVec++PFApplyVec++++man+manualpages/PF/PFApplyVec.html#PFApplyVec
man:+PFApply++PFApply++++man+manualpages/PF/PFApply.html#PFApply
man:+PFView++PFView++++man+manualpages/PF/PFView.html#PFView
man:+PFRegisterDynamic++PFRegisterDynamic++++man+manualpages/PF/PFRegisterDynamic.html#PFRegisterDynamic
man:+PFGetType++PFGetType++++man+manualpages/PF/PFGetType.html#PFGetType
man:+PFSetType++PFSetType++++man+manualpages/PF/PFSetType.html#PFSetType
man:+PFSetFromOptions++PFSetFromOptions++++man+manualpages/PF/PFSetFromOptions.html#PFSetFromOptions
man:+PFRegisterAll++PFRegisterAll++++man+manualpages/PF/PFRegisterAll.html#PFRegisterAll
man:+MatLUCheckShift_inline++MatLUCheckShift_inline++++man+manualpages/Mat/MatLUCheckShift_inline.html#MatLUCheckShift_inline
man:+MatCholeskyCheckShift_inline++MatCholeskyCheckShift_inline++++man+manualpages/Mat/MatCholeskyCheckShift_inline.html#MatCholeskyCheckShift_inline
man:+Mat++Mat++++man+manualpages/Mat/Mat.html#Mat
man:+MatType++MatType++++man+manualpages/Mat/MatType.html#MatType
man:+MatReuse++MatReuse++++man+manualpages/Mat/MatReuse.html#MatReuse
man:+MatRegisterDynamic++MatRegisterDynamic++++man+manualpages/Mat/MatRegisterDynamic.html#MatRegisterDynamic
man:+MatStencil++MatStencil++++man+manualpages/Mat/MatStencil.html#MatStencil
man:+MatAssemblyType++MatAssemblyType++++man+manualpages/Mat/MatAssemblyType.html#MatAssemblyType
man:+MatSetValue++MatSetValue++++man+manualpages/Mat/MatSetValue.html#MatSetValue
man:+MatOption++MatOption++++man+manualpages/Mat/MatOption.html#MatOption
man:+MatDuplicateOption++MatDuplicateOption++++man+manualpages/Mat/MatDuplicateOption.html#MatDuplicateOption
man:+MatStructure++MatStructure++++man+manualpages/Mat/MatStructure.html#MatStructure
man:+MatInfo++MatInfo++++man+manualpages/Mat/MatInfo.html#MatInfo
man:+MatInfoType++MatInfoType++++man+manualpages/Mat/MatInfoType.html#MatInfoType
man:+MatPreallocateInitialize++MatPreallocateInitialize++++man+manualpages/Mat/MatPreallocateInitialize.html#MatPreallocateInitialize
man:+MatPreallocateSymmetricInitialize++MatPreallocateSymmetricInitialize++++man+manualpages/Mat/MatPreallocateSymmetricInitialize.html#MatPreallocateSymmetricInitialize
man:+MatPreallocateSetLocal++MatPreallocateSetLocal++++man+manualpages/Mat/MatPreallocateSetLocal.html#MatPreallocateSetLocal
man:+MatPreallocateSymmetricSetLocal++MatPreallocateSymmetricSetLocal++++man+manualpages/Mat/MatPreallocateSymmetricSetLocal.html#MatPreallocateSymmetricSetLocal
man:+MatPreallocateSet++MatPreallocateSet++++man+manualpages/Mat/MatPreallocateSet.html#MatPreallocateSet
man:+MatPreallocateSymmetricSet++MatPreallocateSymmetricSet++++man+manualpages/Mat/MatPreallocateSymmetricSet.html#MatPreallocateSymmetricSet
man:+MatPreallocateFinalize++MatPreallocateFinalize++++man+manualpages/Mat/MatPreallocateFinalize.html#MatPreallocateFinalize
man:+MatOrderingType++MatOrderingType++++man+manualpages/Mat/MatOrderingType.html#MatOrderingType
man:+MatOrderingRegisterDynamic++MatOrderingRegisterDynamic++++man+manualpages/Mat/MatOrderingRegisterDynamic.html#MatOrderingRegisterDynamic
man:+MatFactorInfo++MatFactorInfo++++man+manualpages/Mat/MatFactorInfo.html#MatFactorInfo
man:+MatSORType++MatSORType++++man+manualpages/Mat/MatSORType.html#MatSORType
man:+MatColoringType++MatColoringType++++man+manualpages/Mat/MatColoringType.html#MatColoringType
man:+MatColoringRegisterDynamic++MatColoringRegisterDynamic++++man+manualpages/Mat/MatColoringRegisterDynamic.html#MatColoringRegisterDynamic
man:+MatFDColoring++MatFDColoring++++man+manualpages/Mat/MatFDColoring.html#MatFDColoring
man:+MatPartitioning++MatPartitioning++++man+manualpages/Mat/MatPartitioning.html#MatPartitioning
man:+MatPartitioningType++MatPartitioningType++++man+manualpages/Mat/MatPartitioningType.html#MatPartitioningType
man:+MatPartitioningRegisterDynamic++MatPartitioningRegisterDynamic++++man+manualpages/Mat/MatPartitioningRegisterDynamic.html#MatPartitioningRegisterDynamic
man:+MatNullSpace++MatNullSpace++++man+manualpages/Mat/MatNullSpace.html#MatNullSpace
man:+MatRealPart++MatRealPart++++man+manualpages/Mat/MatRealPart.html#MatRealPart
man:+MatImaginaryPart++MatImaginaryPart++++man+manualpages/Mat/MatImaginaryPart.html#MatImaginaryPart
man:+MatGetRow++MatGetRow++++man+manualpages/Mat/MatGetRow.html#MatGetRow
man:+MatConjugate++MatConjugate++++man+manualpages/Mat/MatConjugate.html#MatConjugate
man:+MatRestoreRow++MatRestoreRow++++man+manualpages/Mat/MatRestoreRow.html#MatRestoreRow
man:+MatGetRowUpperTriangular++MatGetRowUpperTriangular++++man+manualpages/Mat/MatGetRowUpperTriangular.html#MatGetRowUpperTriangular
man:+MatRestoreRowUpperTriangular++MatRestoreRowUpperTriangular++++man+manualpages/Mat/MatRestoreRowUpperTriangular.html#MatRestoreRowUpperTriangular
man:+MatSetOptionsPrefix++MatSetOptionsPrefix++++man+manualpages/Mat/MatSetOptionsPrefix.html#MatSetOptionsPrefix
man:+MatAppendOptionsPrefix++MatAppendOptionsPrefix++++man+manualpages/Mat/MatAppendOptionsPrefix.html#MatAppendOptionsPrefix
man:+MatGetOptionsPrefix++MatGetOptionsPrefix++++man+manualpages/Mat/MatGetOptionsPrefix.html#MatGetOptionsPrefix
man:+MatSetUp++MatSetUp++++man+manualpages/Mat/MatSetUp.html#MatSetUp
man:+MatView++MatView++++man+manualpages/Mat/MatView.html#MatView
man:+MatScaleSystem++MatScaleSystem++++man+manualpages/Mat/MatScaleSystem.html#MatScaleSystem
man:+MatUnScaleSystem++MatUnScaleSystem++++man+manualpages/Mat/MatUnScaleSystem.html#MatUnScaleSystem
man:+MatUseScaledForm++MatUseScaledForm++++man+manualpages/Mat/MatUseScaledForm.html#MatUseScaledForm
man:+MatDestroy++MatDestroy++++man+manualpages/Mat/MatDestroy.html#MatDestroy
man:+MatValid++MatValid++++man+manualpages/Mat/MatValid.html#MatValid
man:+MatSetValues++MatSetValues++++man+manualpages/Mat/MatSetValues.html#MatSetValues
man:+MatSetValuesRowLocal++MatSetValuesRowLocal++++man+manualpages/Mat/MatSetValuesRowLocal.html#MatSetValuesRowLocal
man:+MatSetValuesRow++MatSetValuesRow++++man+manualpages/Mat/MatSetValuesRow.html#MatSetValuesRow
man:+MatSetValuesStencil++MatSetValuesStencil++++man+manualpages/Mat/MatSetValuesStencil.html#MatSetValuesStencil
man:+MatSetValuesBlockedStencil++MatSetValuesBlockedStencil++++man+manualpages/Mat/MatSetValuesBlockedStencil.html#MatSetValuesBlockedStencil
man:+MatSetStencil++MatSetStencil++++man+manualpages/Mat/MatSetStencil.html#MatSetStencil
man:+MatSetValuesBlocked++MatSetValuesBlocked++++man+manualpages/Mat/MatSetValuesBlocked.html#MatSetValuesBlocked
man:+MatGetValues++MatGetValues++++man+manualpages/Mat/MatGetValues.html#MatGetValues
man:+MatSetLocalToGlobalMapping++MatSetLocalToGlobalMapping++++man+manualpages/Mat/MatSetLocalToGlobalMapping.html#MatSetLocalToGlobalMapping
man:+MatSetLocalToGlobalMappingBlock++MatSetLocalToGlobalMappingBlock++++man+manualpages/Mat/MatSetLocalToGlobalMappingBlock.html#MatSetLocalToGlobalMappingBlock
man:+MatSetValuesLocal++MatSetValuesLocal++++man+manualpages/Mat/MatSetValuesLocal.html#MatSetValuesLocal
man:+MatSetValuesBlockedLocal++MatSetValuesBlockedLocal++++man+manualpages/Mat/MatSetValuesBlockedLocal.html#MatSetValuesBlockedLocal
man:+MatMult++MatMult++++man+manualpages/Mat/MatMult.html#MatMult
man:+MatMultTranspose++MatMultTranspose++++man+manualpages/Mat/MatMultTranspose.html#MatMultTranspose
man:+MatMultAdd++MatMultAdd++++man+manualpages/Mat/MatMultAdd.html#MatMultAdd
man:+MatMultTransposeAdd++MatMultTransposeAdd++++man+manualpages/Mat/MatMultTransposeAdd.html#MatMultTransposeAdd
man:+MatMultConstrained++MatMultConstrained++++man+manualpages/Mat/MatMultConstrained.html#MatMultConstrained
man:+MatMultTransposeConstrained++MatMultTransposeConstrained++++man+manualpages/Mat/MatMultTransposeConstrained.html#MatMultTransposeConstrained
man:+MatGetInfo++MatGetInfo++++man+manualpages/Mat/MatGetInfo.html#MatGetInfo
man:+MatILUDTFactor++MatILUDTFactor++++man+manualpages/Mat/MatILUDTFactor.html#MatILUDTFactor
man:+MatLUFactor++MatLUFactor++++man+manualpages/Mat/MatLUFactor.html#MatLUFactor
man:+MatILUFactor++MatILUFactor++++man+manualpages/Mat/MatILUFactor.html#MatILUFactor
man:+MatLUFactorSymbolic++MatLUFactorSymbolic++++man+manualpages/Mat/MatLUFactorSymbolic.html#MatLUFactorSymbolic
man:+MatLUFactorNumeric++MatLUFactorNumeric++++man+manualpages/Mat/MatLUFactorNumeric.html#MatLUFactorNumeric
man:+MatCholeskyFactor++MatCholeskyFactor++++man+manualpages/Mat/MatCholeskyFactor.html#MatCholeskyFactor
man:+MatCholeskyFactorSymbolic++MatCholeskyFactorSymbolic++++man+manualpages/Mat/MatCholeskyFactorSymbolic.html#MatCholeskyFactorSymbolic
man:+MatCholeskyFactorNumeric++MatCholeskyFactorNumeric++++man+manualpages/Mat/MatCholeskyFactorNumeric.html#MatCholeskyFactorNumeric
man:+MatSolve++MatSolve++++man+manualpages/Mat/MatSolve.html#MatSolve
man:+MatMatSolve++MatMatSolve++++man+manualpages/Mat/MatMatSolve.html#MatMatSolve
man:+MatSolveAdd++MatSolveAdd++++man+manualpages/Mat/MatSolveAdd.html#MatSolveAdd
man:+MatSolveTranspose++MatSolveTranspose++++man+manualpages/Mat/MatSolveTranspose.html#MatSolveTranspose
man:+MatSolveTransposeAdd++MatSolveTransposeAdd++++man+manualpages/Mat/MatSolveTransposeAdd.html#MatSolveTransposeAdd
man:+MatRelax++MatRelax++++man+manualpages/Mat/MatRelax.html#MatRelax
man:+MatPBRelax++MatPBRelax++++man+manualpages/Mat/MatPBRelax.html#MatPBRelax
man:+MatCopy++MatCopy++++man+manualpages/Mat/MatCopy.html#MatCopy
man:+MatConvert++MatConvert++++man+manualpages/Mat/MatConvert.html#MatConvert
man:+MatDuplicate++MatDuplicate++++man+manualpages/Mat/MatDuplicate.html#MatDuplicate
man:+MatGetDiagonal++MatGetDiagonal++++man+manualpages/Mat/MatGetDiagonal.html#MatGetDiagonal
man:+MatGetRowMax++MatGetRowMax++++man+manualpages/Mat/MatGetRowMax.html#MatGetRowMax
man:+MatTranspose++MatTranspose++++man+manualpages/Mat/MatTranspose.html#MatTranspose
man:+MatIsTranspose++MatIsTranspose++++man+manualpages/Mat/MatIsTranspose.html#MatIsTranspose
man:+MatPermute++MatPermute++++man+manualpages/Mat/MatPermute.html#MatPermute
man:+MatPermuteSparsify++MatPermuteSparsify++++man+manualpages/Mat/MatPermuteSparsify.html#MatPermuteSparsify
man:+MatEqual++MatEqual++++man+manualpages/Mat/MatEqual.html#MatEqual
man:+MatDiagonalScale++MatDiagonalScale++++man+manualpages/Mat/MatDiagonalScale.html#MatDiagonalScale
man:+MatScale++MatScale++++man+manualpages/Mat/MatScale.html#MatScale
man:+MatNorm++MatNorm++++man+manualpages/Mat/MatNorm.html#MatNorm
man:+MatAssemblyBegin++MatAssemblyBegin++++man+manualpages/Mat/MatAssemblyBegin.html#MatAssemblyBegin
man:+MatAssembled++MatAssembled++++man+manualpages/Mat/MatAssembled.html#MatAssembled
man:+MatAssemblyEnd++MatAssemblyEnd++++man+manualpages/Mat/MatAssemblyEnd.html#MatAssemblyEnd
man:+MatCompress++MatCompress++++man+manualpages/Mat/MatCompress.html#MatCompress
man:+MatSetOption++MatSetOption++++man+manualpages/Mat/MatSetOption.html#MatSetOption
man:+MatZeroEntries++MatZeroEntries++++man+manualpages/Mat/MatZeroEntries.html#MatZeroEntries
man:+MatZeroRows++MatZeroRows++++man+manualpages/Mat/MatZeroRows.html#MatZeroRows
man:+MatZeroRowsIS++MatZeroRowsIS++++man+manualpages/Mat/MatZeroRowsIS.html#MatZeroRowsIS
man:+MatZeroRowsLocal++MatZeroRowsLocal++++man+manualpages/Mat/MatZeroRowsLocal.html#MatZeroRowsLocal
man:+MatZeroRowsLocal++MatZeroRowsLocal++++man+manualpages/Mat/MatZeroRowsLocal.html#MatZeroRowsLocal
man:+MatGetSize++MatGetSize++++man+manualpages/Mat/MatGetSize.html#MatGetSize
man:+MatGetLocalSize++MatGetLocalSize++++man+manualpages/Mat/MatGetLocalSize.html#MatGetLocalSize
man:+MatGetOwnershipRange++MatGetOwnershipRange++++man+manualpages/Mat/MatGetOwnershipRange.html#MatGetOwnershipRange
man:+MatILUFactorSymbolic++MatILUFactorSymbolic++++man+manualpages/Mat/MatILUFactorSymbolic.html#MatILUFactorSymbolic
man:+MatICCFactorSymbolic++MatICCFactorSymbolic++++man+manualpages/Mat/MatICCFactorSymbolic.html#MatICCFactorSymbolic
man:+MatGetArray++MatGetArray++++man+manualpages/Mat/MatGetArray.html#MatGetArray
man:+MatRestoreArray++MatRestoreArray++++man+manualpages/Mat/MatRestoreArray.html#MatRestoreArray
man:+MatGetSubMatrices++MatGetSubMatrices++++man+manualpages/Mat/MatGetSubMatrices.html#MatGetSubMatrices
man:+MatDestroyMatrices++MatDestroyMatrices++++man+manualpages/Mat/MatDestroyMatrices.html#MatDestroyMatrices
man:+MatIncreaseOverlap++MatIncreaseOverlap++++man+manualpages/Mat/MatIncreaseOverlap.html#MatIncreaseOverlap
man:+MatGetBlockSize++MatGetBlockSize++++man+manualpages/Mat/MatGetBlockSize.html#MatGetBlockSize
man:+MatSetBlockSize++MatSetBlockSize++++man+manualpages/Mat/MatSetBlockSize.html#MatSetBlockSize
man:+MatGetRowIJ++MatGetRowIJ++++man+manualpages/Mat/MatGetRowIJ.html#MatGetRowIJ
man:+MatGetColumnIJ++MatGetColumnIJ++++man+manualpages/Mat/MatGetColumnIJ.html#MatGetColumnIJ
man:+MatRestoreRowIJ++MatRestoreRowIJ++++man+manualpages/Mat/MatRestoreRowIJ.html#MatRestoreRowIJ
man:+MatRestoreColumnIJ++MatRestoreColumnIJ++++man+manualpages/Mat/MatRestoreColumnIJ.html#MatRestoreColumnIJ
man:+MatColoringPatch++MatColoringPatch++++man+manualpages/Mat/MatColoringPatch.html#MatColoringPatch
man:+MatSetUnfactored++MatSetUnfactored++++man+manualpages/Mat/MatSetUnfactored.html#MatSetUnfactored
man:+MatGetArrayF90++MatGetArrayF90++++man+manualpages/Mat/MatGetArrayF90.html#MatGetArrayF90
man:+MatRestoreArrayF90++MatRestoreArrayF90++++man+manualpages/Mat/MatRestoreArrayF90.html#MatRestoreArrayF90
man:+MatGetSubMatrix++MatGetSubMatrix++++man+manualpages/Mat/MatGetSubMatrix.html#MatGetSubMatrix
man:+MatGetSubMatrixRaw++MatGetSubMatrixRaw++++man+manualpages/Mat/MatGetSubMatrixRaw.html#MatGetSubMatrixRaw
man:+MatStashSetInitialSize++MatStashSetInitialSize++++man+manualpages/Mat/MatStashSetInitialSize.html#MatStashSetInitialSize
man:+MatInterpolateAdd++MatInterpolateAdd++++man+manualpages/Mat/MatInterpolateAdd.html#MatInterpolateAdd
man:+MatInterpolate++MatInterpolate++++man+manualpages/Mat/MatInterpolate.html#MatInterpolate
man:+MatRestrict++MatRestrict++++man+manualpages/Mat/MatRestrict.html#MatRestrict
man:+MatNullSpaceAttach++MatNullSpaceAttach++++man+manualpages/Mat/MatNullSpaceAttach.html#MatNullSpaceAttach
man:+MatICCFactor++MatICCFactor++++man+manualpages/Mat/MatICCFactor.html#MatICCFactor
man:+MatSetValuesAdic++MatSetValuesAdic++++man+manualpages/Mat/MatSetValuesAdic.html#MatSetValuesAdic
man:+MatSetColoring++MatSetColoring++++man+manualpages/Mat/MatSetColoring.html#MatSetColoring
man:+MatSetValuesAdifor++MatSetValuesAdifor++++man+manualpages/Mat/MatSetValuesAdifor.html#MatSetValuesAdifor
man:+MatDiagonalScaleLocal++MatDiagonalScaleLocal++++man+manualpages/Mat/MatDiagonalScaleLocal.html#MatDiagonalScaleLocal
man:+MatGetInertia++MatGetInertia++++man+manualpages/Mat/MatGetInertia.html#MatGetInertia
man:+MatSolves++MatSolves++++man+manualpages/Mat/MatSolves.html#MatSolves
man:+MatIsSymmetric++MatIsSymmetric++++man+manualpages/Mat/MatIsSymmetric.html#MatIsSymmetric
man:+MatIsSymmetricKnown++MatIsSymmetricKnown++++man+manualpages/Mat/MatIsSymmetricKnown.html#MatIsSymmetricKnown
man:+MatIsHermitianKnown++MatIsHermitianKnown++++man+manualpages/Mat/MatIsHermitianKnown.html#MatIsHermitianKnown
man:+MatIsStructurallySymmetric++MatIsStructurallySymmetric++++man+manualpages/Mat/MatIsStructurallySymmetric.html#MatIsStructurallySymmetric
man:+MatIsHermitian++MatIsHermitian++++man+manualpages/Mat/MatIsHermitian.html#MatIsHermitian
man:+MatStashGetInfo++MatStashGetInfo++++man+manualpages/Mat/MatStashGetInfo.html#MatStashGetInfo
man:+MatGetVecs++MatGetVecs++++man+manualpages/Mat/MatGetVecs.html#MatGetVecs
man:+MatFactorInfoInitialize++MatFactorInfoInitialize++++man+manualpages/Mat/MatFactorInfoInitialize.html#MatFactorInfoInitialize
man:+MatPtAP++MatPtAP++++man+manualpages/Mat/MatPtAP.html#MatPtAP
man:+MatPtAPNumeric++MatPtAPNumeric++++man+manualpages/Mat/MatPtAPNumeric.html#MatPtAPNumeric
man:+MatPtAPSymbolic++MatPtAPSymbolic++++man+manualpages/Mat/MatPtAPSymbolic.html#MatPtAPSymbolic
man:+MatMatMult++MatMatMult++++man+manualpages/Mat/MatMatMult.html#MatMatMult
man:+MatMatMultSymbolic++MatMatMultSymbolic++++man+manualpages/Mat/MatMatMultSymbolic.html#MatMatMultSymbolic
man:+MatMatMultNumeric++MatMatMultNumeric++++man+manualpages/Mat/MatMatMultNumeric.html#MatMatMultNumeric
man:+MatMatMultTranspose++MatMatMultTranspose++++man+manualpages/Mat/MatMatMultTranspose.html#MatMatMultTranspose
man:+MatHasOperation++MatHasOperation++++man+manualpages/Mat/MatHasOperation.html#MatHasOperation
man:+MatSetType++MatSetType++++man+manualpages/Mat/MatSetType.html#MatSetType
man:+MatRegisterDestroy++MatRegisterDestroy++++man+manualpages/Mat/MatRegisterDestroy.html#MatRegisterDestroy
man:+MatGetType++MatGetType++++man+manualpages/Mat/MatGetType.html#MatGetType
man:+MatRegister++MatRegister++++man+manualpages/Mat/MatRegister.html#MatRegister
man:+MatRegisterAll++MatRegisterAll++++man+manualpages/Mat/MatRegisterAll.html#MatRegisterAll
man:+MatNullSpaceSetFunction++MatNullSpaceSetFunction++++man+manualpages/Mat/MatNullSpaceSetFunction.html#MatNullSpaceSetFunction
man:+MatNullSpaceCreate++MatNullSpaceCreate++++man+manualpages/Mat/MatNullSpaceCreate.html#MatNullSpaceCreate
man:+MatNullSpaceDestroy++MatNullSpaceDestroy++++man+manualpages/Mat/MatNullSpaceDestroy.html#MatNullSpaceDestroy
man:+MatNullSpaceRemove++MatNullSpaceRemove++++man+manualpages/Mat/MatNullSpaceRemove.html#MatNullSpaceRemove
man:+MatNullSpaceTest++MatNullSpaceTest++++man+manualpages/Mat/MatNullSpaceTest.html#MatNullSpaceTest
man:+MatInitializePackage++MatInitializePackage++++man+manualpages/Mat/MatInitializePackage.html#MatInitializePackage
man:+MatCreateSeqDense++MatCreateSeqDense++++man+manualpages/Mat/MatCreateSeqDense.html#MatCreateSeqDense
man:+MatSeqDenseSetPreallocation++MatSeqDenseSetPreallocation++++man+manualpages/Mat/MatSeqDenseSetPreallocation.html#MatSeqDenseSetPreallocation
man:+MatSeqDenseSetLDA++MatSeqDenseSetLDA++++man+manualpages/Mat/MatSeqDenseSetLDA.html#MatSeqDenseSetLDA
man:+MATSEQDENSE++MATSEQDENSE++++man+manualpages/Mat/MATSEQDENSE.html#MATSEQDENSE
man:+MatDenseGetLocalMatrix++MatDenseGetLocalMatrix++++man+manualpages/Mat/MatDenseGetLocalMatrix.html#MatDenseGetLocalMatrix
man:+MATMPIDENSE++MATMPIDENSE++++man+manualpages/Mat/MATMPIDENSE.html#MATMPIDENSE
man:+MATDENSE++MATDENSE++++man+manualpages/Mat/MATDENSE.html#MATDENSE
man:+MatMPIDenseSetPreallocation++MatMPIDenseSetPreallocation++++man+manualpages/Mat/MatMPIDenseSetPreallocation.html#MatMPIDenseSetPreallocation
man:+MatCreateMPIDense++MatCreateMPIDense++++man+manualpages/Mat/MatCreateMPIDense.html#MatCreateMPIDense
man:+MATPLAPACK++MATPLAPACK++++man+manualpages/Mat/MATPLAPACK.html#MATPLAPACK
man:+MatSeqAIJSetColumnIndices++MatSeqAIJSetColumnIndices++++man+manualpages/Mat/MatSeqAIJSetColumnIndices.html#MatSeqAIJSetColumnIndices
man:+MatStoreValues++MatStoreValues++++man+manualpages/Mat/MatStoreValues.html#MatStoreValues
man:+MatRetrieveValues++MatRetrieveValues++++man+manualpages/Mat/MatRetrieveValues.html#MatRetrieveValues
man:+MatCreateSeqAIJ++MatCreateSeqAIJ++++man+manualpages/Mat/MatCreateSeqAIJ.html#MatCreateSeqAIJ
man:+MatSeqAIJSetPreallocation++MatSeqAIJSetPreallocation++++man+manualpages/Mat/MatSeqAIJSetPreallocation.html#MatSeqAIJSetPreallocation
man:+MatSeqAIJSetPreallocationCSR++MatSeqAIJSetPreallocationCSR++++man+manualpages/Mat/MatSeqAIJSetPreallocationCSR.html#MatSeqAIJSetPreallocationCSR
man:+MATSEQAIJ++MATSEQAIJ++++man+manualpages/Mat/MATSEQAIJ.html#MATSEQAIJ
man:+MatCreateSeqAIJWithArrays++MatCreateSeqAIJWithArrays++++man+manualpages/Mat/MatCreateSeqAIJWithArrays.html#MatCreateSeqAIJWithArrays
man:+MatInodeGetInodeSizes++MatInodeGetInodeSizes++++man+manualpages/Mat/MatInodeGetInodeSizes.html#MatInodeGetInodeSizes
man:+MATSEQAIJSPOOLES++MATSEQAIJSPOOLES++++man+manualpages/Mat/MATSEQAIJSPOOLES.html#MATSEQAIJSPOOLES
man:+MATAIJSPOOLES++MATAIJSPOOLES++++man+manualpages/Mat/MATAIJSPOOLES.html#MATAIJSPOOLES
man:+MATSUPERLU++MATSUPERLU++++man+manualpages/Mat/MATSUPERLU.html#MATSUPERLU
man:+MATUMFPACK++MATUMFPACK++++man+manualpages/Mat/MATUMFPACK.html#MATUMFPACK
man:+MATESSL++MATESSL++++man+manualpages/Mat/MATESSL.html#MATESSL
man:+MATLUSOL++MATLUSOL++++man+manualpages/Mat/MATLUSOL.html#MATLUSOL
man:+MATMATLAB++MATMATLAB++++man+manualpages/Mat/MATMATLAB.html#MATMATLAB
man:+MatCreateSeqCSRPERM++MatCreateSeqCSRPERM++++man+manualpages/Mat/MatCreateSeqCSRPERM.html#MatCreateSeqCSRPERM
man:+MatCreateSeqCRL++MatCreateSeqCRL++++man+manualpages/Mat/MatCreateSeqCRL.html#MatCreateSeqCRL
man:+MatMPIAIJSetPreallocationCSR++MatMPIAIJSetPreallocationCSR++++man+manualpages/Mat/MatMPIAIJSetPreallocationCSR.html#MatMPIAIJSetPreallocationCSR
man:+MatMPIAIJSetPreallocation++MatMPIAIJSetPreallocation++++man+manualpages/Mat/MatMPIAIJSetPreallocation.html#MatMPIAIJSetPreallocation
man:+MatCreateMPIAIJWithArrays++MatCreateMPIAIJWithArrays++++man+manualpages/Mat/MatCreateMPIAIJWithArrays.html#MatCreateMPIAIJWithArrays
man:+MatCreateMPIAIJ++MatCreateMPIAIJ++++man+manualpages/Mat/MatCreateMPIAIJ.html#MatCreateMPIAIJ
man:+MatMerge++MatMerge++++man+manualpages/Mat/MatMerge.html#MatMerge
man:+MatMerge_SeqsToMPI++MatMerge_SeqsToMPI++++man+manualpages/Mat/MatMerge_SeqsToMPI.html#MatMerge_SeqsToMPI
man:+MatGetLocalMat++MatGetLocalMat++++man+manualpages/Mat/MatGetLocalMat.html#MatGetLocalMat
man:+MatGetLocalMatCondensed++MatGetLocalMatCondensed++++man+manualpages/Mat/MatGetLocalMatCondensed.html#MatGetLocalMatCondensed
man:+MatGetBrowsOfAcols++MatGetBrowsOfAcols++++man+manualpages/Mat/MatGetBrowsOfAcols.html#MatGetBrowsOfAcols
man:+MatGetBrowsOfAoCols++MatGetBrowsOfAoCols++++man+manualpages/Mat/MatGetBrowsOfAoCols.html#MatGetBrowsOfAoCols
man:+MatGetCommunicationStructs++MatGetCommunicationStructs++++man+manualpages/Mat/MatGetCommunicationStructs.html#MatGetCommunicationStructs
man:+MATMPIAIJ++MATMPIAIJ++++man+manualpages/Mat/MATMPIAIJ.html#MATMPIAIJ
man:+MATMPIAIJSPOOLES++MATMPIAIJSPOOLES++++man+manualpages/Mat/MATMPIAIJSPOOLES.html#MATMPIAIJSPOOLES
man:+MATSUPERLU_DIST++MATSUPERLU_DIST++++man+manualpages/Mat/MATSUPERLU_DIST.html#MATSUPERLU_DIST
man:+MATAIJMUMPS++MATAIJMUMPS++++man+manualpages/Mat/MATAIJMUMPS.html#MATAIJMUMPS
man:+MATSBAIJMUMPS++MATSBAIJMUMPS++++man+manualpages/Mat/MATSBAIJMUMPS.html#MATSBAIJMUMPS
man:+MatCreateMPICSRPERM++MatCreateMPICSRPERM++++man+manualpages/Mat/MatCreateMPICSRPERM.html#MatCreateMPICSRPERM
man:+MATCSRPERM++MATCSRPERM++++man+manualpages/Mat/MATCSRPERM.html#MATCSRPERM
man:+MatCreateMPICRL++MatCreateMPICRL++++man+manualpages/Mat/MatCreateMPICRL.html#MatCreateMPICRL
man:+MATAIJ++MATAIJ++++man+manualpages/Mat/MATAIJ.html#MATAIJ
man:+MATCRL++MATCRL++++man+manualpages/Mat/MATCRL.html#MATCRL
man:+MatShellGetContext++MatShellGetContext++++man+manualpages/Mat/MatShellGetContext.html#MatShellGetContext
man:+MATSHELL++MATSHELL++++man+manualpages/Mat/MATSHELL.html#MATSHELL
man:+MatCreateShell++MatCreateShell++++man+manualpages/Mat/MatCreateShell.html#MatCreateShell
man:+MatShellSetContext++MatShellSetContext++++man+manualpages/Mat/MatShellSetContext.html#MatShellSetContext
man:+MatShellSetOperation++MatShellSetOperation++++man+manualpages/Mat/MatShellSetOperation.html#MatShellSetOperation
man:+MatShellGetOperation++MatShellGetOperation++++man+manualpages/Mat/MatShellGetOperation.html#MatShellGetOperation
man:+MATMPIROWBS++MATMPIROWBS++++man+manualpages/Mat/MATMPIROWBS.html#MATMPIROWBS
man:+MatCreateMPIRowbs++MatCreateMPIRowbs++++man+manualpages/Mat/MatCreateMPIRowbs.html#MatCreateMPIRowbs
man:+MatSeqBDiagSetPreallocation++MatSeqBDiagSetPreallocation++++man+manualpages/Mat/MatSeqBDiagSetPreallocation.html#MatSeqBDiagSetPreallocation
man:+MATSEQBDIAG++MATSEQBDIAG++++man+manualpages/Mat/MATSEQBDIAG.html#MATSEQBDIAG
man:+MatCreateSeqBDiag++MatCreateSeqBDiag++++man+manualpages/Mat/MatCreateSeqBDiag.html#MatCreateSeqBDiag
man:+MATMPIBDIAG++MATMPIBDIAG++++man+manualpages/Mat/MATMPIBDIAG.html#MATMPIBDIAG
man:+MATBDIAG++MATBDIAG++++man+manualpages/Mat/MATBDIAG.html#MATBDIAG
man:+MatMPIBDiagSetPreallocation++MatMPIBDiagSetPreallocation++++man+manualpages/Mat/MatMPIBDiagSetPreallocation.html#MatMPIBDiagSetPreallocation
man:+MatCreateMPIBDiag++MatCreateMPIBDiag++++man+manualpages/Mat/MatCreateMPIBDiag.html#MatCreateMPIBDiag
man:+MatBDiagGetData++MatBDiagGetData++++man+manualpages/Mat/MatBDiagGetData.html#MatBDiagGetData
man:+MatSeqBAIJInvertBlockDiagonal++MatSeqBAIJInvertBlockDiagonal++++man+manualpages/Mat/MatSeqBAIJInvertBlockDiagonal.html#MatSeqBAIJInvertBlockDiagonal
man:+MatSeqBAIJSetColumnIndices++MatSeqBAIJSetColumnIndices++++man+manualpages/Mat/MatSeqBAIJSetColumnIndices.html#MatSeqBAIJSetColumnIndices
man:+MATSEQBAIJ++MATSEQBAIJ++++man+manualpages/Mat/MATSEQBAIJ.html#MATSEQBAIJ
man:+MatCreateSeqBAIJ++MatCreateSeqBAIJ++++man+manualpages/Mat/MatCreateSeqBAIJ.html#MatCreateSeqBAIJ
man:+MatSeqBAIJSetPreallocation++MatSeqBAIJSetPreallocation++++man+manualpages/Mat/MatSeqBAIJSetPreallocation.html#MatSeqBAIJSetPreallocation
man:+MatCreateSeqBAIJWithArrays++MatCreateSeqBAIJWithArrays++++man+manualpages/Mat/MatCreateSeqBAIJWithArrays.html#MatCreateSeqBAIJWithArrays
man:+MatMPIBAIJSetPreallocationCSR++MatMPIBAIJSetPreallocationCSR++++man+manualpages/Mat/MatMPIBAIJSetPreallocationCSR.html#MatMPIBAIJSetPreallocationCSR
man:+MATMPIBAIJ++MATMPIBAIJ++++man+manualpages/Mat/MATMPIBAIJ.html#MATMPIBAIJ
man:+MATBAIJ++MATBAIJ++++man+manualpages/Mat/MATBAIJ.html#MATBAIJ
man:+MatMPIBAIJSetPreallocation++MatMPIBAIJSetPreallocation++++man+manualpages/Mat/MatMPIBAIJSetPreallocation.html#MatMPIBAIJSetPreallocation
man:+MatCreateMPIBAIJ++MatCreateMPIBAIJ++++man+manualpages/Mat/MatCreateMPIBAIJ.html#MatCreateMPIBAIJ
man:+MatMPIBAIJSetHashTableFactor++MatMPIBAIJSetHashTableFactor++++man+manualpages/Mat/MatMPIBAIJSetHashTableFactor.html#MatMPIBAIJSetHashTableFactor
man:+MATDSCPACK++MATDSCPACK++++man+manualpages/Mat/MATDSCPACK.html#MATDSCPACK
man:+MATMPIADJ++MATMPIADJ++++man+manualpages/Mat/MATMPIADJ.html#MATMPIADJ
man:+MatMPIAdjSetPreallocation++MatMPIAdjSetPreallocation++++man+manualpages/Mat/MatMPIAdjSetPreallocation.html#MatMPIAdjSetPreallocation
man:+MatCreateMPIAdj++MatCreateMPIAdj++++man+manualpages/Mat/MatCreateMPIAdj.html#MatCreateMPIAdj
man:+MATMAIJ++MATMAIJ++++man+manualpages/Mat/MATMAIJ.html#MATMAIJ
man:+MatCreateMAIJ++MatCreateMAIJ++++man+manualpages/Mat/MatCreateMAIJ.html#MatCreateMAIJ
man:+MatISGetLocalMat++MatISGetLocalMat++++man+manualpages/Mat/MatISGetLocalMat.html#MatISGetLocalMat
man:+MatCreateIS++MatCreateIS++++man+manualpages/Mat/MatCreateIS.html#MatCreateIS
man:+MATIS++MATIS++++man+manualpages/Mat/MATIS.html#MATIS
man:+MatSeqSBAIJSetColumnIndices++MatSeqSBAIJSetColumnIndices++++man+manualpages/Mat/MatSeqSBAIJSetColumnIndices.html#MatSeqSBAIJSetColumnIndices
man:+MATSEQSBAIJ++MATSEQSBAIJ++++man+manualpages/Mat/MATSEQSBAIJ.html#MATSEQSBAIJ
man:+MatSeqSBAIJSetPreallocation++MatSeqSBAIJSetPreallocation++++man+manualpages/Mat/MatSeqSBAIJSetPreallocation.html#MatSeqSBAIJSetPreallocation
man:+MatCreateSeqSBAIJ++MatCreateSeqSBAIJ++++man+manualpages/Mat/MatCreateSeqSBAIJ.html#MatCreateSeqSBAIJ
man:+MatCreateSeqSBAIJWithArrays++MatCreateSeqSBAIJWithArrays++++man+manualpages/Mat/MatCreateSeqSBAIJWithArrays.html#MatCreateSeqSBAIJWithArrays
man:+MATSEQSBAIJSPOOLES++MATSEQSBAIJSPOOLES++++man+manualpages/Mat/MATSEQSBAIJSPOOLES.html#MATSEQSBAIJSPOOLES
man:+MATSBAIJSPOOLES++MATSBAIJSPOOLES++++man+manualpages/Mat/MATSBAIJSPOOLES.html#MATSBAIJSPOOLES
man:+MATMPISBAIJ++MATMPISBAIJ++++man+manualpages/Mat/MATMPISBAIJ.html#MATMPISBAIJ
man:+MATSBAIJ++MATSBAIJ++++man+manualpages/Mat/MATSBAIJ.html#MATSBAIJ
man:+MatMPISBAIJSetPreallocation++MatMPISBAIJSetPreallocation++++man+manualpages/Mat/MatMPISBAIJSetPreallocation.html#MatMPISBAIJSetPreallocation
man:+MatCreateMPISBAIJ++MatCreateMPISBAIJ++++man+manualpages/Mat/MatCreateMPISBAIJ.html#MatCreateMPISBAIJ
man:+MATMPISBAIJSPOOLES++MATMPISBAIJSPOOLES++++man+manualpages/Mat/MATMPISBAIJSPOOLES.html#MATMPISBAIJSPOOLES
man:+MATDAAD++MATDAAD++++man+manualpages/Mat/MATDAAD.html#MATDAAD
man:+MatDAADSetDA++MatDAADSetDA++++man+manualpages/Mat/MatDAADSetDA.html#MatDAADSetDA
man:+MatDAADSetSNES++MatDAADSetSNES++++man+manualpages/Mat/MatDAADSetSNES.html#MatDAADSetSNES
man:+MatDAADSetCtx++MatDAADSetCtx++++man+manualpages/Mat/MatDAADSetCtx.html#MatDAADSetCtx
man:+MatCreateDAAD++MatCreateDAAD++++man+manualpages/Mat/MatCreateDAAD.html#MatCreateDAAD
man:+MatRegisterDAAD++MatRegisterDAAD++++man+manualpages/Mat/MatRegisterDAAD.html#MatRegisterDAAD
man:+MatCreateNormal++MatCreateNormal++++man+manualpages/Mat/MatCreateNormal.html#MatCreateNormal
man:+MatCreateLRC++MatCreateLRC++++man+manualpages/Mat/MatCreateLRC.html#MatCreateLRC
man:+MatScatterGetVecScatter++MatScatterGetVecScatter++++man+manualpages/Mat/MatScatterGetVecScatter.html#MatScatterGetVecScatter
man:+MATSCATTER++MATSCATTER++++man+manualpages/Mat/MATSCATTER.html#MATSCATTER
man:+MatCreateScatter++MatCreateScatter++++man+manualpages/Mat/MatCreateScatter.html#MatCreateScatter
man:+MatScatterSetVecScatter++MatScatterSetVecScatter++++man+manualpages/Mat/MatScatterSetVecScatter.html#MatScatterSetVecScatter
man:+MatAXPY++MatAXPY++++man+manualpages/Mat/MatAXPY.html#MatAXPY
man:+MatShift++MatShift++++man+manualpages/Mat/MatShift.html#MatShift
man:+MatDiagonalSet++MatDiagonalSet++++man+manualpages/Mat/MatDiagonalSet.html#MatDiagonalSet
man:+MatAYPX++MatAYPX++++man+manualpages/Mat/MatAYPX.html#MatAYPX
man:+MatComputeExplicitOperator++MatComputeExplicitOperator++++man+manualpages/Mat/MatComputeExplicitOperator.html#MatComputeExplicitOperator
man:+MatReorderForNonzeroDiagonal++MatReorderForNonzeroDiagonal++++man+manualpages/Mat/MatReorderForNonzeroDiagonal.html#MatReorderForNonzeroDiagonal
man:+MatLoad++MatLoad++++man+manualpages/Mat/MatLoad.html#MatLoad
man:+MatGetColumnVector++MatGetColumnVector++++man+manualpages/Mat/MatGetColumnVector.html#MatGetColumnVector
man:+MatCreate++MatCreate++++man+manualpages/Mat/MatCreate.html#MatCreate
man:+MatSetSizes++MatSetSizes++++man+manualpages/Mat/MatSetSizes.html#MatSetSizes
man:+MatSetFromOptions++MatSetFromOptions++++man+manualpages/Mat/MatSetFromOptions.html#MatSetFromOptions
man:+MatSetUpPreallocation++MatSetUpPreallocation++++man+manualpages/Mat/MatSetUpPreallocation.html#MatSetUpPreallocation
man:+Mat_CheckCompressedRow++Mat_CheckCompressedRow++++man+manualpages/Mat/Mat_CheckCompressedRow.html#Mat_CheckCompressedRow
man:+MatMultEqual++MatMultEqual++++man+manualpages/Mat/MatMultEqual.html#MatMultEqual
man:+MatMultAddEqual++MatMultAddEqual++++man+manualpages/Mat/MatMultAddEqual.html#MatMultAddEqual
man:+MatMultTransposeEqual++MatMultTransposeEqual++++man+manualpages/Mat/MatMultTransposeEqual.html#MatMultTransposeEqual
man:+MatMultTransposeAddEqual++MatMultTransposeAddEqual++++man+manualpages/Mat/MatMultTransposeAddEqual.html#MatMultTransposeAddEqual
man:+MatFDColoringView++MatFDColoringView++++man+manualpages/MatFD/MatFDColoringView.html#MatFDColoringView
man:+MatFDColoringSetParameters++MatFDColoringSetParameters++++man+manualpages/MatFD/MatFDColoringSetParameters.html#MatFDColoringSetParameters
man:+MatFDColoringSetFrequency++MatFDColoringSetFrequency++++man+manualpages/MatFD/MatFDColoringSetFrequency.html#MatFDColoringSetFrequency
man:+MatFDColoringGetFrequency++MatFDColoringGetFrequency++++man+manualpages/MatFD/MatFDColoringGetFrequency.html#MatFDColoringGetFrequency
man:+MatFDColoringGetFunction++MatFDColoringGetFunction++++man+manualpages/MatFD/MatFDColoringGetFunction.html#MatFDColoringGetFunction
man:+MatFDColoringSetFunction++MatFDColoringSetFunction++++man+manualpages/MatFD/MatFDColoringSetFunction.html#MatFDColoringSetFunction
man:+MatFDColoringSetFromOptions++MatFDColoringSetFromOptions++++man+manualpages/MatFD/MatFDColoringSetFromOptions.html#MatFDColoringSetFromOptions
man:+MatFDColoringCreate++MatFDColoringCreate++++man+manualpages/MatFD/MatFDColoringCreate.html#MatFDColoringCreate
man:+MatFDColoringDestroy++MatFDColoringDestroy++++man+manualpages/MatFD/MatFDColoringDestroy.html#MatFDColoringDestroy
man:+MatFDColoringGetPerturbedColumns++MatFDColoringGetPerturbedColumns++++man+manualpages/MatFD/MatFDColoringGetPerturbedColumns.html#MatFDColoringGetPerturbedColumns
man:+MatFDColoringApply++MatFDColoringApply++++man+manualpages/MatFD/MatFDColoringApply.html#MatFDColoringApply
man:+MatFDColoringApplyTS++MatFDColoringApplyTS++++man+manualpages/MatFD/MatFDColoringApplyTS.html#MatFDColoringApplyTS
man:+MatFDColoringSetRecompute++MatFDColoringSetRecompute++++man+manualpages/MatFD/MatFDColoringSetRecompute.html#MatFDColoringSetRecompute
man:+MatPartitioningRegisterDestroy++MatPartitioningRegisterDestroy++++man+manualpages/MatOrderings/MatPartitioningRegisterDestroy.html#MatPartitioningRegisterDestroy
man:+MatPartitioningGetType++MatPartitioningGetType++++man+manualpages/MatOrderings/MatPartitioningGetType.html#MatPartitioningGetType
man:+MatPartitioningSetNParts++MatPartitioningSetNParts++++man+manualpages/MatOrderings/MatPartitioningSetNParts.html#MatPartitioningSetNParts
man:+MatPartitioningApply++MatPartitioningApply++++man+manualpages/MatOrderings/MatPartitioningApply.html#MatPartitioningApply
man:+MatPartitioningSetAdjacency++MatPartitioningSetAdjacency++++man+manualpages/MatOrderings/MatPartitioningSetAdjacency.html#MatPartitioningSetAdjacency
man:+MatPartitioningDestroy++MatPartitioningDestroy++++man+manualpages/MatOrderings/MatPartitioningDestroy.html#MatPartitioningDestroy
man:+MatPartitioningSetVertexWeights++MatPartitioningSetVertexWeights++++man+manualpages/MatOrderings/MatPartitioningSetVertexWeights.html#MatPartitioningSetVertexWeights
man:+MatPartitioningSetPartitionWeights++MatPartitioningSetPartitionWeights++++man+manualpages/MatOrderings/MatPartitioningSetPartitionWeights.html#MatPartitioningSetPartitionWeights
man:+MatPartitioningCreate++MatPartitioningCreate++++man+manualpages/MatOrderings/MatPartitioningCreate.html#MatPartitioningCreate
man:+MatPartitioningView++MatPartitioningView++++man+manualpages/MatOrderings/MatPartitioningView.html#MatPartitioningView
man:+MatPartitioningSetType++MatPartitioningSetType++++man+manualpages/MatOrderings/MatPartitioningSetType.html#MatPartitioningSetType
man:+MatPartitioningSetFromOptions++MatPartitioningSetFromOptions++++man+manualpages/MatOrderings/MatPartitioningSetFromOptions.html#MatPartitioningSetFromOptions
man:+MatPartitioningRegisterAll++MatPartitioningRegisterAll++++man+manualpages/MatOrderings/MatPartitioningRegisterAll.html#MatPartitioningRegisterAll
man:+MatPartitioningChacoSetGlobal++MatPartitioningChacoSetGlobal++++man+manualpages/MatOrderings/MatPartitioningChacoSetGlobal.html#MatPartitioningChacoSetGlobal
man:+MatPartitioningChacoSetLocal++MatPartitioningChacoSetLocal++++man+manualpages/MatOrderings/MatPartitioningChacoSetLocal.html#MatPartitioningChacoSetLocal
man:+MatPartitioningChacoSetCoarseLevel++MatPartitioningChacoSetCoarseLevel++++man+manualpages/MatOrderings/MatPartitioningChacoSetCoarseLevel.html#MatPartitioningChacoSetCoarseLevel
man:+MatPartitioningChacoSetEigenSolver++MatPartitioningChacoSetEigenSolver++++man+manualpages/MatOrderings/MatPartitioningChacoSetEigenSolver.html#MatPartitioningChacoSetEigenSolver
man:+MatPartitioningChacoSetEigenTol++MatPartitioningChacoSetEigenTol++++man+manualpages/MatOrderings/MatPartitioningChacoSetEigenTol.html#MatPartitioningChacoSetEigenTol
man:+MatPartitioningChacoSetEigenNumber++MatPartitioningChacoSetEigenNumber++++man+manualpages/MatOrderings/MatPartitioningChacoSetEigenNumber.html#MatPartitioningChacoSetEigenNumber
man:+MAT_PARTITIONING_Chaco++MAT_PARTITIONING_Chaco++++man+manualpages/MatOrderings/MAT_PARTITIONING_Chaco.html#MAT_PARTITIONING_Chaco
man:+MatPartitioningJostleSetCoarseLevel++MatPartitioningJostleSetCoarseLevel++++man+manualpages/MatOrderings/MatPartitioningJostleSetCoarseLevel.html#MatPartitioningJostleSetCoarseLevel
man:+MatPartitioningJostleSetCoarseSequential++MatPartitioningJostleSetCoarseSequential++++man+manualpages/MatOrderings/MatPartitioningJostleSetCoarseSequential.html#MatPartitioningJostleSetCoarseSequential
man:+MAT_PARTITIONING_JOSTLE++MAT_PARTITIONING_JOSTLE++++man+manualpages/MatOrderings/MAT_PARTITIONING_JOSTLE.html#MAT_PARTITIONING_JOSTLE
man:+MatPartitioningPartySetGlobal++MatPartitioningPartySetGlobal++++man+manualpages/MatOrderings/MatPartitioningPartySetGlobal.html#MatPartitioningPartySetGlobal
man:+MatPartitioningPartySetLocal++MatPartitioningPartySetLocal++++man+manualpages/MatOrderings/MatPartitioningPartySetLocal.html#MatPartitioningPartySetLocal
man:+MatPartitioningPartySetCoarseLevel++MatPartitioningPartySetCoarseLevel++++man+manualpages/MatOrderings/MatPartitioningPartySetCoarseLevel.html#MatPartitioningPartySetCoarseLevel
man:+MatPartitioningPartySetMatchOptimization++MatPartitioningPartySetMatchOptimization++++man+manualpages/MatOrderings/MatPartitioningPartySetMatchOptimization.html#MatPartitioningPartySetMatchOptimization
man:+MatPartitioningPartySetBipart++MatPartitioningPartySetBipart++++man+manualpages/MatOrderings/MatPartitioningPartySetBipart.html#MatPartitioningPartySetBipart
man:+MAT_PARTITIONING_Party++MAT_PARTITIONING_Party++++man+manualpages/MatOrderings/MAT_PARTITIONING_Party.html#MAT_PARTITIONING_Party
man:+MatPartitioningParmetisSetCoarseSequential++MatPartitioningParmetisSetCoarseSequential++++man+manualpages/MatOrderings/MatPartitioningParmetisSetCoarseSequential.html#MatPartitioningParmetisSetCoarseSequential
man:+MAT_PARTITIONING_PARMETIS++MAT_PARTITIONING_PARMETIS++++man+manualpages/MatOrderings/MAT_PARTITIONING_PARMETIS.html#MAT_PARTITIONING_PARMETIS
man:+MatPartitioningScotchSetGlobal++MatPartitioningScotchSetGlobal++++man+manualpages/MatOrderings/MatPartitioningScotchSetGlobal.html#MatPartitioningScotchSetGlobal
man:+MatPartitioningScotchSetCoarseLevel++MatPartitioningScotchSetCoarseLevel++++man+manualpages/MatOrderings/MatPartitioningScotchSetCoarseLevel.html#MatPartitioningScotchSetCoarseLevel
man:+MatPartitioningScotchSetStrategy++MatPartitioningScotchSetStrategy++++man+manualpages/MatOrderings/MatPartitioningScotchSetStrategy.html#MatPartitioningScotchSetStrategy
man:+MatPartitioningScotchSetLocal++MatPartitioningScotchSetLocal++++man+manualpages/MatOrderings/MatPartitioningScotchSetLocal.html#MatPartitioningScotchSetLocal
man:+MatPartitioningScotchSetArch++MatPartitioningScotchSetArch++++man+manualpages/MatOrderings/MatPartitioningScotchSetArch.html#MatPartitioningScotchSetArch
man:+MatPartitioningScotchSetHostList++MatPartitioningScotchSetHostList++++man+manualpages/MatOrderings/MatPartitioningScotchSetHostList.html#MatPartitioningScotchSetHostList
man:+MatPartitioningScotchSetMultilevel++MatPartitioningScotchSetMultilevel++++man+manualpages/MatOrderings/MatPartitioningScotchSetMultilevel.html#MatPartitioningScotchSetMultilevel
man:+MatPartitioningScotchSetMapping++MatPartitioningScotchSetMapping++++man+manualpages/MatOrderings/MatPartitioningScotchSetMapping.html#MatPartitioningScotchSetMapping
man:+MAT_PARTITIONING_SCOTCH++MAT_PARTITIONING_SCOTCH++++man+manualpages/MatOrderings/MAT_PARTITIONING_SCOTCH.html#MAT_PARTITIONING_SCOTCH
man:+MatOrderingRegisterDestroy++MatOrderingRegisterDestroy++++man+manualpages/MatOrderings/MatOrderingRegisterDestroy.html#MatOrderingRegisterDestroy
man:+MatGetOrdering++MatGetOrdering++++man+manualpages/MatOrderings/MatGetOrdering.html#MatGetOrdering
man:+MatOrderingRegisterAll++MatOrderingRegisterAll++++man+manualpages/MatOrderings/MatOrderingRegisterAll.html#MatOrderingRegisterAll
man:+MatColoringRegisterDestroy++MatColoringRegisterDestroy++++man+manualpages/MatOrderings/MatColoringRegisterDestroy.html#MatColoringRegisterDestroy
man:+MatGetColoring++MatGetColoring++++man+manualpages/MatOrderings/MatGetColoring.html#MatGetColoring
man:+MatColoringRegisterAll++MatColoringRegisterAll++++man+manualpages/MatOrderings/MatColoringRegisterAll.html#MatColoringRegisterAll
man:+PC++PC++++man+manualpages/PC/PC.html#PC
man:+PCType++PCType++++man+manualpages/PC/PCType.html#PCType
man:+PCSide++PCSide++++man+manualpages/PC/PCSide.html#PCSide
man:+PCRegisterDynamic++PCRegisterDynamic++++man+manualpages/PC/PCRegisterDynamic.html#PCRegisterDynamic
man:+PCASMType++PCASMType++++man+manualpages/PC/PCASMType.html#PCASMType
man:+PCCompositeType++PCCompositeType++++man+manualpages/PC/PCCompositeType.html#PCCompositeType
man:+PCDestroy++PCDestroy++++man+manualpages/PC/PCDestroy.html#PCDestroy
man:+PCDiagonalScale++PCDiagonalScale++++man+manualpages/PC/PCDiagonalScale.html#PCDiagonalScale
man:+PCDiagonalScaleSet++PCDiagonalScaleSet++++man+manualpages/PC/PCDiagonalScaleSet.html#PCDiagonalScaleSet
man:+PCDiagonalScaleLeft++PCDiagonalScaleLeft++++man+manualpages/PC/PCDiagonalScaleLeft.html#PCDiagonalScaleLeft
man:+PCDiagonalScaleRight++PCDiagonalScaleRight++++man+manualpages/PC/PCDiagonalScaleRight.html#PCDiagonalScaleRight
man:+PCCreate++PCCreate++++man+manualpages/PC/PCCreate.html#PCCreate
man:+PCApply++PCApply++++man+manualpages/PC/PCApply.html#PCApply
man:+PCApplySymmetricLeft++PCApplySymmetricLeft++++man+manualpages/PC/PCApplySymmetricLeft.html#PCApplySymmetricLeft
man:+PCApplySymmetricRight++PCApplySymmetricRight++++man+manualpages/PC/PCApplySymmetricRight.html#PCApplySymmetricRight
man:+PCApplyTranspose++PCApplyTranspose++++man+manualpages/PC/PCApplyTranspose.html#PCApplyTranspose
man:+PCHasApplyTranspose++PCHasApplyTranspose++++man+manualpages/PC/PCHasApplyTranspose.html#PCHasApplyTranspose
man:+PCApplyBAorAB++PCApplyBAorAB++++man+manualpages/PC/PCApplyBAorAB.html#PCApplyBAorAB
man:+PCApplyBAorABTranspose++PCApplyBAorABTranspose++++man+manualpages/PC/PCApplyBAorABTranspose.html#PCApplyBAorABTranspose
man:+PCApplyRichardsonExists++PCApplyRichardsonExists++++man+manualpages/PC/PCApplyRichardsonExists.html#PCApplyRichardsonExists
man:+PCApplyRichardson++PCApplyRichardson++++man+manualpages/PC/PCApplyRichardson.html#PCApplyRichardson
man:+PCSetUp++PCSetUp++++man+manualpages/PC/PCSetUp.html#PCSetUp
man:+PCSetUpOnBlocks++PCSetUpOnBlocks++++man+manualpages/PC/PCSetUpOnBlocks.html#PCSetUpOnBlocks
man:+PCSetModifySubMatrices++PCSetModifySubMatrices++++man+manualpages/PC/PCSetModifySubMatrices.html#PCSetModifySubMatrices
man:+PCModifySubMatrices++PCModifySubMatrices++++man+manualpages/PC/PCModifySubMatrices.html#PCModifySubMatrices
man:+PCSetOperators++PCSetOperators++++man+manualpages/PC/PCSetOperators.html#PCSetOperators
man:+PCGetOperators++PCGetOperators++++man+manualpages/PC/PCGetOperators.html#PCGetOperators
man:+PCGetOperatorsSet++PCGetOperatorsSet++++man+manualpages/PC/PCGetOperatorsSet.html#PCGetOperatorsSet
man:+PCGetFactoredMatrix++PCGetFactoredMatrix++++man+manualpages/PC/PCGetFactoredMatrix.html#PCGetFactoredMatrix
man:+PCSetOptionsPrefix++PCSetOptionsPrefix++++man+manualpages/PC/PCSetOptionsPrefix.html#PCSetOptionsPrefix
man:+PCAppendOptionsPrefix++PCAppendOptionsPrefix++++man+manualpages/PC/PCAppendOptionsPrefix.html#PCAppendOptionsPrefix
man:+PCGetOptionsPrefix++PCGetOptionsPrefix++++man+manualpages/PC/PCGetOptionsPrefix.html#PCGetOptionsPrefix
man:+PCPreSolve++PCPreSolve++++man+manualpages/PC/PCPreSolve.html#PCPreSolve
man:+PCPostSolve++PCPostSolve++++man+manualpages/PC/PCPostSolve.html#PCPostSolve
man:+PCView++PCView++++man+manualpages/PC/PCView.html#PCView
man:+PCRegister++PCRegister++++man+manualpages/PC/PCRegister.html#PCRegister
man:+PCComputeExplicitOperator++PCComputeExplicitOperator++++man+manualpages/PC/PCComputeExplicitOperator.html#PCComputeExplicitOperator
man:+PCSetType++PCSetType++++man+manualpages/PC/PCSetType.html#PCSetType
man:+PCRegisterDestroy++PCRegisterDestroy++++man+manualpages/PC/PCRegisterDestroy.html#PCRegisterDestroy
man:+PCGetType++PCGetType++++man+manualpages/PC/PCGetType.html#PCGetType
man:+PCSetFromOptions++PCSetFromOptions++++man+manualpages/PC/PCSetFromOptions.html#PCSetFromOptions
man:+PCRegisterAll++PCRegisterAll++++man+manualpages/PC/PCRegisterAll.html#PCRegisterAll
man:+PCJACOBI++PCJACOBI++++man+manualpages/PC/PCJACOBI.html#PCJACOBI
man:+PCJacobiSetUseAbs++PCJacobiSetUseAbs++++man+manualpages/PC/PCJacobiSetUseAbs.html#PCJacobiSetUseAbs
man:+PCJacobiSetUseRowMax++PCJacobiSetUseRowMax++++man+manualpages/PC/PCJacobiSetUseRowMax.html#PCJacobiSetUseRowMax
man:+PCNONE++PCNONE++++man+manualpages/PC/PCNONE.html#PCNONE
man:+PCSORSetSymmetric++PCSORSetSymmetric++++man+manualpages/PC/PCSORSetSymmetric.html#PCSORSetSymmetric
man:+PCSORSetOmega++PCSORSetOmega++++man+manualpages/PC/PCSORSetOmega.html#PCSORSetOmega
man:+PCSORSetIterations++PCSORSetIterations++++man+manualpages/PC/PCSORSetIterations.html#PCSORSetIterations
man:+PCSOR++PCSOR++++man+manualpages/PC/PCSOR.html#PCSOR
man:+PCShellGetContext++PCShellGetContext++++man+manualpages/PC/PCShellGetContext.html#PCShellGetContext
man:+PCShellSetContext++PCShellSetContext++++man+manualpages/PC/PCShellSetContext.html#PCShellSetContext
man:+PCShellSetDestroy++PCShellSetDestroy++++man+manualpages/PC/PCShellSetDestroy.html#PCShellSetDestroy
man:+PCShellSetSetUp++PCShellSetSetUp++++man+manualpages/PC/PCShellSetSetUp.html#PCShellSetSetUp
man:+PCShellSetView++PCShellSetView++++man+manualpages/PC/PCShellSetView.html#PCShellSetView
man:+PCShellSetApply++PCShellSetApply++++man+manualpages/PC/PCShellSetApply.html#PCShellSetApply
man:+PCShellSetApplyBA++PCShellSetApplyBA++++man+manualpages/PC/PCShellSetApplyBA.html#PCShellSetApplyBA
man:+PCShellSetApplyTranspose++PCShellSetApplyTranspose++++man+manualpages/PC/PCShellSetApplyTranspose.html#PCShellSetApplyTranspose
man:+PCShellSetPreSolve++PCShellSetPreSolve++++man+manualpages/PC/PCShellSetPreSolve.html#PCShellSetPreSolve
man:+PCShellSetPostSolve++PCShellSetPostSolve++++man+manualpages/PC/PCShellSetPostSolve.html#PCShellSetPostSolve
man:+PCShellSetName++PCShellSetName++++man+manualpages/PC/PCShellSetName.html#PCShellSetName
man:+PCShellGetName++PCShellGetName++++man+manualpages/PC/PCShellGetName.html#PCShellGetName
man:+PCShellSetApplyRichardson++PCShellSetApplyRichardson++++man+manualpages/PC/PCShellSetApplyRichardson.html#PCShellSetApplyRichardson
man:+PCSHELL++PCSHELL++++man+manualpages/PC/PCSHELL.html#PCSHELL
man:+PCBJacobiSetUseTrueLocal++PCBJacobiSetUseTrueLocal++++man+manualpages/PC/PCBJacobiSetUseTrueLocal.html#PCBJacobiSetUseTrueLocal
man:+PCBJacobiGetSubKSP++PCBJacobiGetSubKSP++++man+manualpages/PC/PCBJacobiGetSubKSP.html#PCBJacobiGetSubKSP
man:+PCBJacobiSetTotalBlocks++PCBJacobiSetTotalBlocks++++man+manualpages/PC/PCBJacobiSetTotalBlocks.html#PCBJacobiSetTotalBlocks
man:+PCBJacobiGetTotalBlocks++PCBJacobiGetTotalBlocks++++man+manualpages/PC/PCBJacobiGetTotalBlocks.html#PCBJacobiGetTotalBlocks
man:+PCBJacobiSetLocalBlocks++PCBJacobiSetLocalBlocks++++man+manualpages/PC/PCBJacobiSetLocalBlocks.html#PCBJacobiSetLocalBlocks
man:+PCBJacobiGetLocalBlocks++PCBJacobiGetLocalBlocks++++man+manualpages/PC/PCBJacobiGetLocalBlocks.html#PCBJacobiGetLocalBlocks
man:+PCBJACOBI++PCBJACOBI++++man+manualpages/PC/PCBJACOBI.html#PCBJACOBI
man:+PCMGSetLevels++PCMGSetLevels++++man+manualpages/PC/PCMGSetLevels.html#PCMGSetLevels
man:+PCMGGetLevels++PCMGGetLevels++++man+manualpages/PC/PCMGGetLevels.html#PCMGGetLevels
man:+PCMGSetType++PCMGSetType++++man+manualpages/PC/PCMGSetType.html#PCMGSetType
man:+PCMGSetCycles++PCMGSetCycles++++man+manualpages/PC/PCMGSetCycles.html#PCMGSetCycles
man:+PCMGSetGalerkin++PCMGSetGalerkin++++man+manualpages/PC/PCMGSetGalerkin.html#PCMGSetGalerkin
man:+PCMGGetGalerkin++PCMGGetGalerkin++++man+manualpages/PC/PCMGGetGalerkin.html#PCMGGetGalerkin
man:+PCMGSetNumberSmoothDown++PCMGSetNumberSmoothDown++++man+manualpages/PC/PCMGSetNumberSmoothDown.html#PCMGSetNumberSmoothDown
man:+PCMGSetNumberSmoothUp++PCMGSetNumberSmoothUp++++man+manualpages/PC/PCMGSetNumberSmoothUp.html#PCMGSetNumberSmoothUp
man:+PCMG++PCMG++++man+manualpages/PC/PCMG.html#PCMG
man:+PCMGDefaultResidual++PCMGDefaultResidual++++man+manualpages/PC/PCMGDefaultResidual.html#PCMGDefaultResidual
man:+PCMGGetCoarseSolve++PCMGGetCoarseSolve++++man+manualpages/PC/PCMGGetCoarseSolve.html#PCMGGetCoarseSolve
man:+PCMGSetResidual++PCMGSetResidual++++man+manualpages/PC/PCMGSetResidual.html#PCMGSetResidual
man:+PCMGSetInterpolate++PCMGSetInterpolate++++man+manualpages/PC/PCMGSetInterpolate.html#PCMGSetInterpolate
man:+PCMGSetRestriction++PCMGSetRestriction++++man+manualpages/PC/PCMGSetRestriction.html#PCMGSetRestriction
man:+PCMGGetSmoother++PCMGGetSmoother++++man+manualpages/PC/PCMGGetSmoother.html#PCMGGetSmoother
man:+PCMGGetSmootherUp++PCMGGetSmootherUp++++man+manualpages/PC/PCMGGetSmootherUp.html#PCMGGetSmootherUp
man:+PCMGGetSmootherDown++PCMGGetSmootherDown++++man+manualpages/PC/PCMGGetSmootherDown.html#PCMGGetSmootherDown
man:+PCMGSetCyclesOnLevel++PCMGSetCyclesOnLevel++++man+manualpages/PC/PCMGSetCyclesOnLevel.html#PCMGSetCyclesOnLevel
man:+PCMGSetRhs++PCMGSetRhs++++man+manualpages/PC/PCMGSetRhs.html#PCMGSetRhs
man:+PCMGSetX++PCMGSetX++++man+manualpages/PC/PCMGSetX.html#PCMGSetX
man:+PCMGSetR++PCMGSetR++++man+manualpages/PC/PCMGSetR.html#PCMGSetR
man:+PCMGType++PCMGType++++man+manualpages/PC/PCMGType.html#PCMGType
man:+PCEisenstatSetOmega++PCEisenstatSetOmega++++man+manualpages/PC/PCEisenstatSetOmega.html#PCEisenstatSetOmega
man:+PCEisenstatNoDiagonalScaling++PCEisenstatNoDiagonalScaling++++man+manualpages/PC/PCEisenstatNoDiagonalScaling.html#PCEisenstatNoDiagonalScaling
man:+PCEISENSTAT++PCEISENSTAT++++man+manualpages/PC/PCEISENSTAT.html#PCEISENSTAT
man:+PCASMSetUseInPlace++PCASMSetUseInPlace++++man+manualpages/PC/PCASMSetUseInPlace.html#PCASMSetUseInPlace
man:+PCASMSetLocalSubdomains++PCASMSetLocalSubdomains++++man+manualpages/PC/PCASMSetLocalSubdomains.html#PCASMSetLocalSubdomains
man:+PCASMSetTotalSubdomains++PCASMSetTotalSubdomains++++man+manualpages/PC/PCASMSetTotalSubdomains.html#PCASMSetTotalSubdomains
man:+PCASMSetOverlap++PCASMSetOverlap++++man+manualpages/PC/PCASMSetOverlap.html#PCASMSetOverlap
man:+PCASMSetType++PCASMSetType++++man+manualpages/PC/PCASMSetType.html#PCASMSetType
man:+PCASMGetSubKSP++PCASMGetSubKSP++++man+manualpages/PC/PCASMGetSubKSP.html#PCASMGetSubKSP
man:+PCASM++PCASM++++man+manualpages/PC/PCASM.html#PCASM
man:+PCASMCreateSubdomains2D++PCASMCreateSubdomains2D++++man+manualpages/PC/PCASMCreateSubdomains2D.html#PCASMCreateSubdomains2D
man:+PCASMGetLocalSubdomains++PCASMGetLocalSubdomains++++man+manualpages/PC/PCASMGetLocalSubdomains.html#PCASMGetLocalSubdomains
man:+PCASMGetLocalSubmatrices++PCASMGetLocalSubmatrices++++man+manualpages/PC/PCASMGetLocalSubmatrices.html#PCASMGetLocalSubmatrices
man:+PCKSPSetUseTrue++PCKSPSetUseTrue++++man+manualpages/PC/PCKSPSetUseTrue.html#PCKSPSetUseTrue
man:+PCKSPGetKSP++PCKSPGetKSP++++man+manualpages/PC/PCKSPGetKSP.html#PCKSPGetKSP
man:+PCKSP++PCKSP++++man+manualpages/PC/PCKSP.html#PCKSP
man:+PCCompositeSetType++PCCompositeSetType++++man+manualpages/PC/PCCompositeSetType.html#PCCompositeSetType
man:+PCCompositeSpecialSetAlpha++PCCompositeSpecialSetAlpha++++man+manualpages/PC/PCCompositeSpecialSetAlpha.html#PCCompositeSpecialSetAlpha
man:+PCCompositeAddPC++PCCompositeAddPC++++man+manualpages/PC/PCCompositeAddPC.html#PCCompositeAddPC
man:+PCCompositeGetPC++PCCompositeGetPC++++man+manualpages/PC/PCCompositeGetPC.html#PCCompositeGetPC
man:+PCCompositeSetUseTrue++PCCompositeSetUseTrue++++man+manualpages/PC/PCCompositeSetUseTrue.html#PCCompositeSetUseTrue
man:+PCCOMPOSITE++PCCOMPOSITE++++man+manualpages/PC/PCCOMPOSITE.html#PCCOMPOSITE
man:+PCRedundantSetScatter++PCRedundantSetScatter++++man+manualpages/PC/PCRedundantSetScatter.html#PCRedundantSetScatter
man:+PCRedundantGetPC++PCRedundantGetPC++++man+manualpages/PC/PCRedundantGetPC.html#PCRedundantGetPC
man:+PCRedundantGetOperators++PCRedundantGetOperators++++man+manualpages/PC/PCRedundantGetOperators.html#PCRedundantGetOperators
man:+PCREDUNDANT++PCREDUNDANT++++man+manualpages/PC/PCREDUNDANT.html#PCREDUNDANT
man:+PCSPAISetEpsilon++PCSPAISetEpsilon++++man+manualpages/PC/PCSPAISetEpsilon.html#PCSPAISetEpsilon
man:+PCSPAISetNBSteps++PCSPAISetNBSteps++++man+manualpages/PC/PCSPAISetNBSteps.html#PCSPAISetNBSteps
man:+PCSPAISetMax++PCSPAISetMax++++man+manualpages/PC/PCSPAISetMax.html#PCSPAISetMax
man:+PCSPAISetMaxNew++PCSPAISetMaxNew++++man+manualpages/PC/PCSPAISetMaxNew.html#PCSPAISetMaxNew
man:+PCSPAISetBlockSize++PCSPAISetBlockSize++++man+manualpages/PC/PCSPAISetBlockSize.html#PCSPAISetBlockSize
man:+PCSPAISetCacheSize++PCSPAISetCacheSize++++man+manualpages/PC/PCSPAISetCacheSize.html#PCSPAISetCacheSize
man:+PCSPAISetVerbose++PCSPAISetVerbose++++man+manualpages/PC/PCSPAISetVerbose.html#PCSPAISetVerbose
man:+PCSPAISetSp++PCSPAISetSp++++man+manualpages/PC/PCSPAISetSp.html#PCSPAISetSp
man:+PCSPAI++PCSPAI++++man+manualpages/PC/PCSPAI.html#PCSPAI
man:+PCNN++PCNN++++man+manualpages/PC/PCNN.html#PCNN
man:+PCPBJACOBI++PCPBJACOBI++++man+manualpages/PC/PCPBJACOBI.html#PCPBJACOBI
man:+PCML++PCML++++man+manualpages/PC/PCML.html#PCML
man:+PCMGType++PCMGType++++man+manualpages/PC/PCMGType.html#PCMGType
man:+PCMAT++PCMAT++++man+manualpages/PC/PCMAT.html#PCMAT
man:+PCHYPRESetType++PCHYPRESetType++++man+manualpages/PC/PCHYPRESetType.html#PCHYPRESetType
man:+PCHYPREGetType++PCHYPREGetType++++man+manualpages/PC/PCHYPREGetType.html#PCHYPREGetType
man:+PCHYPRE++PCHYPRE++++man+manualpages/PC/PCHYPRE.html#PCHYPRE
man:+PCSAMG++PCSAMG++++man+manualpages/PC/PCSAMG.html#PCSAMG
man:+PCFieldSplitSetFields++PCFieldSplitSetFields++++man+manualpages/PC/PCFieldSplitSetFields.html#PCFieldSplitSetFields
man:+PCFieldSplitGetSubKSP++PCFieldSplitGetSubKSP++++man+manualpages/PC/PCFieldSplitGetSubKSP.html#PCFieldSplitGetSubKSP
man:+PCFieldSplitSetType++PCFieldSplitSetType++++man+manualpages/PC/PCFieldSplitSetType.html#PCFieldSplitSetType
man:+PCFIELDSPLIT++PCFIELDSPLIT++++man+manualpages/PC/PCFIELDSPLIT.html#PCFIELDSPLIT
man:+PCFactorSetZeroPivot++PCFactorSetZeroPivot++++man+manualpages/PC/PCFactorSetZeroPivot.html#PCFactorSetZeroPivot
man:+PCFactorSetShiftNonzero++PCFactorSetShiftNonzero++++man+manualpages/PC/PCFactorSetShiftNonzero.html#PCFactorSetShiftNonzero
man:+PCFactorSetShiftPd++PCFactorSetShiftPd++++man+manualpages/PC/PCFactorSetShiftPd.html#PCFactorSetShiftPd
man:+PCFactorReorderForNonzeroDiagonal++PCFactorReorderForNonzeroDiagonal++++man+manualpages/PC/PCFactorReorderForNonzeroDiagonal.html#PCFactorReorderForNonzeroDiagonal
man:+PCFactorSetFill++PCFactorSetFill++++man+manualpages/PC/PCFactorSetFill.html#PCFactorSetFill
man:+PCFactorSetUseInPlace++PCFactorSetUseInPlace++++man+manualpages/PC/PCFactorSetUseInPlace.html#PCFactorSetUseInPlace
man:+PCFactorSetMatOrdering++PCFactorSetMatOrdering++++man+manualpages/PC/PCFactorSetMatOrdering.html#PCFactorSetMatOrdering
man:+PCFactorSetPivoting++PCFactorSetPivoting++++man+manualpages/PC/PCFactorSetPivoting.html#PCFactorSetPivoting
man:+PCFactorSetPivotInBlocks++PCFactorSetPivotInBlocks++++man+manualpages/PC/PCFactorSetPivotInBlocks.html#PCFactorSetPivotInBlocks
man:+PCLU++PCLU++++man+manualpages/PC/PCLU.html#PCLU
man:+PCFactorSetUseDropTolerance++PCFactorSetUseDropTolerance++++man+manualpages/PC/PCFactorSetUseDropTolerance.html#PCFactorSetUseDropTolerance
man:+PCFactorSetLevels++PCFactorSetLevels++++man+manualpages/PC/PCFactorSetLevels.html#PCFactorSetLevels
man:+PCFactorSetAllowDiagonalFill++PCFactorSetAllowDiagonalFill++++man+manualpages/PC/PCFactorSetAllowDiagonalFill.html#PCFactorSetAllowDiagonalFill
man:+PCILU++PCILU++++man+manualpages/PC/PCILU.html#PCILU
man:+PCICC++PCICC++++man+manualpages/PC/PCICC.html#PCICC
man:+PCFactorSetReuseOrdering++PCFactorSetReuseOrdering++++man+manualpages/PC/PCFactorSetReuseOrdering.html#PCFactorSetReuseOrdering
man:+PCFactorSetReuseFill++PCFactorSetReuseFill++++man+manualpages/PC/PCFactorSetReuseFill.html#PCFactorSetReuseFill
man:+PCCholesky++PCCholesky++++man+manualpages/PC/PCCholesky.html#PCCholesky
man:+PCPrometheus++PCPrometheus++++man+manualpages/PC/PCPrometheus.html#PCPrometheus
man:+PCSetCoordinates++PCSetCoordinates++++man+manualpages/PC/PCSetCoordinates.html#PCSetCoordinates
man:+PCSASetVectors++PCSASetVectors++++man+manualpages/PC/PCSASetVectors.html#PCSASetVectors
man:+PCGalerkinSetRestriction++PCGalerkinSetRestriction++++man+manualpages/PC/PCGalerkinSetRestriction.html#PCGalerkinSetRestriction
man:+PCGalerkinSetInterpolation++PCGalerkinSetInterpolation++++man+manualpages/PC/PCGalerkinSetInterpolation.html#PCGalerkinSetInterpolation
man:+PCGalerkinGetKSP++PCGalerkinGetKSP++++man+manualpages/PC/PCGalerkinGetKSP.html#PCGalerkinGetKSP
man:+PCGALERKIN++PCGALERKIN++++man+manualpages/PC/PCGALERKIN.html#PCGALERKIN
man:+KSP++KSP++++man+manualpages/KSP/KSP.html#KSP
man:+KSPType++KSPType++++man+manualpages/KSP/KSPType.html#KSPType
man:+KSPRegisterDynamic++KSPRegisterDynamic++++man+manualpages/KSP/KSPRegisterDynamic.html#KSPRegisterDynamic
man:+KSPGMRESCGSRefinementType++KSPGMRESCGSRefinementType++++man+manualpages/KSP/KSPGMRESCGSRefinementType.html#KSPGMRESCGSRefinementType
man:+KSP_GMRES_CGS_REFINE_NEVER++KSP_GMRES_CGS_REFINE_NEVER++++man+manualpages/KSP/KSP_GMRES_CGS_REFINE_NEVER.html#KSP_GMRES_CGS_REFINE_NEVER
man:+KSP_GMRES_CGS_REFINE_IFNEEDED++KSP_GMRES_CGS_REFINE_IFNEEDED++++man+manualpages/KSP/KSP_GMRES_CGS_REFINE_IFNEEDED.html#KSP_GMRES_CGS_REFINE_IFNEEDED
man:+KSP_GMRES_CGS_REFINE_NEVER++KSP_GMRES_CGS_REFINE_NEVER++++man+manualpages/KSP/KSP_GMRES_CGS_REFINE_NEVER.html#KSP_GMRES_CGS_REFINE_NEVER
man:+KSPNormType++KSPNormType++++man+manualpages/KSP/KSPNormType.html#KSPNormType
man:+KSP_NO_NORM++KSP_NO_NORM++++man+manualpages/KSP/KSP_NO_NORM.html#KSP_NO_NORM
man:+KSP_PRECONDITIONED_NORM++KSP_PRECONDITIONED_NORM++++man+manualpages/KSP/KSP_PRECONDITIONED_NORM.html#KSP_PRECONDITIONED_NORM
man:+KSP_UNPRECONDITIONED_NORM++KSP_UNPRECONDITIONED_NORM++++man+manualpages/KSP/KSP_UNPRECONDITIONED_NORM.html#KSP_UNPRECONDITIONED_NORM
man:+KSP_NATURAL_NORM++KSP_NATURAL_NORM++++man+manualpages/KSP/KSP_NATURAL_NORM.html#KSP_NATURAL_NORM
man:+KSPConvergedReason++KSPConvergedReason++++man+manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_CONVERGED_RTOL++KSP_CONVERGED_RTOL++++man+manualpages/KSP/KSP_CONVERGED_RTOL.html#KSP_CONVERGED_RTOL
man:+KSP_CONVERGED_ATOL++KSP_CONVERGED_ATOL++++man+manualpages/KSP/KSP_CONVERGED_ATOL.html#KSP_CONVERGED_ATOL
man:+KSP_DIVERGED_DTOL++KSP_DIVERGED_DTOL++++man+manualpages/KSP/KSP_DIVERGED_DTOL.html#KSP_DIVERGED_DTOL
man:+KSP_DIVERGED_ITS++KSP_DIVERGED_ITS++++man+manualpages/KSP/KSP_DIVERGED_ITS.html#KSP_DIVERGED_ITS
man:+KSP_CONVERGED_ITS++KSP_CONVERGED_ITS++++man+manualpages/KSP/KSP_CONVERGED_ITS.html#KSP_CONVERGED_ITS
man:+KSP_DIVERGED_BREAKDOWN++KSP_DIVERGED_BREAKDOWN++++man+manualpages/KSP/KSP_DIVERGED_BREAKDOWN.html#KSP_DIVERGED_BREAKDOWN
man:+KSP_DIVERGED_BREAKDOWN_BICG++KSP_DIVERGED_BREAKDOWN_BICG++++man+manualpages/KSP/KSP_DIVERGED_BREAKDOWN_BICG.html#KSP_DIVERGED_BREAKDOWN_BICG
man:+KSP_DIVERGED_NONSYMMETRIC++KSP_DIVERGED_NONSYMMETRIC++++man+manualpages/KSP/KSP_DIVERGED_NONSYMMETRIC.html#KSP_DIVERGED_NONSYMMETRIC
man:+KSP_DIVERGED_INDEFINITE_PC++KSP_DIVERGED_INDEFINITE_PC++++man+manualpages/KSP/KSP_DIVERGED_INDEFINITE_PC.html#KSP_DIVERGED_INDEFINITE_PC
man:+KSP_CONVERGED_ITERATING++KSP_CONVERGED_ITERATING++++man+manualpages/KSP/KSP_CONVERGED_ITERATING.html#KSP_CONVERGED_ITERATING
man:+KSPCGType++KSPCGType++++man+manualpages/KSP/KSPCGType.html#KSPCGType
man:+KSPAddOptionsChecker++KSPAddOptionsChecker++++man+manualpages/KSP/KSPAddOptionsChecker.html#KSPAddOptionsChecker
man:+KSPSetOptionsPrefix++KSPSetOptionsPrefix++++man+manualpages/KSP/KSPSetOptionsPrefix.html#KSPSetOptionsPrefix
man:+KSPAppendOptionsPrefix++KSPAppendOptionsPrefix++++man+manualpages/KSP/KSPAppendOptionsPrefix.html#KSPAppendOptionsPrefix
man:+KSPGetOptionsPrefix++KSPGetOptionsPrefix++++man+manualpages/KSP/KSPGetOptionsPrefix.html#KSPGetOptionsPrefix
man:+KSPSetFromOptions++KSPSetFromOptions++++man+manualpages/KSP/KSPSetFromOptions.html#KSPSetFromOptions
man:+KSPComputeExtremeSingularValues++KSPComputeExtremeSingularValues++++man+manualpages/KSP/KSPComputeExtremeSingularValues.html#KSPComputeExtremeSingularValues
man:+KSPComputeEigenvalues++KSPComputeEigenvalues++++man+manualpages/KSP/KSPComputeEigenvalues.html#KSPComputeEigenvalues
man:+KSPSetUpOnBlocks++KSPSetUpOnBlocks++++man+manualpages/KSP/KSPSetUpOnBlocks.html#KSPSetUpOnBlocks
man:+KSPSetUp++KSPSetUp++++man+manualpages/KSP/KSPSetUp.html#KSPSetUp
man:+KSPSolve++KSPSolve++++man+manualpages/KSP/KSPSolve.html#KSPSolve
man:+KSPSolveTranspose++KSPSolveTranspose++++man+manualpages/KSP/KSPSolveTranspose.html#KSPSolveTranspose
man:+KSPDestroy++KSPDestroy++++man+manualpages/KSP/KSPDestroy.html#KSPDestroy
man:+KSPSetPreconditionerSide++KSPSetPreconditionerSide++++man+manualpages/KSP/KSPSetPreconditionerSide.html#KSPSetPreconditionerSide
man:+KSPGetPreconditionerSide++KSPGetPreconditionerSide++++man+manualpages/KSP/KSPGetPreconditionerSide.html#KSPGetPreconditionerSide
man:+KSPGetTolerances++KSPGetTolerances++++man+manualpages/KSP/KSPGetTolerances.html#KSPGetTolerances
man:+KSPSetTolerances++KSPSetTolerances++++man+manualpages/KSP/KSPSetTolerances.html#KSPSetTolerances
man:+KSPSetInitialGuessNonzero++KSPSetInitialGuessNonzero++++man+manualpages/KSP/KSPSetInitialGuessNonzero.html#KSPSetInitialGuessNonzero
man:+KSPGetInitialGuessNonzero++KSPGetInitialGuessNonzero++++man+manualpages/KSP/KSPGetInitialGuessNonzero.html#KSPGetInitialGuessNonzero
man:+KSPSetInitialGuessKnoll++KSPSetInitialGuessKnoll++++man+manualpages/KSP/KSPSetInitialGuessKnoll.html#KSPSetInitialGuessKnoll
man:+KSPGetInitialGuessKnoll++KSPGetInitialGuessKnoll++++man+manualpages/KSP/KSPGetInitialGuessKnoll.html#KSPGetInitialGuessKnoll
man:+KSPGetComputeSingularValues++KSPGetComputeSingularValues++++man+manualpages/KSP/KSPGetComputeSingularValues.html#KSPGetComputeSingularValues
man:+KSPSetComputeSingularValues++KSPSetComputeSingularValues++++man+manualpages/KSP/KSPSetComputeSingularValues.html#KSPSetComputeSingularValues
man:+KSPGetComputeEigenvalues++KSPGetComputeEigenvalues++++man+manualpages/KSP/KSPGetComputeEigenvalues.html#KSPGetComputeEigenvalues
man:+KSPSetComputeEigenvalues++KSPSetComputeEigenvalues++++man+manualpages/KSP/KSPSetComputeEigenvalues.html#KSPSetComputeEigenvalues
man:+KSPGetRhs++KSPGetRhs++++man+manualpages/KSP/KSPGetRhs.html#KSPGetRhs
man:+KSPGetSolution++KSPGetSolution++++man+manualpages/KSP/KSPGetSolution.html#KSPGetSolution
man:+KSPSetPC++KSPSetPC++++man+manualpages/KSP/KSPSetPC.html#KSPSetPC
man:+KSPGetPC++KSPGetPC++++man+manualpages/KSP/KSPGetPC.html#KSPGetPC
man:+KSPSetMonitor++KSPSetMonitor++++man+manualpages/KSP/KSPSetMonitor.html#KSPSetMonitor
man:+KSPClearMonitor++KSPClearMonitor++++man+manualpages/KSP/KSPClearMonitor.html#KSPClearMonitor
man:+KSPGetMonitorContext++KSPGetMonitorContext++++man+manualpages/KSP/KSPGetMonitorContext.html#KSPGetMonitorContext
man:+KSPSetResidualHistory++KSPSetResidualHistory++++man+manualpages/KSP/KSPSetResidualHistory.html#KSPSetResidualHistory
man:+KSPGetResidualHistory++KSPGetResidualHistory++++man+manualpages/KSP/KSPGetResidualHistory.html#KSPGetResidualHistory
man:+KSPSetConvergenceTest++KSPSetConvergenceTest++++man+manualpages/KSP/KSPSetConvergenceTest.html#KSPSetConvergenceTest
man:+KSPGetConvergenceContext++KSPGetConvergenceContext++++man+manualpages/KSP/KSPGetConvergenceContext.html#KSPGetConvergenceContext
man:+KSPBuildSolution++KSPBuildSolution++++man+manualpages/KSP/KSPBuildSolution.html#KSPBuildSolution
man:+KSPBuildResidual++KSPBuildResidual++++man+manualpages/KSP/KSPBuildResidual.html#KSPBuildResidual
man:+KSPSetDiagonalScale++KSPSetDiagonalScale++++man+manualpages/KSP/KSPSetDiagonalScale.html#KSPSetDiagonalScale
man:+KSPGetDiagonalScale++KSPGetDiagonalScale++++man+manualpages/KSP/KSPGetDiagonalScale.html#KSPGetDiagonalScale
man:+KSPSetDiagonalScaleFix++KSPSetDiagonalScaleFix++++man+manualpages/KSP/KSPSetDiagonalScaleFix.html#KSPSetDiagonalScaleFix
man:+KSPGetDiagonalScaleFix++KSPGetDiagonalScaleFix++++man+manualpages/KSP/KSPGetDiagonalScaleFix.html#KSPGetDiagonalScaleFix
man:+KSPView++KSPView++++man+manualpages/KSP/KSPView.html#KSPView
man:+KSPSetNormType++KSPSetNormType++++man+manualpages/KSP/KSPSetNormType.html#KSPSetNormType
man:+KSPSetOperators++KSPSetOperators++++man+manualpages/KSP/KSPSetOperators.html#KSPSetOperators
man:+KSPGetOperators++KSPGetOperators++++man+manualpages/KSP/KSPGetOperators.html#KSPGetOperators
man:+KSPGetOperatorsSet++KSPGetOperatorsSet++++man+manualpages/KSP/KSPGetOperatorsSet.html#KSPGetOperatorsSet
man:+KSPCreate++KSPCreate++++man+manualpages/KSP/KSPCreate.html#KSPCreate
man:+KSPSetType++KSPSetType++++man+manualpages/KSP/KSPSetType.html#KSPSetType
man:+KSPRegisterDestroy++KSPRegisterDestroy++++man+manualpages/KSP/KSPRegisterDestroy.html#KSPRegisterDestroy
man:+KSPGetType++KSPGetType++++man+manualpages/KSP/KSPGetType.html#KSPGetType
man:+KSPRegister++KSPRegister++++man+manualpages/KSP/KSPRegister.html#KSPRegister
man:+KSPSetNullSpace++KSPSetNullSpace++++man+manualpages/KSP/KSPSetNullSpace.html#KSPSetNullSpace
man:+KSPGetNullSpace++KSPGetNullSpace++++man+manualpages/KSP/KSPGetNullSpace.html#KSPGetNullSpace
man:+KSPGetResidualNorm++KSPGetResidualNorm++++man+manualpages/KSP/KSPGetResidualNorm.html#KSPGetResidualNorm
man:+KSPGetIterationNumber++KSPGetIterationNumber++++man+manualpages/KSP/KSPGetIterationNumber.html#KSPGetIterationNumber
man:+KSPSingularValueMonitor++KSPSingularValueMonitor++++man+manualpages/KSP/KSPSingularValueMonitor.html#KSPSingularValueMonitor
man:+KSPVecViewMonitor++KSPVecViewMonitor++++man+manualpages/KSP/KSPVecViewMonitor.html#KSPVecViewMonitor
man:+KSPDefaultMonitor++KSPDefaultMonitor++++man+manualpages/KSP/KSPDefaultMonitor.html#KSPDefaultMonitor
man:+KSPTrueMonitor++KSPTrueMonitor++++man+manualpages/KSP/KSPTrueMonitor.html#KSPTrueMonitor
man:+KSPSkipConverged++KSPSkipConverged++++man+manualpages/KSP/KSPSkipConverged.html#KSPSkipConverged
man:+KSPDefaultConvergedSetUIRNorm++KSPDefaultConvergedSetUIRNorm++++man+manualpages/KSP/KSPDefaultConvergedSetUIRNorm.html#KSPDefaultConvergedSetUIRNorm
man:+KSPDefaultConvergedSetUMIRNorm++KSPDefaultConvergedSetUMIRNorm++++man+manualpages/KSP/KSPDefaultConvergedSetUMIRNorm.html#KSPDefaultConvergedSetUMIRNorm
man:+KSPDefaultConverged++KSPDefaultConverged++++man+manualpages/KSP/KSPDefaultConverged.html#KSPDefaultConverged
man:+KSPGetVecs++KSPGetVecs++++man+manualpages/KSP/KSPGetVecs.html#KSPGetVecs
man:+KSPGetConvergedReason++KSPGetConvergedReason++++man+manualpages/KSP/KSPGetConvergedReason.html#KSPGetConvergedReason
man:+KSPInitialResidual++KSPInitialResidual++++man+manualpages/KSP/KSPInitialResidual.html#KSPInitialResidual
man:+KSPUnwindPreconditioner++KSPUnwindPreconditioner++++man+manualpages/KSP/KSPUnwindPreconditioner.html#KSPUnwindPreconditioner
man:+KSPRegisterAll++KSPRegisterAll++++man+manualpages/KSP/KSPRegisterAll.html#KSPRegisterAll
man:+KSPLGMonitorCreate++KSPLGMonitorCreate++++man+manualpages/KSP/KSPLGMonitorCreate.html#KSPLGMonitorCreate
man:+KSPLGMonitorDestroy++KSPLGMonitorDestroy++++man+manualpages/KSP/KSPLGMonitorDestroy.html#KSPLGMonitorDestroy
man:+KSPLGTrueMonitorCreate++KSPLGTrueMonitorCreate++++man+manualpages/KSP/KSPLGTrueMonitorCreate.html#KSPLGTrueMonitorCreate
man:+KSPLGTrueMonitorDestroy++KSPLGTrueMonitorDestroy++++man+manualpages/KSP/KSPLGTrueMonitorDestroy.html#KSPLGTrueMonitorDestroy
man:+KSPComputeExplicitOperator++KSPComputeExplicitOperator++++man+manualpages/KSP/KSPComputeExplicitOperator.html#KSPComputeExplicitOperator
man:+KSPComputeEigenvaluesExplicitly++KSPComputeEigenvaluesExplicitly++++man+manualpages/KSP/KSPComputeEigenvaluesExplicitly.html#KSPComputeEigenvaluesExplicitly
man:+PCInitializePackage++PCInitializePackage++++man+manualpages/KSP/PCInitializePackage.html#PCInitializePackage
man:+KSPInitializePackage++KSPInitializePackage++++man+manualpages/KSP/KSPInitializePackage.html#KSPInitializePackage
man:+KSPCR++KSPCR++++man+manualpages/KSP/KSPCR.html#KSPCR
man:+KSPBCGS++KSPBCGS++++man+manualpages/KSP/KSPBCGS.html#KSPBCGS
man:+KSPBCGSLSetXRes++KSPBCGSLSetXRes++++man+manualpages/KSP/KSPBCGSLSetXRes.html#KSPBCGSLSetXRes
man:+KSPBCGSLSetPol++KSPBCGSLSetPol++++man+manualpages/KSP/KSPBCGSLSetPol.html#KSPBCGSLSetPol
man:+KSPBCGSLSetEll++KSPBCGSLSetEll++++man+manualpages/KSP/KSPBCGSLSetEll.html#KSPBCGSLSetEll
man:+KSPBCGSL++KSPBCGSL++++man+manualpages/KSP/KSPBCGSL.html#KSPBCGSL
man:+KSPCG++KSPCG++++man+manualpages/KSP/KSPCG.html#KSPCG
man:+KSPCGSetType++KSPCGSetType++++man+manualpages/KSP/KSPCGSetType.html#KSPCGSetType
man:+KSPCGNE++KSPCGNE++++man+manualpages/KSP/KSPCGNE.html#KSPCGNE
man:+KSPSTCGSetRadius++KSPSTCGSetRadius++++man+manualpages/KSP/KSPSTCGSetRadius.html#KSPSTCGSetRadius
man:+KSPSTCGGetQuadratic++KSPSTCGGetQuadratic++++man+manualpages/KSP/KSPSTCGGetQuadratic.html#KSPSTCGGetQuadratic
man:+KSPSTCG++KSPSTCG++++man+manualpages/KSP/KSPSTCG.html#KSPSTCG
man:+KSPCGS++KSPCGS++++man+manualpages/KSP/KSPCGS.html#KSPCGS
man:+KSPGMRESKrylovMonitor++KSPGMRESKrylovMonitor++++man+manualpages/KSP/KSPGMRESKrylovMonitor.html#KSPGMRESKrylovMonitor
man:+KSPGMRESSetCGSRefinementType++KSPGMRESSetCGSRefinementType++++man+manualpages/KSP/KSPGMRESSetCGSRefinementType.html#KSPGMRESSetCGSRefinementType
man:+KSPGMRESSetRestart++KSPGMRESSetRestart++++man+manualpages/KSP/KSPGMRESSetRestart.html#KSPGMRESSetRestart
man:+KSPGMRESSetHapTol++KSPGMRESSetHapTol++++man+manualpages/KSP/KSPGMRESSetHapTol.html#KSPGMRESSetHapTol
man:+KSPGMRES++KSPGMRES++++man+manualpages/KSP/KSPGMRES.html#KSPGMRES
man:+KSPGMRESModifiedGramSchmidtOrthogonalization++KSPGMRESModifiedGramSchmidtOrthogonalization++++man+manualpages/KSP/KSPGMRESModifiedGramSchmidtOrthogonalization.html#KSPGMRESModifiedGramSchmidtOrthogonalization
man:+KSPGMRESClassicalGramSchmidtOrthogonalization++KSPGMRESClassicalGramSchmidtOrthogonalization++++man+manualpages/KSP/KSPGMRESClassicalGramSchmidtOrthogonalization.html#KSPGMRESClassicalGramSchmidtOrthogonalization
man:+KSPGMRESSetOrthogonalization++KSPGMRESSetOrthogonalization++++man+manualpages/KSP/KSPGMRESSetOrthogonalization.html#KSPGMRESSetOrthogonalization
man:+KSPGMRESSetPreAllocateVectors++KSPGMRESSetPreAllocateVectors++++man+manualpages/KSP/KSPGMRESSetPreAllocateVectors.html#KSPGMRESSetPreAllocateVectors
man:+KSPLGMRES++KSPLGMRES++++man+manualpages/KSP/KSPLGMRES.html#KSPLGMRES
man:+KSPFGMRES++KSPFGMRES++++man+manualpages/KSP/KSPFGMRES.html#KSPFGMRES
man:+KSPFGMRESSetModifyPC++KSPFGMRESSetModifyPC++++man+manualpages/KSP/KSPFGMRESSetModifyPC.html#KSPFGMRESSetModifyPC
man:+KSPFGMRESModifyPCNoChange++KSPFGMRESModifyPCNoChange++++man+manualpages/KSP/KSPFGMRESModifyPCNoChange.html#KSPFGMRESModifyPCNoChange
man:+KSPFGMRESModifyPCKSP++KSPFGMRESModifyPCKSP++++man+manualpages/KSP/KSPFGMRESModifyPCKSP.html#KSPFGMRESModifyPCKSP
man:+KSPChebychevSetEigenvalues++KSPChebychevSetEigenvalues++++man+manualpages/KSP/KSPChebychevSetEigenvalues.html#KSPChebychevSetEigenvalues
man:+KSPCHEBYCHEV++KSPCHEBYCHEV++++man+manualpages/KSP/KSPCHEBYCHEV.html#KSPCHEBYCHEV
man:+KSPRICHARDSON++KSPRICHARDSON++++man+manualpages/KSP/KSPRICHARDSON.html#KSPRICHARDSON
man:+KSPRichardsonSetScale++KSPRichardsonSetScale++++man+manualpages/KSP/KSPRichardsonSetScale.html#KSPRichardsonSetScale
man:+KSPLSQR++KSPLSQR++++man+manualpages/KSP/KSPLSQR.html#KSPLSQR
man:+KSPPREONLY++KSPPREONLY++++man+manualpages/KSP/KSPPREONLY.html#KSPPREONLY
man:+KSPRTCQMR++KSPRTCQMR++++man+manualpages/KSP/KSPRTCQMR.html#KSPRTCQMR
man:+KSPRTFQMR++KSPRTFQMR++++man+manualpages/KSP/KSPRTFQMR.html#KSPRTFQMR
man:+KSPQCGSetTrustRegionRadius++KSPQCGSetTrustRegionRadius++++man+manualpages/KSP/KSPQCGSetTrustRegionRadius.html#KSPQCGSetTrustRegionRadius
man:+KSPQCGGetTrialStepNorm++KSPQCGGetTrialStepNorm++++man+manualpages/KSP/KSPQCGGetTrialStepNorm.html#KSPQCGGetTrialStepNorm
man:+KSPQCGGetQuadratic++KSPQCGGetQuadratic++++man+manualpages/KSP/KSPQCGGetQuadratic.html#KSPQCGGetQuadratic
man:+KSPQCG++KSPQCG++++man+manualpages/KSP/KSPQCG.html#KSPQCG
man:+KSPBICG++KSPBICG++++man+manualpages/KSP/KSPBICG.html#KSPBICG
man:+KSPMINRES++KSPMINRES++++man+manualpages/KSP/KSPMINRES.html#KSPMINRES
man:+KSPSYMMLQ++KSPSYMMLQ++++man+manualpages/KSP/KSPSYMMLQ.html#KSPSYMMLQ
man:+SNES++SNES++++man+manualpages/SNES/SNES.html#SNES
man:+SNESType++SNESType++++man+manualpages/SNES/SNESType.html#SNESType
man:+SNESRegisterDynamic++SNESRegisterDynamic++++man+manualpages/SNES/SNESRegisterDynamic.html#SNESRegisterDynamic
man:+MatSNESMFRegisterDynamic++MatSNESMFRegisterDynamic++++man+manualpages/SNES/MatSNESMFRegisterDynamic.html#MatSNESMFRegisterDynamic
man:+SNESConvergedReason++SNESConvergedReason++++man+manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_CONVERGED_FNORM_ABS++SNES_CONVERGED_FNORM_ABS++++man+manualpages/SNES/SNES_CONVERGED_FNORM_ABS.html#SNES_CONVERGED_FNORM_ABS
man:+SNES_CONVERGED_FNORM_RELATIVE++SNES_CONVERGED_FNORM_RELATIVE++++man+manualpages/SNES/SNES_CONVERGED_FNORM_RELATIVE.html#SNES_CONVERGED_FNORM_RELATIVE
man:+SNES_CONVERGED_PNORM_RELATIVE++SNES_CONVERGED_PNORM_RELATIVE++++man+manualpages/SNES/SNES_CONVERGED_PNORM_RELATIVE.html#SNES_CONVERGED_PNORM_RELATIVE
man:+SNES_DIVERGED_FUNCTION_COUNT++SNES_DIVERGED_FUNCTION_COUNT++++man+manualpages/SNES/SNES_DIVERGED_FUNCTION_COUNT.html#SNES_DIVERGED_FUNCTION_COUNT
man:+SNES_DIVERGED_FNORM_NAN++SNES_DIVERGED_FNORM_NAN++++man+manualpages/SNES/SNES_DIVERGED_FNORM_NAN.html#SNES_DIVERGED_FNORM_NAN
man:+SNES_DIVERGED_MAX_IT++SNES_DIVERGED_MAX_IT++++man+manualpages/SNES/SNES_DIVERGED_MAX_IT.html#SNES_DIVERGED_MAX_IT
man:+SNES_DIVERGED_LS_FAILURE++SNES_DIVERGED_LS_FAILURE++++man+manualpages/SNES/SNES_DIVERGED_LS_FAILURE.html#SNES_DIVERGED_LS_FAILURE
man:+SNES_DIVERGED_LOCAL_MIN++SNES_DIVERGED_LOCAL_MIN++++man+manualpages/SNES/SNES_DIVERGED_LOCAL_MIN.html#SNES_DIVERGED_LOCAL_MIN
man:+SNES_CONERGED_ITERATING++SNES_CONERGED_ITERATING++++man+manualpages/SNES/SNES_CONERGED_ITERATING.html#SNES_CONERGED_ITERATING
man:+SNESView++SNESView++++man+manualpages/SNES/SNESView.html#SNESView
man:+SNESAddOptionsChecker++SNESAddOptionsChecker++++man+manualpages/SNES/SNESAddOptionsChecker.html#SNESAddOptionsChecker
man:+SNESSetFromOptions++SNESSetFromOptions++++man+manualpages/SNES/SNESSetFromOptions.html#SNESSetFromOptions
man:+SNESSetApplicationContext++SNESSetApplicationContext++++man+manualpages/SNES/SNESSetApplicationContext.html#SNESSetApplicationContext
man:+SNESGetApplicationContext++SNESGetApplicationContext++++man+manualpages/SNES/SNESGetApplicationContext.html#SNESGetApplicationContext
man:+SNESGetIterationNumber++SNESGetIterationNumber++++man+manualpages/SNES/SNESGetIterationNumber.html#SNESGetIterationNumber
man:+SNESGetFunctionNorm++SNESGetFunctionNorm++++man+manualpages/SNES/SNESGetFunctionNorm.html#SNESGetFunctionNorm
man:+SNESGetNumberUnsuccessfulSteps++SNESGetNumberUnsuccessfulSteps++++man+manualpages/SNES/SNESGetNumberUnsuccessfulSteps.html#SNESGetNumberUnsuccessfulSteps
man:+SNESSetMaximumUnsuccessfulSteps++SNESSetMaximumUnsuccessfulSteps++++man+manualpages/SNES/SNESSetMaximumUnsuccessfulSteps.html#SNESSetMaximumUnsuccessfulSteps
man:+SNESGetMaximumUnsuccessfulSteps++SNESGetMaximumUnsuccessfulSteps++++man+manualpages/SNES/SNESGetMaximumUnsuccessfulSteps.html#SNESGetMaximumUnsuccessfulSteps
man:+SNESGetLinearSolveFailures++SNESGetLinearSolveFailures++++man+manualpages/SNES/SNESGetLinearSolveFailures.html#SNESGetLinearSolveFailures
man:+SNESSetMaxLinearSolveFailures++SNESSetMaxLinearSolveFailures++++man+manualpages/SNES/SNESSetMaxLinearSolveFailures.html#SNESSetMaxLinearSolveFailures
man:+SNESGetMaxLinearSolveFailures++SNESGetMaxLinearSolveFailures++++man+manualpages/SNES/SNESGetMaxLinearSolveFailures.html#SNESGetMaxLinearSolveFailures
man:+SNESGetNumberLinearIterations++SNESGetNumberLinearIterations++++man+manualpages/SNES/SNESGetNumberLinearIterations.html#SNESGetNumberLinearIterations
man:+SNESGetKSP++SNESGetKSP++++man+manualpages/SNES/SNESGetKSP.html#SNESGetKSP
man:+SNESSetKSP++SNESSetKSP++++man+manualpages/SNES/SNESSetKSP.html#SNESSetKSP
man:+SNESCreate++SNESCreate++++man+manualpages/SNES/SNESCreate.html#SNESCreate
man:+SNESSetFunction++SNESSetFunction++++man+manualpages/SNES/SNESSetFunction.html#SNESSetFunction
man:+SNESSetRhs++SNESSetRhs++++man+manualpages/SNES/SNESSetRhs.html#SNESSetRhs
man:+SNESGetRhs++SNESGetRhs++++man+manualpages/SNES/SNESGetRhs.html#SNESGetRhs
man:+SNESComputeFunction++SNESComputeFunction++++man+manualpages/SNES/SNESComputeFunction.html#SNESComputeFunction
man:+SNESComputeJacobian++SNESComputeJacobian++++man+manualpages/SNES/SNESComputeJacobian.html#SNESComputeJacobian
man:+SNESSetJacobian++SNESSetJacobian++++man+manualpages/SNES/SNESSetJacobian.html#SNESSetJacobian
man:+SNESGetJacobian++SNESGetJacobian++++man+manualpages/SNES/SNESGetJacobian.html#SNESGetJacobian
man:+SNESSetUp++SNESSetUp++++man+manualpages/SNES/SNESSetUp.html#SNESSetUp
man:+SNESDestroy++SNESDestroy++++man+manualpages/SNES/SNESDestroy.html#SNESDestroy
man:+SNESSetTolerances++SNESSetTolerances++++man+manualpages/SNES/SNESSetTolerances.html#SNESSetTolerances
man:+SNESGetTolerances++SNESGetTolerances++++man+manualpages/SNES/SNESGetTolerances.html#SNESGetTolerances
man:+SNESSetTrustRegionTolerance++SNESSetTrustRegionTolerance++++man+manualpages/SNES/SNESSetTrustRegionTolerance.html#SNESSetTrustRegionTolerance
man:+SNESSetMonitor++SNESSetMonitor++++man+manualpages/SNES/SNESSetMonitor.html#SNESSetMonitor
man:+SNESClearMonitor++SNESClearMonitor++++man+manualpages/SNES/SNESClearMonitor.html#SNESClearMonitor
man:+SNESSetConvergenceTest++SNESSetConvergenceTest++++man+manualpages/SNES/SNESSetConvergenceTest.html#SNESSetConvergenceTest
man:+SNESGetConvergedReason++SNESGetConvergedReason++++man+manualpages/SNES/SNESGetConvergedReason.html#SNESGetConvergedReason
man:+SNESSetConvergenceHistory++SNESSetConvergenceHistory++++man+manualpages/SNES/SNESSetConvergenceHistory.html#SNESSetConvergenceHistory
man:+SNESGetConvergenceHistory++SNESGetConvergenceHistory++++man+manualpages/SNES/SNESGetConvergenceHistory.html#SNESGetConvergenceHistory
man:+SNESSetUpdate++SNESSetUpdate++++man+manualpages/SNES/SNESSetUpdate.html#SNESSetUpdate
man:+SNESDefaultUpdate++SNESDefaultUpdate++++man+manualpages/SNES/SNESDefaultUpdate.html#SNESDefaultUpdate
man:+SNESSolve++SNESSolve++++man+manualpages/SNES/SNESSolve.html#SNESSolve
man:+SNESSetType++SNESSetType++++man+manualpages/SNES/SNESSetType.html#SNESSetType
man:+SNESRegisterDestroy++SNESRegisterDestroy++++man+manualpages/SNES/SNESRegisterDestroy.html#SNESRegisterDestroy
man:+SNESGetType++SNESGetType++++man+manualpages/SNES/SNESGetType.html#SNESGetType
man:+SNESGetSolution++SNESGetSolution++++man+manualpages/SNES/SNESGetSolution.html#SNESGetSolution
man:+SNESSetSolution++SNESSetSolution++++man+manualpages/SNES/SNESSetSolution.html#SNESSetSolution
man:+SNESGetSolutionUpdate++SNESGetSolutionUpdate++++man+manualpages/SNES/SNESGetSolutionUpdate.html#SNESGetSolutionUpdate
man:+SNESGetFunction++SNESGetFunction++++man+manualpages/SNES/SNESGetFunction.html#SNESGetFunction
man:+SNESSetOptionsPrefix++SNESSetOptionsPrefix++++man+manualpages/SNES/SNESSetOptionsPrefix.html#SNESSetOptionsPrefix
man:+SNESAppendOptionsPrefix++SNESAppendOptionsPrefix++++man+manualpages/SNES/SNESAppendOptionsPrefix.html#SNESAppendOptionsPrefix
man:+SNESGetOptionsPrefix++SNESGetOptionsPrefix++++man+manualpages/SNES/SNESGetOptionsPrefix.html#SNESGetOptionsPrefix
man:+SNESRegister++SNESRegister++++man+manualpages/SNES/SNESRegister.html#SNESRegister
man:+SNESDefaultComputeJacobian++SNESDefaultComputeJacobian++++man+manualpages/SNES/SNESDefaultComputeJacobian.html#SNESDefaultComputeJacobian
man:+SNESRegisterAll++SNESRegisterAll++++man+manualpages/SNES/SNESRegisterAll.html#SNESRegisterAll
man:+SNESVecViewMonitor++SNESVecViewMonitor++++man+manualpages/SNES/SNESVecViewMonitor.html#SNESVecViewMonitor
man:+SNESVecViewResidualMonitor++SNESVecViewResidualMonitor++++man+manualpages/SNES/SNESVecViewResidualMonitor.html#SNESVecViewResidualMonitor
man:+SNESVecViewUpdateMonitor++SNESVecViewUpdateMonitor++++man+manualpages/SNES/SNESVecViewUpdateMonitor.html#SNESVecViewUpdateMonitor
man:+SNESDefaultMonitor++SNESDefaultMonitor++++man+manualpages/SNES/SNESDefaultMonitor.html#SNESDefaultMonitor
man:+SNESRatioMonitor++SNESRatioMonitor++++man+manualpages/SNES/SNESRatioMonitor.html#SNESRatioMonitor
man:+SNESSetRatioMonitor++SNESSetRatioMonitor++++man+manualpages/SNES/SNESSetRatioMonitor.html#SNESSetRatioMonitor
man:+SNESConverged_LS++SNESConverged_LS++++man+manualpages/SNES/SNESConverged_LS.html#SNESConverged_LS
man:+SNES_KSP_SetConvergenceTestEW++SNES_KSP_SetConvergenceTestEW++++man+manualpages/SNES/SNES_KSP_SetConvergenceTestEW.html#SNES_KSP_SetConvergenceTestEW
man:+SNES_KSP_SetParametersEW++SNES_KSP_SetParametersEW++++man+manualpages/SNES/SNES_KSP_SetParametersEW.html#SNES_KSP_SetParametersEW
man:+SNESDefaultComputeJacobianColor++SNESDefaultComputeJacobianColor++++man+manualpages/SNES/SNESDefaultComputeJacobianColor.html#SNESDefaultComputeJacobianColor
man:+SNESInitializePackage++SNESInitializePackage++++man+manualpages/SNES/SNESInitializePackage.html#SNESInitializePackage
man:+SNESMatrixFreeCreate2++SNESMatrixFreeCreate2++++man+manualpages/SNES/SNESMatrixFreeCreate2.html#SNESMatrixFreeCreate2
man:+SNESDefaultMatrixFreeSetParameters2++SNESDefaultMatrixFreeSetParameters2++++man+manualpages/SNES/SNESDefaultMatrixFreeSetParameters2.html#SNESDefaultMatrixFreeSetParameters2
man:+MatSNESMFSetType++MatSNESMFSetType++++man+manualpages/SNESMF/MatSNESMFSetType.html#MatSNESMFSetType
man:+MatSNESMFRegisterDestroy++MatSNESMFRegisterDestroy++++man+manualpages/SNESMF/MatSNESMFRegisterDestroy.html#MatSNESMFRegisterDestroy
man:+MatCreateSNESMF++MatCreateSNESMF++++man+manualpages/SNESMF/MatCreateSNESMF.html#MatCreateSNESMF
man:+MatSNESMFSetFromOptions++MatSNESMFSetFromOptions++++man+manualpages/SNESMF/MatSNESMFSetFromOptions.html#MatSNESMFSetFromOptions
man:+MATMFFD++MATMFFD++++man+manualpages/SNESMF/MATMFFD.html#MATMFFD
man:+MatCreateMF++MatCreateMF++++man+manualpages/SNESMF/MatCreateMF.html#MatCreateMF
man:+MatSNESMFGetH++MatSNESMFGetH++++man+manualpages/SNESMF/MatSNESMFGetH.html#MatSNESMFGetH
man:+MatSNESMFKSPMonitor++MatSNESMFKSPMonitor++++man+manualpages/SNESMF/MatSNESMFKSPMonitor.html#MatSNESMFKSPMonitor
man:+MatSNESMFSetFunction++MatSNESMFSetFunction++++man+manualpages/SNESMF/MatSNESMFSetFunction.html#MatSNESMFSetFunction
man:+MatSNESMFSetFunctioni++MatSNESMFSetFunctioni++++man+manualpages/SNESMF/MatSNESMFSetFunctioni.html#MatSNESMFSetFunctioni
man:+MatSNESMFSetFunctioniBase++MatSNESMFSetFunctioniBase++++man+manualpages/SNESMF/MatSNESMFSetFunctioniBase.html#MatSNESMFSetFunctioniBase
man:+MatSNESMFSetPeriod++MatSNESMFSetPeriod++++man+manualpages/SNESMF/MatSNESMFSetPeriod.html#MatSNESMFSetPeriod
man:+MatSNESMFSetFunctionError++MatSNESMFSetFunctionError++++man+manualpages/SNESMF/MatSNESMFSetFunctionError.html#MatSNESMFSetFunctionError
man:+MatSNESMFAddNullSpace++MatSNESMFAddNullSpace++++man+manualpages/SNESMF/MatSNESMFAddNullSpace.html#MatSNESMFAddNullSpace
man:+MatSNESMFSetHHistory++MatSNESMFSetHHistory++++man+manualpages/SNESMF/MatSNESMFSetHHistory.html#MatSNESMFSetHHistory
man:+MatSNESMFResetHHistory++MatSNESMFResetHHistory++++man+manualpages/SNESMF/MatSNESMFResetHHistory.html#MatSNESMFResetHHistory
man:+MatSNESMFComputeJacobian++MatSNESMFComputeJacobian++++man+manualpages/SNESMF/MatSNESMFComputeJacobian.html#MatSNESMFComputeJacobian
man:+MatSNESMFSetBase++MatSNESMFSetBase++++man+manualpages/SNESMF/MatSNESMFSetBase.html#MatSNESMFSetBase
man:+MatSNESMFSetCheckh++MatSNESMFSetCheckh++++man+manualpages/SNESMF/MatSNESMFSetCheckh.html#MatSNESMFSetCheckh
man:+MatSNESMFCheckPositivity++MatSNESMFCheckPositivity++++man+manualpages/SNESMF/MatSNESMFCheckPositivity.html#MatSNESMFCheckPositivity
man:+MatSNESMFDSSetUmin++MatSNESMFDSSetUmin++++man+manualpages/SNESMF/MatSNESMFDSSetUmin.html#MatSNESMFDSSetUmin
man:+MATSNESMF_DS++MATSNESMF_DS++++man+manualpages/SNESMF/MATSNESMF_DS.html#MATSNESMF_DS
man:+MatSNESMFRegisterAll++MatSNESMFRegisterAll++++man+manualpages/SNESMF/MatSNESMFRegisterAll.html#MatSNESMFRegisterAll
man:+MATSNESMF_WP++MATSNESMF_WP++++man+manualpages/SNESMF/MATSNESMF_WP.html#MATSNESMF_WP
man:+MatSNESMFWPSetComputeNormU++MatSNESMFWPSetComputeNormU++++man+manualpages/SNESMF/MatSNESMFWPSetComputeNormU.html#MatSNESMFWPSetComputeNormU
man:+SNESLineSearchNo++SNESLineSearchNo++++man+manualpages/SNES/SNESLineSearchNo.html#SNESLineSearchNo
man:+SNESLineSearchNoNorms++SNESLineSearchNoNorms++++man+manualpages/SNES/SNESLineSearchNoNorms.html#SNESLineSearchNoNorms
man:+SNESLineSearchCubic++SNESLineSearchCubic++++man+manualpages/SNES/SNESLineSearchCubic.html#SNESLineSearchCubic
man:+SNESLineSearchQuadratic++SNESLineSearchQuadratic++++man+manualpages/SNES/SNESLineSearchQuadratic.html#SNESLineSearchQuadratic
man:+SNESLineSearchSet++SNESLineSearchSet++++man+manualpages/SNES/SNESLineSearchSet.html#SNESLineSearchSet
man:+SNESLineSearchSetPostCheck++SNESLineSearchSetPostCheck++++man+manualpages/SNES/SNESLineSearchSetPostCheck.html#SNESLineSearchSetPostCheck
man:+SNESLineSearchSetPreCheck++SNESLineSearchSetPreCheck++++man+manualpages/SNES/SNESLineSearchSetPreCheck.html#SNESLineSearchSetPreCheck
man:+SNESLS++SNESLS++++man+manualpages/SNES/SNESLS.html#SNESLS
man:+SNESLineSearchSetParams++SNESLineSearchSetParams++++man+manualpages/SNES/SNESLineSearchSetParams.html#SNESLineSearchSetParams
man:+SNESLineSearchGetParams++SNESLineSearchGetParams++++man+manualpages/SNES/SNESLineSearchGetParams.html#SNESLineSearchGetParams
man:+SNESConverged_TR++SNESConverged_TR++++man+manualpages/SNES/SNESConverged_TR.html#SNESConverged_TR
man:+SNESTR++SNESTR++++man+manualpages/SNES/SNESTR.html#SNESTR
man:+DMMGCreate++DMMGCreate++++man+manualpages/DA/DMMGCreate.html#DMMGCreate
man:+DMMGSetUseGalerkinCoarse++DMMGSetUseGalerkinCoarse++++man+manualpages/DA/DMMGSetUseGalerkinCoarse.html#DMMGSetUseGalerkinCoarse
man:+DMMGDestroy++DMMGDestroy++++man+manualpages/DA/DMMGDestroy.html#DMMGDestroy
man:+DMMGSetDM++DMMGSetDM++++man+manualpages/DA/DMMGSetDM.html#DMMGSetDM
man:+DMMGSetUp++DMMGSetUp++++man+manualpages/DA/DMMGSetUp.html#DMMGSetUp
man:+DMMGSolve++DMMGSolve++++man+manualpages/DA/DMMGSolve.html#DMMGSolve
man:+DMMGSetKSP++DMMGSetKSP++++man+manualpages/DA/DMMGSetKSP.html#DMMGSetKSP
man:+DMMGView++DMMGView++++man+manualpages/DA/DMMGView.html#DMMGView
man:+DMMGSetNullSpace++DMMGSetNullSpace++++man+manualpages/DA/DMMGSetNullSpace.html#DMMGSetNullSpace
man:+DMMGInitialGuessCurrent++DMMGInitialGuessCurrent++++man+manualpages/DA/DMMGInitialGuessCurrent.html#DMMGInitialGuessCurrent
man:+DMMGSetInitialGuess++DMMGSetInitialGuess++++man+manualpages/DA/DMMGSetInitialGuess.html#DMMGSetInitialGuess
man:+SNESDAFormFunction++SNESDAFormFunction++++man+manualpages/DA/SNESDAFormFunction.html#SNESDAFormFunction
man:+DMMGSetSNES++DMMGSetSNES++++man+manualpages/DA/DMMGSetSNES.html#DMMGSetSNES
man:+DMMGSetSNESLocalFD++DMMGSetSNESLocalFD++++man+manualpages/DA/DMMGSetSNESLocalFD.html#DMMGSetSNESLocalFD
man:+DMMGSetSNESLocal++DMMGSetSNESLocal++++man+manualpages/DA/DMMGSetSNESLocal.html#DMMGSetSNESLocal
man:+DMMGSetInitialGuessLocal++DMMGSetInitialGuessLocal++++man+manualpages/DA/DMMGSetInitialGuessLocal.html#DMMGSetInitialGuessLocal
man:+PCDMMG++PCDMMG++++man+manualpages/DA/PCDMMG.html#PCDMMG
man:+PCDMMGSetDMMG++PCDMMGSetDMMG++++man+manualpages/DA/PCDMMGSetDMMG.html#PCDMMGSetDMMG
man:+DMMG++DMMG++++man+manualpages/DA/DMMG.html#DMMG
man:+DMMGGetRHS++DMMGGetRHS++++man+manualpages/DA/DMMGGetRHS.html#DMMGGetRHS
man:+DMMGGetx++DMMGGetx++++man+manualpages/DA/DMMGGetx.html#DMMGGetx
man:+DMMGGetJ++DMMGGetJ++++man+manualpages/DA/DMMGGetJ.html#DMMGGetJ
man:+DMMGGetComm++DMMGGetComm++++man+manualpages/DA/DMMGGetComm.html#DMMGGetComm
man:+DMMGGetB++DMMGGetB++++man+manualpages/DA/DMMGGetB.html#DMMGGetB
man:+DMMGGetFine++DMMGGetFine++++man+manualpages/DA/DMMGGetFine.html#DMMGGetFine
man:+DMMGGetKSP++DMMGGetKSP++++man+manualpages/DA/DMMGGetKSP.html#DMMGGetKSP
man:+DMMGGetSNES++DMMGGetSNES++++man+manualpages/DA/DMMGGetSNES.html#DMMGGetSNES
man:+DMMGGetDA++DMMGGetDA++++man+manualpages/DA/DMMGGetDA.html#DMMGGetDA
man:+DMMGGetVecPack++DMMGGetVecPack++++man+manualpages/DA/DMMGGetVecPack.html#DMMGGetVecPack
man:+DMMGGetUser++DMMGGetUser++++man+manualpages/DA/DMMGGetUser.html#DMMGGetUser
man:+DMMGSetUser++DMMGSetUser++++man+manualpages/DA/DMMGSetUser.html#DMMGSetUser
man:+DMMGGetLevels++DMMGGetLevels++++man+manualpages/DA/DMMGGetLevels.html#DMMGGetLevels
man:+DMMGGetDMMG++DMMGGetDMMG++++man+manualpages/DA/DMMGGetDMMG.html#DMMGGetDMMG
man:+SNESDAComputeJacobianWithAdic++SNESDAComputeJacobianWithAdic++++man+manualpages/DA/SNESDAComputeJacobianWithAdic.html#SNESDAComputeJacobianWithAdic
man:+TS++TS++++man+manualpages/TS/TS.html#TS
man:+TSType++TSType++++man+manualpages/TS/TSType.html#TSType
man:+TSProblemType++TSProblemType++++man+manualpages/TS/TSProblemType.html#TSProblemType
man:+TSRegisterDynamic++TSRegisterDynamic++++man+manualpages/TS/TSRegisterDynamic.html#TSRegisterDynamic
man:+TSSetFromOptions++TSSetFromOptions++++man+manualpages/TS/TSSetFromOptions.html#TSSetFromOptions
man:+TSViewFromOptions++TSViewFromOptions++++man+manualpages/TS/TSViewFromOptions.html#TSViewFromOptions
man:+TSComputeRHSJacobian++TSComputeRHSJacobian++++man+manualpages/TS/TSComputeRHSJacobian.html#TSComputeRHSJacobian
man:+TSSetRHSFunction++TSSetRHSFunction++++man+manualpages/TS/TSSetRHSFunction.html#TSSetRHSFunction
man:+TSSetRHSMatrix++TSSetRHSMatrix++++man+manualpages/TS/TSSetRHSMatrix.html#TSSetRHSMatrix
man:+TSSetLHSMatrix++TSSetLHSMatrix++++man+manualpages/TS/TSSetLHSMatrix.html#TSSetLHSMatrix
man:+TSSetRHSJacobian++TSSetRHSJacobian++++man+manualpages/TS/TSSetRHSJacobian.html#TSSetRHSJacobian
man:+TSView++TSView++++man+manualpages/TS/TSView.html#TSView
man:+TSSetApplicationContext++TSSetApplicationContext++++man+manualpages/TS/TSSetApplicationContext.html#TSSetApplicationContext
man:+TSGetApplicationContext++TSGetApplicationContext++++man+manualpages/TS/TSGetApplicationContext.html#TSGetApplicationContext
man:+TSGetTimeStepNumber++TSGetTimeStepNumber++++man+manualpages/TS/TSGetTimeStepNumber.html#TSGetTimeStepNumber
man:+TSSetInitialTimeStep++TSSetInitialTimeStep++++man+manualpages/TS/TSSetInitialTimeStep.html#TSSetInitialTimeStep
man:+TSSetTimeStep++TSSetTimeStep++++man+manualpages/TS/TSSetTimeStep.html#TSSetTimeStep
man:+TSGetTimeStep++TSGetTimeStep++++man+manualpages/TS/TSGetTimeStep.html#TSGetTimeStep
man:+TSGetSolution++TSGetSolution++++man+manualpages/TS/TSGetSolution.html#TSGetSolution
man:+TSSetProblemType++TSSetProblemType++++man+manualpages/TS/TSSetProblemType.html#TSSetProblemType
man:+TSGetProblemType++TSGetProblemType++++man+manualpages/TS/TSGetProblemType.html#TSGetProblemType
man:+TSSetUp++TSSetUp++++man+manualpages/TS/TSSetUp.html#TSSetUp
man:+TSDestroy++TSDestroy++++man+manualpages/TS/TSDestroy.html#TSDestroy
man:+TSGetSNES++TSGetSNES++++man+manualpages/TS/TSGetSNES.html#TSGetSNES
man:+TSGetKSP++TSGetKSP++++man+manualpages/TS/TSGetKSP.html#TSGetKSP
man:+TSGetDuration++TSGetDuration++++man+manualpages/TS/TSGetDuration.html#TSGetDuration
man:+TSSetDuration++TSSetDuration++++man+manualpages/TS/TSSetDuration.html#TSSetDuration
man:+TSSetSolution++TSSetSolution++++man+manualpages/TS/TSSetSolution.html#TSSetSolution
man:+TSSetPreStep++TSSetPreStep++++man+manualpages/TS/TSSetPreStep.html#TSSetPreStep
man:+TSDefaultPreStep++TSDefaultPreStep++++man+manualpages/TS/TSDefaultPreStep.html#TSDefaultPreStep
man:+TSSetUpdate++TSSetUpdate++++man+manualpages/TS/TSSetUpdate.html#TSSetUpdate
man:+TSDefaultUpdate++TSDefaultUpdate++++man+manualpages/TS/TSDefaultUpdate.html#TSDefaultUpdate
man:+TSSetPostStep++TSSetPostStep++++man+manualpages/TS/TSSetPostStep.html#TSSetPostStep
man:+TSDefaultPostStep++TSDefaultPostStep++++man+manualpages/TS/TSDefaultPostStep.html#TSDefaultPostStep
man:+TSSetMonitor++TSSetMonitor++++man+manualpages/TS/TSSetMonitor.html#TSSetMonitor
man:+TSClearMonitor++TSClearMonitor++++man+manualpages/TS/TSClearMonitor.html#TSClearMonitor
man:+TSDefaultMonitor++TSDefaultMonitor++++man+manualpages/TS/TSDefaultMonitor.html#TSDefaultMonitor
man:+TSStep++TSStep++++man+manualpages/TS/TSStep.html#TSStep
man:+TSLGMonitorCreate++TSLGMonitorCreate++++man+manualpages/TS/TSLGMonitorCreate.html#TSLGMonitorCreate
man:+TSLGMonitorDestroy++TSLGMonitorDestroy++++man+manualpages/TS/TSLGMonitorDestroy.html#TSLGMonitorDestroy
man:+TSGetTime++TSGetTime++++man+manualpages/TS/TSGetTime.html#TSGetTime
man:+TSSetOptionsPrefix++TSSetOptionsPrefix++++man+manualpages/TS/TSSetOptionsPrefix.html#TSSetOptionsPrefix
man:+TSAppendOptionsPrefix++TSAppendOptionsPrefix++++man+manualpages/TS/TSAppendOptionsPrefix.html#TSAppendOptionsPrefix
man:+TSGetOptionsPrefix++TSGetOptionsPrefix++++man+manualpages/TS/TSGetOptionsPrefix.html#TSGetOptionsPrefix
man:+TSGetRHSMatrix++TSGetRHSMatrix++++man+manualpages/TS/TSGetRHSMatrix.html#TSGetRHSMatrix
man:+TSGetRHSJacobian++TSGetRHSJacobian++++man+manualpages/TS/TSGetRHSJacobian.html#TSGetRHSJacobian
man:+TSVecViewMonitor++TSVecViewMonitor++++man+manualpages/TS/TSVecViewMonitor.html#TSVecViewMonitor
man:+TSCreate++TSCreate++++man+manualpages/TS/TSCreate.html#TSCreate
man:+TSSetType++TSSetType++++man+manualpages/TS/TSSetType.html#TSSetType
man:+TSGetType++TSGetType++++man+manualpages/TS/TSGetType.html#TSGetType
man:+TSRegister++TSRegister++++man+manualpages/TS/TSRegister.html#TSRegister
man:+TSRegisterDestroy++TSRegisterDestroy++++man+manualpages/TS/TSRegisterDestroy.html#TSRegisterDestroy
man:+TSRegisterAll++TSRegisterAll++++man+manualpages/TS/TSRegisterAll.html#TSRegisterAll
man:+TSDefaultComputeJacobianColor++TSDefaultComputeJacobianColor++++man+manualpages/TS/TSDefaultComputeJacobianColor.html#TSDefaultComputeJacobianColor
man:+TSDefaultComputeJacobian++TSDefaultComputeJacobian++++man+manualpages/TS/TSDefaultComputeJacobian.html#TSDefaultComputeJacobian
man:+TSInitializePackage++TSInitializePackage++++man+manualpages/TS/TSInitializePackage.html#TSInitializePackage
man:+TS_EULER++TS_EULER++++man+manualpages/TS/TS_EULER.html#TS_EULER
man:+TSRKSetTolerance++TSRKSetTolerance++++man+manualpages/TS/TSRKSetTolerance.html#TSRKSetTolerance
man:+TS_RK++TS_RK++++man+manualpages/TS/TS_RK.html#TS_RK
man:+TS_BEULER++TS_BEULER++++man+manualpages/TS/TS_BEULER.html#TS_BEULER
man:+TS_CN++TS_CN++++man+manualpages/TS/TS_CN.html#TS_CN
man:+TSSundialsGetIterations++TSSundialsGetIterations++++man+manualpages/TS/TSSundialsGetIterations.html#TSSundialsGetIterations
man:+TSSundialsSetType++TSSundialsSetType++++man+manualpages/TS/TSSundialsSetType.html#TSSundialsSetType
man:+TSSundialsSetGMRESRestart++TSSundialsSetGMRESRestart++++man+manualpages/TS/TSSundialsSetGMRESRestart.html#TSSundialsSetGMRESRestart
man:+TSSundialsSetLinearTolerance++TSSundialsSetLinearTolerance++++man+manualpages/TS/TSSundialsSetLinearTolerance.html#TSSundialsSetLinearTolerance
man:+TSSundialsSetGramSchmidtType++TSSundialsSetGramSchmidtType++++man+manualpages/TS/TSSundialsSetGramSchmidtType.html#TSSundialsSetGramSchmidtType
man:+TSSundialsSetTolerance++TSSundialsSetTolerance++++man+manualpages/TS/TSSundialsSetTolerance.html#TSSundialsSetTolerance
man:+TSSundialsGetPC++TSSundialsGetPC++++man+manualpages/TS/TSSundialsGetPC.html#TSSundialsGetPC
man:+TSSundialsSetExactFinalTime++TSSundialsSetExactFinalTime++++man+manualpages/TS/TSSundialsSetExactFinalTime.html#TSSundialsSetExactFinalTime
man:+TS_Sundials++TS_Sundials++++man+manualpages/TS/TS_Sundials.html#TS_Sundials
man:+TSPseudoComputeTimeStep++TSPseudoComputeTimeStep++++man+manualpages/TS/TSPseudoComputeTimeStep.html#TSPseudoComputeTimeStep
man:+TSPseudoDefaultVerifyTimeStep++TSPseudoDefaultVerifyTimeStep++++man+manualpages/TS/TSPseudoDefaultVerifyTimeStep.html#TSPseudoDefaultVerifyTimeStep
man:+TSPseudoVerifyTimeStep++TSPseudoVerifyTimeStep++++man+manualpages/TS/TSPseudoVerifyTimeStep.html#TSPseudoVerifyTimeStep
man:+TSPseudoSetVerifyTimeStep++TSPseudoSetVerifyTimeStep++++man+manualpages/TS/TSPseudoSetVerifyTimeStep.html#TSPseudoSetVerifyTimeStep
man:+TSPseudoSetTimeStepIncrement++TSPseudoSetTimeStepIncrement++++man+manualpages/TS/TSPseudoSetTimeStepIncrement.html#TSPseudoSetTimeStepIncrement
man:+TSPseudoIncrementDtFromInitialDt++TSPseudoIncrementDtFromInitialDt++++man+manualpages/TS/TSPseudoIncrementDtFromInitialDt.html#TSPseudoIncrementDtFromInitialDt
man:+TSPseudoSetTimeStep++TSPseudoSetTimeStep++++man+manualpages/TS/TSPseudoSetTimeStep.html#TSPseudoSetTimeStep
man:+TSPseudoDefaultTimeStep++TSPseudoDefaultTimeStep++++man+manualpages/TS/TSPseudoDefaultTimeStep.html#TSPseudoDefaultTimeStep
man:+AO++AO++++man+manualpages/AO/AO.html#AO
man:+AOData++AOData++++man+manualpages/AO/AOData.html#AOData
man:+AOView++AOView++++man+manualpages/AO/AOView.html#AOView
man:+AODestroy++AODestroy++++man+manualpages/AO/AODestroy.html#AODestroy
man:+AOPetscToApplicationIS++AOPetscToApplicationIS++++man+manualpages/AO/AOPetscToApplicationIS.html#AOPetscToApplicationIS
man:+AOApplicationToPetscIS++AOApplicationToPetscIS++++man+manualpages/AO/AOApplicationToPetscIS.html#AOApplicationToPetscIS
man:+AOPetscToApplication++AOPetscToApplication++++man+manualpages/AO/AOPetscToApplication.html#AOPetscToApplication
man:+AOApplicationToPetsc++AOApplicationToPetsc++++man+manualpages/AO/AOApplicationToPetsc.html#AOApplicationToPetsc
man:+AOPetscToApplicationPermuteInt++AOPetscToApplicationPermuteInt++++man+manualpages/AO/AOPetscToApplicationPermuteInt.html#AOPetscToApplicationPermuteInt
man:+AOApplicationToPetscPermuteInt++AOApplicationToPetscPermuteInt++++man+manualpages/AO/AOApplicationToPetscPermuteInt.html#AOApplicationToPetscPermuteInt
man:+AOPetscToApplicationPermuteReal++AOPetscToApplicationPermuteReal++++man+manualpages/AO/AOPetscToApplicationPermuteReal.html#AOPetscToApplicationPermuteReal
man:+AOApplicationToPetscPermuteReal++AOApplicationToPetscPermuteReal++++man+manualpages/AO/AOApplicationToPetscPermuteReal.html#AOApplicationToPetscPermuteReal
man:+AODataGetInfo++AODataGetInfo++++man+manualpages/AO/AODataGetInfo.html#AODataGetInfo
man:+AODataKeyExists++AODataKeyExists++++man+manualpages/AO/AODataKeyExists.html#AODataKeyExists
man:+AODataSegmentExists++AODataSegmentExists++++man+manualpages/AO/AODataSegmentExists.html#AODataSegmentExists
man:+AODataKeyGetActive++AODataKeyGetActive++++man+manualpages/AO/AODataKeyGetActive.html#AODataKeyGetActive
man:+AODataKeyGetActiveIS++AODataKeyGetActiveIS++++man+manualpages/AO/AODataKeyGetActiveIS.html#AODataKeyGetActiveIS
man:+AODataKeyGetActiveLocal++AODataKeyGetActiveLocal++++man+manualpages/AO/AODataKeyGetActiveLocal.html#AODataKeyGetActiveLocal
man:+AODataKeyGetActiveLocalIS++AODataKeyGetActiveLocalIS++++man+manualpages/AO/AODataKeyGetActiveLocalIS.html#AODataKeyGetActiveLocalIS
man:+AODataSegmentGet++AODataSegmentGet++++man+manualpages/AO/AODataSegmentGet.html#AODataSegmentGet
man:+AODataSegmentRestore++AODataSegmentRestore++++man+manualpages/AO/AODataSegmentRestore.html#AODataSegmentRestore
man:+AODataSegmentGetIS++AODataSegmentGetIS++++man+manualpages/AO/AODataSegmentGetIS.html#AODataSegmentGetIS
man:+AODataSegmentRestoreIS++AODataSegmentRestoreIS++++man+manualpages/AO/AODataSegmentRestoreIS.html#AODataSegmentRestoreIS
man:+AODataSegmentGetLocal++AODataSegmentGetLocal++++man+manualpages/AO/AODataSegmentGetLocal.html#AODataSegmentGetLocal
man:+AODataSegmentRestoreLocal++AODataSegmentRestoreLocal++++man+manualpages/AO/AODataSegmentRestoreLocal.html#AODataSegmentRestoreLocal
man:+AODataSegmentGetLocalIS++AODataSegmentGetLocalIS++++man+manualpages/AO/AODataSegmentGetLocalIS.html#AODataSegmentGetLocalIS
man:+AODataSegmentRestoreLocalIS++AODataSegmentRestoreLocalIS++++man+manualpages/AO/AODataSegmentRestoreLocalIS.html#AODataSegmentRestoreLocalIS
man:+AODataKeyGetNeighbors++AODataKeyGetNeighbors++++man+manualpages/AO/AODataKeyGetNeighbors.html#AODataKeyGetNeighbors
man:+AODataKeyGetNeighborsIS++AODataKeyGetNeighborsIS++++man+manualpages/AO/AODataKeyGetNeighborsIS.html#AODataKeyGetNeighborsIS
man:+AODataSegmentGetReduced++AODataSegmentGetReduced++++man+manualpages/AO/AODataSegmentGetReduced.html#AODataSegmentGetReduced
man:+AODataSegmentGetExtrema++AODataSegmentGetExtrema++++man+manualpages/AO/AODataSegmentGetExtrema.html#AODataSegmentGetExtrema
man:+AODataSegmentGetReducedIS++AODataSegmentGetReducedIS++++man+manualpages/AO/AODataSegmentGetReducedIS.html#AODataSegmentGetReducedIS
man:+AODataKeySetLocalToGlobalMapping++AODataKeySetLocalToGlobalMapping++++man+manualpages/AO/AODataKeySetLocalToGlobalMapping.html#AODataKeySetLocalToGlobalMapping
man:+AODataKeyGetLocalToGlobalMapping++AODataKeyGetLocalToGlobalMapping++++man+manualpages/AO/AODataKeyGetLocalToGlobalMapping.html#AODataKeyGetLocalToGlobalMapping
man:+AODataKeyGetOwnershipRange++AODataKeyGetOwnershipRange++++man+manualpages/AO/AODataKeyGetOwnershipRange.html#AODataKeyGetOwnershipRange
man:+AODataKeyGetInfo++AODataKeyGetInfo++++man+manualpages/AO/AODataKeyGetInfo.html#AODataKeyGetInfo
man:+AODataSegmentGetInfo++AODataSegmentGetInfo++++man+manualpages/AO/AODataSegmentGetInfo.html#AODataSegmentGetInfo
man:+AODataView++AODataView++++man+manualpages/AO/AODataView.html#AODataView
man:+AODataAliasAdd++AODataAliasAdd++++man+manualpages/AO/AODataAliasAdd.html#AODataAliasAdd
man:+AODataDestroy++AODataDestroy++++man+manualpages/AO/AODataDestroy.html#AODataDestroy
man:+AODataKeyRemap++AODataKeyRemap++++man+manualpages/AO/AODataKeyRemap.html#AODataKeyRemap
man:+AODataKeyGetAdjacency++AODataKeyGetAdjacency++++man+manualpages/AO/AODataKeyGetAdjacency.html#AODataKeyGetAdjacency
man:+AODataSegmentPartition++AODataSegmentPartition++++man+manualpages/AO/AODataSegmentPartition.html#AODataSegmentPartition
man:+AODataKeyRemove++AODataKeyRemove++++man+manualpages/AO/AODataKeyRemove.html#AODataKeyRemove
man:+AODataSegmentRemove++AODataSegmentRemove++++man+manualpages/AO/AODataSegmentRemove.html#AODataSegmentRemove
man:+AODataKeyAdd++AODataKeyAdd++++man+manualpages/AO/AODataKeyAdd.html#AODataKeyAdd
man:+AODataSegmentAdd++AODataSegmentAdd++++man+manualpages/AO/AODataSegmentAdd.html#AODataSegmentAdd
man:+AODataSegmentAddIS++AODataSegmentAddIS++++man+manualpages/AO/AODataSegmentAddIS.html#AODataSegmentAddIS
man:+AODataAddAlias++AODataAddAlias++++man+manualpages/AO/AODataAddAlias.html#AODataAddAlias
man:+DMInitializePackage++DMInitializePackage++++man+manualpages/AO/DMInitializePackage.html#DMInitializePackage
man:+AOCreateBasic++AOCreateBasic++++man+manualpages/AO/AOCreateBasic.html#AOCreateBasic
man:+AOCreateBasicIS++AOCreateBasicIS++++man+manualpages/AO/AOCreateBasicIS.html#AOCreateBasicIS
man:+AODataCreateBasic++AODataCreateBasic++++man+manualpages/AO/AODataCreateBasic.html#AODataCreateBasic
man:+AODataLoadBasic++AODataLoadBasic++++man+manualpages/AO/AODataLoadBasic.html#AODataLoadBasic
man:+AOMappingHasApplicationIndex++AOMappingHasApplicationIndex++++man+manualpages/AO/AOMappingHasApplicationIndex.html#AOMappingHasApplicationIndex
man:+AOMappingHasPetscIndex++AOMappingHasPetscIndex++++man+manualpages/AO/AOMappingHasPetscIndex.html#AOMappingHasPetscIndex
man:+AOCreateMapping++AOCreateMapping++++man+manualpages/AO/AOCreateMapping.html#AOCreateMapping
man:+AOCreateMappingIS++AOCreateMappingIS++++man+manualpages/AO/AOCreateMappingIS.html#AOCreateMappingIS
man:+AODataKeyPartition++AODataKeyPartition++++man+manualpages/AO/AODataKeyPartition.html#AODataKeyPartition
man:+AODataPartitionAndSetupLocal++AODataPartitionAndSetupLocal++++man+manualpages/AO/AODataPartitionAndSetupLocal.html#AODataPartitionAndSetupLocal
man:+DA++DA++++man+manualpages/DA/DA.html#DA
man:+DAStencilType++DAStencilType++++man+manualpages/DA/DAStencilType.html#DAStencilType
man:+DA_STENCIL_STAR++DA_STENCIL_STAR++++man+manualpages/DA/DA_STENCIL_STAR.html#DA_STENCIL_STAR
man:+DA_STENCIL_Box++DA_STENCIL_Box++++man+manualpages/DA/DA_STENCIL_Box.html#DA_STENCIL_Box
man:+DAPeriodicType++DAPeriodicType++++man+manualpages/DA/DAPeriodicType.html#DAPeriodicType
man:+DAInterpolationType++DAInterpolationType++++man+manualpages/DA/DAInterpolationType.html#DAInterpolationType
man:+DAElementType++DAElementType++++man+manualpages/DA/DAElementType.html#DAElementType
man:+SDA++SDA++++man+manualpages/DA/SDA.html#SDA
man:+DALocalInfo++DALocalInfo++++man+manualpages/DA/DALocalInfo.html#DALocalInfo
man:+DAForEachPointBegin2d++DAForEachPointBegin2d++++man+manualpages/DA/DAForEachPointBegin2d.html#DAForEachPointBegin2d
man:+DAForEachPointEnd2d++DAForEachPointEnd2d++++man+manualpages/DA/DAForEachPointEnd2d.html#DAForEachPointEnd2d
man:+DACoor2d++DACoor2d++++man+manualpages/DA/DACoor2d.html#DACoor2d
man:+DACoor3d++DACoor3d++++man+manualpages/DA/DACoor3d.html#DACoor3d
man:+DASetLocalAdicFunction++DASetLocalAdicFunction++++man+manualpages/DA/DASetLocalAdicFunction.html#DASetLocalAdicFunction
man:+VecPack++VecPack++++man+manualpages/DA/VecPack.html#VecPack
man:+Slice++Slice++++man+manualpages/DA/Slice.html#Slice
man:+DM++DM++++man+manualpages/DA/DM.html#DM
man:+DAGetElements++DAGetElements++++man+manualpages/DA/DAGetElements.html#DAGetElements
man:+DARestoreElements++DARestoreElements++++man+manualpages/DA/DARestoreElements.html#DARestoreElements
man:+DACreate2d++DACreate2d++++man+manualpages/DA/DACreate2d.html#DACreate2d
man:+DARefine++DARefine++++man+manualpages/DA/DARefine.html#DARefine
man:+DASetRefinementFactor++DASetRefinementFactor++++man+manualpages/DA/DASetRefinementFactor.html#DASetRefinementFactor
man:+DAGetRefinementFactor++DAGetRefinementFactor++++man+manualpages/DA/DAGetRefinementFactor.html#DAGetRefinementFactor
man:+DASetGetMatrix++DASetGetMatrix++++man+manualpages/DA/DASetGetMatrix.html#DASetGetMatrix
man:+DASetLocalFunction++DASetLocalFunction++++man+manualpages/DA/DASetLocalFunction.html#DASetLocalFunction
man:+DASetLocalFunctioni++DASetLocalFunctioni++++man+manualpages/DA/DASetLocalFunctioni.html#DASetLocalFunctioni
man:+DASetLocalFunctionib++DASetLocalFunctionib++++man+manualpages/DA/DASetLocalFunctionib.html#DASetLocalFunctionib
man:+DASetLocalAdicFunctioni++DASetLocalAdicFunctioni++++man+manualpages/DA/DASetLocalAdicFunctioni.html#DASetLocalAdicFunctioni
man:+DASetLocalAdicMFFunctioni++DASetLocalAdicMFFunctioni++++man+manualpages/DA/DASetLocalAdicMFFunctioni.html#DASetLocalAdicMFFunctioni
man:+DASetLocalAdicFunctionib++DASetLocalAdicFunctionib++++man+manualpages/DA/DASetLocalAdicFunctionib.html#DASetLocalAdicFunctionib
man:+DASetLocalAdicMFFunctionib++DASetLocalAdicMFFunctionib++++man+manualpages/DA/DASetLocalAdicMFFunctionib.html#DASetLocalAdicMFFunctionib
man:+DASetLocalAdicMFFunction++DASetLocalAdicMFFunction++++man+manualpages/DA/DASetLocalAdicMFFunction.html#DASetLocalAdicMFFunction
man:+DASetLocalJacobian++DASetLocalJacobian++++man+manualpages/DA/DASetLocalJacobian.html#DASetLocalJacobian
man:+DAGetLocalFunction++DAGetLocalFunction++++man+manualpages/DA/DAGetLocalFunction.html#DAGetLocalFunction
man:+DAFormFunction++DAFormFunction++++man+manualpages/DA/DAFormFunction.html#DAFormFunction
man:+DAFormFunctionLocal++DAFormFunctionLocal++++man+manualpages/DA/DAFormFunctionLocal.html#DAFormFunctionLocal
man:+DAFormFunction1++DAFormFunction1++++man+manualpages/DA/DAFormFunction1.html#DAFormFunction1
man:+DAFormFunctioni1++DAFormFunctioni1++++man+manualpages/DA/DAFormFunctioni1.html#DAFormFunctioni1
man:+DAFormFunctionib1++DAFormFunctionib1++++man+manualpages/DA/DAFormFunctionib1.html#DAFormFunctionib1
man:+DAComputeJacobian1WithAdic++DAComputeJacobian1WithAdic++++man+manualpages/DA/DAComputeJacobian1WithAdic.html#DAComputeJacobian1WithAdic
man:+DAMultiplyByJacobian1WithAdic++DAMultiplyByJacobian1WithAdic++++man+manualpages/DA/DAMultiplyByJacobian1WithAdic.html#DAMultiplyByJacobian1WithAdic
man:+DAComputeJacobian1++DAComputeJacobian1++++man+manualpages/DA/DAComputeJacobian1.html#DAComputeJacobian1
man:+DAMultiplyByJacobian1WithAD++DAMultiplyByJacobian1WithAD++++man+manualpages/DA/DAMultiplyByJacobian1WithAD.html#DAMultiplyByJacobian1WithAD
man:+DAMultiplyByJacobian1WithAdifor++DAMultiplyByJacobian1WithAdifor++++man+manualpages/DA/DAMultiplyByJacobian1WithAdifor.html#DAMultiplyByJacobian1WithAdifor
man:+DASetInterpolationType++DASetInterpolationType++++man+manualpages/DA/DASetInterpolationType.html#DASetInterpolationType
man:+DACreate1d++DACreate1d++++man+manualpages/DA/DACreate1d.html#DACreate1d
man:+DACreate3d++DACreate3d++++man+manualpages/DA/DACreate3d.html#DACreate3d
man:+DACreate++DACreate++++man+manualpages/DA/DACreate.html#DACreate
man:+DAGetGhostCorners++DAGetGhostCorners++++man+manualpages/DA/DAGetGhostCorners.html#DAGetGhostCorners
man:+DASetCoordinates++DASetCoordinates++++man+manualpages/DA/DASetCoordinates.html#DASetCoordinates
man:+DAGetCoordinates++DAGetCoordinates++++man+manualpages/DA/DAGetCoordinates.html#DAGetCoordinates
man:+DAGetCoordinateDA++DAGetCoordinateDA++++man+manualpages/DA/DAGetCoordinateDA.html#DAGetCoordinateDA
man:+DAGetGhostedCoordinates++DAGetGhostedCoordinates++++man+manualpages/DA/DAGetGhostedCoordinates.html#DAGetGhostedCoordinates
man:+DASetFieldName++DASetFieldName++++man+manualpages/DA/DASetFieldName.html#DASetFieldName
man:+DAGetFieldName++DAGetFieldName++++man+manualpages/DA/DAGetFieldName.html#DAGetFieldName
man:+DAGetCorners++DAGetCorners++++man+manualpages/DA/DAGetCorners.html#DAGetCorners
man:+DAGlobalToLocalBegin++DAGlobalToLocalBegin++++man+manualpages/DA/DAGlobalToLocalBegin.html#DAGlobalToLocalBegin
man:+DALocalToGlobalBegin++DALocalToGlobalBegin++++man+manualpages/DA/DALocalToGlobalBegin.html#DALocalToGlobalBegin
man:+DALocalToGlobalEnd++DALocalToGlobalEnd++++man+manualpages/DA/DALocalToGlobalEnd.html#DALocalToGlobalEnd
man:+DAGlobalToLocalEnd++DAGlobalToLocalEnd++++man+manualpages/DA/DAGlobalToLocalEnd.html#DAGlobalToLocalEnd
man:+DAGlobalToNaturalBegin++DAGlobalToNaturalBegin++++man+manualpages/DA/DAGlobalToNaturalBegin.html#DAGlobalToNaturalBegin
man:+DAGlobalToNaturalEnd++DAGlobalToNaturalEnd++++man+manualpages/DA/DAGlobalToNaturalEnd.html#DAGlobalToNaturalEnd
man:+DANaturalToGlobalBegin++DANaturalToGlobalBegin++++man+manualpages/DA/DANaturalToGlobalBegin.html#DANaturalToGlobalBegin
man:+DANaturalToGlobalEnd++DANaturalToGlobalEnd++++man+manualpages/DA/DANaturalToGlobalEnd.html#DANaturalToGlobalEnd
man:+DALocalToLocalBegin++DALocalToLocalBegin++++man+manualpages/DA/DALocalToLocalBegin.html#DALocalToLocalBegin
man:+DALocalToLocalEnd++DALocalToLocalEnd++++man+manualpages/DA/DALocalToLocalEnd.html#DALocalToLocalEnd
man:+DALocalToGlobal++DALocalToGlobal++++man+manualpages/DA/DALocalToGlobal.html#DALocalToGlobal
man:+DAGetGlobalIndices++DAGetGlobalIndices++++man+manualpages/DA/DAGetGlobalIndices.html#DAGetGlobalIndices
man:+DAGetAO++DAGetAO++++man+manualpages/DA/DAGetAO.html#DAGetAO
man:+DAGetGlobalIndicesF90++DAGetGlobalIndicesF90++++man+manualpages/DA/DAGetGlobalIndicesF90.html#DAGetGlobalIndicesF90
man:+DAGetScatter++DAGetScatter++++man+manualpages/DA/DAGetScatter.html#DAGetScatter
man:+DADestroy++DADestroy++++man+manualpages/DA/DADestroy.html#DADestroy
man:+DAGetISLocalToGlobalMapping++DAGetISLocalToGlobalMapping++++man+manualpages/DA/DAGetISLocalToGlobalMapping.html#DAGetISLocalToGlobalMapping
man:+DAGetISLocalToGlobalMappingBlck++DAGetISLocalToGlobalMappingBlck++++man+manualpages/DA/DAGetISLocalToGlobalMappingBlck.html#DAGetISLocalToGlobalMappingBlck
man:+DACreateLocalVector++DACreateLocalVector++++man+manualpages/DA/DACreateLocalVector.html#DACreateLocalVector
man:+DAGetLocalVector++DAGetLocalVector++++man+manualpages/DA/DAGetLocalVector.html#DAGetLocalVector
man:+DARestoreLocalVector++DARestoreLocalVector++++man+manualpages/DA/DARestoreLocalVector.html#DARestoreLocalVector
man:+DAGetGlobalVector++DAGetGlobalVector++++man+manualpages/DA/DAGetGlobalVector.html#DAGetGlobalVector
man:+DARestoreGlobalVector++DARestoreGlobalVector++++man+manualpages/DA/DARestoreGlobalVector.html#DARestoreGlobalVector
man:+DAGetAdicArray++DAGetAdicArray++++man+manualpages/DA/DAGetAdicArray.html#DAGetAdicArray
man:+DARestoreAdicArray++DARestoreAdicArray++++man+manualpages/DA/DARestoreAdicArray.html#DARestoreAdicArray
man:+DAGetArray++DAGetArray++++man+manualpages/DA/DAGetArray.html#DAGetArray
man:+DARestoreArray++DARestoreArray++++man+manualpages/DA/DARestoreArray.html#DARestoreArray
man:+DAGetAdicMFArray++DAGetAdicMFArray++++man+manualpages/DA/DAGetAdicMFArray.html#DAGetAdicMFArray
man:+DAGetAdicMFArrayb++DAGetAdicMFArrayb++++man+manualpages/DA/DAGetAdicMFArrayb.html#DAGetAdicMFArrayb
man:+DARestoreAdicMFArray++DARestoreAdicMFArray++++man+manualpages/DA/DARestoreAdicMFArray.html#DARestoreAdicMFArray
man:+DACreateGlobalVector++DACreateGlobalVector++++man+manualpages/DA/DACreateGlobalVector.html#DACreateGlobalVector
man:+DACreateNaturalVector++DACreateNaturalVector++++man+manualpages/DA/DACreateNaturalVector.html#DACreateNaturalVector
man:+DAView++DAView++++man+manualpages/DA/DAView.html#DAView
man:+DAGetInfo++DAGetInfo++++man+manualpages/DA/DAGetInfo.html#DAGetInfo
man:+DAGetLocalInfo++DAGetLocalInfo++++man+manualpages/DA/DAGetLocalInfo.html#DAGetLocalInfo
man:+DAGetProcessorSubset++DAGetProcessorSubset++++man+manualpages/DA/DAGetProcessorSubset.html#DAGetProcessorSubset
man:+DASetUniformCoordinates++DASetUniformCoordinates++++man+manualpages/DA/DASetUniformCoordinates.html#DASetUniformCoordinates
man:+DALoad++DALoad++++man+manualpages/DA/DALoad.html#DALoad
man:+DAGlobalToNaturalAllCreate++DAGlobalToNaturalAllCreate++++man+manualpages/DA/DAGlobalToNaturalAllCreate.html#DAGlobalToNaturalAllCreate
man:+DANaturalAllToGlobalCreate++DANaturalAllToGlobalCreate++++man+manualpages/DA/DANaturalAllToGlobalCreate.html#DANaturalAllToGlobalCreate
man:+DAGetInterpolation++DAGetInterpolation++++man+manualpages/DA/DAGetInterpolation.html#DAGetInterpolation
man:+DAGetInjection++DAGetInjection++++man+manualpages/DA/DAGetInjection.html#DAGetInjection
man:+DACreatePF++DACreatePF++++man+manualpages/DA/DACreatePF.html#DACreatePF
man:+DAVecGetArray++DAVecGetArray++++man+manualpages/DA/DAVecGetArray.html#DAVecGetArray
man:+DAVecRestoreArray++DAVecRestoreArray++++man+manualpages/DA/DAVecRestoreArray.html#DAVecRestoreArray
man:+DAVecGetArrayDOF++DAVecGetArrayDOF++++man+manualpages/DA/DAVecGetArrayDOF.html#DAVecGetArrayDOF
man:+DAVecRestoreArrayDOF++DAVecRestoreArrayDOF++++man+manualpages/DA/DAVecRestoreArrayDOF.html#DAVecRestoreArrayDOF
man:+DASetMatPreallocateOnly++DASetMatPreallocateOnly++++man+manualpages/DA/DASetMatPreallocateOnly.html#DASetMatPreallocateOnly
man:+DASetBlockFills++DASetBlockFills++++man+manualpages/DA/DASetBlockFills.html#DASetBlockFills
man:+DAGetColoring++DAGetColoring++++man+manualpages/DA/DAGetColoring.html#DAGetColoring
man:+DAGetMatrix++DAGetMatrix++++man+manualpages/DA/DAGetMatrix.html#DAGetMatrix
man:+VecPackCreate++VecPackCreate++++man+manualpages/DA/VecPackCreate.html#VecPackCreate
man:+VecPackDestroy++VecPackDestroy++++man+manualpages/DA/VecPackDestroy.html#VecPackDestroy
man:+VecPackGetAccess++VecPackGetAccess++++man+manualpages/DA/VecPackGetAccess.html#VecPackGetAccess
man:+VecPackRestoreAccess++VecPackRestoreAccess++++man+manualpages/DA/VecPackRestoreAccess.html#VecPackRestoreAccess
man:+VecPackScatter++VecPackScatter++++man+manualpages/DA/VecPackScatter.html#VecPackScatter
man:+VecPackGather++VecPackGather++++man+manualpages/DA/VecPackGather.html#VecPackGather
man:+VecPackAddArray++VecPackAddArray++++man+manualpages/DA/VecPackAddArray.html#VecPackAddArray
man:+VecPackAddDA++VecPackAddDA++++man+manualpages/DA/VecPackAddDA.html#VecPackAddDA
man:+VecPackCreateGlobalVector++VecPackCreateGlobalVector++++man+manualpages/DA/VecPackCreateGlobalVector.html#VecPackCreateGlobalVector
man:+VecPackGetGlobalIndices++VecPackGetGlobalIndices++++man+manualpages/DA/VecPackGetGlobalIndices.html#VecPackGetGlobalIndices
man:+VecPackGetLocalVectors++VecPackGetLocalVectors++++man+manualpages/DA/VecPackGetLocalVectors.html#VecPackGetLocalVectors
man:+VecPackRestoreLocalVectors++VecPackRestoreLocalVectors++++man+manualpages/DA/VecPackRestoreLocalVectors.html#VecPackRestoreLocalVectors
man:+VecPackGetEntries++VecPackGetEntries++++man+manualpages/DA/VecPackGetEntries.html#VecPackGetEntries
man:+VecPackRefine++VecPackRefine++++man+manualpages/DA/VecPackRefine.html#VecPackRefine
man:+VecPackGetInterpolation++VecPackGetInterpolation++++man+manualpages/DA/VecPackGetInterpolation.html#VecPackGetInterpolation
man:+DMDestroy++DMDestroy++++man+manualpages/DA/DMDestroy.html#DMDestroy
man:+DMView++DMView++++man+manualpages/DA/DMView.html#DMView
man:+DMCreateGlobalVector++DMCreateGlobalVector++++man+manualpages/DA/DMCreateGlobalVector.html#DMCreateGlobalVector
man:+DMGetInterpolation++DMGetInterpolation++++man+manualpages/DA/DMGetInterpolation.html#DMGetInterpolation
man:+DMGetInjection++DMGetInjection++++man+manualpages/DA/DMGetInjection.html#DMGetInjection
man:+DMGetColoring++DMGetColoring++++man+manualpages/DA/DMGetColoring.html#DMGetColoring
man:+DMGetMatrix++DMGetMatrix++++man+manualpages/DA/DMGetMatrix.html#DMGetMatrix
man:+DMRefine++DMRefine++++man+manualpages/DA/DMRefine.html#DMRefine
man:+SDACreate1d++SDACreate1d++++man+manualpages/DA/SDACreate1d.html#SDACreate1d
man:+SDACreate2d++SDACreate2d++++man+manualpages/DA/SDACreate2d.html#SDACreate2d
man:+SDACreate3d++SDACreate3d++++man+manualpages/DA/SDACreate3d.html#SDACreate3d
man:+SDADestroy++SDADestroy++++man+manualpages/DA/SDADestroy.html#SDADestroy
man:+SDALocalToLocalBegin++SDALocalToLocalBegin++++man+manualpages/DA/SDALocalToLocalBegin.html#SDALocalToLocalBegin
man:+SDALocalToLocalEnd++SDALocalToLocalEnd++++man+manualpages/DA/SDALocalToLocalEnd.html#SDALocalToLocalEnd
man:+SDAGetCorners++SDAGetCorners++++man+manualpages/DA/SDAGetCorners.html#SDAGetCorners
man:+SDAGetGhostCorners++SDAGetGhostCorners++++man+manualpages/DA/SDAGetGhostCorners.html#SDAGetGhostCorners
man:+SlicedGetMatrix++SlicedGetMatrix++++man+manualpages/DA/SlicedGetMatrix.html#SlicedGetMatrix
man:+SlicedSetGhosts++SlicedSetGhosts++++man+manualpages/DA/SlicedSetGhosts.html#SlicedSetGhosts
man:+SlicedSetPreallocation++SlicedSetPreallocation++++man+manualpages/DA/SlicedSetPreallocation.html#SlicedSetPreallocation
man:+SlicedCreate++SlicedCreate++++man+manualpages/DA/SlicedCreate.html#SlicedCreate
man:+SlicedDestroy++SlicedDestroy++++man+manualpages/DA/SlicedDestroy.html#SlicedDestroy
man:+SlicedCreateGlobalVector++SlicedCreateGlobalVector++++man+manualpages/DA/SlicedCreateGlobalVector.html#SlicedCreateGlobalVector
man:+SlicedGetGlobalIndices++SlicedGetGlobalIndices++++man+manualpages/DA/SlicedGetGlobalIndices.html#SlicedGetGlobalIndices
man:+PetscViewerBinaryMatlabOpen++PetscViewerBinaryMatlabOpen++++man+manualpages/DA/PetscViewerBinaryMatlabOpen.html#PetscViewerBinaryMatlabOpen
man:+PetscViewerBinaryMatlabDestroy++PetscViewerBinaryMatlabDestroy++++man+manualpages/DA/PetscViewerBinaryMatlabDestroy.html#PetscViewerBinaryMatlabDestroy
man:+PetscViewerBinaryMatlabOutputBag++PetscViewerBinaryMatlabOutputBag++++man+manualpages/DA/PetscViewerBinaryMatlabOutputBag.html#PetscViewerBinaryMatlabOutputBag
man:+PetscViewerBinaryMatlabOutputVec++PetscViewerBinaryMatlabOutputVec++++man+manualpages/DA/PetscViewerBinaryMatlabOutputVec.html#PetscViewerBinaryMatlabOutputVec
man:+PetscViewerBinaryMatlabOutputVecDA++PetscViewerBinaryMatlabOutputVecDA++++man+manualpages/DA/PetscViewerBinaryMatlabOutputVecDA.html#PetscViewerBinaryMatlabOutputVecDA
man:+MeshView++MeshView++++man+manualpages/DA/MeshView.html#MeshView
man:+MeshLoad++MeshLoad++++man+manualpages/DA/MeshLoad.html#MeshLoad
man:+MeshGetMesh++MeshGetMesh++++man+manualpages/DA/MeshGetMesh.html#MeshGetMesh
man:+MeshSetMesh++MeshSetMesh++++man+manualpages/DA/MeshSetMesh.html#MeshSetMesh
man:+MeshGetMatrix++MeshGetMatrix++++man+manualpages/DA/MeshGetMatrix.html#MeshGetMatrix
man:+MeshSetGhosts++MeshSetGhosts++++man+manualpages/DA/MeshSetGhosts.html#MeshSetGhosts
man:+MeshSetPreallocation++MeshSetPreallocation++++man+manualpages/DA/MeshSetPreallocation.html#MeshSetPreallocation
man:+MeshCreate++MeshCreate++++man+manualpages/DA/MeshCreate.html#MeshCreate
man:+MeshDestroy++MeshDestroy++++man+manualpages/DA/MeshDestroy.html#MeshDestroy
man:+MeshCreateGlobalVector++MeshCreateGlobalVector++++man+manualpages/DA/MeshCreateGlobalVector.html#MeshCreateGlobalVector
man:+MeshGetGlobalIndices++MeshGetGlobalIndices++++man+manualpages/DA/MeshGetGlobalIndices.html#MeshGetGlobalIndices
man:+restrictVector++restrictVector++++man+manualpages/DA/restrictVector.html#restrictVector
man:+assembleVectorComplete++assembleVectorComplete++++man+manualpages/DA/assembleVectorComplete.html#assembleVectorComplete
man:+assembleVector++assembleVector++++man+manualpages/DA/assembleVector.html#assembleVector
man:+assembleMatrix++assembleMatrix++++man+manualpages/DA/assembleMatrix.html#assembleMatrix
man:+Characteristic++Characteristic++++man+manualpages/SemiLagrange/Characteristic.html#Characteristic
man:+CharacteristicType++CharacteristicType++++man+manualpages/SemiLagrange/CharacteristicType.html#CharacteristicType
man:+CharacteristicRegisterDynamic++CharacteristicRegisterDynamic++++man+manualpages/SemiLagrange/CharacteristicRegisterDynamic.html#CharacteristicRegisterDynamic
man:+CharacteristicSetType++CharacteristicSetType++++man+manualpages/SemiLagrange/CharacteristicSetType.html#CharacteristicSetType
man:+CharacteristicSetUp++CharacteristicSetUp++++man+manualpages/SemiLagrange/CharacteristicSetUp.html#CharacteristicSetUp
man:+CharacteristicRegister++CharacteristicRegister++++man+manualpages/SemiLagrange/CharacteristicRegister.html#CharacteristicRegister
man:+CharacteristicRegisterAll++CharacteristicRegisterAll++++man+manualpages/SemiLagrange/CharacteristicRegisterAll.html#CharacteristicRegisterAll
man:+CharacteristicInitializePackage++CharacteristicInitializePackage++++man+manualpages/SemiLagrange/CharacteristicInitializePackage.html#CharacteristicInitializePackage
man:+PetscErrorCode++PetscErrorCode++++man+manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PetscCookie++PetscCookie++++man+manualpages/Sys/PetscCookie.html#PetscCookie
man:+PetscEvent++PetscEvent++++man+manualpages/Sys/PetscEvent.html#PetscEvent
man:+PetscBLASInt++PetscBLASInt++++man+manualpages/Sys/PetscBLASInt.html#PetscBLASInt
man:+PetscMPIInt++PetscMPIInt++++man+manualpages/Sys/PetscMPIInt.html#PetscMPIInt
man:+PetscEnum++PetscEnum++++man+manualpages/Sys/PetscEnum.html#PetscEnum
man:+PetscInt++PetscInt++++man+manualpages/Sys/PetscInt.html#PetscInt
man:+PetscPolymorphicSubroutine++PetscPolymorphicSubroutine++++man+manualpages/Sys/PetscPolymorphicSubroutine.html#PetscPolymorphicSubroutine
man:+PetscPolymorphicScalar++PetscPolymorphicScalar++++man+manualpages/Sys/PetscPolymorphicScalar.html#PetscPolymorphicScalar
man:+PetscPolymorphicFunction++PetscPolymorphicFunction++++man+manualpages/Sys/PetscPolymorphicFunction.html#PetscPolymorphicFunction
man:+PetscTruth++PetscTruth++++man+manualpages/Sys/PetscTruth.html#PetscTruth
man:+PETSC_FALSE++PETSC_FALSE++++man+manualpages/Sys/PETSC_FALSE.html#PETSC_FALSE
man:+PETSC_TRUE++PETSC_TRUE++++man+manualpages/Sys/PETSC_TRUE.html#PETSC_TRUE
man:+PETSC_YES++PETSC_YES++++man+manualpages/Sys/PETSC_YES.html#PETSC_YES
man:+PETSC_NO++PETSC_NO++++man+manualpages/Sys/PETSC_NO.html#PETSC_NO
man:+PETSC_NULL++PETSC_NULL++++man+manualpages/Sys/PETSC_NULL.html#PETSC_NULL
man:+PETSC_DECIDE++PETSC_DECIDE++++man+manualpages/Sys/PETSC_DECIDE.html#PETSC_DECIDE
man:+PETSC_DEFAULT++PETSC_DEFAULT++++man+manualpages/Sys/PETSC_DEFAULT.html#PETSC_DEFAULT
man:+PETSC_IGNORE++PETSC_IGNORE++++man+manualpages/Sys/PETSC_IGNORE.html#PETSC_IGNORE
man:+PETSC_DETERMINE++PETSC_DETERMINE++++man+manualpages/Sys/PETSC_DETERMINE.html#PETSC_DETERMINE
man:+PETSC_COMM_WORLD++PETSC_COMM_WORLD++++man+manualpages/Sys/PETSC_COMM_WORLD.html#PETSC_COMM_WORLD
man:+PETSC_COMM_SELF++PETSC_COMM_SELF++++man+manualpages/Sys/PETSC_COMM_SELF.html#PETSC_COMM_SELF
man:+PetscMalloc++PetscMalloc++++man+manualpages/Sys/PetscMalloc.html#PetscMalloc
man:+PetscMalloc2++PetscMalloc2++++man+manualpages/Sys/PetscMalloc2.html#PetscMalloc2
man:+PetscMalloc3++PetscMalloc3++++man+manualpages/Sys/PetscMalloc3.html#PetscMalloc3
man:+PetscMalloc4++PetscMalloc4++++man+manualpages/Sys/PetscMalloc4.html#PetscMalloc4
man:+PetscMalloc5++PetscMalloc5++++man+manualpages/Sys/PetscMalloc5.html#PetscMalloc5
man:+PetscMalloc6++PetscMalloc6++++man+manualpages/Sys/PetscMalloc6.html#PetscMalloc6
man:+PetscMalloc7++PetscMalloc7++++man+manualpages/Sys/PetscMalloc7.html#PetscMalloc7
man:+PetscNew++PetscNew++++man+manualpages/Sys/PetscNew.html#PetscNew
man:+PetscFree++PetscFree++++man+manualpages/Sys/PetscFree.html#PetscFree
man:+PetscFreeVoid++PetscFreeVoid++++man+manualpages/Sys/PetscFreeVoid.html#PetscFreeVoid
man:+PetscFree2++PetscFree2++++man+manualpages/Sys/PetscFree2.html#PetscFree2
man:+PetscFree3++PetscFree3++++man+manualpages/Sys/PetscFree3.html#PetscFree3
man:+PetscFree4++PetscFree4++++man+manualpages/Sys/PetscFree4.html#PetscFree4
man:+PetscFree5++PetscFree5++++man+manualpages/Sys/PetscFree5.html#PetscFree5
man:+PetscFree6++PetscFree6++++man+manualpages/Sys/PetscFree6.html#PetscFree6
man:+PetscFree7++PetscFree7++++man+manualpages/Sys/PetscFree7.html#PetscFree7
man:+PetscDataType++PetscDataType++++man+manualpages/Sys/PetscDataType.html#PetscDataType
man:+PetscToken++PetscToken++++man+manualpages/Sys/PetscToken.html#PetscToken
man:+PetscObject++PetscObject++++man+manualpages/Sys/PetscObject.html#PetscObject
man:+PetscFList++PetscFList++++man+manualpages/Sys/PetscFList.html#PetscFList
man:+PetscFileMode++PetscFileMode++++man+manualpages/Sys/PetscFileMode.html#PetscFileMode
man:+PetscObjectComposeFunctionDynamic++PetscObjectComposeFunctionDynamic++++man+manualpages/Sys/PetscObjectComposeFunctionDynamic.html#PetscObjectComposeFunctionDynamic
man:+PetscOList++PetscOList++++man+manualpages/Sys/PetscOList.html#PetscOList
man:+PetscDLLibraryList++PetscDLLibraryList++++man+manualpages/Sys/PetscDLLibraryList.html#PetscDLLibraryList
man:+PetscErrorPrintf++PetscErrorPrintf++++man+manualpages/Sys/PetscErrorPrintf.html#PetscErrorPrintf
man:+PetscHelpPrintf++PetscHelpPrintf++++man+manualpages/Sys/PetscHelpPrintf.html#PetscHelpPrintf
man:+PetscObjectContainer++PetscObjectContainer++++man+manualpages/Sys/PetscObjectContainer.html#PetscObjectContainer
man:+size++size++++man+manualpages/Sys/size.html#size
man:+rank++rank++++man+manualpages/Sys/rank.html#rank
man:+comm++comm++++man+manualpages/Sys/comm.html#comm
man:+MPI_Comm++MPI_Comm++++man+manualpages/Sys/MPI_Comm.html#MPI_Comm
man:+PetscScalar++PetscScalar++++man+manualpages/Sys/PetscScalar.html#PetscScalar
man:+PetscReal++PetscReal++++man+manualpages/Sys/PetscReal.html#PetscReal
man:+PassiveScalar++PassiveScalar++++man+manualpages/Sys/PassiveScalar.html#PassiveScalar
man:+PassiveReal++PassiveReal++++man+manualpages/Sys/PassiveReal.html#PassiveReal
man:+MPIU_SCALAR++MPIU_SCALAR++++man+manualpages/Sys/MPIU_SCALAR.html#MPIU_SCALAR
man:+PetscRandom++PetscRandom++++man+manualpages/Sys/PetscRandom.html#PetscRandom
man:+PetscRandomRegisterDynamic++PetscRandomRegisterDynamic++++man+manualpages/Sys/PetscRandomRegisterDynamic.html#PetscRandomRegisterDynamic
man:+PetscBinarySeekType++PetscBinarySeekType++++man+manualpages/Sys/PetscBinarySeekType.html#PetscBinarySeekType
man:+InsertMode++InsertMode++++man+manualpages/Sys/InsertMode.html#InsertMode
man:+INSERT_VALUES++INSERT_VALUES++++man+manualpages/Sys/INSERT_VALUES.html#INSERT_VALUES
man:+ADD_VALUES++ADD_VALUES++++man+manualpages/Sys/ADD_VALUES.html#ADD_VALUES
man:+MAX_VALUES++MAX_VALUES++++man+manualpages/Sys/MAX_VALUES.html#MAX_VALUES
man:+ScatterMode++ScatterMode++++man+manualpages/Sys/ScatterMode.html#ScatterMode
man:+SCATTER_FORWARD++SCATTER_FORWARD++++man+manualpages/Sys/SCATTER_FORWARD.html#SCATTER_FORWARD
man:+SCATTER_REVERSE++SCATTER_REVERSE++++man+manualpages/Sys/SCATTER_REVERSE.html#SCATTER_REVERSE
man:+SCATTER_FORWARD_LOCAL++SCATTER_FORWARD_LOCAL++++man+manualpages/Sys/SCATTER_FORWARD_LOCAL.html#SCATTER_FORWARD_LOCAL
man:+SCATTER_REVERSE_LOCAL++SCATTER_REVERSE_LOCAL++++man+manualpages/Sys/SCATTER_REVERSE_LOCAL.html#SCATTER_REVERSE_LOCAL
man:+PetscObjectStateIncrease++PetscObjectStateIncrease++++man+manualpages/Sys/PetscObjectStateIncrease.html#PetscObjectStateIncrease
man:+PetscObjectStateDecrease++PetscObjectStateDecrease++++man+manualpages/Sys/PetscObjectStateDecrease.html#PetscObjectStateDecrease
man:+PetscObjectComposedDataSetInt++PetscObjectComposedDataSetInt++++man+manualpages/Sys/PetscObjectComposedDataSetInt.html#PetscObjectComposedDataSetInt
man:+PetscObjectComposedDataGetInt++PetscObjectComposedDataGetInt++++man+manualpages/Sys/PetscObjectComposedDataGetInt.html#PetscObjectComposedDataGetInt
man:+PetscObjectComposedDataSetIntstar++PetscObjectComposedDataSetIntstar++++man+manualpages/Sys/PetscObjectComposedDataSetIntstar.html#PetscObjectComposedDataSetIntstar
man:+PetscObjectComposedDataGetIntstar++PetscObjectComposedDataGetIntstar++++man+manualpages/Sys/PetscObjectComposedDataGetIntstar.html#PetscObjectComposedDataGetIntstar
man:+PetscObjectComposedDataSetReal++PetscObjectComposedDataSetReal++++man+manualpages/Sys/PetscObjectComposedDataSetReal.html#PetscObjectComposedDataSetReal
man:+PetscObjectComposedDataGetReal++PetscObjectComposedDataGetReal++++man+manualpages/Sys/PetscObjectComposedDataGetReal.html#PetscObjectComposedDataGetReal
man:+PetscObjectComposedDataSetRealstar++PetscObjectComposedDataSetRealstar++++man+manualpages/Sys/PetscObjectComposedDataSetRealstar.html#PetscObjectComposedDataSetRealstar
man:+PetscObjectComposedDataGetRealstar++PetscObjectComposedDataGetRealstar++++man+manualpages/Sys/PetscObjectComposedDataGetRealstar.html#PetscObjectComposedDataGetRealstar
man:+PetscObjectSetScalarComposedData++PetscObjectSetScalarComposedData++++man+manualpages/Sys/PetscObjectSetScalarComposedData.html#PetscObjectSetScalarComposedData
man:+PetscObjectComposedDataGetScalar++PetscObjectComposedDataGetScalar++++man+manualpages/Sys/PetscObjectComposedDataGetScalar.html#PetscObjectComposedDataGetScalar
man:+PetscObjectComposedDataSetScalarstar++PetscObjectComposedDataSetScalarstar++++man+manualpages/Sys/PetscObjectComposedDataSetScalarstar.html#PetscObjectComposedDataSetScalarstar
man:+PetscObjectComposedDataGetScalarstar++PetscObjectComposedDataGetScalarstar++++man+manualpages/Sys/PetscObjectComposedDataGetScalarstar.html#PetscObjectComposedDataGetScalarstar
man:+PetscBag++PetscBag++++man+manualpages/Sys/PetscBag.html#PetscBag
man:+PetscMin++PetscMin++++man+manualpages/Sys/PetscMin.html#PetscMin
man:+PetscMax++PetscMax++++man+manualpages/Sys/PetscMax.html#PetscMax
man:+PetscAbsInt++PetscAbsInt++++man+manualpages/Sys/PetscAbsInt.html#PetscAbsInt
man:+PetscAbsReal++PetscAbsReal++++man+manualpages/Sys/PetscAbsReal.html#PetscAbsReal
man:+PetscSqr++PetscSqr++++man+manualpages/Sys/PetscSqr.html#PetscSqr
man:+PetscBT++PetscBT++++man+manualpages/Sys/PetscBT.html#PetscBT
man:+PetscGetVersion++PetscGetVersion++++man+manualpages/Sys/PetscGetVersion.html#PetscGetVersion
man:+MPI_Isend++MPI_Isend++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Isend.html#MPI_Isend
man:+MPI_Irecv++MPI_Irecv++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Irecv.html#MPI_Irecv
man:+MPI_Wait++MPI_Wait++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Wait.html#MPI_Wait
man:+MPI_Test++MPI_Test++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Test.html#MPI_Test
man:+MPI_Address++MPI_Address++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Address.html#MPI_Address
man:+MPI_Cancel++MPI_Cancel++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Cancel.html#MPI_Cancel
man:+MPI_Request_free++MPI_Request_free++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Request_free.html#MPI_Request_free
man:+MPI_Probe++MPI_Probe++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Probe.html#MPI_Probe
man:+MPI_Start++MPI_Start++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Start.html#MPI_Start
man:+MPI_Testany++MPI_Testany++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Testany.html#MPI_Testany
man:+MPI_Waitall++MPI_Waitall++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Waitall.html#MPI_Waitall
man:+MPI_Send++MPI_Send++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Send.html#MPI_Send
man:+MPI_Recv++MPI_Recv++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Recv.html#MPI_Recv
man:+MPI_Sendrecv++MPI_Sendrecv++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Sendrecv.html#MPI_Sendrecv
man:+MPI_Iprobe++MPI_Iprobe++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Iprobe.html#MPI_Iprobe
man:+MPI_Testall++MPI_Testall++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Testall.html#MPI_Testall
man:+MPI_Waitany++MPI_Waitany++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Waitany.html#MPI_Waitany
man:+MPI_Recv_init++MPI_Recv_init++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Recv_init.html#MPI_Recv_init
man:+MPI_Send_init++MPI_Send_init++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Send_init.html#MPI_Send_init
man:+MPI_Sendrecv_replace++MPI_Sendrecv_replace++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Sendrecv_replace.html#MPI_Sendrecv_replace
man:+MPI_Get_count++MPI_Get_count++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Get_count.html#MPI_Get_count
man:+MPI_Bsend++MPI_Bsend++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Bsend.html#MPI_Bsend
man:+MPI_Ssend++MPI_Ssend++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Ssend.html#MPI_Ssend
man:+MPI_Rsend++MPI_Rsend++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Rsend.html#MPI_Rsend
man:+MPI_Buffer_attach++MPI_Buffer_attach++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Buffer_attach.html#MPI_Buffer_attach
man:+MPI_Buffer_detach++MPI_Buffer_detach++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Buffer_detach.html#MPI_Buffer_detach
man:+MPI_Ibsend++MPI_Ibsend++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Ibsend.html#MPI_Ibsend
man:+MPI_Issend++MPI_Issend++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Issend.html#MPI_Issend
man:+MPI_Irsend++MPI_Irsend++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Irsend.html#MPI_Irsend
man:+MPI_Waitsome++MPI_Waitsome++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Waitsome.html#MPI_Waitsome
man:+MPI_Testsome++MPI_Testsome++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Testsome.html#MPI_Testsome
man:+MPI_Test_cancelled++MPI_Test_cancelled++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Test_cancelled.html#MPI_Test_cancelled
man:+MPI_Bsend_init++MPI_Bsend_init++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Bsend_init.html#MPI_Bsend_init
man:+MPI_Rsend_init++MPI_Rsend_init++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Rsend_init.html#MPI_Rsend_init
man:+MPI_Ssend_init++MPI_Ssend_init++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Ssend_init.html#MPI_Ssend_init
man:+MPI_Startall++MPI_Startall++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Startall.html#MPI_Startall
man:+MPI_Type_commit++MPI_Type_commit++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Type_commit.html#MPI_Type_commit
man:+MPI_Type_contiguous++MPI_Type_contiguous++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Type_contiguous.html#MPI_Type_contiguous
man:+MPI_Type_extent++MPI_Type_extent++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Type_extent.html#MPI_Type_extent
man:+MPI_Type_free++MPI_Type_free++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Type_free.html#MPI_Type_free
man:+MPI_Type_hindexed++MPI_Type_hindexed++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Type_hindexed.html#MPI_Type_hindexed
man:+MPI_Type_hvector++MPI_Type_hvector++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Type_hvector.html#MPI_Type_hvector
man:+MPI_Type_indexed++MPI_Type_indexed++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Type_indexed.html#MPI_Type_indexed
man:+MPI_Type_lb++MPI_Type_lb++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Type_lb.html#MPI_Type_lb
man:+MPI_Type_size++MPI_Type_size++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Type_size.html#MPI_Type_size
man:+MPI_Type_struct++MPI_Type_struct++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Type_struct.html#MPI_Type_struct
man:+MPI_Type_ub++MPI_Type_ub++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Type_ub.html#MPI_Type_ub
man:+MPI_Type_vector++MPI_Type_vector++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Type_vector.html#MPI_Type_vector
man:+MPI_Get_elements++MPI_Get_elements++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Get_elements.html#MPI_Get_elements
man:+MPI_Pack_size++MPI_Pack_size++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Pack_size.html#MPI_Pack_size
man:+MPI_Pack++MPI_Pack++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Pack.html#MPI_Pack
man:+MPI_Unpack++MPI_Unpack++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Unpack.html#MPI_Unpack
man:+MPI_Abort++MPI_Abort++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Abort.html#MPI_Abort
man:+MPI_Init++MPI_Init++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Init.html#MPI_Init
man:+MPI_Finalize++MPI_Finalize++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Finalize.html#MPI_Finalize
man:+MPI_Initialized++MPI_Initialized++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Initialized.html#MPI_Initialized
man:+MPI_Error_string++MPI_Error_string++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Error_string.html#MPI_Error_string
man:+MPI_Get_processor_name++MPI_Get_processor_name++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Get_processor_name.html#MPI_Get_processor_name
man:+MPI_Errhandler_create++MPI_Errhandler_create++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Errhandler_create.html#MPI_Errhandler_create
man:+MPI_Errhandler_set++MPI_Errhandler_set++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Errhandler_set.html#MPI_Errhandler_set
man:+MPI_Errhandler_get++MPI_Errhandler_get++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Errhandler_get.html#MPI_Errhandler_get
man:+MPI_Errhandler_free++MPI_Errhandler_free++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Errhandler_free.html#MPI_Errhandler_free
man:+MPI_Error_class++MPI_Error_class++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Error_class.html#MPI_Error_class
man:+MPI_Wtime++MPI_Wtime++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Wtime.html#MPI_Wtime
man:+MPI_Wtick++MPI_Wtick++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Wtick.html#MPI_Wtick
man:+MPI_Int2handle++MPI_Int2handle++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Int2handle.html#MPI_Int2handle
man:+MPI_Handle2int++MPI_Handle2int++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Handle2int.html#MPI_Handle2int
man:+MPI_Keyval_free++MPI_Keyval_free++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Keyval_free.html#MPI_Keyval_free
man:+MPI_Keyval_create++MPI_Keyval_create++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Keyval_create.html#MPI_Keyval_create
man:+MPI_Attr_get++MPI_Attr_get++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Attr_get.html#MPI_Attr_get
man:+MPI_Attr_delete++MPI_Attr_delete++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Attr_delete.html#MPI_Attr_delete
man:+MPI_Attr_put++MPI_Attr_put++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Attr_put.html#MPI_Attr_put
man:+MPI_Group_excl++MPI_Group_excl++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Group_excl.html#MPI_Group_excl
man:+MPI_Group_difference++MPI_Group_difference++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Group_difference.html#MPI_Group_difference
man:+MPI_Group_free++MPI_Group_free++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Group_free.html#MPI_Group_free
man:+MPI_Group_incl++MPI_Group_incl++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Group_incl.html#MPI_Group_incl
man:+MPI_Group_intersection++MPI_Group_intersection++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Group_intersection.html#MPI_Group_intersection
man:+MPI_Group_range_excl++MPI_Group_range_excl++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Group_range_excl.html#MPI_Group_range_excl
man:+MPI_Group_range_incl++MPI_Group_range_incl++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Group_range_incl.html#MPI_Group_range_incl
man:+MPI_Group_compare++MPI_Group_compare++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Group_compare.html#MPI_Group_compare
man:+MPI_Group_rank++MPI_Group_rank++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Group_rank.html#MPI_Group_rank
man:+MPI_Group_size++MPI_Group_size++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Group_size.html#MPI_Group_size
man:+MPI_Group_union++MPI_Group_union++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Group_union.html#MPI_Group_union
man:+MPI_Comm_dup++MPI_Comm_dup++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Comm_dup.html#MPI_Comm_dup
man:+MPI_Comm_free++MPI_Comm_free++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Comm_free.html#MPI_Comm_free
man:+MPI_Comm_group++MPI_Comm_group++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Comm_group.html#MPI_Comm_group
man:+MPI_Comm_create++MPI_Comm_create++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Comm_create.html#MPI_Comm_create
man:+MPI_Comm_size++MPI_Comm_size++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Comm_size.html#MPI_Comm_size
man:+MPI_Comm_split++MPI_Comm_split++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Comm_split.html#MPI_Comm_split
man:+MPI_Group_translate_ranks++MPI_Group_translate_ranks++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Group_translate_ranks.html#MPI_Group_translate_ranks
man:+MPI_Comm_test_inter++MPI_Comm_test_inter++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Comm_test_inter.html#MPI_Comm_test_inter
man:+MPI_Comm_rank++MPI_Comm_rank++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Comm_rank.html#MPI_Comm_rank
man:+MPI_Comm_compare++MPI_Comm_compare++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Comm_compare.html#MPI_Comm_compare
man:+MPI_Comm_remote_size++MPI_Comm_remote_size++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Comm_remote_size.html#MPI_Comm_remote_size
man:+MPI_Comm_remote_group++MPI_Comm_remote_group++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Comm_remote_group.html#MPI_Comm_remote_group
man:+MPI_Intercomm_create++MPI_Intercomm_create++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Intercomm_create.html#MPI_Intercomm_create
man:+MPI_Intercomm_merge++MPI_Intercomm_merge++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Intercomm_merge.html#MPI_Intercomm_merge
man:+MPI_NULL_COPY_FN++MPI_NULL_COPY_FN++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_NULL_COPY_FN.html#MPI_NULL_COPY_FN
man:+MPI_NULL_DELETE_FN++MPI_NULL_DELETE_FN++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_NULL_DELETE_FN.html#MPI_NULL_DELETE_FN
man:+MPI_DUP_FN++MPI_DUP_FN++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_DUP_FN.html#MPI_DUP_FN
man:+MPI_Barrier++MPI_Barrier++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Barrier.html#MPI_Barrier
man:+MPI_Bcast++MPI_Bcast++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Bcast.html#MPI_Bcast
man:+MPI_Gather++MPI_Gather++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Gather.html#MPI_Gather
man:+MPI_Gatherv++MPI_Gatherv++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Gatherv.html#MPI_Gatherv
man:+MPI_Scatter++MPI_Scatter++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Scatter.html#MPI_Scatter
man:+MPI_Scatterv++MPI_Scatterv++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Scatterv.html#MPI_Scatterv
man:+MPI_Allgather++MPI_Allgather++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Allgather.html#MPI_Allgather
man:+MPI_Allgatherv++MPI_Allgatherv++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Allgatherv.html#MPI_Allgatherv
man:+MPI_Alltoall++MPI_Alltoall++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Alltoall.html#MPI_Alltoall
man:+MPI_Alltoallv++MPI_Alltoallv++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Alltoallv.html#MPI_Alltoallv
man:+MPI_Reduce++MPI_Reduce++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Reduce.html#MPI_Reduce
man:+MPI_Allreduce++MPI_Allreduce++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Allreduce.html#MPI_Allreduce
man:+MPI_Reduce_scatter++MPI_Reduce_scatter++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Reduce_scatter.html#MPI_Reduce_scatter
man:+MPI_Scan++MPI_Scan++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Scan.html#MPI_Scan
man:+MPI_Op_create++MPI_Op_create++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Op_create.html#MPI_Op_create
man:+MPI_Op_free++MPI_Op_free++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Op_free.html#MPI_Op_free
man:+MPI_Topo_test++MPI_Topo_test++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Topo_test.html#MPI_Topo_test
man:+MPI_Graphdims_get++MPI_Graphdims_get++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Graphdims_get.html#MPI_Graphdims_get
man:+MPI_Graph_get++MPI_Graph_get++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Graph_get.html#MPI_Graph_get
man:+MPI_Cartdim_get++MPI_Cartdim_get++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Cartdim_get.html#MPI_Cartdim_get
man:+MPI_Cart_get++MPI_Cart_get++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Cart_get.html#MPI_Cart_get
man:+MPI_Dims_create++MPI_Dims_create++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Dims_create.html#MPI_Dims_create
man:+MPI_Cart_map++MPI_Cart_map++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Cart_map.html#MPI_Cart_map
man:+MPI_Graph_map++MPI_Graph_map++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Graph_map.html#MPI_Graph_map
man:+MPI_Cart_create++MPI_Cart_create++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Cart_create.html#MPI_Cart_create
man:+MPI_Graph_create++MPI_Graph_create++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Graph_create.html#MPI_Graph_create
man:+MPI_Cart_rank++MPI_Cart_rank++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Cart_rank.html#MPI_Cart_rank
man:+MPI_Cart_coords++MPI_Cart_coords++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Cart_coords.html#MPI_Cart_coords
man:+MPI_Graph_neighbors_count++MPI_Graph_neighbors_count++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Graph_neighbors_count.html#MPI_Graph_neighbors_count
man:+MPI_Graph_neighbors++MPI_Graph_neighbors++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Graph_neighbors.html#MPI_Graph_neighbors
man:+MPI_Cart_shift++MPI_Cart_shift++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Cart_shift.html#MPI_Cart_shift
man:+MPI_Cart_sub++MPI_Cart_sub++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Cart_sub.html#MPI_Cart_sub
man:+MPI_Pcontrol++MPI_Pcontrol++++man+http://www.mcs.anl.gov/mpi/www/www3/MPI_Pcontrol.html#MPI_Pcontrol
man:+MPE_Ptime++MPE_Ptime++++man+http://www.mcs.anl.gov/mpi/man/MPE_Ptime.html#MPE_Ptime
man:+MPE_Wtime++MPE_Wtime++++man+http://www.mcs.anl.gov/mpi/man/MPE_Wtime.html#MPE_Wtime
man:+MPE_Open_graphics++MPE_Open_graphics++++man+http://www.mcs.anl.gov/mpi/man/MPE_Open_graphics.html#MPE_Open_graphics
man:+MPE_CaptureFile++MPE_CaptureFile++++man+http://www.mcs.anl.gov/mpi/man/MPE_CaptureFile.html#MPE_CaptureFile
man:+MPE_Draw_point++MPE_Draw_point++++man+http://www.mcs.anl.gov/mpi/man/MPE_Draw_point.html#MPE_Draw_point
man:+MPE_Draw_points++MPE_Draw_points++++man+http://www.mcs.anl.gov/mpi/man/MPE_Draw_points.html#MPE_Draw_points
man:+MPE_Draw_line++MPE_Draw_line++++man+http://www.mcs.anl.gov/mpi/man/MPE_Draw_line.html#MPE_Draw_line
man:+MPE_Fill_rectangle++MPE_Fill_rectangle++++man+http://www.mcs.anl.gov/mpi/man/MPE_Fill_rectangle.html#MPE_Fill_rectangle
man:+MPE_Update++MPE_Update++++man+http://www.mcs.anl.gov/mpi/man/MPE_Update.html#MPE_Update
man:+MPE_Close_graphics++MPE_Close_graphics++++man+http://www.mcs.anl.gov/mpi/man/MPE_Close_graphics.html#MPE_Close_graphics
man:+MPE_Make_color_array++MPE_Make_color_array++++man+http://www.mcs.anl.gov/mpi/man/MPE_Make_color_array.html#MPE_Make_color_array
man:+MPE_Num_colors++MPE_Num_colors++++man+http://www.mcs.anl.gov/mpi/man/MPE_Num_colors.html#MPE_Num_colors
man:+MPE_Draw_circle++MPE_Draw_circle++++man+http://www.mcs.anl.gov/mpi/man/MPE_Draw_circle.html#MPE_Draw_circle
man:+MPE_Fill_circle++MPE_Fill_circle++++man+http://www.mcs.anl.gov/mpi/man/MPE_Fill_circle.html#MPE_Fill_circle
man:+MPE_Draw_string++MPE_Draw_string++++man+http://www.mcs.anl.gov/mpi/man/MPE_Draw_string.html#MPE_Draw_string
man:+MPE_Draw_logic++MPE_Draw_logic++++man+http://www.mcs.anl.gov/mpi/man/MPE_Draw_logic.html#MPE_Draw_logic
man:+MPE_Line_thickness++MPE_Line_thickness++++man+http://www.mcs.anl.gov/mpi/man/MPE_Line_thickness.html#MPE_Line_thickness
man:+MPE_Add_RGB_color++MPE_Add_RGB_color++++man+http://www.mcs.anl.gov/mpi/man/MPE_Add_RGB_color.html#MPE_Add_RGB_color
man:+MPE_Get_mouse_press++MPE_Get_mouse_press++++man+http://www.mcs.anl.gov/mpi/man/MPE_Get_mouse_press.html#MPE_Get_mouse_press
man:+MPE_Iget_mouse_press++MPE_Iget_mouse_press++++man+http://www.mcs.anl.gov/mpi/man/MPE_Iget_mouse_press.html#MPE_Iget_mouse_press
man:+MPE_Init_log++MPE_Init_log++++man+http://www.mcs.anl.gov/mpi/man/MPE_Init_log.html#MPE_Init_log
man:+MPE_Start_log++MPE_Start_log++++man+http://www.mcs.anl.gov/mpi/man/MPE_Start_log.html#MPE_Start_log
man:+MPE_Stop_log++MPE_Stop_log++++man+http://www.mcs.anl.gov/mpi/man/MPE_Stop_log.html#MPE_Stop_log
man:+MPE_Describe_state++MPE_Describe_state++++man+http://www.mcs.anl.gov/mpi/man/MPE_Describe_state.html#MPE_Describe_state
man:+MPE_Describe_event++MPE_Describe_event++++man+http://www.mcs.anl.gov/mpi/man/MPE_Describe_event.html#MPE_Describe_event
man:+MPE_Log_get_event_number++MPE_Log_get_event_number++++man+http://www.mcs.anl.gov/mpi/man/MPE_Log_get_event_number.html#MPE_Log_get_event_number
man:+MPE_Log_send++MPE_Log_send++++man+http://www.mcs.anl.gov/mpi/man/MPE_Log_send.html#MPE_Log_send
man:+MPE_Log_receive++MPE_Log_receive++++man+http://www.mcs.anl.gov/mpi/man/MPE_Log_receive.html#MPE_Log_receive
man:+MPE_Log_event++MPE_Log_event++++man+http://www.mcs.anl.gov/mpi/man/MPE_Log_event.html#MPE_Log_event
man:+MPE_Finish_log++MPE_Finish_log++++man+http://www.mcs.anl.gov/mpi/man/MPE_Finish_log.html#MPE_Finish_log
man:+CLOG_Init++CLOG_Init++++man+http://www.mcs.anl.gov/mpi/man/CLOG_Init.html#CLOG_Init
man:+CLOG_Finalize++CLOG_Finalize++++man+http://www.mcs.anl.gov/mpi/man/CLOG_Finalize.html#CLOG_Finalize
man:+CLOG_newbuff++CLOG_newbuff++++man+http://www.mcs.anl.gov/mpi/man/CLOG_newbuff.html#CLOG_newbuff
man:+CLOG_get_new_event++CLOG_get_new_event++++man+http://www.mcs.anl.gov/mpi/man/CLOG_get_new_event.html#CLOG_get_new_event
man:+CLOG_get_new_state++CLOG_get_new_state++++man+http://www.mcs.anl.gov/mpi/man/CLOG_get_new_state.html#CLOG_get_new_state
man:+CLOG_mergelogs++CLOG_mergelogs++++man+http://www.mcs.anl.gov/mpi/man/CLOG_mergelogs.html#CLOG_mergelogs
man:+CLOG_treesetup++CLOG_treesetup++++man+http://www.mcs.anl.gov/mpi/man/CLOG_treesetup.html#CLOG_treesetup
man:+CLOG_procbuf++CLOG_procbuf++++man+http://www.mcs.anl.gov/mpi/man/CLOG_procbuf.html#CLOG_procbuf
man:+CLOG_mergend++CLOG_mergend++++man+http://www.mcs.anl.gov/mpi/man/CLOG_mergend.html#CLOG_mergend
man:+CLOG_Output++CLOG_Output++++man+http://www.mcs.anl.gov/mpi/man/CLOG_Output.html#CLOG_Output
man:+CLOG_cput++CLOG_cput++++man+http://www.mcs.anl.gov/mpi/man/CLOG_cput.html#CLOG_cput
man:+CLOG_csync++CLOG_csync++++man+http://www.mcs.anl.gov/mpi/man/CLOG_csync.html#CLOG_csync
man:+CLOG_reclen++CLOG_reclen++++man+http://www.mcs.anl.gov/mpi/man/CLOG_reclen.html#CLOG_reclen
man:+CLOG_msgtype++CLOG_msgtype++++man+http://www.mcs.anl.gov/mpi/man/CLOG_msgtype.html#CLOG_msgtype
man:+CLOG_commtype++CLOG_commtype++++man+http://www.mcs.anl.gov/mpi/man/CLOG_commtype.html#CLOG_commtype
man:+CLOG_rectype++CLOG_rectype++++man+http://www.mcs.anl.gov/mpi/man/CLOG_rectype.html#CLOG_rectype
man:+MPE_Decomp1d++MPE_Decomp1d++++man+http://www.mcs.anl.gov/mpi/man/MPE_Decomp1d.html#MPE_Decomp1d
man:+MPE_Seq_begin++MPE_Seq_begin++++man+http://www.mcs.anl.gov/mpi/man/MPE_Seq_begin.html#MPE_Seq_begin
man:+MPE_Seq_end++MPE_Seq_end++++man+http://www.mcs.anl.gov/mpi/man/MPE_Seq_end.html#MPE_Seq_end
man:+MPE_Print_datatype_unpack_action++MPE_Print_datatype_unpack_action++++man+http://www.mcs.anl.gov/mpi/man/MPE_Print_datatype_unpack_action.html#MPE_Print_datatype_unpack_action
man:+MPE_Print_datatype_pack_action++MPE_Print_datatype_pack_action++++man+http://www.mcs.anl.gov/mpi/man/MPE_Print_datatype_pack_action.html#MPE_Print_datatype_pack_action
man:+MPE_GetTags++MPE_GetTags++++man+http://www.mcs.anl.gov/mpi/man/MPE_GetTags.html#MPE_GetTags
man:+MPE_Comm_global_rank++MPE_Comm_global_rank++++man+http://www.mcs.anl.gov/mpi/man/MPE_Comm_global_rank.html#MPE_Comm_global_rank
man:+MPE_IO_Stdout_to_file++MPE_IO_Stdout_to_file++++man+http://www.mcs.anl.gov/mpi/man/MPE_IO_Stdout_to_file.html#MPE_IO_Stdout_to_file
man:+Constants++Constants++++man+http://www.mcs.anl.gov/mpi/www/www3/Constants.html#Constants
man:+mpirun++mpirun++++man+http://www.mcs.anl.gov/mpi/www/www1/mpirun.html#mpirun
man:+mpicc++mpicc++++man+http://www.mcs.anl.gov/mpi/www/www1/mpicc.html#mpicc
man:+mpif77++mpif77++++man+http://www.mcs.anl.gov/mpi/www/www1/mpif77.html#mpif77
man:+mpireconfig++mpireconfig++++man+http://www.mcs.anl.gov/mpi/www/www1/mpireconfig.html#mpireconfig
man:+tstmachines++tstmachines++++man+http://www.mcs.anl.gov/mpi/www/www1/tstmachines.html#tstmachines
man:+chp4_servs++chp4_servs++++man+http://www.mcs.anl.gov/mpi/www/www1/chp4_servs.html#chp4_servs
man:+mpiman++mpiman++++man+http://www.mcs.anl.gov/mpi/www/www1/mpiman.html#mpiman
|