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 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101
|
man:+PetscViewerType++PetscViewerType++++man+manualpages/Viewer/PetscViewerType.html#PetscViewerType
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:+PetscViewer++PetscViewer++++man+manualpages/Viewer/PetscViewer.html#PetscViewer
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:+PetscViewerASCIISetTab++PetscViewerASCIISetTab++++man+manualpages/Viewer/PetscViewerASCIISetTab.html#PetscViewerASCIISetTab
man:+PetscViewerASCIIGetTab++PetscViewerASCIIGetTab++++man+manualpages/Viewer/PetscViewerASCIIGetTab.html#PetscViewerASCIIGetTab
man:+PetscViewerASCIIAddTab++PetscViewerASCIIAddTab++++man+manualpages/Viewer/PetscViewerASCIIAddTab.html#PetscViewerASCIIAddTab
man:+PetscViewerASCIISubtractTab++PetscViewerASCIISubtractTab++++man+manualpages/Viewer/PetscViewerASCIISubtractTab.html#PetscViewerASCIISubtractTab
man:+PetscViewerASCIIPushSynchronized++PetscViewerASCIIPushSynchronized++++man+manualpages/Viewer/PetscViewerASCIIPushSynchronized.html#PetscViewerASCIIPushSynchronized
man:+PetscViewerASCIIPopSynchronized++PetscViewerASCIIPopSynchronized++++man+manualpages/Viewer/PetscViewerASCIIPopSynchronized.html#PetscViewerASCIIPopSynchronized
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:+PetscViewerASCIIRead++PetscViewerASCIIRead++++man+manualpages/Viewer/PetscViewerASCIIRead.html#PetscViewerASCIIRead
man:+PetscViewerASCIIGetStdout++PetscViewerASCIIGetStdout++++man+manualpages/Viewer/PetscViewerASCIIGetStdout.html#PetscViewerASCIIGetStdout
man:+PETSC_VIEWER_STDOUT_++PETSC_VIEWER_STDOUT_++++man+manualpages/Viewer/PETSC_VIEWER_STDOUT_.html#PETSC_VIEWER_STDOUT_
man:+PetscViewerASCIIGetStderr++PetscViewerASCIIGetStderr++++man+manualpages/Viewer/PetscViewerASCIIGetStderr.html#PetscViewerASCIIGetStderr
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:+PetscViewerASCIIOpenWithFILE++PetscViewerASCIIOpenWithFILE++++man+manualpages/Viewer/PetscViewerASCIIOpenWithFILE.html#PetscViewerASCIIOpenWithFILE
man:+PetscViewerBinaryGetMPIIOOffset++PetscViewerBinaryGetMPIIOOffset++++man+manualpages/Viewer/PetscViewerBinaryGetMPIIOOffset.html#PetscViewerBinaryGetMPIIOOffset
man:+PetscViewerBinaryAddMPIIOOffset++PetscViewerBinaryAddMPIIOOffset++++man+manualpages/Viewer/PetscViewerBinaryAddMPIIOOffset.html#PetscViewerBinaryAddMPIIOOffset
man:+PetscViewerBinaryGetMPIIODescriptor++PetscViewerBinaryGetMPIIODescriptor++++man+manualpages/Viewer/PetscViewerBinaryGetMPIIODescriptor.html#PetscViewerBinaryGetMPIIODescriptor
man:+PetscViewerBinaryGetUseMPIIO++PetscViewerBinaryGetUseMPIIO++++man+manualpages/Viewer/PetscViewerBinaryGetUseMPIIO.html#PetscViewerBinaryGetUseMPIIO
man:+PetscViewerBinaryGetFlowControl++PetscViewerBinaryGetFlowControl++++man+manualpages/Viewer/PetscViewerBinaryGetFlowControl.html#PetscViewerBinaryGetFlowControl
man:+PetscViewerBinarySetFlowControl++PetscViewerBinarySetFlowControl++++man+manualpages/Viewer/PetscViewerBinarySetFlowControl.html#PetscViewerBinarySetFlowControl
man:+PetscViewerBinaryGetDescriptor++PetscViewerBinaryGetDescriptor++++man+manualpages/Viewer/PetscViewerBinaryGetDescriptor.html#PetscViewerBinaryGetDescriptor
man:+PetscViewerBinarySkipInfo++PetscViewerBinarySkipInfo++++man+manualpages/Viewer/PetscViewerBinarySkipInfo.html#PetscViewerBinarySkipInfo
man:+PetscViewerBinarySetSkipInfo++PetscViewerBinarySetSkipInfo++++man+manualpages/Viewer/PetscViewerBinarySetSkipInfo.html#PetscViewerBinarySetSkipInfo
man:+PetscViewerBinaryGetSkipInfo++PetscViewerBinaryGetSkipInfo++++man+manualpages/Viewer/PetscViewerBinaryGetSkipInfo.html#PetscViewerBinaryGetSkipInfo
man:+PetscViewerBinarySetSkipOptions++PetscViewerBinarySetSkipOptions++++man+manualpages/Viewer/PetscViewerBinarySetSkipOptions.html#PetscViewerBinarySetSkipOptions
man:+PetscViewerBinaryGetSkipOptions++PetscViewerBinaryGetSkipOptions++++man+manualpages/Viewer/PetscViewerBinaryGetSkipOptions.html#PetscViewerBinaryGetSkipOptions
man:+PetscViewerBinarySetSkipHeader++PetscViewerBinarySetSkipHeader++++man+manualpages/Viewer/PetscViewerBinarySetSkipHeader.html#PetscViewerBinarySetSkipHeader
man:+PetscViewerBinaryGetSkipHeader++PetscViewerBinaryGetSkipHeader++++man+manualpages/Viewer/PetscViewerBinaryGetSkipHeader.html#PetscViewerBinaryGetSkipHeader
man:+PetscViewerBinaryGetInfoPointer++PetscViewerBinaryGetInfoPointer++++man+manualpages/Viewer/PetscViewerBinaryGetInfoPointer.html#PetscViewerBinaryGetInfoPointer
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:+PetscViewerBinarySetUseMPIIO++PetscViewerBinarySetUseMPIIO++++man+manualpages/Viewer/PetscViewerBinarySetUseMPIIO.html#PetscViewerBinarySetUseMPIIO
man:+PetscViewerFileSetMode++PetscViewerFileSetMode++++man+manualpages/Viewer/PetscViewerFileSetMode.html#PetscViewerFileSetMode
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:+PetscViewerDrawBaseAdd++PetscViewerDrawBaseAdd++++man+manualpages/Viewer/PetscViewerDrawBaseAdd.html#PetscViewerDrawBaseAdd
man:+PetscViewerDrawBaseSet++PetscViewerDrawBaseSet++++man+manualpages/Viewer/PetscViewerDrawBaseSet.html#PetscViewerDrawBaseSet
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:+PetscViewerDrawGetPause++PetscViewerDrawGetPause++++man+manualpages/Viewer/PetscViewerDrawGetPause.html#PetscViewerDrawGetPause
man:+PetscViewerDrawSetPause++PetscViewerDrawSetPause++++man+manualpages/Viewer/PetscViewerDrawSetPause.html#PetscViewerDrawSetPause
man:+PetscViewerDrawSetHold++PetscViewerDrawSetHold++++man+manualpages/Viewer/PetscViewerDrawSetHold.html#PetscViewerDrawSetHold
man:+PetscViewerDrawGetHold++PetscViewerDrawGetHold++++man+manualpages/Viewer/PetscViewerDrawGetHold.html#PetscViewerDrawGetHold
man:+PETSC_VIEWER_DRAW_++PETSC_VIEWER_DRAW_++++man+manualpages/Viewer/PETSC_VIEWER_DRAW_.html#PETSC_VIEWER_DRAW_
man:+PetscViewerDrawSetBounds++PetscViewerDrawSetBounds++++man+manualpages/Viewer/PetscViewerDrawSetBounds.html#PetscViewerDrawSetBounds
man:+PetscViewerDrawGetBounds++PetscViewerDrawGetBounds++++man+manualpages/Viewer/PetscViewerDrawGetBounds.html#PetscViewerDrawGetBounds
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:+PetscViewerMathematicaFinalizePackage++PetscViewerMathematicaFinalizePackage++++man+manualpages/Viewer/PetscViewerMathematicaFinalizePackage.html#PetscViewerMathematicaFinalizePackage
man:+PetscViewerMathematicaInitializePackage++PetscViewerMathematicaInitializePackage++++man+manualpages/Viewer/PetscViewerMathematicaInitializePackage.html#PetscViewerMathematicaInitializePackage
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:+PetscViewerHDF5SetBaseDimension2++PetscViewerHDF5SetBaseDimension2++++man+manualpages/Viewer/PetscViewerHDF5SetBaseDimension2.html#PetscViewerHDF5SetBaseDimension2
man:+PetscViewerHDF5GetBaseDimension2++PetscViewerHDF5GetBaseDimension2++++man+manualpages/Viewer/PetscViewerHDF5GetBaseDimension2.html#PetscViewerHDF5GetBaseDimension2
man:+PetscViewerHDF5SetSPOutput++PetscViewerHDF5SetSPOutput++++man+manualpages/Viewer/PetscViewerHDF5SetSPOutput.html#PetscViewerHDF5SetSPOutput
man:+PetscViewerHDF5GetSPOutput++PetscViewerHDF5GetSPOutput++++man+manualpages/Viewer/PetscViewerHDF5GetSPOutput.html#PetscViewerHDF5GetSPOutput
man:+PetscViewerHDF5Open++PetscViewerHDF5Open++++man+manualpages/Viewer/PetscViewerHDF5Open.html#PetscViewerHDF5Open
man:+PetscViewerHDF5GetFileId++PetscViewerHDF5GetFileId++++man+manualpages/Viewer/PetscViewerHDF5GetFileId.html#PetscViewerHDF5GetFileId
man:+PetscViewerHDF5PushGroup++PetscViewerHDF5PushGroup++++man+manualpages/Viewer/PetscViewerHDF5PushGroup.html#PetscViewerHDF5PushGroup
man:+PetscViewerHDF5PopGroup++PetscViewerHDF5PopGroup++++man+manualpages/Viewer/PetscViewerHDF5PopGroup.html#PetscViewerHDF5PopGroup
man:+PetscViewerHDF5GetGroup++PetscViewerHDF5GetGroup++++man+manualpages/Viewer/PetscViewerHDF5GetGroup.html#PetscViewerHDF5GetGroup
man:+PetscViewerHDF5IncrementTimestep++PetscViewerHDF5IncrementTimestep++++man+manualpages/Viewer/PetscViewerHDF5IncrementTimestep.html#PetscViewerHDF5IncrementTimestep
man:+PetscViewerHDF5SetTimestep++PetscViewerHDF5SetTimestep++++man+manualpages/Viewer/PetscViewerHDF5SetTimestep.html#PetscViewerHDF5SetTimestep
man:+PetscViewerHDF5GetTimestep++PetscViewerHDF5GetTimestep++++man+manualpages/Viewer/PetscViewerHDF5GetTimestep.html#PetscViewerHDF5GetTimestep
man:+PetscDataTypeToHDF5DataType++PetscDataTypeToHDF5DataType++++man+manualpages/Viewer/PetscDataTypeToHDF5DataType.html#PetscDataTypeToHDF5DataType
man:+PetscHDF5DataTypeToPetscDataType++PetscHDF5DataTypeToPetscDataType++++man+manualpages/Viewer/PetscHDF5DataTypeToPetscDataType.html#PetscHDF5DataTypeToPetscDataType
man:+PetscViewerHDF5WriteAttribute++PetscViewerHDF5WriteAttribute++++man+manualpages/Viewer/PetscViewerHDF5WriteAttribute.html#PetscViewerHDF5WriteAttribute
man:+PetscViewerHDF5ReadAttribute++PetscViewerHDF5ReadAttribute++++man+manualpages/Viewer/PetscViewerHDF5ReadAttribute.html#PetscViewerHDF5ReadAttribute
man:+PetscViewerHDF5HasAttribute++PetscViewerHDF5HasAttribute++++man+manualpages/Viewer/PetscViewerHDF5HasAttribute.html#PetscViewerHDF5HasAttribute
man:+PETSC_VIEWER_HDF5_++PETSC_VIEWER_HDF5_++++man+manualpages/Viewer/PETSC_VIEWER_HDF5_.html#PETSC_VIEWER_HDF5_
man:+PETSCVIEWERMATLAB++PETSCVIEWERMATLAB++++man+manualpages/Viewer/PETSCVIEWERMATLAB.html#PETSCVIEWERMATLAB
man:+PetscViewerMatlabPutArray++PetscViewerMatlabPutArray++++man+manualpages/Viewer/PetscViewerMatlabPutArray.html#PetscViewerMatlabPutArray
man:+PetscViewerMatlabGetArray++PetscViewerMatlabGetArray++++man+manualpages/Viewer/PetscViewerMatlabGetArray.html#PetscViewerMatlabGetArray
man:+PetscViewerMatlabOpen++PetscViewerMatlabOpen++++man+manualpages/Viewer/PetscViewerMatlabOpen.html#PetscViewerMatlabOpen
man:+PETSC_VIEWER_MATLAB_++PETSC_VIEWER_MATLAB_++++man+manualpages/Viewer/PETSC_VIEWER_MATLAB_.html#PETSC_VIEWER_MATLAB_
man:+PETSC_VIEWER_SAWS_++PETSC_VIEWER_SAWS_++++man+manualpages/Viewer/PETSC_VIEWER_SAWS_.html#PETSC_VIEWER_SAWS_
man:+PetscViewerSAWsOpen++PetscViewerSAWsOpen++++man+manualpages/Viewer/PetscViewerSAWsOpen.html#PetscViewerSAWsOpen
man:+PetscObjectViewSAWs++PetscObjectViewSAWs++++man+manualpages/Viewer/PetscObjectViewSAWs.html#PetscObjectViewSAWs
man:+PetscViewerVTKWriteFunction++PetscViewerVTKWriteFunction++++man+manualpages/Viewer/PetscViewerVTKWriteFunction.html#PetscViewerVTKWriteFunction
man:+PetscViewerVTKAddField++PetscViewerVTKAddField++++man+manualpages/Viewer/PetscViewerVTKAddField.html#PetscViewerVTKAddField
man:+PetscViewerVTKOpen++PetscViewerVTKOpen++++man+manualpages/Viewer/PetscViewerVTKOpen.html#PetscViewerVTKOpen
man:+PetscViewerVTKFWrite++PetscViewerVTKFWrite++++man+manualpages/Viewer/PetscViewerVTKFWrite.html#PetscViewerVTKFWrite
man:+PetscViewerFinalizePackage++PetscViewerFinalizePackage++++man+manualpages/Viewer/PetscViewerFinalizePackage.html#PetscViewerFinalizePackage
man:+PetscViewerInitializePackage++PetscViewerInitializePackage++++man+manualpages/Viewer/PetscViewerInitializePackage.html#PetscViewerInitializePackage
man:+PetscViewerDestroy++PetscViewerDestroy++++man+manualpages/Viewer/PetscViewerDestroy.html#PetscViewerDestroy
man:+PetscViewerAndFormatCreate++PetscViewerAndFormatCreate++++man+manualpages/Viewer/PetscViewerAndFormatCreate.html#PetscViewerAndFormatCreate
man:+PetscViewerAndFormatDestroy++PetscViewerAndFormatDestroy++++man+manualpages/Viewer/PetscViewerAndFormatDestroy.html#PetscViewerAndFormatDestroy
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:+PetscViewerRead++PetscViewerRead++++man+manualpages/Viewer/PetscViewerRead.html#PetscViewerRead
man:+PetscViewerFlush++PetscViewerFlush++++man+manualpages/Viewer/PetscViewerFlush.html#PetscViewerFlush
man:+PetscViewerRegisterAll++PetscViewerRegisterAll++++man+manualpages/Viewer/PetscViewerRegisterAll.html#PetscViewerRegisterAll
man:+PetscOptionsHelpPrintedCreate++PetscOptionsHelpPrintedCreate++++man+manualpages/Viewer/PetscOptionsHelpPrintedCreate.html#PetscOptionsHelpPrintedCreate
man:+PetscOptionsHelpPrintedCheck++PetscOptionsHelpPrintedCheck++++man+manualpages/Viewer/PetscOptionsHelpPrintedCheck.html#PetscOptionsHelpPrintedCheck
man:+PetscOptionsGetViewer++PetscOptionsGetViewer++++man+manualpages/Viewer/PetscOptionsGetViewer.html#PetscOptionsGetViewer
man:+PetscViewerCreate++PetscViewerCreate++++man+manualpages/Viewer/PetscViewerCreate.html#PetscViewerCreate
man:+PetscViewerSetType++PetscViewerSetType++++man+manualpages/Viewer/PetscViewerSetType.html#PetscViewerSetType
man:+PetscViewerRegister++PetscViewerRegister++++man+manualpages/Viewer/PetscViewerRegister.html#PetscViewerRegister
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:+PetscSysFinalizePackage++PetscSysFinalizePackage++++man+manualpages/Viewer/PetscSysFinalizePackage.html#PetscSysFinalizePackage
man:+PetscSysInitializePackage++PetscSysInitializePackage++++man+manualpages/Viewer/PetscSysInitializePackage.html#PetscSysInitializePackage
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:+PetscViewerGetSubViewer++PetscViewerGetSubViewer++++man+manualpages/Viewer/PetscViewerGetSubViewer.html#PetscViewerGetSubViewer
man:+PetscViewerRestoreSubViewer++PetscViewerRestoreSubViewer++++man+manualpages/Viewer/PetscViewerRestoreSubViewer.html#PetscViewerRestoreSubViewer
man:+PetscDrawRealToColor++PetscDrawRealToColor++++man+manualpages/Draw/PetscDrawRealToColor.html#PetscDrawRealToColor
man:+PetscDrawMarkerType++PetscDrawMarkerType++++man+manualpages/Draw/PetscDrawMarkerType.html#PetscDrawMarkerType
man:+PetscDrawButton++PetscDrawButton++++man+manualpages/Draw/PetscDrawButton.html#PetscDrawButton
man:+PetscDrawViewPorts++PetscDrawViewPorts++++man+manualpages/Draw/PetscDrawViewPorts.html#PetscDrawViewPorts
man:+PetscDrawType++PetscDrawType++++man+manualpages/Draw/PetscDrawType.html#PetscDrawType
man:+PetscDraw++PetscDraw++++man+manualpages/Draw/PetscDraw.html#PetscDraw
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:+PetscDrawBar++PetscDrawBar++++man+manualpages/Draw/PetscDrawBar.html#PetscDrawBar
man:+PetscDrawFinalizePackage++PetscDrawFinalizePackage++++man+manualpages/Draw/PetscDrawFinalizePackage.html#PetscDrawFinalizePackage
man:+PetscInitializeDrawPackage++PetscInitializeDrawPackage++++man+manualpages/Draw/PetscInitializeDrawPackage.html#PetscInitializeDrawPackage
man:+PetscDrawResizeWindow++PetscDrawResizeWindow++++man+manualpages/Draw/PetscDrawResizeWindow.html#PetscDrawResizeWindow
man:+PetscDrawGetWindowSize++PetscDrawGetWindowSize++++man+manualpages/Draw/PetscDrawGetWindowSize.html#PetscDrawGetWindowSize
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:+PetscDrawSetDoubleBuffer++PetscDrawSetDoubleBuffer++++man+manualpages/Draw/PetscDrawSetDoubleBuffer.html#PetscDrawSetDoubleBuffer
man:+PetscDrawGetSingleton++PetscDrawGetSingleton++++man+manualpages/Draw/PetscDrawGetSingleton.html#PetscDrawGetSingleton
man:+PetscDrawRestoreSingleton++PetscDrawRestoreSingleton++++man+manualpages/Draw/PetscDrawRestoreSingleton.html#PetscDrawRestoreSingleton
man:+PetscDrawSetCoordinates++PetscDrawSetCoordinates++++man+manualpages/Draw/PetscDrawSetCoordinates.html#PetscDrawSetCoordinates
man:+PetscDrawGetCoordinates++PetscDrawGetCoordinates++++man+manualpages/Draw/PetscDrawGetCoordinates.html#PetscDrawGetCoordinates
man:+PetscDrawString++PetscDrawString++++man+manualpages/Draw/PetscDrawString.html#PetscDrawString
man:+PetscDrawStringVertical++PetscDrawStringVertical++++man+manualpages/Draw/PetscDrawStringVertical.html#PetscDrawStringVertical
man:+PetscDrawStringCentered++PetscDrawStringCentered++++man+manualpages/Draw/PetscDrawStringCentered.html#PetscDrawStringCentered
man:+PetscDrawStringBoxed++PetscDrawStringBoxed++++man+manualpages/Draw/PetscDrawStringBoxed.html#PetscDrawStringBoxed
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:+PetscDrawPointPixel++PetscDrawPointPixel++++man+manualpages/Draw/PetscDrawPointPixel.html#PetscDrawPointPixel
man:+PetscDrawPointSetSize++PetscDrawPointSetSize++++man+manualpages/Draw/PetscDrawPointSetSize.html#PetscDrawPointSetSize
man:+PetscDrawMarker++PetscDrawMarker++++man+manualpages/Draw/PetscDrawMarker.html#PetscDrawMarker
man:+PetscDrawSetMarkerType++PetscDrawSetMarkerType++++man+manualpages/Draw/PetscDrawSetMarkerType.html#PetscDrawSetMarkerType
man:+PetscDrawGetMarkerType++PetscDrawGetMarkerType++++man+manualpages/Draw/PetscDrawGetMarkerType.html#PetscDrawGetMarkerType
man:+PetscDrawGetBoundingBox++PetscDrawGetBoundingBox++++man+manualpages/Draw/PetscDrawGetBoundingBox.html#PetscDrawGetBoundingBox
man:+PetscDrawGetCurrentPoint++PetscDrawGetCurrentPoint++++man+manualpages/Draw/PetscDrawGetCurrentPoint.html#PetscDrawGetCurrentPoint
man:+PetscDrawSetCurrentPoint++PetscDrawSetCurrentPoint++++man+manualpages/Draw/PetscDrawSetCurrentPoint.html#PetscDrawSetCurrentPoint
man:+PetscDrawPushCurrentPoint++PetscDrawPushCurrentPoint++++man+manualpages/Draw/PetscDrawPushCurrentPoint.html#PetscDrawPushCurrentPoint
man:+PetscDrawPopCurrentPoint++PetscDrawPopCurrentPoint++++man+manualpages/Draw/PetscDrawPopCurrentPoint.html#PetscDrawPopCurrentPoint
man:+PetscDrawLine++PetscDrawLine++++man+manualpages/Draw/PetscDrawLine.html#PetscDrawLine
man:+PetscDrawArrow++PetscDrawArrow++++man+manualpages/Draw/PetscDrawArrow.html#PetscDrawArrow
man:+PetscDrawLineSetWidth++PetscDrawLineSetWidth++++man+manualpages/Draw/PetscDrawLineSetWidth.html#PetscDrawLineSetWidth
man:+PetscDrawLineGetWidth++PetscDrawLineGetWidth++++man+manualpages/Draw/PetscDrawLineGetWidth.html#PetscDrawLineGetWidth
man:+PetscDrawPause++PetscDrawPause++++man+manualpages/Draw/PetscDrawPause.html#PetscDrawPause
man:+PetscDrawSetPause++PetscDrawSetPause++++man+manualpages/Draw/PetscDrawSetPause.html#PetscDrawSetPause
man:+PetscDrawGetPause++PetscDrawGetPause++++man+manualpages/Draw/PetscDrawGetPause.html#PetscDrawGetPause
man:+PetscDrawFlush++PetscDrawFlush++++man+manualpages/Draw/PetscDrawFlush.html#PetscDrawFlush
man:+PetscDrawSetSave++PetscDrawSetSave++++man+manualpages/Draw/PetscDrawSetSave.html#PetscDrawSetSave
man:+PetscDrawSetSaveMovie++PetscDrawSetSaveMovie++++man+manualpages/Draw/PetscDrawSetSaveMovie.html#PetscDrawSetSaveMovie
man:+PetscDrawSetSaveFinalImage++PetscDrawSetSaveFinalImage++++man+manualpages/Draw/PetscDrawSetSaveFinalImage.html#PetscDrawSetSaveFinalImage
man:+PetscDrawSave++PetscDrawSave++++man+manualpages/Draw/PetscDrawSave.html#PetscDrawSave
man:+PetscDrawSaveMovie++PetscDrawSaveMovie++++man+manualpages/Draw/PetscDrawSaveMovie.html#PetscDrawSaveMovie
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:+PetscDrawGetMouseButton++PetscDrawGetMouseButton++++man+manualpages/Draw/PetscDrawGetMouseButton.html#PetscDrawGetMouseButton
man:+PetscDrawSetViewPort++PetscDrawSetViewPort++++man+manualpages/Draw/PetscDrawSetViewPort.html#PetscDrawSetViewPort
man:+PetscDrawGetViewPort++PetscDrawGetViewPort++++man+manualpages/Draw/PetscDrawGetViewPort.html#PetscDrawGetViewPort
man:+PetscDrawSplitViewPort++PetscDrawSplitViewPort++++man+manualpages/Draw/PetscDrawSplitViewPort.html#PetscDrawSplitViewPort
man:+PetscDrawViewPortsCreate++PetscDrawViewPortsCreate++++man+manualpages/Draw/PetscDrawViewPortsCreate.html#PetscDrawViewPortsCreate
man:+PetscDrawViewPortsCreateRect++PetscDrawViewPortsCreateRect++++man+manualpages/Draw/PetscDrawViewPortsCreateRect.html#PetscDrawViewPortsCreateRect
man:+PetscDrawViewPortsDestroy++PetscDrawViewPortsDestroy++++man+manualpages/Draw/PetscDrawViewPortsDestroy.html#PetscDrawViewPortsDestroy
man:+PetscDrawViewPortsSet++PetscDrawViewPortsSet++++man+manualpages/Draw/PetscDrawViewPortsSet.html#PetscDrawViewPortsSet
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:+PetscDrawIndicatorFunction++PetscDrawIndicatorFunction++++man+manualpages/Draw/PetscDrawIndicatorFunction.html#PetscDrawIndicatorFunction
man:+PetscDrawCoordinateToPixel++PetscDrawCoordinateToPixel++++man+manualpages/Draw/PetscDrawCoordinateToPixel.html#PetscDrawCoordinateToPixel
man:+PetscDrawPixelToCoordinate++PetscDrawPixelToCoordinate++++man+manualpages/Draw/PetscDrawPixelToCoordinate.html#PetscDrawPixelToCoordinate
man:+PetscDrawRectangle++PetscDrawRectangle++++man+manualpages/Draw/PetscDrawRectangle.html#PetscDrawRectangle
man:+PetscDrawEllipse++PetscDrawEllipse++++man+manualpages/Draw/PetscDrawEllipse.html#PetscDrawEllipse
man:+PetscDrawView++PetscDrawView++++man+manualpages/Draw/PetscDrawView.html#PetscDrawView
man:+PetscDrawCreate++PetscDrawCreate++++man+manualpages/Draw/PetscDrawCreate.html#PetscDrawCreate
man:+PetscDrawSetType++PetscDrawSetType++++man+manualpages/Draw/PetscDrawSetType.html#PetscDrawSetType
man:+PetscDrawGetType++PetscDrawGetType++++man+manualpages/Draw/PetscDrawGetType.html#PetscDrawGetType
man:+PetscDrawRegister++PetscDrawRegister++++man+manualpages/Draw/PetscDrawRegister.html#PetscDrawRegister
man:+PetscDrawSetOptionsPrefix++PetscDrawSetOptionsPrefix++++man+manualpages/Draw/PetscDrawSetOptionsPrefix.html#PetscDrawSetOptionsPrefix
man:+PetscDrawSetFromOptions++PetscDrawSetFromOptions++++man+manualpages/Draw/PetscDrawSetFromOptions.html#PetscDrawSetFromOptions
man:+PetscDrawRegisterAll++PetscDrawRegisterAll++++man+manualpages/Draw/PetscDrawRegisterAll.html#PetscDrawRegisterAll
man:+PETSC_DRAW_IMAGE++PETSC_DRAW_IMAGE++++man+manualpages/Draw/PETSC_DRAW_IMAGE.html#PETSC_DRAW_IMAGE
man:+PetscDrawOpenImage++PetscDrawOpenImage++++man+manualpages/Draw/PetscDrawOpenImage.html#PetscDrawOpenImage
man:+PETSC_DRAW_X++PETSC_DRAW_X++++man+manualpages/Draw/PETSC_DRAW_X.html#PETSC_DRAW_X
man:+PetscDrawOpenX++PetscDrawOpenX++++man+manualpages/Draw/PetscDrawOpenX.html#PetscDrawOpenX
man:+PetscDrawOpenGLUT++PetscDrawOpenGLUT++++man+manualpages/Draw/PetscDrawOpenGLUT.html#PetscDrawOpenGLUT
man:+PETSC_DRAW_NULL++PETSC_DRAW_NULL++++man+manualpages/Draw/PETSC_DRAW_NULL.html#PETSC_DRAW_NULL
man:+PetscDrawOpenNull++PetscDrawOpenNull++++man+manualpages/Draw/PetscDrawOpenNull.html#PetscDrawOpenNull
man:+PetscDrawIsNull++PetscDrawIsNull++++man+manualpages/Draw/PetscDrawIsNull.html#PetscDrawIsNull
man:+PetscDrawLGAddCommonPoint++PetscDrawLGAddCommonPoint++++man+manualpages/Draw/PetscDrawLGAddCommonPoint.html#PetscDrawLGAddCommonPoint
man:+PetscDrawLGAddPoint++PetscDrawLGAddPoint++++man+manualpages/Draw/PetscDrawLGAddPoint.html#PetscDrawLGAddPoint
man:+PetscDrawLGAddPoints++PetscDrawLGAddPoints++++man+manualpages/Draw/PetscDrawLGAddPoints.html#PetscDrawLGAddPoints
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:+PetscDrawSPSave++PetscDrawSPSave++++man+manualpages/Draw/PetscDrawSPSave.html#PetscDrawSPSave
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:+PetscDrawHGSave++PetscDrawHGSave++++man+manualpages/Draw/PetscDrawHGSave.html#PetscDrawHGSave
man:+PetscDrawHGView++PetscDrawHGView++++man+manualpages/Draw/PetscDrawHGView.html#PetscDrawHGView
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:+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:+PetscDrawLGCreate++PetscDrawLGCreate++++man+manualpages/Draw/PetscDrawLGCreate.html#PetscDrawLGCreate
man:+PetscDrawLGSetColors++PetscDrawLGSetColors++++man+manualpages/Draw/PetscDrawLGSetColors.html#PetscDrawLGSetColors
man:+PetscDrawLGSetLegend++PetscDrawLGSetLegend++++man+manualpages/Draw/PetscDrawLGSetLegend.html#PetscDrawLGSetLegend
man:+PetscDrawLGGetDimension++PetscDrawLGGetDimension++++man+manualpages/Draw/PetscDrawLGGetDimension.html#PetscDrawLGGetDimension
man:+PetscDrawLGSetDimension++PetscDrawLGSetDimension++++man+manualpages/Draw/PetscDrawLGSetDimension.html#PetscDrawLGSetDimension
man:+PetscDrawLGSetLimits++PetscDrawLGSetLimits++++man+manualpages/Draw/PetscDrawLGSetLimits.html#PetscDrawLGSetLimits
man:+PetscDrawLGReset++PetscDrawLGReset++++man+manualpages/Draw/PetscDrawLGReset.html#PetscDrawLGReset
man:+PetscDrawLGDestroy++PetscDrawLGDestroy++++man+manualpages/Draw/PetscDrawLGDestroy.html#PetscDrawLGDestroy
man:+PetscDrawLGSetUseMarkers++PetscDrawLGSetUseMarkers++++man+manualpages/Draw/PetscDrawLGSetUseMarkers.html#PetscDrawLGSetUseMarkers
man:+PetscDrawLGDraw++PetscDrawLGDraw++++man+manualpages/Draw/PetscDrawLGDraw.html#PetscDrawLGDraw
man:+PetscDrawLGSave++PetscDrawLGSave++++man+manualpages/Draw/PetscDrawLGSave.html#PetscDrawLGSave
man:+PetscDrawLGView++PetscDrawLGView++++man+manualpages/Draw/PetscDrawLGView.html#PetscDrawLGView
man:+PetscDrawLGSetOptionsPrefix++PetscDrawLGSetOptionsPrefix++++man+manualpages/Draw/PetscDrawLGSetOptionsPrefix.html#PetscDrawLGSetOptionsPrefix
man:+PetscDrawLGSetFromOptions++PetscDrawLGSetFromOptions++++man+manualpages/Draw/PetscDrawLGSetFromOptions.html#PetscDrawLGSetFromOptions
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:+PetscDrawAxisSetLimits++PetscDrawAxisSetLimits++++man+manualpages/Draw/PetscDrawAxisSetLimits.html#PetscDrawAxisSetLimits
man:+PetscDrawAxisGetLimits++PetscDrawAxisGetLimits++++man+manualpages/Draw/PetscDrawAxisGetLimits.html#PetscDrawAxisGetLimits
man:+PetscDrawAxisSetHoldLimits++PetscDrawAxisSetHoldLimits++++man+manualpages/Draw/PetscDrawAxisSetHoldLimits.html#PetscDrawAxisSetHoldLimits
man:+PetscDrawAxisDraw++PetscDrawAxisDraw++++man+manualpages/Draw/PetscDrawAxisDraw.html#PetscDrawAxisDraw
man:+PetscDrawBarCreate++PetscDrawBarCreate++++man+manualpages/Draw/PetscDrawBarCreate.html#PetscDrawBarCreate
man:+PetscDrawBarSetData++PetscDrawBarSetData++++man+manualpages/Draw/PetscDrawBarSetData.html#PetscDrawBarSetData
man:+PetscDrawBarDestroy++PetscDrawBarDestroy++++man+manualpages/Draw/PetscDrawBarDestroy.html#PetscDrawBarDestroy
man:+PetscDrawBarDraw++PetscDrawBarDraw++++man+manualpages/Draw/PetscDrawBarDraw.html#PetscDrawBarDraw
man:+PetscDrawBarSave++PetscDrawBarSave++++man+manualpages/Draw/PetscDrawBarSave.html#PetscDrawBarSave
man:+PetscDrawBarSetColor++PetscDrawBarSetColor++++man+manualpages/Draw/PetscDrawBarSetColor.html#PetscDrawBarSetColor
man:+PetscDrawBarSort++PetscDrawBarSort++++man+manualpages/Draw/PetscDrawBarSort.html#PetscDrawBarSort
man:+PetscDrawBarSetLimits++PetscDrawBarSetLimits++++man+manualpages/Draw/PetscDrawBarSetLimits.html#PetscDrawBarSetLimits
man:+PetscDrawBarGetAxis++PetscDrawBarGetAxis++++man+manualpages/Draw/PetscDrawBarGetAxis.html#PetscDrawBarGetAxis
man:+PetscDrawBarGetDraw++PetscDrawBarGetDraw++++man+manualpages/Draw/PetscDrawBarGetDraw.html#PetscDrawBarGetDraw
man:+PetscDrawBarSetFromOptions++PetscDrawBarSetFromOptions++++man+manualpages/Draw/PetscDrawBarSetFromOptions.html#PetscDrawBarSetFromOptions
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:+PetscRandomGetValue++PetscRandomGetValue++++man+manualpages/Sys/PetscRandomGetValue.html#PetscRandomGetValue
man:+PetscRandomGetValueReal++PetscRandomGetValueReal++++man+manualpages/Sys/PetscRandomGetValueReal.html#PetscRandomGetValueReal
man:+PetscRandomGetInterval++PetscRandomGetInterval++++man+manualpages/Sys/PetscRandomGetInterval.html#PetscRandomGetInterval
man:+PetscRandomSetInterval++PetscRandomSetInterval++++man+manualpages/Sys/PetscRandomSetInterval.html#PetscRandomSetInterval
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:+PetscRandomRegisterAll++PetscRandomRegisterAll++++man+manualpages/Sys/PetscRandomRegisterAll.html#PetscRandomRegisterAll
man:+PetscRandomFinalizePackage++PetscRandomFinalizePackage++++man+manualpages/Sys/PetscRandomFinalizePackage.html#PetscRandomFinalizePackage
man:+PetscRandomInitializePackage++PetscRandomInitializePackage++++man+manualpages/Sys/PetscRandomInitializePackage.html#PetscRandomInitializePackage
man:+PetscRandomDestroy++PetscRandomDestroy++++man+manualpages/Sys/PetscRandomDestroy.html#PetscRandomDestroy
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:+PetscRandomCreate++PetscRandomCreate++++man+manualpages/Sys/PetscRandomCreate.html#PetscRandomCreate
man:+PetscRandomSeed++PetscRandomSeed++++man+manualpages/Sys/PetscRandomSeed.html#PetscRandomSeed
man:+PetscBagRegisterEnum++PetscBagRegisterEnum++++man+manualpages/Sys/PetscBagRegisterEnum.html#PetscBagRegisterEnum
man:+PetscBagRegisterIntArray++PetscBagRegisterIntArray++++man+manualpages/Sys/PetscBagRegisterIntArray.html#PetscBagRegisterIntArray
man:+PetscBagRegisterRealArray++PetscBagRegisterRealArray++++man+manualpages/Sys/PetscBagRegisterRealArray.html#PetscBagRegisterRealArray
man:+PetscBagRegisterInt++PetscBagRegisterInt++++man+manualpages/Sys/PetscBagRegisterInt.html#PetscBagRegisterInt
man:+PetscBagRegister64bitInt++PetscBagRegister64bitInt++++man+manualpages/Sys/PetscBagRegister64bitInt.html#PetscBagRegister64bitInt
man:+PetscBagRegisterBoolArray++PetscBagRegisterBoolArray++++man+manualpages/Sys/PetscBagRegisterBoolArray.html#PetscBagRegisterBoolArray
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:+PetscBagRegisterBool++PetscBagRegisterBool++++man+manualpages/Sys/PetscBagRegisterBool.html#PetscBagRegisterBool
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:+PetscBagSetOptionsPrefix++PetscBagSetOptionsPrefix++++man+manualpages/Sys/PetscBagSetOptionsPrefix.html#PetscBagSetOptionsPrefix
man:+PetscBagGetNames++PetscBagGetNames++++man+manualpages/Sys/PetscBagGetNames.html#PetscBagGetNames
man:+PetscBag++PetscBag++++man+manualpages/Sys/PetscBag.html#PetscBag
man:+PetscSetDebugTerminal++PetscSetDebugTerminal++++man+manualpages/Sys/PetscSetDebugTerminal.html#PetscSetDebugTerminal
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:+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:+PetscMPIAbortErrorHandler++PetscMPIAbortErrorHandler++++man+manualpages/Sys/PetscMPIAbortErrorHandler.html#PetscMPIAbortErrorHandler
man:+PetscFPTrapPush++PetscFPTrapPush++++man+manualpages/Sys/PetscFPTrapPush.html#PetscFPTrapPush
man:+PetscFPTrapPop++PetscFPTrapPop++++man+manualpages/Sys/PetscFPTrapPop.html#PetscFPTrapPop
man:+PetscSetFPTrap++PetscSetFPTrap++++man+manualpages/Sys/PetscSetFPTrap.html#PetscSetFPTrap
man:+PetscSignalHandlerDefault++PetscSignalHandlerDefault++++man+manualpages/Sys/PetscSignalHandlerDefault.html#PetscSignalHandlerDefault
man:+PetscPushSignalHandler++PetscPushSignalHandler++++man+manualpages/Sys/PetscPushSignalHandler.html#PetscPushSignalHandler
man:+PetscPopSignalHandler++PetscPopSignalHandler++++man+manualpages/Sys/PetscPopSignalHandler.html#PetscPopSignalHandler
man:+PetscStackSAWsGrantAccess++PetscStackSAWsGrantAccess++++man+manualpages/Sys/PetscStackSAWsGrantAccess.html#PetscStackSAWsGrantAccess
man:+PetscStackSAWsTakeAccess++PetscStackSAWsTakeAccess++++man+manualpages/Sys/PetscStackSAWsTakeAccess.html#PetscStackSAWsTakeAccess
man:+PetscCheckPointerSetIntensity++PetscCheckPointerSetIntensity++++man+manualpages/Sys/PetscCheckPointerSetIntensity.html#PetscCheckPointerSetIntensity
man:+PetscCheckPointer++PetscCheckPointer++++man+manualpages/Sys/PetscCheckPointer.html#PetscCheckPointer
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:+SETERRQ4++SETERRQ4++++man+manualpages/Sys/SETERRQ4.html#SETERRQ4
man:+SETERRQ5++SETERRQ5++++man+manualpages/Sys/SETERRQ5.html#SETERRQ5
man:+SETERRQ6++SETERRQ6++++man+manualpages/Sys/SETERRQ6.html#SETERRQ6
man:+SETERRQ7++SETERRQ7++++man+manualpages/Sys/SETERRQ7.html#SETERRQ7
man:+SETERRQ8++SETERRQ8++++man+manualpages/Sys/SETERRQ8.html#SETERRQ8
man:+SETERRABORT++SETERRABORT++++man+manualpages/Sys/SETERRABORT.html#SETERRABORT
man:+CHKERRQ++CHKERRQ++++man+manualpages/Sys/CHKERRQ.html#CHKERRQ
man:+CHKERRXX++CHKERRXX++++man+manualpages/Sys/CHKERRXX.html#CHKERRXX
man:+CHKMEMQ++CHKMEMQ++++man+manualpages/Sys/CHKMEMQ.html#CHKMEMQ
man:+PetscErrorType++PetscErrorType++++man+manualpages/Sys/PetscErrorType.html#PetscErrorType
man:+PetscErrorPrintf++PetscErrorPrintf++++man+manualpages/Sys/PetscErrorPrintf.html#PetscErrorPrintf
man:+PetscFunctionBegin++PetscFunctionBegin++++man+manualpages/Sys/PetscFunctionBegin.html#PetscFunctionBegin
man:+PetscFunctionBeginHot++PetscFunctionBeginHot++++man+manualpages/Sys/PetscFunctionBeginHot.html#PetscFunctionBeginHot
man:+PetscFunctionBeginUser++PetscFunctionBeginUser++++man+manualpages/Sys/PetscFunctionBeginUser.html#PetscFunctionBeginUser
man:+PetscFunctionReturn++PetscFunctionReturn++++man+manualpages/Sys/PetscFunctionReturn.html#PetscFunctionReturn
man:+PetscDLOpen++PetscDLOpen++++man+manualpages/Sys/PetscDLOpen.html#PetscDLOpen
man:+PetscDLClose++PetscDLClose++++man+manualpages/Sys/PetscDLClose.html#PetscDLClose
man:+PetscDLSym++PetscDLSym++++man+manualpages/Sys/PetscDLSym.html#PetscDLSym
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:+PetscFunctionListAdd++PetscFunctionListAdd++++man+manualpages/Sys/PetscFunctionListAdd.html#PetscFunctionListAdd
man:+PetscFunctionListDestroy++PetscFunctionListDestroy++++man+manualpages/Sys/PetscFunctionListDestroy.html#PetscFunctionListDestroy
man:+PetscFunctionListFind++PetscFunctionListFind++++man+manualpages/Sys/PetscFunctionListFind.html#PetscFunctionListFind
man:+PetscFunctionListView++PetscFunctionListView++++man+manualpages/Sys/PetscFunctionListView.html#PetscFunctionListView
man:+PetscFunctionListGet++PetscFunctionListGet++++man+manualpages/Sys/PetscFunctionListGet.html#PetscFunctionListGet
man:+PetscFunctionListPrintTypes++PetscFunctionListPrintTypes++++man+manualpages/Sys/PetscFunctionListPrintTypes.html#PetscFunctionListPrintTypes
man:+PetscFunctionListDuplicate++PetscFunctionListDuplicate++++man+manualpages/Sys/PetscFunctionListDuplicate.html#PetscFunctionListDuplicate
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:+PetscPOpenSetMachine++PetscPOpenSetMachine++++man+manualpages/Sys/PetscPOpenSetMachine.html#PetscPOpenSetMachine
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:+PetscFormatConvert++PetscFormatConvert++++man+manualpages/Sys/PetscFormatConvert.html#PetscFormatConvert
man:+PetscVSNPrintf++PetscVSNPrintf++++man+manualpages/Sys/PetscVSNPrintf.html#PetscVSNPrintf
man:+PetscVFPrintf++PetscVFPrintf++++man+manualpages/Sys/PetscVFPrintf.html#PetscVFPrintf
man:+PetscSNPrintf++PetscSNPrintf++++man+manualpages/Sys/PetscSNPrintf.html#PetscSNPrintf
man:+PetscSNPrintfCount++PetscSNPrintfCount++++man+manualpages/Sys/PetscSNPrintfCount.html#PetscSNPrintfCount
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:+PetscHelpPrintf++PetscHelpPrintf++++man+manualpages/Sys/PetscHelpPrintf.html#PetscHelpPrintf
man:+PetscSynchronizedFGets++PetscSynchronizedFGets++++man+manualpages/Sys/PetscSynchronizedFGets.html#PetscSynchronizedFGets
man:+PetscFormatStrip++PetscFormatStrip++++man+manualpages/Sys/PetscFormatStrip.html#PetscFormatStrip
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:+PetscBinarySynchronizedRead++PetscBinarySynchronizedRead++++man+manualpages/Sys/PetscBinarySynchronizedRead.html#PetscBinarySynchronizedRead
man:+PetscBinarySynchronizedWrite++PetscBinarySynchronizedWrite++++man+manualpages/Sys/PetscBinarySynchronizedWrite.html#PetscBinarySynchronizedWrite
man:+PetscBinarySynchronizedSeek++PetscBinarySynchronizedSeek++++man+manualpages/Sys/PetscBinarySynchronizedSeek.html#PetscBinarySynchronizedSeek
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:+PetscMallocSet++PetscMallocSet++++man+manualpages/Sys/PetscMallocSet.html#PetscMallocSet
man:+PetscMallocClear++PetscMallocClear++++man+manualpages/Sys/PetscMallocClear.html#PetscMallocClear
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:+PetscMemoryView++PetscMemoryView++++man+manualpages/Sys/PetscMemoryView.html#PetscMemoryView
man:+PetscMallocGetCurrentUsage++PetscMallocGetCurrentUsage++++man+manualpages/Sys/PetscMallocGetCurrentUsage.html#PetscMallocGetCurrentUsage
man:+PetscMallocGetMaximumUsage++PetscMallocGetMaximumUsage++++man+manualpages/Sys/PetscMallocGetMaximumUsage.html#PetscMallocGetMaximumUsage
man:+PetscMallocGetStack++PetscMallocGetStack++++man+manualpages/Sys/PetscMallocGetStack.html#PetscMallocGetStack
man:+PetscMallocDump++PetscMallocDump++++man+manualpages/Sys/PetscMallocDump.html#PetscMallocDump
man:+PetscMallocSetDumpLog++PetscMallocSetDumpLog++++man+manualpages/Sys/PetscMallocSetDumpLog.html#PetscMallocSetDumpLog
man:+PetscMallocSetDumpLogThreshold++PetscMallocSetDumpLogThreshold++++man+manualpages/Sys/PetscMallocSetDumpLogThreshold.html#PetscMallocSetDumpLogThreshold
man:+PetscMallocGetDumpLog++PetscMallocGetDumpLog++++man+manualpages/Sys/PetscMallocGetDumpLog.html#PetscMallocGetDumpLog
man:+PetscMallocDumpLog++PetscMallocDumpLog++++man+manualpages/Sys/PetscMallocDumpLog.html#PetscMallocDumpLog
man:+PetscMallocDebug++PetscMallocDebug++++man+manualpages/Sys/PetscMallocDebug.html#PetscMallocDebug
man:+PetscMallocGetDebug++PetscMallocGetDebug++++man+manualpages/Sys/PetscMallocGetDebug.html#PetscMallocGetDebug
man:+PetscGetVersion++PetscGetVersion++++man+manualpages/Sys/PetscGetVersion.html#PetscGetVersion
man:+PetscObjectComm++PetscObjectComm++++man+manualpages/Sys/PetscObjectComm.html#PetscObjectComm
man:+PetscObjectGetComm++PetscObjectGetComm++++man+manualpages/Sys/PetscObjectGetComm.html#PetscObjectGetComm
man:+PetscObjectGetTabLevel++PetscObjectGetTabLevel++++man+manualpages/Sys/PetscObjectGetTabLevel.html#PetscObjectGetTabLevel
man:+PetscObjectSetTabLevel++PetscObjectSetTabLevel++++man+manualpages/Sys/PetscObjectSetTabLevel.html#PetscObjectSetTabLevel
man:+PetscObjectIncrementTabLevel++PetscObjectIncrementTabLevel++++man+manualpages/Sys/PetscObjectIncrementTabLevel.html#PetscObjectIncrementTabLevel
man:+PetscObjectGetType++PetscObjectGetType++++man+manualpages/Sys/PetscObjectGetType.html#PetscObjectGetType
man:+PetscObjectSetType++PetscObjectSetType++++man+manualpages/Sys/PetscObjectSetType.html#PetscObjectSetType
man:+PetscObjectListRemoveReference++PetscObjectListRemoveReference++++man+manualpages/Sys/PetscObjectListRemoveReference.html#PetscObjectListRemoveReference
man:+PetscObjectListAdd++PetscObjectListAdd++++man+manualpages/Sys/PetscObjectListAdd.html#PetscObjectListAdd
man:+PetscObjectListDestroy++PetscObjectListDestroy++++man+manualpages/Sys/PetscObjectListDestroy.html#PetscObjectListDestroy
man:+PetscObjectListFind++PetscObjectListFind++++man+manualpages/Sys/PetscObjectListFind.html#PetscObjectListFind
man:+PetscObjectListReverseFind++PetscObjectListReverseFind++++man+manualpages/Sys/PetscObjectListReverseFind.html#PetscObjectListReverseFind
man:+PetscObjectListDuplicate++PetscObjectListDuplicate++++man+manualpages/Sys/PetscObjectListDuplicate.html#PetscObjectListDuplicate
man:+PetscObjectSetName++PetscObjectSetName++++man+manualpages/Sys/PetscObjectSetName.html#PetscObjectSetName
man:+PetscObjectPrintTypeNamePrefix++PetscObjectPrintTypeNamePrefix++++man+manualpages/Sys/PetscObjectPrintTypeNamePrefix.html#PetscObjectPrintTypeNamePrefix
man:+PetscObjectName++PetscObjectName++++man+manualpages/Sys/PetscObjectName.html#PetscObjectName
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:+PetscObjectsListGetGlobalNumbering++PetscObjectsListGetGlobalNumbering++++man+manualpages/Sys/PetscObjectsListGetGlobalNumbering.html#PetscObjectsListGetGlobalNumbering
man:+PetscObjectDestroy++PetscObjectDestroy++++man+manualpages/Sys/PetscObjectDestroy.html#PetscObjectDestroy
man:+PetscObjectView++PetscObjectView++++man+manualpages/Sys/PetscObjectView.html#PetscObjectView
man:+PetscObjectTypeCompare++PetscObjectTypeCompare++++man+manualpages/Sys/PetscObjectTypeCompare.html#PetscObjectTypeCompare
man:+PetscObjectTypeCompareAny++PetscObjectTypeCompareAny++++man+manualpages/Sys/PetscObjectTypeCompareAny.html#PetscObjectTypeCompareAny
man:+PetscObjectRegisterDestroy++PetscObjectRegisterDestroy++++man+manualpages/Sys/PetscObjectRegisterDestroy.html#PetscObjectRegisterDestroy
man:+PetscObjectRegisterDestroyAll++PetscObjectRegisterDestroyAll++++man+manualpages/Sys/PetscObjectRegisterDestroyAll.html#PetscObjectRegisterDestroyAll
man:+PetscRegisterFinalize++PetscRegisterFinalize++++man+manualpages/Sys/PetscRegisterFinalize.html#PetscRegisterFinalize
man:+PetscRegisterFinalizeAll++PetscRegisterFinalizeAll++++man+manualpages/Sys/PetscRegisterFinalizeAll.html#PetscRegisterFinalizeAll
man:+PetscObjectGetClassId++PetscObjectGetClassId++++man+manualpages/Sys/PetscObjectGetClassId.html#PetscObjectGetClassId
man:+PetscObjectGetClassName++PetscObjectGetClassName++++man+manualpages/Sys/PetscObjectGetClassName.html#PetscObjectGetClassName
man:+PetscObjectCopyFortranFunctionPointers++PetscObjectCopyFortranFunctionPointers++++man+manualpages/Sys/PetscObjectCopyFortranFunctionPointers.html#PetscObjectCopyFortranFunctionPointers
man:+PetscObjectSetFortranCallback++PetscObjectSetFortranCallback++++man+manualpages/Sys/PetscObjectSetFortranCallback.html#PetscObjectSetFortranCallback
man:+PetscObjectGetFortranCallback++PetscObjectGetFortranCallback++++man+manualpages/Sys/PetscObjectGetFortranCallback.html#PetscObjectGetFortranCallback
man:+PetscObjectsDump++PetscObjectsDump++++man+manualpages/Sys/PetscObjectsDump.html#PetscObjectsDump
man:+PetscObjectsView++PetscObjectsView++++man+manualpages/Sys/PetscObjectsView.html#PetscObjectsView
man:+PetscObjectsGetObject++PetscObjectsGetObject++++man+manualpages/Sys/PetscObjectsGetObject.html#PetscObjectsGetObject
man:+PetscObjectAddOptionsHandler++PetscObjectAddOptionsHandler++++man+manualpages/Sys/PetscObjectAddOptionsHandler.html#PetscObjectAddOptionsHandler
man:+PetscObjectProcessOptionsHandlers++PetscObjectProcessOptionsHandlers++++man+manualpages/Sys/PetscObjectProcessOptionsHandlers.html#PetscObjectProcessOptionsHandlers
man:+PetscObjectDestroyOptionsHandlers++PetscObjectDestroyOptionsHandlers++++man+manualpages/Sys/PetscObjectDestroyOptionsHandlers.html#PetscObjectDestroyOptionsHandlers
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:+PetscObjectSetPrecision++PetscObjectSetPrecision++++man+manualpages/Sys/PetscObjectSetPrecision.html#PetscObjectSetPrecision
man:+PetscObjectQuery++PetscObjectQuery++++man+manualpages/Sys/PetscObjectQuery.html#PetscObjectQuery
man:+PetscObjectComposeFunction++PetscObjectComposeFunction++++man+manualpages/Sys/PetscObjectComposeFunction.html#PetscObjectComposeFunction
man:+PetscObjectQueryFunction++PetscObjectQueryFunction++++man+manualpages/Sys/PetscObjectQueryFunction.html#PetscObjectQueryFunction
man:+PetscContainerGetPointer++PetscContainerGetPointer++++man+manualpages/Sys/PetscContainerGetPointer.html#PetscContainerGetPointer
man:+PetscContainerSetPointer++PetscContainerSetPointer++++man+manualpages/Sys/PetscContainerSetPointer.html#PetscContainerSetPointer
man:+PetscContainerDestroy++PetscContainerDestroy++++man+manualpages/Sys/PetscContainerDestroy.html#PetscContainerDestroy
man:+PetscContainerSetUserDestroy++PetscContainerSetUserDestroy++++man+manualpages/Sys/PetscContainerSetUserDestroy.html#PetscContainerSetUserDestroy
man:+PetscContainerCreate++PetscContainerCreate++++man+manualpages/Sys/PetscContainerCreate.html#PetscContainerCreate
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:+PetscOptionsValidKey++PetscOptionsValidKey++++man+manualpages/Sys/PetscOptionsValidKey.html#PetscOptionsValidKey
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:+PetscOptionsView++PetscOptionsView++++man+manualpages/Sys/PetscOptionsView.html#PetscOptionsView
man:+PetscOptionsGetAll++PetscOptionsGetAll++++man+manualpages/Sys/PetscOptionsGetAll.html#PetscOptionsGetAll
man:+PetscOptionsPrefixPush++PetscOptionsPrefixPush++++man+manualpages/Sys/PetscOptionsPrefixPush.html#PetscOptionsPrefixPush
man:+PetscOptionsPrefixPop++PetscOptionsPrefixPop++++man+manualpages/Sys/PetscOptionsPrefixPop.html#PetscOptionsPrefixPop
man:+PetscOptionsClear++PetscOptionsClear++++man+manualpages/Sys/PetscOptionsClear.html#PetscOptionsClear
man:+PetscObjectSetPrintedOptions++PetscObjectSetPrintedOptions++++man+manualpages/Sys/PetscObjectSetPrintedOptions.html#PetscObjectSetPrintedOptions
man:+PetscObjectInheritPrintedOptions++PetscObjectInheritPrintedOptions++++man+manualpages/Sys/PetscObjectInheritPrintedOptions.html#PetscObjectInheritPrintedOptions
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:+PetscOptionsSetAlias++PetscOptionsSetAlias++++man+manualpages/Sys/PetscOptionsSetAlias.html#PetscOptionsSetAlias
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:+PetscOptionsGetBool++PetscOptionsGetBool++++man+manualpages/Sys/PetscOptionsGetBool.html#PetscOptionsGetBool
man:+PetscOptionsGetBoolArray++PetscOptionsGetBoolArray++++man+manualpages/Sys/PetscOptionsGetBoolArray.html#PetscOptionsGetBoolArray
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:+PetscOptionsGetScalarArray++PetscOptionsGetScalarArray++++man+manualpages/Sys/PetscOptionsGetScalarArray.html#PetscOptionsGetScalarArray
man:+PetscOptionsGetIntArray++PetscOptionsGetIntArray++++man+manualpages/Sys/PetscOptionsGetIntArray.html#PetscOptionsGetIntArray
man:+PetscOptionsGetEnumArray++PetscOptionsGetEnumArray++++man+manualpages/Sys/PetscOptionsGetEnumArray.html#PetscOptionsGetEnumArray
man:+PetscOptionsGetString++PetscOptionsGetString++++man+manualpages/Sys/PetscOptionsGetString.html#PetscOptionsGetString
man:+PetscOptionsGetStringArray++PetscOptionsGetStringArray++++man+manualpages/Sys/PetscOptionsGetStringArray.html#PetscOptionsGetStringArray
man:+PetscOptionsUsed++PetscOptionsUsed++++man+manualpages/Sys/PetscOptionsUsed.html#PetscOptionsUsed
man:+PetscOptionsAllUsed++PetscOptionsAllUsed++++man+manualpages/Sys/PetscOptionsAllUsed.html#PetscOptionsAllUsed
man:+PetscOptionsLeft++PetscOptionsLeft++++man+manualpages/Sys/PetscOptionsLeft.html#PetscOptionsLeft
man:+PetscOptionsCreate++PetscOptionsCreate++++man+manualpages/Sys/PetscOptionsCreate.html#PetscOptionsCreate
man:+PetscOptionsSetFromOptions++PetscOptionsSetFromOptions++++man+manualpages/Sys/PetscOptionsSetFromOptions.html#PetscOptionsSetFromOptions
man:+PetscOptionsMonitorDefault++PetscOptionsMonitorDefault++++man+manualpages/Sys/PetscOptionsMonitorDefault.html#PetscOptionsMonitorDefault
man:+PetscOptionsMonitorSet++PetscOptionsMonitorSet++++man+manualpages/Sys/PetscOptionsMonitorSet.html#PetscOptionsMonitorSet
man:+PetscOptionsMonitorCancel++PetscOptionsMonitorCancel++++man+manualpages/Sys/PetscOptionsMonitorCancel.html#PetscOptionsMonitorCancel
man:+PetscObjectViewFromOptions++PetscObjectViewFromOptions++++man+manualpages/Sys/PetscObjectViewFromOptions.html#PetscObjectViewFromOptions
man:+PetscObjectGetName++PetscObjectGetName++++man+manualpages/Sys/PetscObjectGetName.html#PetscObjectGetName
man:+PetscObjectSetOptions++PetscObjectSetOptions++++man+manualpages/Sys/PetscObjectSetOptions.html#PetscObjectSetOptions
man:+PETSC_i++PETSC_i++++man+manualpages/Sys/PETSC_i.html#PETSC_i
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:+PetscGetArguments++PetscGetArguments++++man+manualpages/Sys/PetscGetArguments.html#PetscGetArguments
man:+PetscFreeArguments++PetscFreeArguments++++man+manualpages/Sys/PetscFreeArguments.html#PetscFreeArguments
man:+PetscInitialize++PetscInitialize++++man+manualpages/Sys/PetscInitialize.html#PetscInitialize
man:+PetscFinalize++PetscFinalize++++man+manualpages/Sys/PetscFinalize.html#PetscFinalize
man:+PetscDataTypeToMPIDataType++PetscDataTypeToMPIDataType++++man+manualpages/Sys/PetscDataTypeToMPIDataType.html#PetscDataTypeToMPIDataType
man:+PetscMPIDataTypeToPetscDataType++PetscMPIDataTypeToPetscDataType++++man+manualpages/Sys/PetscMPIDataTypeToPetscDataType.html#PetscMPIDataTypeToPetscDataType
man:+PetscDataTypeGetSize++PetscDataTypeGetSize++++man+manualpages/Sys/PetscDataTypeGetSize.html#PetscDataTypeGetSize
man:+PetscDataTypeFromString++PetscDataTypeFromString++++man+manualpages/Sys/PetscDataTypeFromString.html#PetscDataTypeFromString
man:+PetscObjectStateGet++PetscObjectStateGet++++man+manualpages/Sys/PetscObjectStateGet.html#PetscObjectStateGet
man:+PetscObjectStateSet++PetscObjectStateSet++++man+manualpages/Sys/PetscObjectStateSet.html#PetscObjectStateSet
man:+PetscObjectComposedDataRegister++PetscObjectComposedDataRegister++++man+manualpages/Sys/PetscObjectComposedDataRegister.html#PetscObjectComposedDataRegister
man:+PetscObjectGetId++PetscObjectGetId++++man+manualpages/Sys/PetscObjectGetId.html#PetscObjectGetId
man:+PetscOptionsEnum++PetscOptionsEnum++++man+manualpages/Sys/PetscOptionsEnum.html#PetscOptionsEnum
man:+PetscOptionsEnumArray++PetscOptionsEnumArray++++man+manualpages/Sys/PetscOptionsEnumArray.html#PetscOptionsEnumArray
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:+PetscOptionsFList++PetscOptionsFList++++man+manualpages/Sys/PetscOptionsFList.html#PetscOptionsFList
man:+PetscOptionsEList++PetscOptionsEList++++man+manualpages/Sys/PetscOptionsEList.html#PetscOptionsEList
man:+PetscOptionsBoolGroupBegin++PetscOptionsBoolGroupBegin++++man+manualpages/Sys/PetscOptionsBoolGroupBegin.html#PetscOptionsBoolGroupBegin
man:+PetscOptionsBoolGroup++PetscOptionsBoolGroup++++man+manualpages/Sys/PetscOptionsBoolGroup.html#PetscOptionsBoolGroup
man:+PetscOptionsBoolGroupEnd++PetscOptionsBoolGroupEnd++++man+manualpages/Sys/PetscOptionsBoolGroupEnd.html#PetscOptionsBoolGroupEnd
man:+PetscOptionsBool++PetscOptionsBool++++man+manualpages/Sys/PetscOptionsBool.html#PetscOptionsBool
man:+PetscOptionsRealArray++PetscOptionsRealArray++++man+manualpages/Sys/PetscOptionsRealArray.html#PetscOptionsRealArray
man:+PetscOptionsScalarArray++PetscOptionsScalarArray++++man+manualpages/Sys/PetscOptionsScalarArray.html#PetscOptionsScalarArray
man:+PetscOptionsIntArray++PetscOptionsIntArray++++man+manualpages/Sys/PetscOptionsIntArray.html#PetscOptionsIntArray
man:+PetscOptionsStringArray++PetscOptionsStringArray++++man+manualpages/Sys/PetscOptionsStringArray.html#PetscOptionsStringArray
man:+PetscOptionsBoolArray++PetscOptionsBoolArray++++man+manualpages/Sys/PetscOptionsBoolArray.html#PetscOptionsBoolArray
man:+PetscOptionsViewer++PetscOptionsViewer++++man+manualpages/Sys/PetscOptionsViewer.html#PetscOptionsViewer
man:+PetscOptionsHead++PetscOptionsHead++++man+manualpages/Sys/PetscOptionsHead.html#PetscOptionsHead
man:+PetscSubcommSetFromOptions++PetscSubcommSetFromOptions++++man+manualpages/Sys/PetscSubcommSetFromOptions.html#PetscSubcommSetFromOptions
man:+PetscSubcommSetOptionsPrefix++PetscSubcommSetOptionsPrefix++++man+manualpages/Sys/PetscSubcommSetOptionsPrefix.html#PetscSubcommSetOptionsPrefix
man:+PetsSubcommcView++PetsSubcommcView++++man+manualpages/Sys/PetsSubcommcView.html#PetsSubcommcView
man:+PetscSubcommSetNumber++PetscSubcommSetNumber++++man+manualpages/Sys/PetscSubcommSetNumber.html#PetscSubcommSetNumber
man:+PetscSubcommSetType++PetscSubcommSetType++++man+manualpages/Sys/PetscSubcommSetType.html#PetscSubcommSetType
man:+PetscSubcommSetTypeGeneral++PetscSubcommSetTypeGeneral++++man+manualpages/Sys/PetscSubcommSetTypeGeneral.html#PetscSubcommSetTypeGeneral
man:+PetscSubcommDestroy++PetscSubcommDestroy++++man+manualpages/Sys/PetscSubcommDestroy.html#PetscSubcommDestroy
man:+PetscSubcommCreate++PetscSubcommCreate++++man+manualpages/Sys/PetscSubcommCreate.html#PetscSubcommCreate
man:+PetscFortranCallbackRegister++PetscFortranCallbackRegister++++man+manualpages/Sys/PetscFortranCallbackRegister.html#PetscFortranCallbackRegister
man:+PetscFortranCallbackGetSizes++PetscFortranCallbackGetSizes++++man+manualpages/Sys/PetscFortranCallbackGetSizes.html#PetscFortranCallbackGetSizes
man:+PetscOptionsBegin++PetscOptionsBegin++++man+manualpages/Sys/PetscOptionsBegin.html#PetscOptionsBegin
man:+PetscObjectOptionsBegin++PetscObjectOptionsBegin++++man+manualpages/Sys/PetscObjectOptionsBegin.html#PetscObjectOptionsBegin
man:+PetscOptionsEnd++PetscOptionsEnd++++man+manualpages/Sys/PetscOptionsEnd.html#PetscOptionsEnd
man:+PetscOptionsTail++PetscOptionsTail++++man+manualpages/Sys/PetscOptionsTail.html#PetscOptionsTail
man:+PetscInitializeFortran++PetscInitializeFortran++++man+manualpages/Sys/PetscInitializeFortran.html#PetscInitializeFortran
man:+PetscGetCPUTime++PetscGetCPUTime++++man+manualpages/Sys/PetscGetCPUTime.html#PetscGetCPUTime
man:+PetscGetDate++PetscGetDate++++man+manualpages/Sys/PetscGetDate.html#PetscGetDate
man:+PetscTime++PetscTime++++man+manualpages/Sys/PetscTime.html#PetscTime
man:+PetscTimeSubtract++PetscTimeSubtract++++man+manualpages/Sys/PetscTimeSubtract.html#PetscTimeSubtract
man:+PetscTimeAdd++PetscTimeAdd++++man+manualpages/Sys/PetscTimeAdd.html#PetscTimeAdd
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:+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:+PetscSortRemoveDupsReal++PetscSortRemoveDupsReal++++man+manualpages/Sys/PetscSortRemoveDupsReal.html#PetscSortRemoveDupsReal
man:+PetscSortSplit++PetscSortSplit++++man+manualpages/Sys/PetscSortSplit.html#PetscSortSplit
man:+PetscSortSplitReal++PetscSortSplitReal++++man+manualpages/Sys/PetscSortSplitReal.html#PetscSortSplitReal
man:+PetscSortInt++PetscSortInt++++man+manualpages/Sys/PetscSortInt.html#PetscSortInt
man:+PetscSortRemoveDupsInt++PetscSortRemoveDupsInt++++man+manualpages/Sys/PetscSortRemoveDupsInt.html#PetscSortRemoveDupsInt
man:+PetscFindInt++PetscFindInt++++man+manualpages/Sys/PetscFindInt.html#PetscFindInt
man:+PetscSortIntWithArray++PetscSortIntWithArray++++man+manualpages/Sys/PetscSortIntWithArray.html#PetscSortIntWithArray
man:+PetscSortIntWithArrayPair++PetscSortIntWithArrayPair++++man+manualpages/Sys/PetscSortIntWithArrayPair.html#PetscSortIntWithArrayPair
man:+PetscSortMPIInt++PetscSortMPIInt++++man+manualpages/Sys/PetscSortMPIInt.html#PetscSortMPIInt
man:+PetscSortRemoveDupsMPIInt++PetscSortRemoveDupsMPIInt++++man+manualpages/Sys/PetscSortRemoveDupsMPIInt.html#PetscSortRemoveDupsMPIInt
man:+PetscSortMPIIntWithArray++PetscSortMPIIntWithArray++++man+manualpages/Sys/PetscSortMPIIntWithArray.html#PetscSortMPIIntWithArray
man:+PetscSortIntWithScalarArray++PetscSortIntWithScalarArray++++man+manualpages/Sys/PetscSortIntWithScalarArray.html#PetscSortIntWithScalarArray
man:+PetscSortIntWithDataArray++PetscSortIntWithDataArray++++man+manualpages/Sys/PetscSortIntWithDataArray.html#PetscSortIntWithDataArray
man:+PetscMergeIntArray++PetscMergeIntArray++++man+manualpages/Sys/PetscMergeIntArray.html#PetscMergeIntArray
man:+PetscMergeIntArrayPair++PetscMergeIntArrayPair++++man+manualpages/Sys/PetscMergeIntArrayPair.html#PetscMergeIntArrayPair
man:+PetscMergeMPIIntArray++PetscMergeMPIIntArray++++man+manualpages/Sys/PetscMergeMPIIntArray.html#PetscMergeMPIIntArray
man:+PetscProcessTree++PetscProcessTree++++man+manualpages/Sys/PetscProcessTree.html#PetscProcessTree
man:+PetscStrToArray++PetscStrToArray++++man+manualpages/Sys/PetscStrToArray.html#PetscStrToArray
man:+PetscStrToArrayDestroy++PetscStrToArrayDestroy++++man+manualpages/Sys/PetscStrToArrayDestroy.html#PetscStrToArrayDestroy
man:+PetscStrlen++PetscStrlen++++man+manualpages/Sys/PetscStrlen.html#PetscStrlen
man:+PetscStrallocpy++PetscStrallocpy++++man+manualpages/Sys/PetscStrallocpy.html#PetscStrallocpy
man:+PetscStrArrayallocpy++PetscStrArrayallocpy++++man+manualpages/Sys/PetscStrArrayallocpy.html#PetscStrArrayallocpy
man:+PetscStrArrayDestroy++PetscStrArrayDestroy++++man+manualpages/Sys/PetscStrArrayDestroy.html#PetscStrArrayDestroy
man:+PetscStrNArrayallocpy++PetscStrNArrayallocpy++++man+manualpages/Sys/PetscStrNArrayallocpy.html#PetscStrNArrayallocpy
man:+PetscStrNArrayDestroy++PetscStrNArrayDestroy++++man+manualpages/Sys/PetscStrNArrayDestroy.html#PetscStrNArrayDestroy
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:+PetscStrtolower++PetscStrtolower++++man+manualpages/Sys/PetscStrtolower.html#PetscStrtolower
man:+PetscStrendswith++PetscStrendswith++++man+manualpages/Sys/PetscStrendswith.html#PetscStrendswith
man:+PetscStrbeginswith++PetscStrbeginswith++++man+manualpages/Sys/PetscStrbeginswith.html#PetscStrbeginswith
man:+PetscStrendswithwhich++PetscStrendswithwhich++++man+manualpages/Sys/PetscStrendswithwhich.html#PetscStrendswithwhich
man:+PetscStrrstr++PetscStrrstr++++man+manualpages/Sys/PetscStrrstr.html#PetscStrrstr
man:+PetscStrstr++PetscStrstr++++man+manualpages/Sys/PetscStrstr.html#PetscStrstr
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:+PetscGetPetscDir++PetscGetPetscDir++++man+manualpages/Sys/PetscGetPetscDir.html#PetscGetPetscDir
man:+PetscStrreplace++PetscStrreplace++++man+manualpages/Sys/PetscStrreplace.html#PetscStrreplace
man:+PetscEListFind++PetscEListFind++++man+manualpages/Sys/PetscEListFind.html#PetscEListFind
man:+PetscEListFind++PetscEListFind++++man+manualpages/Sys/PetscEListFind.html#PetscEListFind
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:+PetscIsNormalReal++PetscIsNormalReal++++man+manualpages/Sys/PetscIsNormalReal.html#PetscIsNormalReal
man:+PetscIsInfOrNanReal++PetscIsInfOrNanReal++++man+manualpages/Sys/PetscIsInfOrNanReal.html#PetscIsInfOrNanReal
man:+PetscIsNanReal++PetscIsNanReal++++man+manualpages/Sys/PetscIsNanReal.html#PetscIsNanReal
man:+PetscCommBuildTwoSidedSetType++PetscCommBuildTwoSidedSetType++++man+manualpages/Sys/PetscCommBuildTwoSidedSetType.html#PetscCommBuildTwoSidedSetType
man:+PetscCommBuildTwoSidedGetType++PetscCommBuildTwoSidedGetType++++man+manualpages/Sys/PetscCommBuildTwoSidedGetType.html#PetscCommBuildTwoSidedGetType
man:+PetscCommBuildTwoSided++PetscCommBuildTwoSided++++man+manualpages/Sys/PetscCommBuildTwoSided.html#PetscCommBuildTwoSided
man:+PetscCommBuildTwoSidedF++PetscCommBuildTwoSidedF++++man+manualpages/Sys/PetscCommBuildTwoSidedF.html#PetscCommBuildTwoSidedF
man:+PetscCommBuildTwoSidedFReq++PetscCommBuildTwoSidedFReq++++man+manualpages/Sys/PetscCommBuildTwoSidedFReq.html#PetscCommBuildTwoSidedFReq
man:+PetscSegBufferCreate++PetscSegBufferCreate++++man+manualpages/Sys/PetscSegBufferCreate.html#PetscSegBufferCreate
man:+PetscSegBufferGet++PetscSegBufferGet++++man+manualpages/Sys/PetscSegBufferGet.html#PetscSegBufferGet
man:+PetscSegBufferDestroy++PetscSegBufferDestroy++++man+manualpages/Sys/PetscSegBufferDestroy.html#PetscSegBufferDestroy
man:+PetscSegBufferExtractTo++PetscSegBufferExtractTo++++man+manualpages/Sys/PetscSegBufferExtractTo.html#PetscSegBufferExtractTo
man:+PetscSegBufferExtractAlloc++PetscSegBufferExtractAlloc++++man+manualpages/Sys/PetscSegBufferExtractAlloc.html#PetscSegBufferExtractAlloc
man:+PetscSegBufferExtractInPlace++PetscSegBufferExtractInPlace++++man+manualpages/Sys/PetscSegBufferExtractInPlace.html#PetscSegBufferExtractInPlace
man:+PetscSegBufferGetSize++PetscSegBufferGetSize++++man+manualpages/Sys/PetscSegBufferGetSize.html#PetscSegBufferGetSize
man:+PetscSegBufferUnuse++PetscSegBufferUnuse++++man+manualpages/Sys/PetscSegBufferUnuse.html#PetscSegBufferUnuse
man:+PetscLogDestroy++PetscLogDestroy++++man+manualpages/Profiling/PetscLogDestroy.html#PetscLogDestroy
man:+PetscLogSet++PetscLogSet++++man+manualpages/Profiling/PetscLogSet.html#PetscLogSet
man:+PetscLogDefaultBegin++PetscLogDefaultBegin++++man+manualpages/Profiling/PetscLogDefaultBegin.html#PetscLogDefaultBegin
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:+PetscLogEventGetId++PetscLogEventGetId++++man+manualpages/Profiling/PetscLogEventGetId.html#PetscLogEventGetId
man:+PetscLogDump++PetscLogDump++++man+manualpages/Profiling/PetscLogDump.html#PetscLogDump
man:+PetscLogView++PetscLogView++++man+manualpages/Profiling/PetscLogView.html#PetscLogView
man:+PetscLogViewFromOptions++PetscLogViewFromOptions++++man+manualpages/Profiling/PetscLogViewFromOptions.html#PetscLogViewFromOptions
man:+PetscGetFlops++PetscGetFlops++++man+manualpages/Profiling/PetscGetFlops.html#PetscGetFlops
man:+PetscLogFlops++PetscLogFlops++++man+manualpages/Profiling/PetscLogFlops.html#PetscLogFlops
man:+PetscPreLoadBegin++PetscPreLoadBegin++++man+manualpages/Profiling/PetscPreLoadBegin.html#PetscPreLoadBegin
man:+PetscPreLoadEnd++PetscPreLoadEnd++++man+manualpages/Profiling/PetscPreLoadEnd.html#PetscPreLoadEnd
man:+PetscPreLoadStage++PetscPreLoadStage++++man+manualpages/Profiling/PetscPreLoadStage.html#PetscPreLoadStage
man:+PetscClassIdRegister++PetscClassIdRegister++++man+manualpages/Profiling/PetscClassIdRegister.html#PetscClassIdRegister
man:+PetscLogMPEBegin++PetscLogMPEBegin++++man+manualpages/Profiling/PetscLogMPEBegin.html#PetscLogMPEBegin
man:+PetscLogMPEDump++PetscLogMPEDump++++man+manualpages/Profiling/PetscLogMPEDump.html#PetscLogMPEDump
man:+PetscLogMPEGetRGBColor++PetscLogMPEGetRGBColor++++man+manualpages/Profiling/PetscLogMPEGetRGBColor.html#PetscLogMPEGetRGBColor
man:+PetscLogEvent++PetscLogEvent++++man+manualpages/Profiling/PetscLogEvent.html#PetscLogEvent
man:+PetscLogStage++PetscLogStage++++man+manualpages/Profiling/PetscLogStage.html#PetscLogStage
man:+PetscClassRegLogCreate++PetscClassRegLogCreate++++man+manualpages/Profiling/PetscClassRegLogCreate.html#PetscClassRegLogCreate
man:+PetscClassRegLogDestroy++PetscClassRegLogDestroy++++man+manualpages/Profiling/PetscClassRegLogDestroy.html#PetscClassRegLogDestroy
man:+PetscClassRegInfoDestroy++PetscClassRegInfoDestroy++++man+manualpages/Profiling/PetscClassRegInfoDestroy.html#PetscClassRegInfoDestroy
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:+PetscClassRegLogRegister++PetscClassRegLogRegister++++man+manualpages/Profiling/PetscClassRegLogRegister.html#PetscClassRegLogRegister
man:+PetscClassRegLogGetClass++PetscClassRegLogGetClass++++man+manualpages/Profiling/PetscClassRegLogGetClass.html#PetscClassRegLogGetClass
man:+PetscLogGetStageLog++PetscLogGetStageLog++++man+manualpages/Profiling/PetscLogGetStageLog.html#PetscLogGetStageLog
man:+PetscStageLogGetCurrent++PetscStageLogGetCurrent++++man+manualpages/Profiling/PetscStageLogGetCurrent.html#PetscStageLogGetCurrent
man:+PetscStageLogGetEventPerfLog++PetscStageLogGetEventPerfLog++++man+manualpages/Profiling/PetscStageLogGetEventPerfLog.html#PetscStageLogGetEventPerfLog
man:+PetscStageInfoDestroy++PetscStageInfoDestroy++++man+manualpages/Profiling/PetscStageInfoDestroy.html#PetscStageInfoDestroy
man:+PetscStageLogDestroy++PetscStageLogDestroy++++man+manualpages/Profiling/PetscStageLogDestroy.html#PetscStageLogDestroy
man:+PetscStageLogRegister++PetscStageLogRegister++++man+manualpages/Profiling/PetscStageLogRegister.html#PetscStageLogRegister
man:+PetscStageLogPush++PetscStageLogPush++++man+manualpages/Profiling/PetscStageLogPush.html#PetscStageLogPush
man:+PetscStageLogPop++PetscStageLogPop++++man+manualpages/Profiling/PetscStageLogPop.html#PetscStageLogPop
man:+PetscStageLogGetClassRegLog++PetscStageLogGetClassRegLog++++man+manualpages/Profiling/PetscStageLogGetClassRegLog.html#PetscStageLogGetClassRegLog
man:+PetscStageLogGetEventRegLog++PetscStageLogGetEventRegLog++++man+manualpages/Profiling/PetscStageLogGetEventRegLog.html#PetscStageLogGetEventRegLog
man:+PetscStageLogGetClassPerfLog++PetscStageLogGetClassPerfLog++++man+manualpages/Profiling/PetscStageLogGetClassPerfLog.html#PetscStageLogGetClassPerfLog
man:+PetscStageLogSetActive++PetscStageLogSetActive++++man+manualpages/Profiling/PetscStageLogSetActive.html#PetscStageLogSetActive
man:+PetscStageLogGetActive++PetscStageLogGetActive++++man+manualpages/Profiling/PetscStageLogGetActive.html#PetscStageLogGetActive
man:+PetscStageLogSetVisible++PetscStageLogSetVisible++++man+manualpages/Profiling/PetscStageLogSetVisible.html#PetscStageLogSetVisible
man:+PetscStageLogGetVisible++PetscStageLogGetVisible++++man+manualpages/Profiling/PetscStageLogGetVisible.html#PetscStageLogGetVisible
man:+PetscStageLogGetStage++PetscStageLogGetStage++++man+manualpages/Profiling/PetscStageLogGetStage.html#PetscStageLogGetStage
man:+PetscStageLogCreate++PetscStageLogCreate++++man+manualpages/Profiling/PetscStageLogCreate.html#PetscStageLogCreate
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:+EventRegLogGetEvent++EventRegLogGetEvent++++man+manualpages/Profiling/EventRegLogGetEvent.html#EventRegLogGetEvent
man:+EventPerfLogSetVisible++EventPerfLogSetVisible++++man+manualpages/Profiling/EventPerfLogSetVisible.html#EventPerfLogSetVisible
man:+EventPerfLogGetVisible++EventPerfLogGetVisible++++man+manualpages/Profiling/EventPerfLogGetVisible.html#EventPerfLogGetVisible
man:+PetscLogEventGetPerfInfo++PetscLogEventGetPerfInfo++++man+manualpages/Profiling/PetscLogEventGetPerfInfo.html#PetscLogEventGetPerfInfo
man:+PetscIntStackDestroy++PetscIntStackDestroy++++man+manualpages/Profiling/PetscIntStackDestroy.html#PetscIntStackDestroy
man:+PetscIntStackEmpty++PetscIntStackEmpty++++man+manualpages/Profiling/PetscIntStackEmpty.html#PetscIntStackEmpty
man:+PetscIntStackTop++PetscIntStackTop++++man+manualpages/Profiling/PetscIntStackTop.html#PetscIntStackTop
man:+PetscIntStackPush++PetscIntStackPush++++man+manualpages/Profiling/PetscIntStackPush.html#PetscIntStackPush
man:+PetscIntStackPop++PetscIntStackPop++++man+manualpages/Profiling/PetscIntStackPop.html#PetscIntStackPop
man:+PetscIntStackCreate++PetscIntStackCreate++++man+manualpages/Profiling/PetscIntStackCreate.html#PetscIntStackCreate
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:+PetscObjectSAWsTakeAccess++PetscObjectSAWsTakeAccess++++man+manualpages/Sys/PetscObjectSAWsTakeAccess.html#PetscObjectSAWsTakeAccess
man:+PetscObjectSAWsGrantAccess++PetscObjectSAWsGrantAccess++++man+manualpages/Sys/PetscObjectSAWsGrantAccess.html#PetscObjectSAWsGrantAccess
man:+PetscSAWsBlock++PetscSAWsBlock++++man+manualpages/Sys/PetscSAWsBlock.html#PetscSAWsBlock
man:+PetscObjectSAWsBlock++PetscObjectSAWsBlock++++man+manualpages/Sys/PetscObjectSAWsBlock.html#PetscObjectSAWsBlock
man:+PetscObjectSAWsSetBlock++PetscObjectSAWsSetBlock++++man+manualpages/Sys/PetscObjectSAWsSetBlock.html#PetscObjectSAWsSetBlock
man:+PetscGoogleDriveRefresh++PetscGoogleDriveRefresh++++man+manualpages/Sys/PetscGoogleDriveRefresh.html#PetscGoogleDriveRefresh
man:+PetscGoogleDriveUpload++PetscGoogleDriveUpload++++man+manualpages/Sys/PetscGoogleDriveUpload.html#PetscGoogleDriveUpload
man:+PetscGoogleDriveAuthorize++PetscGoogleDriveAuthorize++++man+manualpages/Sys/PetscGoogleDriveAuthorize.html#PetscGoogleDriveAuthorize
man:+PetscURLShorten++PetscURLShorten++++man+manualpages/Sys/PetscURLShorten.html#PetscURLShorten
man:+PetscBoxAuthorize++PetscBoxAuthorize++++man+manualpages/Sys/PetscBoxAuthorize.html#PetscBoxAuthorize
man:+PetscBoxRefresh++PetscBoxRefresh++++man+manualpages/Sys/PetscBoxRefresh.html#PetscBoxRefresh
man:+PetscBoxUpload++PetscBoxUpload++++man+manualpages/Sys/PetscBoxUpload.html#PetscBoxUpload
man:+PetscTextBelt++PetscTextBelt++++man+manualpages/Sys/PetscTextBelt.html#PetscTextBelt
man:+PetscGlobusAuthorize++PetscGlobusAuthorize++++man+manualpages/Sys/PetscGlobusAuthorize.html#PetscGlobusAuthorize
man:+PetscGlobusGetTransfers++PetscGlobusGetTransfers++++man+manualpages/Sys/PetscGlobusGetTransfers.html#PetscGlobusGetTransfers
man:+PetscGlobusUpload++PetscGlobusUpload++++man+manualpages/Sys/PetscGlobusUpload.html#PetscGlobusUpload
man:+PetscFortranAddr++PetscFortranAddr++++man+manualpages/Sys/PetscFortranAddr.html#PetscFortranAddr
man:+PetscOffset++PetscOffset++++man+manualpages/Sys/PetscOffset.html#PetscOffset
man:+Vec++Vec++++man+manualpages/Vec/Vec.html#Vec
man:+VecScatter++VecScatter++++man+manualpages/Vec/VecScatter.html#VecScatter
man:+ScatterMode++ScatterMode++++man+manualpages/Vec/ScatterMode.html#ScatterMode
man:+SCATTER_FORWARD++SCATTER_FORWARD++++man+manualpages/Vec/SCATTER_FORWARD.html#SCATTER_FORWARD
man:+SCATTER_REVERSE++SCATTER_REVERSE++++man+manualpages/Vec/SCATTER_REVERSE.html#SCATTER_REVERSE
man:+SCATTER_FORWARD_LOCAL++SCATTER_FORWARD_LOCAL++++man+manualpages/Vec/SCATTER_FORWARD_LOCAL.html#SCATTER_FORWARD_LOCAL
man:+SCATTER_REVERSE_LOCAL++SCATTER_REVERSE_LOCAL++++man+manualpages/Vec/SCATTER_REVERSE_LOCAL.html#SCATTER_REVERSE_LOCAL
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:+VecSetValueLocal++VecSetValueLocal++++man+manualpages/Vec/VecSetValueLocal.html#VecSetValueLocal
man:+Vecs++Vecs++++man+manualpages/Vec/Vecs.html#Vecs
man:+VecStrideSet++VecStrideSet++++man+manualpages/Vec/VecStrideSet.html#VecStrideSet
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:+VecStrideSubSetGather++VecStrideSubSetGather++++man+manualpages/Vec/VecStrideSubSetGather.html#VecStrideSubSetGather
man:+VecStrideSubSetScatter++VecStrideSubSetScatter++++man+manualpages/Vec/VecStrideSubSetScatter.html#VecStrideSubSetScatter
man:+VecExp++VecExp++++man+manualpages/Vec/VecExp.html#VecExp
man:+VecLog++VecLog++++man+manualpages/Vec/VecLog.html#VecLog
man:+VecSqrtAbs++VecSqrtAbs++++man+manualpages/Vec/VecSqrtAbs.html#VecSqrtAbs
man:+VecDotNorm2++VecDotNorm2++++man+manualpages/Vec/VecDotNorm2.html#VecDotNorm2
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:+VecUniqueEntries++VecUniqueEntries++++man+manualpages/Vec/VecUniqueEntries.html#VecUniqueEntries
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:+VecScatterInitializeForGPU++VecScatterInitializeForGPU++++man+manualpages/Vec/VecScatterInitializeForGPU.html#VecScatterInitializeForGPU
man:+VecScatterFinalizeForGPU++VecScatterFinalizeForGPU++++man+manualpages/Vec/VecScatterFinalizeForGPU.html#VecScatterFinalizeForGPU
man:+VecScatterCreateLocal++VecScatterCreateLocal++++man+manualpages/Vec/VecScatterCreateLocal.html#VecScatterCreateLocal
man:+PetscSFCreateFromZero++PetscSFCreateFromZero++++man+manualpages/Vec/PetscSFCreateFromZero.html#PetscSFCreateFromZero
man:+VecChop++VecChop++++man+manualpages/Vec/VecChop.html#VecChop
man:+PetscCommSplitReductionBegin++PetscCommSplitReductionBegin++++man+manualpages/Vec/PetscCommSplitReductionBegin.html#PetscCommSplitReductionBegin
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:+VecSetValuesSection++VecSetValuesSection++++man+manualpages/Vec/VecSetValuesSection.html#VecSetValuesSection
man:+PetscSectionVecNorm++PetscSectionVecNorm++++man+manualpages/Vec/PetscSectionVecNorm.html#PetscSectionVecNorm
man:+VecWhichEqual++VecWhichEqual++++man+manualpages/Vec/VecWhichEqual.html#VecWhichEqual
man:+VecWhichLessThan++VecWhichLessThan++++man+manualpages/Vec/VecWhichLessThan.html#VecWhichLessThan
man:+VecWhichGreaterThan++VecWhichGreaterThan++++man+manualpages/Vec/VecWhichGreaterThan.html#VecWhichGreaterThan
man:+VecWhichBetween++VecWhichBetween++++man+manualpages/Vec/VecWhichBetween.html#VecWhichBetween
man:+VecWhichBetweenOrEqual++VecWhichBetweenOrEqual++++man+manualpages/Vec/VecWhichBetweenOrEqual.html#VecWhichBetweenOrEqual
man:+VecISAXPY++VecISAXPY++++man+manualpages/Vec/VecISAXPY.html#VecISAXPY
man:+ISComplementVec++ISComplementVec++++man+manualpages/Vec/ISComplementVec.html#ISComplementVec
man:+VecISSet++VecISSet++++man+manualpages/Vec/VecISSet.html#VecISSet
man:+VecBoundGradientProjection++VecBoundGradientProjection++++man+manualpages/Vec/VecBoundGradientProjection.html#VecBoundGradientProjection
man:+VecStepBoundInfo++VecStepBoundInfo++++man+manualpages/Vec/VecStepBoundInfo.html#VecStepBoundInfo
man:+VecStepMax++VecStepMax++++man+manualpages/Vec/VecStepMax.html#VecStepMax
man:+VecPow++VecPow++++man+manualpages/Vec/VecPow.html#VecPow
man:+VecMedian++VecMedian++++man+manualpages/Vec/VecMedian.html#VecMedian
man:+VecStashGetInfo++VecStashGetInfo++++man+manualpages/Vec/VecStashGetInfo.html#VecStashGetInfo
man:+VecSetLocalToGlobalMapping++VecSetLocalToGlobalMapping++++man+manualpages/Vec/VecSetLocalToGlobalMapping.html#VecSetLocalToGlobalMapping
man:+VecGetLocalToGlobalMapping++VecGetLocalToGlobalMapping++++man+manualpages/Vec/VecGetLocalToGlobalMapping.html#VecGetLocalToGlobalMapping
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:+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:+VecGetOwnershipRanges++VecGetOwnershipRanges++++man+manualpages/Vec/VecGetOwnershipRanges.html#VecGetOwnershipRanges
man:+VecSetOption++VecSetOption++++man+manualpages/Vec/VecSetOption.html#VecSetOption
man:+VecResetArray++VecResetArray++++man+manualpages/Vec/VecResetArray.html#VecResetArray
man:+VecLoad++VecLoad++++man+manualpages/Vec/VecLoad.html#VecLoad
man:+VecReciprocal++VecReciprocal++++man+manualpages/Vec/VecReciprocal.html#VecReciprocal
man:+VecSetOperation++VecSetOperation++++man+manualpages/Vec/VecSetOperation.html#VecSetOperation
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:+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:+VecGetLayout++VecGetLayout++++man+manualpages/Vec/VecGetLayout.html#VecGetLayout
man:+VecSetLayout++VecSetLayout++++man+manualpages/Vec/VecSetLayout.html#VecSetLayout
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:+VecRegisterAll++VecRegisterAll++++man+manualpages/Vec/VecRegisterAll.html#VecRegisterAll
man:+ISFinalizePackage++ISFinalizePackage++++man+manualpages/Vec/ISFinalizePackage.html#ISFinalizePackage
man:+ISInitializePackage++ISInitializePackage++++man+manualpages/Vec/ISInitializePackage.html#ISInitializePackage
man:+VecInitializePackage++VecInitializePackage++++man+manualpages/Vec/VecInitializePackage.html#VecInitializePackage
man:+VecFinalizePackage++VecFinalizePackage++++man+manualpages/Vec/VecFinalizePackage.html#VecFinalizePackage
man:+VecMaxPointwiseDivide++VecMaxPointwiseDivide++++man+manualpages/Vec/VecMaxPointwiseDivide.html#VecMaxPointwiseDivide
man:+VecDot++VecDot++++man+manualpages/Vec/VecDot.html#VecDot
man:+VecDotRealPart++VecDotRealPart++++man+manualpages/Vec/VecDotRealPart.html#VecDotRealPart
man:+VecNorm++VecNorm++++man+manualpages/Vec/VecNorm.html#VecNorm
man:+VecNormAvailable++VecNormAvailable++++man+manualpages/Vec/VecNormAvailable.html#VecNormAvailable
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:+VecAXPBYPCZ++VecAXPBYPCZ++++man+manualpages/Vec/VecAXPBYPCZ.html#VecAXPBYPCZ
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:+VecGetSubVector++VecGetSubVector++++man+manualpages/Vec/VecGetSubVector.html#VecGetSubVector
man:+VecRestoreSubVector++VecRestoreSubVector++++man+manualpages/Vec/VecRestoreSubVector.html#VecRestoreSubVector
man:+VecGetLocalVectorRead++VecGetLocalVectorRead++++man+manualpages/Vec/VecGetLocalVectorRead.html#VecGetLocalVectorRead
man:+VecRestoreLocalVectorRead++VecRestoreLocalVectorRead++++man+manualpages/Vec/VecRestoreLocalVectorRead.html#VecRestoreLocalVectorRead
man:+VecGetLocalVector++VecGetLocalVector++++man+manualpages/Vec/VecGetLocalVector.html#VecGetLocalVector
man:+VecRestoreLocalVector++VecRestoreLocalVector++++man+manualpages/Vec/VecRestoreLocalVector.html#VecRestoreLocalVector
man:+VecGetArray++VecGetArray++++man+manualpages/Vec/VecGetArray.html#VecGetArray
man:+VecGetArrayRead++VecGetArrayRead++++man+manualpages/Vec/VecGetArrayRead.html#VecGetArrayRead
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:+VecRestoreArrayRead++VecRestoreArrayRead++++man+manualpages/Vec/VecRestoreArrayRead.html#VecRestoreArrayRead
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:+VecGetArrayReadF90++VecGetArrayReadF90++++man+manualpages/Vec/VecGetArrayReadF90.html#VecGetArrayReadF90
man:+VecRestoreArrayReadF90++VecRestoreArrayReadF90++++man+manualpages/Vec/VecRestoreArrayReadF90.html#VecRestoreArrayReadF90
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:+VecGetArray2dRead++VecGetArray2dRead++++man+manualpages/Vec/VecGetArray2dRead.html#VecGetArray2dRead
man:+VecRestoreArray2dRead++VecRestoreArray2dRead++++man+manualpages/Vec/VecRestoreArray2dRead.html#VecRestoreArray2dRead
man:+VecGetArray1dRead++VecGetArray1dRead++++man+manualpages/Vec/VecGetArray1dRead.html#VecGetArray1dRead
man:+VecRestoreArray1dRead++VecRestoreArray1dRead++++man+manualpages/Vec/VecRestoreArray1dRead.html#VecRestoreArray1dRead
man:+VecGetArray3dRead++VecGetArray3dRead++++man+manualpages/Vec/VecGetArray3dRead.html#VecGetArray3dRead
man:+VecRestoreArray3dRead++VecRestoreArray3dRead++++man+manualpages/Vec/VecRestoreArray3dRead.html#VecRestoreArray3dRead
man:+VecGetArray4dRead++VecGetArray4dRead++++man+manualpages/Vec/VecGetArray4dRead.html#VecGetArray4dRead
man:+VecRestoreArray4dRead++VecRestoreArray4dRead++++man+manualpages/Vec/VecRestoreArray4dRead.html#VecRestoreArray4dRead
man:+VecLockGet++VecLockGet++++man+manualpages/Vec/VecLockGet.html#VecLockGet
man:+VecLockPush++VecLockPush++++man+manualpages/Vec/VecLockPush.html#VecLockPush
man:+VecLockPop++VecLockPop++++man+manualpages/Vec/VecLockPop.html#VecLockPop
man:+VecCreateSeqWithArray++VecCreateSeqWithArray++++man+manualpages/Vec/VecCreateSeqWithArray.html#VecCreateSeqWithArray
man:+VecCreateSeq++VecCreateSeq++++man+manualpages/Vec/VecCreateSeq.html#VecCreateSeq
man:+VECSEQ++VECSEQ++++man+manualpages/Vec/VECSEQ.html#VECSEQ
man:+VECSEQCUSP++VECSEQCUSP++++man+manualpages/Vec/VECSEQCUSP.html#VECSEQCUSP
man:+VecCUSPGetArrayReadWrite++VecCUSPGetArrayReadWrite++++man+manualpages/Vec/VecCUSPGetArrayReadWrite.html#VecCUSPGetArrayReadWrite
man:+VecCUSPRestoreArrayReadWrite++VecCUSPRestoreArrayReadWrite++++man+manualpages/Vec/VecCUSPRestoreArrayReadWrite.html#VecCUSPRestoreArrayReadWrite
man:+VecCUSPGetArrayRead++VecCUSPGetArrayRead++++man+manualpages/Vec/VecCUSPGetArrayRead.html#VecCUSPGetArrayRead
man:+VecCUSPRestoreArrayRead++VecCUSPRestoreArrayRead++++man+manualpages/Vec/VecCUSPRestoreArrayRead.html#VecCUSPRestoreArrayRead
man:+VecCUSPGetArrayWrite++VecCUSPGetArrayWrite++++man+manualpages/Vec/VecCUSPGetArrayWrite.html#VecCUSPGetArrayWrite
man:+VecCUSPRestoreArrayWrite++VecCUSPRestoreArrayWrite++++man+manualpages/Vec/VecCUSPRestoreArrayWrite.html#VecCUSPRestoreArrayWrite
man:+VecCUSPGetCUDAArrayReadWrite++VecCUSPGetCUDAArrayReadWrite++++man+manualpages/Vec/VecCUSPGetCUDAArrayReadWrite.html#VecCUSPGetCUDAArrayReadWrite
man:+VecCUSPRestoreCUDAArrayReadWrite++VecCUSPRestoreCUDAArrayReadWrite++++man+manualpages/Vec/VecCUSPRestoreCUDAArrayReadWrite.html#VecCUSPRestoreCUDAArrayReadWrite
man:+VecCUSPGetCUDAArrayRead++VecCUSPGetCUDAArrayRead++++man+manualpages/Vec/VecCUSPGetCUDAArrayRead.html#VecCUSPGetCUDAArrayRead
man:+VecCUSPRestoreCUDAArrayRead++VecCUSPRestoreCUDAArrayRead++++man+manualpages/Vec/VecCUSPRestoreCUDAArrayRead.html#VecCUSPRestoreCUDAArrayRead
man:+VecCUSPGetCUDAArrayWrite++VecCUSPGetCUDAArrayWrite++++man+manualpages/Vec/VecCUSPGetCUDAArrayWrite.html#VecCUSPGetCUDAArrayWrite
man:+VecCUSPRestoreCUDAArrayWrite++VecCUSPRestoreCUDAArrayWrite++++man+manualpages/Vec/VecCUSPRestoreCUDAArrayWrite.html#VecCUSPRestoreCUDAArrayWrite
man:+VecCUSPPlaceArray++VecCUSPPlaceArray++++man+manualpages/Vec/VecCUSPPlaceArray.html#VecCUSPPlaceArray
man:+VecCUSPReplaceArray++VecCUSPReplaceArray++++man+manualpages/Vec/VecCUSPReplaceArray.html#VecCUSPReplaceArray
man:+VecCUSPResetArray++VecCUSPResetArray++++man+manualpages/Vec/VecCUSPResetArray.html#VecCUSPResetArray
man:+VecCreateSeqCUSP++VecCreateSeqCUSP++++man+manualpages/Vec/VecCreateSeqCUSP.html#VecCreateSeqCUSP
man:+VECSEQVIENNACL++VECSEQVIENNACL++++man+manualpages/Vec/VECSEQVIENNACL.html#VECSEQVIENNACL
man:+VecCreateSeqViennaCL++VecCreateSeqViennaCL++++man+manualpages/Vec/VecCreateSeqViennaCL.html#VecCreateSeqViennaCL
man:+VECSEQCUDA++VECSEQCUDA++++man+manualpages/Vec/VECSEQCUDA.html#VECSEQCUDA
man:+VecCUDAGetArrayReadWrite++VecCUDAGetArrayReadWrite++++man+manualpages/Vec/VecCUDAGetArrayReadWrite.html#VecCUDAGetArrayReadWrite
man:+VecCUDARestoreArrayReadWrite++VecCUDARestoreArrayReadWrite++++man+manualpages/Vec/VecCUDARestoreArrayReadWrite.html#VecCUDARestoreArrayReadWrite
man:+VecCUDAGetArrayRead++VecCUDAGetArrayRead++++man+manualpages/Vec/VecCUDAGetArrayRead.html#VecCUDAGetArrayRead
man:+VecCUDARestoreArrayRead++VecCUDARestoreArrayRead++++man+manualpages/Vec/VecCUDARestoreArrayRead.html#VecCUDARestoreArrayRead
man:+VecCUDAGetArrayWrite++VecCUDAGetArrayWrite++++man+manualpages/Vec/VecCUDAGetArrayWrite.html#VecCUDAGetArrayWrite
man:+VecCUDARestoreArrayWrite++VecCUDARestoreArrayWrite++++man+manualpages/Vec/VecCUDARestoreArrayWrite.html#VecCUDARestoreArrayWrite
man:+VecCUDAPlaceArray++VecCUDAPlaceArray++++man+manualpages/Vec/VecCUDAPlaceArray.html#VecCUDAPlaceArray
man:+VecCUDAReplaceArray++VecCUDAReplaceArray++++man+manualpages/Vec/VecCUDAReplaceArray.html#VecCUDAReplaceArray
man:+VecCUDAResetArray++VecCUDAResetArray++++man+manualpages/Vec/VecCUDAResetArray.html#VecCUDAResetArray
man:+VecCreateSeqCUDA++VecCreateSeqCUDA++++man+manualpages/Vec/VecCreateSeqCUDA.html#VecCreateSeqCUDA
man:+VECMPI++VECMPI++++man+manualpages/Vec/VECMPI.html#VECMPI
man:+VECSTANDARD++VECSTANDARD++++man+manualpages/Vec/VECSTANDARD.html#VECSTANDARD
man:+VecCreateMPIWithArray++VecCreateMPIWithArray++++man+manualpages/Vec/VecCreateMPIWithArray.html#VecCreateMPIWithArray
man:+VecCreateGhostWithArray++VecCreateGhostWithArray++++man+manualpages/Vec/VecCreateGhostWithArray.html#VecCreateGhostWithArray
man:+VecCreateGhost++VecCreateGhost++++man+manualpages/Vec/VecCreateGhost.html#VecCreateGhost
man:+VecMPISetGhost++VecMPISetGhost++++man+manualpages/Vec/VecMPISetGhost.html#VecMPISetGhost
man:+VecCreateGhostBlockWithArray++VecCreateGhostBlockWithArray++++man+manualpages/Vec/VecCreateGhostBlockWithArray.html#VecCreateGhostBlockWithArray
man:+VecCreateGhostBlock++VecCreateGhostBlock++++man+manualpages/Vec/VecCreateGhostBlock.html#VecCreateGhostBlock
man:+VecCreateMPI++VecCreateMPI++++man+manualpages/Vec/VecCreateMPI.html#VecCreateMPI
man:+VecGhostGetLocalForm++VecGhostGetLocalForm++++man+manualpages/Vec/VecGhostGetLocalForm.html#VecGhostGetLocalForm
man:+VecGhostIsLocalForm++VecGhostIsLocalForm++++man+manualpages/Vec/VecGhostIsLocalForm.html#VecGhostIsLocalForm
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:+VECMPICUSP++VECMPICUSP++++man+manualpages/Vec/VECMPICUSP.html#VECMPICUSP
man:+VECMPIVIENNACL++VECMPIVIENNACL++++man+manualpages/Vec/VECMPIVIENNACL.html#VECMPIVIENNACL
man:+VECMPICUDA++VECMPICUDA++++man+manualpages/Vec/VECMPICUDA.html#VECMPICUDA
man:+VecCreateShared++VecCreateShared++++man+manualpages/Vec/VecCreateShared.html#VecCreateShared
man:+VecNestGetSubVec++VecNestGetSubVec++++man+manualpages/Vec/VecNestGetSubVec.html#VecNestGetSubVec
man:+VecNestGetSubVecs++VecNestGetSubVecs++++man+manualpages/Vec/VecNestGetSubVecs.html#VecNestGetSubVecs
man:+VecNestSetSubVec++VecNestSetSubVec++++man+manualpages/Vec/VecNestSetSubVec.html#VecNestSetSubVec
man:+VecNestSetSubVecs++VecNestSetSubVecs++++man+manualpages/Vec/VecNestSetSubVecs.html#VecNestSetSubVecs
man:+VecNestGetSize++VecNestGetSize++++man+manualpages/Vec/VecNestGetSize.html#VecNestGetSize
man:+VecCreateNest++VecCreateNest++++man+manualpages/Vec/VecCreateNest.html#VecCreateNest
man:+VECNEST++VECNEST++++man+manualpages/Vec/VECNEST.html#VECNEST
man:+ISType++ISType++++man+manualpages/IS/ISType.html#ISType
man:+ISGlobalToLocalMappingType++ISGlobalToLocalMappingType++++man+manualpages/IS/ISGlobalToLocalMappingType.html#ISGlobalToLocalMappingType
man:+ISColoringType++ISColoringType++++man+manualpages/IS/ISColoringType.html#ISColoringType
man:+PetscLayoutFindOwner++PetscLayoutFindOwner++++man+manualpages/IS/PetscLayoutFindOwner.html#PetscLayoutFindOwner
man:+PetscLayoutFindOwnerIndex++PetscLayoutFindOwnerIndex++++man+manualpages/IS/PetscLayoutFindOwnerIndex.html#PetscLayoutFindOwnerIndex
man:+IS++IS++++man+manualpages/IS/IS.html#IS
man:+ISLocalToGlobalMapping++ISLocalToGlobalMapping++++man+manualpages/IS/ISLocalToGlobalMapping.html#ISLocalToGlobalMapping
man:+ISColoring++ISColoring++++man+manualpages/IS/ISColoring.html#ISColoring
man:+PetscLayout++PetscLayout++++man+manualpages/IS/PetscLayout.html#PetscLayout
man:+PetscSection++PetscSection++++man+manualpages/IS/PetscSection.html#PetscSection
man:+ISIdentity++ISIdentity++++man+manualpages/IS/ISIdentity.html#ISIdentity
man:+ISSetIdentity++ISSetIdentity++++man+manualpages/IS/ISSetIdentity.html#ISSetIdentity
man:+ISContiguousLocal++ISContiguousLocal++++man+manualpages/IS/ISContiguousLocal.html#ISContiguousLocal
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:+ISGetMinMax++ISGetMinMax++++man+manualpages/IS/ISGetMinMax.html#ISGetMinMax
man:+ISRestoreIndices++ISRestoreIndices++++man+manualpages/IS/ISRestoreIndices.html#ISRestoreIndices
man:+ISGetTotalIndices++ISGetTotalIndices++++man+manualpages/IS/ISGetTotalIndices.html#ISGetTotalIndices
man:+ISRestoreTotalIndices++ISRestoreTotalIndices++++man+manualpages/IS/ISRestoreTotalIndices.html#ISRestoreTotalIndices
man:+ISGetNonlocalIndices++ISGetNonlocalIndices++++man+manualpages/IS/ISGetNonlocalIndices.html#ISGetNonlocalIndices
man:+ISRestoreTotalIndices++ISRestoreTotalIndices++++man+manualpages/IS/ISRestoreTotalIndices.html#ISRestoreTotalIndices
man:+ISGetNonlocalIS++ISGetNonlocalIS++++man+manualpages/IS/ISGetNonlocalIS.html#ISGetNonlocalIS
man:+ISRestoreNonlocalIS++ISRestoreNonlocalIS++++man+manualpages/IS/ISRestoreNonlocalIS.html#ISRestoreNonlocalIS
man:+ISView++ISView++++man+manualpages/IS/ISView.html#ISView
man:+ISLoad++ISLoad++++man+manualpages/IS/ISLoad.html#ISLoad
man:+ISSort++ISSort++++man+manualpages/IS/ISSort.html#ISSort
man:+ISSortRemoveDups++ISSortRemoveDups++++man+manualpages/IS/ISSortRemoveDups.html#ISSortRemoveDups
man:+ISToGeneral++ISToGeneral++++man+manualpages/IS/ISToGeneral.html#ISToGeneral
man:+ISSorted++ISSorted++++man+manualpages/IS/ISSorted.html#ISSorted
man:+ISDuplicate++ISDuplicate++++man+manualpages/IS/ISDuplicate.html#ISDuplicate
man:+ISCopy++ISCopy++++man+manualpages/IS/ISCopy.html#ISCopy
man:+ISOnComm++ISOnComm++++man+manualpages/IS/ISOnComm.html#ISOnComm
man:+ISSetBlockSize++ISSetBlockSize++++man+manualpages/IS/ISSetBlockSize.html#ISSetBlockSize
man:+ISGetBlockSize++ISGetBlockSize++++man+manualpages/IS/ISGetBlockSize.html#ISGetBlockSize
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:+ISRegisterAll++ISRegisterAll++++man+manualpages/IS/ISRegisterAll.html#ISRegisterAll
man:+ISCreate++ISCreate++++man+manualpages/IS/ISCreate.html#ISCreate
man:+ISSetType++ISSetType++++man+manualpages/IS/ISSetType.html#ISSetType
man:+ISGetType++ISGetType++++man+manualpages/IS/ISGetType.html#ISGetType
man:+ISRegister++ISRegister++++man+manualpages/IS/ISRegister.html#ISRegister
man:+ISCreateGeneral++ISCreateGeneral++++man+manualpages/IS/ISCreateGeneral.html#ISCreateGeneral
man:+ISGeneralSetIndices++ISGeneralSetIndices++++man+manualpages/IS/ISGeneralSetIndices.html#ISGeneralSetIndices
man:+ISStrideGetInfo++ISStrideGetInfo++++man+manualpages/IS/ISStrideGetInfo.html#ISStrideGetInfo
man:+ISStrideSetStride++ISStrideSetStride++++man+manualpages/IS/ISStrideSetStride.html#ISStrideSetStride
man:+ISCreateStride++ISCreateStride++++man+manualpages/IS/ISCreateStride.html#ISCreateStride
man:+ISBlockSetIndices++ISBlockSetIndices++++man+manualpages/IS/ISBlockSetIndices.html#ISBlockSetIndices
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:+ISBlockGetLocalSize++ISBlockGetLocalSize++++man+manualpages/IS/ISBlockGetLocalSize.html#ISBlockGetLocalSize
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:+ISBuildTwoSided++ISBuildTwoSided++++man+manualpages/IS/ISBuildTwoSided.html#ISBuildTwoSided
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:+ISAllGatherColors++ISAllGatherColors++++man+manualpages/IS/ISAllGatherColors.html#ISAllGatherColors
man:+ISComplement++ISComplement++++man+manualpages/IS/ISComplement.html#ISComplement
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:+ISConcatenate++ISConcatenate++++man+manualpages/IS/ISConcatenate.html#ISConcatenate
man:+ISListToPair++ISListToPair++++man+manualpages/IS/ISListToPair.html#ISListToPair
man:+ISPairToList++ISPairToList++++man+manualpages/IS/ISPairToList.html#ISPairToList
man:+ISEmbed++ISEmbed++++man+manualpages/IS/ISEmbed.html#ISEmbed
man:+ISSortPermutation++ISSortPermutation++++man+manualpages/IS/ISSortPermutation.html#ISSortPermutation
man:+ISCompressIndicesGeneral++ISCompressIndicesGeneral++++man+manualpages/IS/ISCompressIndicesGeneral.html#ISCompressIndicesGeneral
man:+ISExpandIndicesGeneral++ISExpandIndicesGeneral++++man+manualpages/IS/ISExpandIndicesGeneral.html#ISExpandIndicesGeneral
man:+PetscSFType++PetscSFType++++man+manualpages/PetscSF/PetscSFType.html#PetscSFType
man:+PetscSFWindowSyncType++PetscSFWindowSyncType++++man+manualpages/PetscSF/PetscSFWindowSyncType.html#PetscSFWindowSyncType
man:+PetscSFDuplicateOption++PetscSFDuplicateOption++++man+manualpages/PetscSF/PetscSFDuplicateOption.html#PetscSFDuplicateOption
man:+PetscSF++PetscSF++++man+manualpages/PetscSF/PetscSF.html#PetscSF
man:+PetscSFNode++PetscSFNode++++man+manualpages/PetscSF/PetscSFNode.html#PetscSFNode
man:+PetscSFInitializePackage++PetscSFInitializePackage++++man+manualpages/PetscSF/PetscSFInitializePackage.html#PetscSFInitializePackage
man:+PetscSFFinalizePackage++PetscSFFinalizePackage++++man+manualpages/PetscSF/PetscSFFinalizePackage.html#PetscSFFinalizePackage
man:+PetscSFRegisterAll++PetscSFRegisterAll++++man+manualpages/PetscSF/PetscSFRegisterAll.html#PetscSFRegisterAll
man:+PetscSFRegister++PetscSFRegister++++man+manualpages/PetscSF/PetscSFRegister.html#PetscSFRegister
man:+PetscSFCreate++PetscSFCreate++++man+manualpages/PetscSF/PetscSFCreate.html#PetscSFCreate
man:+PetscSFReset++PetscSFReset++++man+manualpages/PetscSF/PetscSFReset.html#PetscSFReset
man:+PetscSFSetType++PetscSFSetType++++man+manualpages/PetscSF/PetscSFSetType.html#PetscSFSetType
man:+PetscSFDestroy++PetscSFDestroy++++man+manualpages/PetscSF/PetscSFDestroy.html#PetscSFDestroy
man:+PetscSFSetUp++PetscSFSetUp++++man+manualpages/PetscSF/PetscSFSetUp.html#PetscSFSetUp
man:+PetscSFSetFromOptions++PetscSFSetFromOptions++++man+manualpages/PetscSF/PetscSFSetFromOptions.html#PetscSFSetFromOptions
man:+PetscSFSetRankOrder++PetscSFSetRankOrder++++man+manualpages/PetscSF/PetscSFSetRankOrder.html#PetscSFSetRankOrder
man:+PetscSFSetGraph++PetscSFSetGraph++++man+manualpages/PetscSF/PetscSFSetGraph.html#PetscSFSetGraph
man:+PetscSFCreateInverseSF++PetscSFCreateInverseSF++++man+manualpages/PetscSF/PetscSFCreateInverseSF.html#PetscSFCreateInverseSF
man:+PetscSFDuplicate++PetscSFDuplicate++++man+manualpages/PetscSF/PetscSFDuplicate.html#PetscSFDuplicate
man:+PetscSFGetGraph++PetscSFGetGraph++++man+manualpages/PetscSF/PetscSFGetGraph.html#PetscSFGetGraph
man:+PetscSFGetLeafRange++PetscSFGetLeafRange++++man+manualpages/PetscSF/PetscSFGetLeafRange.html#PetscSFGetLeafRange
man:+PetscSFView++PetscSFView++++man+manualpages/PetscSF/PetscSFView.html#PetscSFView
man:+PetscSFGetRanks++PetscSFGetRanks++++man+manualpages/PetscSF/PetscSFGetRanks.html#PetscSFGetRanks
man:+PetscSFGetGroups++PetscSFGetGroups++++man+manualpages/PetscSF/PetscSFGetGroups.html#PetscSFGetGroups
man:+PetscSFGetMultiSF++PetscSFGetMultiSF++++man+manualpages/PetscSF/PetscSFGetMultiSF.html#PetscSFGetMultiSF
man:+PetscSFCreateEmbeddedSF++PetscSFCreateEmbeddedSF++++man+manualpages/PetscSF/PetscSFCreateEmbeddedSF.html#PetscSFCreateEmbeddedSF
man:+PetscSFCreateEmbeddedLeafSF++PetscSFCreateEmbeddedLeafSF++++man+manualpages/PetscSF/PetscSFCreateEmbeddedLeafSF.html#PetscSFCreateEmbeddedLeafSF
man:+PetscSFBcastBegin++PetscSFBcastBegin++++man+manualpages/PetscSF/PetscSFBcastBegin.html#PetscSFBcastBegin
man:+PetscSFBcastEnd++PetscSFBcastEnd++++man+manualpages/PetscSF/PetscSFBcastEnd.html#PetscSFBcastEnd
man:+PetscSFReduceBegin++PetscSFReduceBegin++++man+manualpages/PetscSF/PetscSFReduceBegin.html#PetscSFReduceBegin
man:+PetscSFReduceEnd++PetscSFReduceEnd++++man+manualpages/PetscSF/PetscSFReduceEnd.html#PetscSFReduceEnd
man:+PetscSFComputeDegreeBegin++PetscSFComputeDegreeBegin++++man+manualpages/PetscSF/PetscSFComputeDegreeBegin.html#PetscSFComputeDegreeBegin
man:+PetscSFComputeDegreeEnd++PetscSFComputeDegreeEnd++++man+manualpages/PetscSF/PetscSFComputeDegreeEnd.html#PetscSFComputeDegreeEnd
man:+PetscSFFetchAndOpBegin++PetscSFFetchAndOpBegin++++man+manualpages/PetscSF/PetscSFFetchAndOpBegin.html#PetscSFFetchAndOpBegin
man:+PetscSFFetchAndOpEnd++PetscSFFetchAndOpEnd++++man+manualpages/PetscSF/PetscSFFetchAndOpEnd.html#PetscSFFetchAndOpEnd
man:+PetscSFGatherBegin++PetscSFGatherBegin++++man+manualpages/PetscSF/PetscSFGatherBegin.html#PetscSFGatherBegin
man:+PetscSFGatherEnd++PetscSFGatherEnd++++man+manualpages/PetscSF/PetscSFGatherEnd.html#PetscSFGatherEnd
man:+PetscSFScatterBegin++PetscSFScatterBegin++++man+manualpages/PetscSF/PetscSFScatterBegin.html#PetscSFScatterBegin
man:+PetscSFScatterEnd++PetscSFScatterEnd++++man+manualpages/PetscSF/PetscSFScatterEnd.html#PetscSFScatterEnd
man:+PetscSFCompose++PetscSFCompose++++man+manualpages/PetscSF/PetscSFCompose.html#PetscSFCompose
man:+PetscSFWindowGetDataTypes++PetscSFWindowGetDataTypes++++man+manualpages/PetscSF/PetscSFWindowGetDataTypes.html#PetscSFWindowGetDataTypes
man:+PetscSFWindowSetSyncType++PetscSFWindowSetSyncType++++man+manualpages/PetscSF/PetscSFWindowSetSyncType.html#PetscSFWindowSetSyncType
man:+PetscSFWindowGetSyncType++PetscSFWindowGetSyncType++++man+manualpages/PetscSF/PetscSFWindowGetSyncType.html#PetscSFWindowGetSyncType
man:+PetscSFGetWindow++PetscSFGetWindow++++man+manualpages/PetscSF/PetscSFGetWindow.html#PetscSFGetWindow
man:+PetscSFFindWindow++PetscSFFindWindow++++man+manualpages/PetscSF/PetscSFFindWindow.html#PetscSFFindWindow
man:+PetscSFRestoreWindow++PetscSFRestoreWindow++++man+manualpages/PetscSF/PetscSFRestoreWindow.html#PetscSFRestoreWindow
man:+AO++AO++++man+manualpages/AO/AO.html#AO
man:+AOType++AOType++++man+manualpages/AO/AOType.html#AOType
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:+AOSetFromOptions++AOSetFromOptions++++man+manualpages/AO/AOSetFromOptions.html#AOSetFromOptions
man:+AOSetIS++AOSetIS++++man+manualpages/AO/AOSetIS.html#AOSetIS
man:+AOCreate++AOCreate++++man+manualpages/AO/AOCreate.html#AOCreate
man:+AOFinalizePackage++AOFinalizePackage++++man+manualpages/AO/AOFinalizePackage.html#AOFinalizePackage
man:+AOInitializePackage++AOInitializePackage++++man+manualpages/AO/AOInitializePackage.html#AOInitializePackage
man:+AOSetType++AOSetType++++man+manualpages/AO/AOSetType.html#AOSetType
man:+AOGetType++AOGetType++++man+manualpages/AO/AOGetType.html#AOGetType
man:+AORegister++AORegister++++man+manualpages/AO/AORegister.html#AORegister
man:+AORegisterAll++AORegisterAll++++man+manualpages/AO/AORegisterAll.html#AORegisterAll
man:+AOCreateBasic++AOCreateBasic++++man+manualpages/AO/AOCreateBasic.html#AOCreateBasic
man:+AOCreateBasicIS++AOCreateBasicIS++++man+manualpages/AO/AOCreateBasicIS.html#AOCreateBasicIS
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:+AOCreateMemoryScalable++AOCreateMemoryScalable++++man+manualpages/AO/AOCreateMemoryScalable.html#AOCreateMemoryScalable
man:+AOCreateMemoryScalableIS++AOCreateMemoryScalableIS++++man+manualpages/AO/AOCreateMemoryScalableIS.html#AOCreateMemoryScalableIS
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:+ISLocalToGlobalMappingCreateSF++ISLocalToGlobalMappingCreateSF++++man+manualpages/IS/ISLocalToGlobalMappingCreateSF.html#ISLocalToGlobalMappingCreateSF
man:+ISLocalToGlobalMappingGetBlockSize++ISLocalToGlobalMappingGetBlockSize++++man+manualpages/IS/ISLocalToGlobalMappingGetBlockSize.html#ISLocalToGlobalMappingGetBlockSize
man:+ISLocalToGlobalMappingCreate++ISLocalToGlobalMappingCreate++++man+manualpages/IS/ISLocalToGlobalMappingCreate.html#ISLocalToGlobalMappingCreate
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:+ISLocalToGlobalMappingApplyBlock++ISLocalToGlobalMappingApplyBlock++++man+manualpages/IS/ISLocalToGlobalMappingApplyBlock.html#ISLocalToGlobalMappingApplyBlock
man:+ISGlobalToLocalMappingApply++ISGlobalToLocalMappingApply++++man+manualpages/IS/ISGlobalToLocalMappingApply.html#ISGlobalToLocalMappingApply
man:+ISGlobalToLocalMappingApplyIS++ISGlobalToLocalMappingApplyIS++++man+manualpages/IS/ISGlobalToLocalMappingApplyIS.html#ISGlobalToLocalMappingApplyIS
man:+ISGlobalToLocalMappingApplyBlock++ISGlobalToLocalMappingApplyBlock++++man+manualpages/IS/ISGlobalToLocalMappingApplyBlock.html#ISGlobalToLocalMappingApplyBlock
man:+ISLocalToGlobalMappingGetBlockInfo++ISLocalToGlobalMappingGetBlockInfo++++man+manualpages/IS/ISLocalToGlobalMappingGetBlockInfo.html#ISLocalToGlobalMappingGetBlockInfo
man:+ISLocalToGlobalMappingRestoreBlockInfo++ISLocalToGlobalMappingRestoreBlockInfo++++man+manualpages/IS/ISLocalToGlobalMappingRestoreBlockInfo.html#ISLocalToGlobalMappingRestoreBlockInfo
man:+ISLocalToGlobalMappingGetInfo++ISLocalToGlobalMappingGetInfo++++man+manualpages/IS/ISLocalToGlobalMappingGetInfo.html#ISLocalToGlobalMappingGetInfo
man:+ISLocalToGlobalMappingRestoreInfo++ISLocalToGlobalMappingRestoreInfo++++man+manualpages/IS/ISLocalToGlobalMappingRestoreInfo.html#ISLocalToGlobalMappingRestoreInfo
man:+ISLocalToGlobalMappingGetIndices++ISLocalToGlobalMappingGetIndices++++man+manualpages/IS/ISLocalToGlobalMappingGetIndices.html#ISLocalToGlobalMappingGetIndices
man:+ISLocalToGlobalMappingRestoreIndices++ISLocalToGlobalMappingRestoreIndices++++man+manualpages/IS/ISLocalToGlobalMappingRestoreIndices.html#ISLocalToGlobalMappingRestoreIndices
man:+ISLocalToGlobalMappingGetBlockIndices++ISLocalToGlobalMappingGetBlockIndices++++man+manualpages/IS/ISLocalToGlobalMappingGetBlockIndices.html#ISLocalToGlobalMappingGetBlockIndices
man:+ISLocalToGlobalMappingRestoreBlockIndices++ISLocalToGlobalMappingRestoreBlockIndices++++man+manualpages/IS/ISLocalToGlobalMappingRestoreBlockIndices.html#ISLocalToGlobalMappingRestoreBlockIndices
man:+ISLocalToGlobalMappingConcatenate++ISLocalToGlobalMappingConcatenate++++man+manualpages/IS/ISLocalToGlobalMappingConcatenate.html#ISLocalToGlobalMappingConcatenate
man:+PetscLayoutCreate++PetscLayoutCreate++++man+manualpages/IS/PetscLayoutCreate.html#PetscLayoutCreate
man:+PetscLayoutDestroy++PetscLayoutDestroy++++man+manualpages/IS/PetscLayoutDestroy.html#PetscLayoutDestroy
man:+PetscLayoutSetUp++PetscLayoutSetUp++++man+manualpages/IS/PetscLayoutSetUp.html#PetscLayoutSetUp
man:+PetscLayoutDuplicate++PetscLayoutDuplicate++++man+manualpages/IS/PetscLayoutDuplicate.html#PetscLayoutDuplicate
man:+PetscLayoutReference++PetscLayoutReference++++man+manualpages/IS/PetscLayoutReference.html#PetscLayoutReference
man:+PetscLayoutSetISLocalToGlobalMapping++PetscLayoutSetISLocalToGlobalMapping++++man+manualpages/IS/PetscLayoutSetISLocalToGlobalMapping.html#PetscLayoutSetISLocalToGlobalMapping
man:+PetscLayoutSetLocalSize++PetscLayoutSetLocalSize++++man+manualpages/IS/PetscLayoutSetLocalSize.html#PetscLayoutSetLocalSize
man:+PetscLayoutGetLocalSize++PetscLayoutGetLocalSize++++man+manualpages/IS/PetscLayoutGetLocalSize.html#PetscLayoutGetLocalSize
man:+PetscLayoutSetSize++PetscLayoutSetSize++++man+manualpages/IS/PetscLayoutSetSize.html#PetscLayoutSetSize
man:+PetscLayoutGetSize++PetscLayoutGetSize++++man+manualpages/IS/PetscLayoutGetSize.html#PetscLayoutGetSize
man:+PetscLayoutSetBlockSize++PetscLayoutSetBlockSize++++man+manualpages/IS/PetscLayoutSetBlockSize.html#PetscLayoutSetBlockSize
man:+PetscLayoutGetBlockSize++PetscLayoutGetBlockSize++++man+manualpages/IS/PetscLayoutGetBlockSize.html#PetscLayoutGetBlockSize
man:+PetscLayoutGetRange++PetscLayoutGetRange++++man+manualpages/IS/PetscLayoutGetRange.html#PetscLayoutGetRange
man:+PetscLayoutGetRanges++PetscLayoutGetRanges++++man+manualpages/IS/PetscLayoutGetRanges.html#PetscLayoutGetRanges
man:+PetscSFSetGraphLayout++PetscSFSetGraphLayout++++man+manualpages/IS/PetscSFSetGraphLayout.html#PetscSFSetGraphLayout
man:+PetscSectionCreate++PetscSectionCreate++++man+manualpages/IS/PetscSectionCreate.html#PetscSectionCreate
man:+PetscSectionCopy++PetscSectionCopy++++man+manualpages/IS/PetscSectionCopy.html#PetscSectionCopy
man:+PetscSectionClone++PetscSectionClone++++man+manualpages/IS/PetscSectionClone.html#PetscSectionClone
man:+PetscSectionGetNumFields++PetscSectionGetNumFields++++man+manualpages/IS/PetscSectionGetNumFields.html#PetscSectionGetNumFields
man:+PetscSectionSetNumFields++PetscSectionSetNumFields++++man+manualpages/IS/PetscSectionSetNumFields.html#PetscSectionSetNumFields
man:+PetscSectionGetFieldName++PetscSectionGetFieldName++++man+manualpages/IS/PetscSectionGetFieldName.html#PetscSectionGetFieldName
man:+PetscSectionSetFieldName++PetscSectionSetFieldName++++man+manualpages/IS/PetscSectionSetFieldName.html#PetscSectionSetFieldName
man:+PetscSectionGetFieldComponents++PetscSectionGetFieldComponents++++man+manualpages/IS/PetscSectionGetFieldComponents.html#PetscSectionGetFieldComponents
man:+PetscSectionSetFieldComponents++PetscSectionSetFieldComponents++++man+manualpages/IS/PetscSectionSetFieldComponents.html#PetscSectionSetFieldComponents
man:+PetscSectionGetChart++PetscSectionGetChart++++man+manualpages/IS/PetscSectionGetChart.html#PetscSectionGetChart
man:+PetscSectionSetChart++PetscSectionSetChart++++man+manualpages/IS/PetscSectionSetChart.html#PetscSectionSetChart
man:+PetscSectionGetPermutation++PetscSectionGetPermutation++++man+manualpages/IS/PetscSectionGetPermutation.html#PetscSectionGetPermutation
man:+PetscSectionSetPermutation++PetscSectionSetPermutation++++man+manualpages/IS/PetscSectionSetPermutation.html#PetscSectionSetPermutation
man:+PetscSectionGetDof++PetscSectionGetDof++++man+manualpages/IS/PetscSectionGetDof.html#PetscSectionGetDof
man:+PetscSectionSetDof++PetscSectionSetDof++++man+manualpages/IS/PetscSectionSetDof.html#PetscSectionSetDof
man:+PetscSectionAddDof++PetscSectionAddDof++++man+manualpages/IS/PetscSectionAddDof.html#PetscSectionAddDof
man:+PetscSectionGetFieldDof++PetscSectionGetFieldDof++++man+manualpages/IS/PetscSectionGetFieldDof.html#PetscSectionGetFieldDof
man:+PetscSectionSetFieldDof++PetscSectionSetFieldDof++++man+manualpages/IS/PetscSectionSetFieldDof.html#PetscSectionSetFieldDof
man:+PetscSectionAddFieldDof++PetscSectionAddFieldDof++++man+manualpages/IS/PetscSectionAddFieldDof.html#PetscSectionAddFieldDof
man:+PetscSectionGetConstraintDof++PetscSectionGetConstraintDof++++man+manualpages/IS/PetscSectionGetConstraintDof.html#PetscSectionGetConstraintDof
man:+PetscSectionSetConstraintDof++PetscSectionSetConstraintDof++++man+manualpages/IS/PetscSectionSetConstraintDof.html#PetscSectionSetConstraintDof
man:+PetscSectionAddConstraintDof++PetscSectionAddConstraintDof++++man+manualpages/IS/PetscSectionAddConstraintDof.html#PetscSectionAddConstraintDof
man:+PetscSectionGetFieldConstraintDof++PetscSectionGetFieldConstraintDof++++man+manualpages/IS/PetscSectionGetFieldConstraintDof.html#PetscSectionGetFieldConstraintDof
man:+PetscSectionSetFieldConstraintDof++PetscSectionSetFieldConstraintDof++++man+manualpages/IS/PetscSectionSetFieldConstraintDof.html#PetscSectionSetFieldConstraintDof
man:+PetscSectionAddFieldConstraintDof++PetscSectionAddFieldConstraintDof++++man+manualpages/IS/PetscSectionAddFieldConstraintDof.html#PetscSectionAddFieldConstraintDof
man:+PetscSectionSetUp++PetscSectionSetUp++++man+manualpages/IS/PetscSectionSetUp.html#PetscSectionSetUp
man:+PetscSectionGetMaxDof++PetscSectionGetMaxDof++++man+manualpages/IS/PetscSectionGetMaxDof.html#PetscSectionGetMaxDof
man:+PetscSectionGetStorageSize++PetscSectionGetStorageSize++++man+manualpages/IS/PetscSectionGetStorageSize.html#PetscSectionGetStorageSize
man:+PetscSectionGetConstrainedStorageSize++PetscSectionGetConstrainedStorageSize++++man+manualpages/IS/PetscSectionGetConstrainedStorageSize.html#PetscSectionGetConstrainedStorageSize
man:+PetscSectionCreateGlobalSection++PetscSectionCreateGlobalSection++++man+manualpages/IS/PetscSectionCreateGlobalSection.html#PetscSectionCreateGlobalSection
man:+PetscSectionCreateGlobalSectionCensored++PetscSectionCreateGlobalSectionCensored++++man+manualpages/IS/PetscSectionCreateGlobalSectionCensored.html#PetscSectionCreateGlobalSectionCensored
man:+PetscSectionGetValueLayout++PetscSectionGetValueLayout++++man+manualpages/IS/PetscSectionGetValueLayout.html#PetscSectionGetValueLayout
man:+PetscSectionGetOffset++PetscSectionGetOffset++++man+manualpages/IS/PetscSectionGetOffset.html#PetscSectionGetOffset
man:+PetscSectionSetOffset++PetscSectionSetOffset++++man+manualpages/IS/PetscSectionSetOffset.html#PetscSectionSetOffset
man:+PetscSectionGetFieldOffset++PetscSectionGetFieldOffset++++man+manualpages/IS/PetscSectionGetFieldOffset.html#PetscSectionGetFieldOffset
man:+PetscSectionSetFieldOffset++PetscSectionSetFieldOffset++++man+manualpages/IS/PetscSectionSetFieldOffset.html#PetscSectionSetFieldOffset
man:+PetscSectionGetOffsetRange++PetscSectionGetOffsetRange++++man+manualpages/IS/PetscSectionGetOffsetRange.html#PetscSectionGetOffsetRange
man:+PetscSectionView++PetscSectionView++++man+manualpages/IS/PetscSectionView.html#PetscSectionView
man:+PetscSectionReset++PetscSectionReset++++man+manualpages/IS/PetscSectionReset.html#PetscSectionReset
man:+PetscSectionDestroy++PetscSectionDestroy++++man+manualpages/IS/PetscSectionDestroy.html#PetscSectionDestroy
man:+PetscSectionGetConstraintIndices++PetscSectionGetConstraintIndices++++man+manualpages/IS/PetscSectionGetConstraintIndices.html#PetscSectionGetConstraintIndices
man:+PetscSectionSetConstraintIndices++PetscSectionSetConstraintIndices++++man+manualpages/IS/PetscSectionSetConstraintIndices.html#PetscSectionSetConstraintIndices
man:+PetscSectionPermute++PetscSectionPermute++++man+manualpages/IS/PetscSectionPermute.html#PetscSectionPermute
man:+PetscSFDistributeSection++PetscSFDistributeSection++++man+manualpages/IS/PetscSFDistributeSection.html#PetscSFDistributeSection
man:+PetscSFCreateSectionSF++PetscSFCreateSectionSF++++man+manualpages/IS/PetscSFCreateSectionSF.html#PetscSFCreateSectionSF
man:+PetscSectionSetClosureIndex++PetscSectionSetClosureIndex++++man+manualpages/IS/PetscSectionSetClosureIndex.html#PetscSectionSetClosureIndex
man:+PetscSectionGetClosureIndex++PetscSectionGetClosureIndex++++man+manualpages/IS/PetscSectionGetClosureIndex.html#PetscSectionGetClosureIndex
man:+PetscSectionGetField++PetscSectionGetField++++man+manualpages/IS/PetscSectionGetField.html#PetscSectionGetField
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:+PFRegister++PFRegister++++man+manualpages/PF/PFRegister.html#PFRegister
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:+PFFinalizePackage++PFFinalizePackage++++man+manualpages/PF/PFFinalizePackage.html#PFFinalizePackage
man:+PFInitializePackage++PFInitializePackage++++man+manualpages/PF/PFInitializePackage.html#PFInitializePackage
man:+PFRegisterAll++PFRegisterAll++++man+manualpages/PF/PFRegisterAll.html#PFRegisterAll
man:+Mat++Mat++++man+manualpages/Mat/Mat.html#Mat
man:+MatType++MatType++++man+manualpages/Mat/MatType.html#MatType
man:+MatSolverPackage++MatSolverPackage++++man+manualpages/Mat/MatSolverPackage.html#MatSolverPackage
man:+MatFactorType++MatFactorType++++man+manualpages/Mat/MatFactorType.html#MatFactorType
man:+MatReuse++MatReuse++++man+manualpages/Mat/MatReuse.html#MatReuse
man:+MatGetSubMatrixOption++MatGetSubMatrixOption++++man+manualpages/Mat/MatGetSubMatrixOption.html#MatGetSubMatrixOption
man:+MatStructure++MatStructure++++man+manualpages/Mat/MatStructure.html#MatStructure
man:+MatStencil++MatStencil++++man+manualpages/Mat/MatStencil.html#MatStencil
man:+MatAssemblyType++MatAssemblyType++++man+manualpages/Mat/MatAssemblyType.html#MatAssemblyType
man:+MatOption++MatOption++++man+manualpages/Mat/MatOption.html#MatOption
man:+MatDuplicateOption++MatDuplicateOption++++man+manualpages/Mat/MatDuplicateOption.html#MatDuplicateOption
man:+MatInfo++MatInfo++++man+manualpages/Mat/MatInfo.html#MatInfo
man:+MatInfoType++MatInfoType++++man+manualpages/Mat/MatInfoType.html#MatInfoType
man:+MatSetValue++MatSetValue++++man+manualpages/Mat/MatSetValue.html#MatSetValue
man:+MatPreallocateInitialize++MatPreallocateInitialize++++man+manualpages/Mat/MatPreallocateInitialize.html#MatPreallocateInitialize
man:+MatPreallocateSetLocal++MatPreallocateSetLocal++++man+manualpages/Mat/MatPreallocateSetLocal.html#MatPreallocateSetLocal
man:+MatPreallocateSetLocalBlock++MatPreallocateSetLocalBlock++++man+manualpages/Mat/MatPreallocateSetLocalBlock.html#MatPreallocateSetLocalBlock
man:+MatPreallocateSymmetricSetLocalBlock++MatPreallocateSymmetricSetLocalBlock++++man+manualpages/Mat/MatPreallocateSymmetricSetLocalBlock.html#MatPreallocateSymmetricSetLocalBlock
man:+MatPreallocateSet++MatPreallocateSet++++man+manualpages/Mat/MatPreallocateSet.html#MatPreallocateSet
man:+MatPreallocateSymmetricSetBlock++MatPreallocateSymmetricSetBlock++++man+manualpages/Mat/MatPreallocateSymmetricSetBlock.html#MatPreallocateSymmetricSetBlock
man:+MatPreallocateLocation++MatPreallocateLocation++++man+manualpages/Mat/MatPreallocateLocation.html#MatPreallocateLocation
man:+MatPreallocateFinalize++MatPreallocateFinalize++++man+manualpages/Mat/MatPreallocateFinalize.html#MatPreallocateFinalize
man:+MatOrderingType++MatOrderingType++++man+manualpages/Mat/MatOrderingType.html#MatOrderingType
man:+MatFactorShiftType++MatFactorShiftType++++man+manualpages/Mat/MatFactorShiftType.html#MatFactorShiftType
man:+MatFactorError++MatFactorError++++man+manualpages/Mat/MatFactorError.html#MatFactorError
man:+MatFactorInfo++MatFactorInfo++++man+manualpages/Mat/MatFactorInfo.html#MatFactorInfo
man:+MatSORType++MatSORType++++man+manualpages/Mat/MatSORType.html#MatSORType
man:+MatColoring++MatColoring++++man+manualpages/Mat/MatColoring.html#MatColoring
man:+MatColoringType++MatColoringType++++man+manualpages/Mat/MatColoringType.html#MatColoringType
man:+MatColoringWeightType++MatColoringWeightType++++man+manualpages/Mat/MatColoringWeightType.html#MatColoringWeightType
man:+MatFDColoring++MatFDColoring++++man+manualpages/Mat/MatFDColoring.html#MatFDColoring
man:+MatTransposeColoring++MatTransposeColoring++++man+manualpages/Mat/MatTransposeColoring.html#MatTransposeColoring
man:+MatPartitioning++MatPartitioning++++man+manualpages/Mat/MatPartitioning.html#MatPartitioning
man:+MatPartitioningType++MatPartitioningType++++man+manualpages/Mat/MatPartitioningType.html#MatPartitioningType
man:+MatCoarsen++MatCoarsen++++man+manualpages/Mat/MatCoarsen.html#MatCoarsen
man:+MatCoarsenType++MatCoarsenType++++man+manualpages/Mat/MatCoarsenType.html#MatCoarsenType
man:+MatNullSpace++MatNullSpace++++man+manualpages/Mat/MatNullSpace.html#MatNullSpace
man:+MatMFFD++MatMFFD++++man+manualpages/Mat/MatMFFD.html#MatMFFD
man:+MatMFFDType++MatMFFDType++++man+manualpages/Mat/MatMFFDType.html#MatMFFDType
man:+MatCUSPARSEStorageFormat++MatCUSPARSEStorageFormat++++man+manualpages/Mat/MatCUSPARSEStorageFormat.html#MatCUSPARSEStorageFormat
man:+MatCUSPARSEFormatOperation++MatCUSPARSEFormatOperation++++man+manualpages/Mat/MatCUSPARSEFormatOperation.html#MatCUSPARSEFormatOperation
man:+MatCUSPStorageFormat++MatCUSPStorageFormat++++man+manualpages/Mat/MatCUSPStorageFormat.html#MatCUSPStorageFormat
man:+MatCUSPFormatOperation++MatCUSPFormatOperation++++man+manualpages/Mat/MatCUSPFormatOperation.html#MatCUSPFormatOperation
man:+MatSetRandom++MatSetRandom++++man+manualpages/Mat/MatSetRandom.html#MatSetRandom
man:+MatFindNonzeroRows++MatFindNonzeroRows++++man+manualpages/Mat/MatFindNonzeroRows.html#MatFindNonzeroRows
man:+MatGetDiagonalBlock++MatGetDiagonalBlock++++man+manualpages/Mat/MatGetDiagonalBlock.html#MatGetDiagonalBlock
man:+MatGetTrace++MatGetTrace++++man+manualpages/Mat/MatGetTrace.html#MatGetTrace
man:+MatRealPart++MatRealPart++++man+manualpages/Mat/MatRealPart.html#MatRealPart
man:+MatGetGhosts++MatGetGhosts++++man+manualpages/Mat/MatGetGhosts.html#MatGetGhosts
man:+MatImaginaryPart++MatImaginaryPart++++man+manualpages/Mat/MatImaginaryPart.html#MatImaginaryPart
man:+MatMissingDiagonal++MatMissingDiagonal++++man+manualpages/Mat/MatMissingDiagonal.html#MatMissingDiagonal
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:+MatLoad++MatLoad++++man+manualpages/Mat/MatLoad.html#MatLoad
man:+MatDestroy++MatDestroy++++man+manualpages/Mat/MatDestroy.html#MatDestroy
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:+MatSetValuesBatch++MatSetValuesBatch++++man+manualpages/Mat/MatSetValuesBatch.html#MatSetValuesBatch
man:+MatSetLocalToGlobalMapping++MatSetLocalToGlobalMapping++++man+manualpages/Mat/MatSetLocalToGlobalMapping.html#MatSetLocalToGlobalMapping
man:+MatGetLocalToGlobalMapping++MatGetLocalToGlobalMapping++++man+manualpages/Mat/MatGetLocalToGlobalMapping.html#MatGetLocalToGlobalMapping
man:+MatGetLayouts++MatGetLayouts++++man+manualpages/Mat/MatGetLayouts.html#MatGetLayouts
man:+MatSetValuesLocal++MatSetValuesLocal++++man+manualpages/Mat/MatSetValuesLocal.html#MatSetValuesLocal
man:+MatSetValuesBlockedLocal++MatSetValuesBlockedLocal++++man+manualpages/Mat/MatSetValuesBlockedLocal.html#MatSetValuesBlockedLocal
man:+MatMultDiagonalBlock++MatMultDiagonalBlock++++man+manualpages/Mat/MatMultDiagonalBlock.html#MatMultDiagonalBlock
man:+MatMult++MatMult++++man+manualpages/Mat/MatMult.html#MatMult
man:+MatMultTranspose++MatMultTranspose++++man+manualpages/Mat/MatMultTranspose.html#MatMultTranspose
man:+MatMultHermitianTranspose++MatMultHermitianTranspose++++man+manualpages/Mat/MatMultHermitianTranspose.html#MatMultHermitianTranspose
man:+MatMultAdd++MatMultAdd++++man+manualpages/Mat/MatMultAdd.html#MatMultAdd
man:+MatMultTransposeAdd++MatMultTransposeAdd++++man+manualpages/Mat/MatMultTransposeAdd.html#MatMultTransposeAdd
man:+MatMultHermitianTransposeAdd++MatMultHermitianTransposeAdd++++man+manualpages/Mat/MatMultHermitianTransposeAdd.html#MatMultHermitianTransposeAdd
man:+MatMultConstrained++MatMultConstrained++++man+manualpages/Mat/MatMultConstrained.html#MatMultConstrained
man:+MatMultTransposeConstrained++MatMultTransposeConstrained++++man+manualpages/Mat/MatMultTransposeConstrained.html#MatMultTransposeConstrained
man:+MatGetFactorType++MatGetFactorType++++man+manualpages/Mat/MatGetFactorType.html#MatGetFactorType
man:+MatGetInfo++MatGetInfo++++man+manualpages/Mat/MatGetInfo.html#MatGetInfo
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:+MatForwardSolve++MatForwardSolve++++man+manualpages/Mat/MatForwardSolve.html#MatForwardSolve
man:+MatBackwardSolve++MatBackwardSolve++++man+manualpages/Mat/MatBackwardSolve.html#MatBackwardSolve
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:+MatSOR++MatSOR++++man+manualpages/Mat/MatSOR.html#MatSOR
man:+MatCopy++MatCopy++++man+manualpages/Mat/MatCopy.html#MatCopy
man:+MatConvert++MatConvert++++man+manualpages/Mat/MatConvert.html#MatConvert
man:+MatFactorGetSolverPackage++MatFactorGetSolverPackage++++man+manualpages/Mat/MatFactorGetSolverPackage.html#MatFactorGetSolverPackage
man:+MatSolvePackageRegister++MatSolvePackageRegister++++man+manualpages/Mat/MatSolvePackageRegister.html#MatSolvePackageRegister
man:+MatSolvePackageGet++MatSolvePackageGet++++man+manualpages/Mat/MatSolvePackageGet.html#MatSolvePackageGet
man:+MatGetFactor++MatGetFactor++++man+manualpages/Mat/MatGetFactor.html#MatGetFactor
man:+MatGetFactorAvailable++MatGetFactorAvailable++++man+manualpages/Mat/MatGetFactorAvailable.html#MatGetFactorAvailable
man:+MatDuplicate++MatDuplicate++++man+manualpages/Mat/MatDuplicate.html#MatDuplicate
man:+MatGetDiagonal++MatGetDiagonal++++man+manualpages/Mat/MatGetDiagonal.html#MatGetDiagonal
man:+MatGetRowMin++MatGetRowMin++++man+manualpages/Mat/MatGetRowMin.html#MatGetRowMin
man:+MatGetRowMinAbs++MatGetRowMinAbs++++man+manualpages/Mat/MatGetRowMinAbs.html#MatGetRowMinAbs
man:+MatGetRowMax++MatGetRowMax++++man+manualpages/Mat/MatGetRowMax.html#MatGetRowMax
man:+MatGetRowMaxAbs++MatGetRowMaxAbs++++man+manualpages/Mat/MatGetRowMaxAbs.html#MatGetRowMaxAbs
man:+MatGetRowSum++MatGetRowSum++++man+manualpages/Mat/MatGetRowSum.html#MatGetRowSum
man:+MatTranspose++MatTranspose++++man+manualpages/Mat/MatTranspose.html#MatTranspose
man:+MatIsTranspose++MatIsTranspose++++man+manualpages/Mat/MatIsTranspose.html#MatIsTranspose
man:+MatHermitianTranspose++MatHermitianTranspose++++man+manualpages/Mat/MatHermitianTranspose.html#MatHermitianTranspose
man:+MatIsHermitianTranspose++MatIsHermitianTranspose++++man+manualpages/Mat/MatIsHermitianTranspose.html#MatIsHermitianTranspose
man:+MatPermute++MatPermute++++man+manualpages/Mat/MatPermute.html#MatPermute
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:+MatSetOption++MatSetOption++++man+manualpages/Mat/MatSetOption.html#MatSetOption
man:+MatGetOption++MatGetOption++++man+manualpages/Mat/MatGetOption.html#MatGetOption
man:+MatZeroEntries++MatZeroEntries++++man+manualpages/Mat/MatZeroEntries.html#MatZeroEntries
man:+MatZeroRowsColumns++MatZeroRowsColumns++++man+manualpages/Mat/MatZeroRowsColumns.html#MatZeroRowsColumns
man:+MatZeroRowsColumnsIS++MatZeroRowsColumnsIS++++man+manualpages/Mat/MatZeroRowsColumnsIS.html#MatZeroRowsColumnsIS
man:+MatZeroRows++MatZeroRows++++man+manualpages/Mat/MatZeroRows.html#MatZeroRows
man:+MatZeroRowsIS++MatZeroRowsIS++++man+manualpages/Mat/MatZeroRowsIS.html#MatZeroRowsIS
man:+MatZeroRowsStencil++MatZeroRowsStencil++++man+manualpages/Mat/MatZeroRowsStencil.html#MatZeroRowsStencil
man:+MatZeroRowsColumnsStencil++MatZeroRowsColumnsStencil++++man+manualpages/Mat/MatZeroRowsColumnsStencil.html#MatZeroRowsColumnsStencil
man:+MatZeroRowsLocal++MatZeroRowsLocal++++man+manualpages/Mat/MatZeroRowsLocal.html#MatZeroRowsLocal
man:+MatZeroRowsLocalIS++MatZeroRowsLocalIS++++man+manualpages/Mat/MatZeroRowsLocalIS.html#MatZeroRowsLocalIS
man:+MatZeroRowsColumnsLocal++MatZeroRowsColumnsLocal++++man+manualpages/Mat/MatZeroRowsColumnsLocal.html#MatZeroRowsColumnsLocal
man:+MatZeroRowsColumnsLocalIS++MatZeroRowsColumnsLocalIS++++man+manualpages/Mat/MatZeroRowsColumnsLocalIS.html#MatZeroRowsColumnsLocalIS
man:+MatGetSize++MatGetSize++++man+manualpages/Mat/MatGetSize.html#MatGetSize
man:+MatGetLocalSize++MatGetLocalSize++++man+manualpages/Mat/MatGetLocalSize.html#MatGetLocalSize
man:+MatGetOwnershipRangeColumn++MatGetOwnershipRangeColumn++++man+manualpages/Mat/MatGetOwnershipRangeColumn.html#MatGetOwnershipRangeColumn
man:+MatGetOwnershipRange++MatGetOwnershipRange++++man+manualpages/Mat/MatGetOwnershipRange.html#MatGetOwnershipRange
man:+MatGetOwnershipRanges++MatGetOwnershipRanges++++man+manualpages/Mat/MatGetOwnershipRanges.html#MatGetOwnershipRanges
man:+MatGetOwnershipRangesColumn++MatGetOwnershipRangesColumn++++man+manualpages/Mat/MatGetOwnershipRangesColumn.html#MatGetOwnershipRangesColumn
man:+MatGetOwnershipIS++MatGetOwnershipIS++++man+manualpages/Mat/MatGetOwnershipIS.html#MatGetOwnershipIS
man:+MatILUFactorSymbolic++MatILUFactorSymbolic++++man+manualpages/Mat/MatILUFactorSymbolic.html#MatILUFactorSymbolic
man:+MatICCFactorSymbolic++MatICCFactorSymbolic++++man+manualpages/Mat/MatICCFactorSymbolic.html#MatICCFactorSymbolic
man:+MatGetSubMatrices++MatGetSubMatrices++++man+manualpages/Mat/MatGetSubMatrices.html#MatGetSubMatrices
man:+MatDestroyMatrices++MatDestroyMatrices++++man+manualpages/Mat/MatDestroyMatrices.html#MatDestroyMatrices
man:+MatGetSeqNonzeroStructure++MatGetSeqNonzeroStructure++++man+manualpages/Mat/MatGetSeqNonzeroStructure.html#MatGetSeqNonzeroStructure
man:+MatDestroySeqNonzeroStructure++MatDestroySeqNonzeroStructure++++man+manualpages/Mat/MatDestroySeqNonzeroStructure.html#MatDestroySeqNonzeroStructure
man:+MatIncreaseOverlap++MatIncreaseOverlap++++man+manualpages/Mat/MatIncreaseOverlap.html#MatIncreaseOverlap
man:+MatIncreaseOverlapSplit++MatIncreaseOverlapSplit++++man+manualpages/Mat/MatIncreaseOverlapSplit.html#MatIncreaseOverlapSplit
man:+MatGetBlockSize++MatGetBlockSize++++man+manualpages/Mat/MatGetBlockSize.html#MatGetBlockSize
man:+MatGetBlockSizes++MatGetBlockSizes++++man+manualpages/Mat/MatGetBlockSizes.html#MatGetBlockSizes
man:+MatSetBlockSize++MatSetBlockSize++++man+manualpages/Mat/MatSetBlockSize.html#MatSetBlockSize
man:+MatSetBlockSizes++MatSetBlockSizes++++man+manualpages/Mat/MatSetBlockSizes.html#MatSetBlockSizes
man:+MatSetBlockSizesFromMats++MatSetBlockSizesFromMats++++man+manualpages/Mat/MatSetBlockSizesFromMats.html#MatSetBlockSizesFromMats
man:+MatResidual++MatResidual++++man+manualpages/Mat/MatResidual.html#MatResidual
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:+MatDenseGetArrayF90++MatDenseGetArrayF90++++man+manualpages/Mat/MatDenseGetArrayF90.html#MatDenseGetArrayF90
man:+MatDenseRestoreArrayF90++MatDenseRestoreArrayF90++++man+manualpages/Mat/MatDenseRestoreArrayF90.html#MatDenseRestoreArrayF90
man:+MatSeqAIJGetArrayF90++MatSeqAIJGetArrayF90++++man+manualpages/Mat/MatSeqAIJGetArrayF90.html#MatSeqAIJGetArrayF90
man:+MatSeqAIJRestoreArrayF90++MatSeqAIJRestoreArrayF90++++man+manualpages/Mat/MatSeqAIJRestoreArrayF90.html#MatSeqAIJRestoreArrayF90
man:+MatGetSubMatrix++MatGetSubMatrix++++man+manualpages/Mat/MatGetSubMatrix.html#MatGetSubMatrix
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:+MatGetNullSpace++MatGetNullSpace++++man+manualpages/Mat/MatGetNullSpace.html#MatGetNullSpace
man:+MatSetNullSpace++MatSetNullSpace++++man+manualpages/Mat/MatSetNullSpace.html#MatSetNullSpace
man:+MatGetTransposeNullSpace++MatGetTransposeNullSpace++++man+manualpages/Mat/MatGetTransposeNullSpace.html#MatGetTransposeNullSpace
man:+MatSetTransposeNullSpace++MatSetTransposeNullSpace++++man+manualpages/Mat/MatSetTransposeNullSpace.html#MatSetTransposeNullSpace
man:+MatSetNearNullSpace++MatSetNearNullSpace++++man+manualpages/Mat/MatSetNearNullSpace.html#MatSetNearNullSpace
man:+MatGetNearNullSpace++MatGetNearNullSpace++++man+manualpages/Mat/MatGetNearNullSpace.html#MatGetNearNullSpace
man:+MatICCFactor++MatICCFactor++++man+manualpages/Mat/MatICCFactor.html#MatICCFactor
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:+MatIsHermitian++MatIsHermitian++++man+manualpages/Mat/MatIsHermitian.html#MatIsHermitian
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:+MatStashGetInfo++MatStashGetInfo++++man+manualpages/Mat/MatStashGetInfo.html#MatStashGetInfo
man:+MatCreateVecs++MatCreateVecs++++man+manualpages/Mat/MatCreateVecs.html#MatCreateVecs
man:+MatFactorInfoInitialize++MatFactorInfoInitialize++++man+manualpages/Mat/MatFactorInfoInitialize.html#MatFactorInfoInitialize
man:+MatFactorSetSchurIS++MatFactorSetSchurIS++++man+manualpages/Mat/MatFactorSetSchurIS.html#MatFactorSetSchurIS
man:+MatFactorCreateSchurComplement++MatFactorCreateSchurComplement++++man+manualpages/Mat/MatFactorCreateSchurComplement.html#MatFactorCreateSchurComplement
man:+MatFactorGetSchurComplement++MatFactorGetSchurComplement++++man+manualpages/Mat/MatFactorGetSchurComplement.html#MatFactorGetSchurComplement
man:+MatFactorRestoreSchurComplement++MatFactorRestoreSchurComplement++++man+manualpages/Mat/MatFactorRestoreSchurComplement.html#MatFactorRestoreSchurComplement
man:+MatFactorSolveSchurComplementTranspose++MatFactorSolveSchurComplementTranspose++++man+manualpages/Mat/MatFactorSolveSchurComplementTranspose.html#MatFactorSolveSchurComplementTranspose
man:+MatFactorSolveSchurComplement++MatFactorSolveSchurComplement++++man+manualpages/Mat/MatFactorSolveSchurComplement.html#MatFactorSolveSchurComplement
man:+MatFactorInvertSchurComplement++MatFactorInvertSchurComplement++++man+manualpages/Mat/MatFactorInvertSchurComplement.html#MatFactorInvertSchurComplement
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:+MatRARt++MatRARt++++man+manualpages/Mat/MatRARt.html#MatRARt
man:+MatRARtNumeric++MatRARtNumeric++++man+manualpages/Mat/MatRARtNumeric.html#MatRARtNumeric
man:+MatRARtSymbolic++MatRARtSymbolic++++man+manualpages/Mat/MatRARtSymbolic.html#MatRARtSymbolic
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:+MatMatTransposeMult++MatMatTransposeMult++++man+manualpages/Mat/MatMatTransposeMult.html#MatMatTransposeMult
man:+MatTransposeMatMult++MatTransposeMatMult++++man+manualpages/Mat/MatTransposeMatMult.html#MatTransposeMatMult
man:+MatMatMatMult++MatMatMatMult++++man+manualpages/Mat/MatMatMatMult.html#MatMatMatMult
man:+MatCreateRedundantMatrix++MatCreateRedundantMatrix++++man+manualpages/Mat/MatCreateRedundantMatrix.html#MatCreateRedundantMatrix
man:+MatGetMultiProcBlock++MatGetMultiProcBlock++++man+manualpages/Mat/MatGetMultiProcBlock.html#MatGetMultiProcBlock
man:+MatGetLocalSubMatrix++MatGetLocalSubMatrix++++man+manualpages/Mat/MatGetLocalSubMatrix.html#MatGetLocalSubMatrix
man:+MatRestoreLocalSubMatrix++MatRestoreLocalSubMatrix++++man+manualpages/Mat/MatRestoreLocalSubMatrix.html#MatRestoreLocalSubMatrix
man:+MatFindZeroDiagonals++MatFindZeroDiagonals++++man+manualpages/Mat/MatFindZeroDiagonals.html#MatFindZeroDiagonals
man:+MatFindOffBlockDiagonalEntries++MatFindOffBlockDiagonalEntries++++man+manualpages/Mat/MatFindOffBlockDiagonalEntries.html#MatFindOffBlockDiagonalEntries
man:+MatInvertBlockDiagonal++MatInvertBlockDiagonal++++man+manualpages/Mat/MatInvertBlockDiagonal.html#MatInvertBlockDiagonal
man:+MatTransposeColoringDestroy++MatTransposeColoringDestroy++++man+manualpages/Mat/MatTransposeColoringDestroy.html#MatTransposeColoringDestroy
man:+MatTransColoringApplySpToDen++MatTransColoringApplySpToDen++++man+manualpages/Mat/MatTransColoringApplySpToDen.html#MatTransColoringApplySpToDen
man:+MatTransColoringApplyDenToSp++MatTransColoringApplyDenToSp++++man+manualpages/Mat/MatTransColoringApplyDenToSp.html#MatTransColoringApplyDenToSp
man:+MatTransposeColoringCreate++MatTransposeColoringCreate++++man+manualpages/Mat/MatTransposeColoringCreate.html#MatTransposeColoringCreate
man:+MatGetNonzeroState++MatGetNonzeroState++++man+manualpages/Mat/MatGetNonzeroState.html#MatGetNonzeroState
man:+MatCreateMPIMatConcatenateSeqMat++MatCreateMPIMatConcatenateSeqMat++++man+manualpages/Mat/MatCreateMPIMatConcatenateSeqMat.html#MatCreateMPIMatConcatenateSeqMat
man:+MatSubdomainsCreateCoalesce++MatSubdomainsCreateCoalesce++++man+manualpages/Mat/MatSubdomainsCreateCoalesce.html#MatSubdomainsCreateCoalesce
man:+MatHasOperation++MatHasOperation++++man+manualpages/Mat/MatHasOperation.html#MatHasOperation
man:+MatSetType++MatSetType++++man+manualpages/Mat/MatSetType.html#MatSetType
man:+MatGetType++MatGetType++++man+manualpages/Mat/MatGetType.html#MatGetType
man:+MatRegister++MatRegister++++man+manualpages/Mat/MatRegister.html#MatRegister
man:+MatRegisterBaseName++MatRegisterBaseName++++man+manualpages/Mat/MatRegisterBaseName.html#MatRegisterBaseName
man:+MatRegisterAll++MatRegisterAll++++man+manualpages/Mat/MatRegisterAll.html#MatRegisterAll
man:+MatNullSpaceSetFunction++MatNullSpaceSetFunction++++man+manualpages/Mat/MatNullSpaceSetFunction.html#MatNullSpaceSetFunction
man:+MatNullSpaceGetVecs++MatNullSpaceGetVecs++++man+manualpages/Mat/MatNullSpaceGetVecs.html#MatNullSpaceGetVecs
man:+MatNullSpaceCreateRigidBody++MatNullSpaceCreateRigidBody++++man+manualpages/Mat/MatNullSpaceCreateRigidBody.html#MatNullSpaceCreateRigidBody
man:+MatNullSpaceView++MatNullSpaceView++++man+manualpages/Mat/MatNullSpaceView.html#MatNullSpaceView
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:+MatFinalizePackage++MatFinalizePackage++++man+manualpages/Mat/MatFinalizePackage.html#MatFinalizePackage
man:+MatInitializePackage++MatInitializePackage++++man+manualpages/Mat/MatInitializePackage.html#MatInitializePackage
man:+MatDenseGetArray++MatDenseGetArray++++man+manualpages/Mat/MatDenseGetArray.html#MatDenseGetArray
man:+MatDenseRestoreArray++MatDenseRestoreArray++++man+manualpages/Mat/MatDenseRestoreArray.html#MatDenseRestoreArray
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:+MATDENSE++MATDENSE++++man+manualpages/Mat/MATDENSE.html#MATDENSE
man:+MatMPIDenseSetPreallocation++MatMPIDenseSetPreallocation++++man+manualpages/Mat/MatMPIDenseSetPreallocation.html#MatMPIDenseSetPreallocation
man:+MatCreateDense++MatCreateDense++++man+manualpages/Mat/MatCreateDense.html#MatCreateDense
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:+MATAIJ++MATAIJ++++man+manualpages/Mat/MATAIJ.html#MATAIJ
man:+MATAIJCRL++MATAIJCRL++++man+manualpages/Mat/MATAIJCRL.html#MATAIJCRL
man:+MatSeqAIJGetArray++MatSeqAIJGetArray++++man+manualpages/Mat/MatSeqAIJGetArray.html#MatSeqAIJGetArray
man:+MatSeqAIJGetMaxRowNonzeros++MatSeqAIJGetMaxRowNonzeros++++man+manualpages/Mat/MatSeqAIJGetMaxRowNonzeros.html#MatSeqAIJGetMaxRowNonzeros
man:+MatSeqAIJRestoreArray++MatSeqAIJRestoreArray++++man+manualpages/Mat/MatSeqAIJRestoreArray.html#MatSeqAIJRestoreArray
man:+MatCreateSeqAIJWithArrays++MatCreateSeqAIJWithArrays++++man+manualpages/Mat/MatCreateSeqAIJWithArrays.html#MatCreateSeqAIJWithArrays
man:+MatCreateSeqAIJFromTriple++MatCreateSeqAIJFromTriple++++man+manualpages/Mat/MatCreateSeqAIJFromTriple.html#MatCreateSeqAIJFromTriple
man:+MatInodeGetInodeSizes++MatInodeGetInodeSizes++++man+manualpages/Mat/MatInodeGetInodeSizes.html#MatInodeGetInodeSizes
man:+MatSuperluSetILUDropTol++MatSuperluSetILUDropTol++++man+manualpages/Mat/MatSuperluSetILUDropTol.html#MatSuperluSetILUDropTol
man:+MATSOLVERSUPERLU++MATSOLVERSUPERLU++++man+manualpages/Mat/MATSOLVERSUPERLU.html#MATSOLVERSUPERLU
man:+MATSOLVERUMFPACK++MATSOLVERUMFPACK++++man+manualpages/Mat/MATSOLVERUMFPACK.html#MATSOLVERUMFPACK
man:+MATSOLVERESSL++MATSOLVERESSL++++man+manualpages/Mat/MATSOLVERESSL.html#MATSOLVERESSL
man:+MATSOLVERLUSOL++MATSOLVERLUSOL++++man+manualpages/Mat/MATSOLVERLUSOL.html#MATSOLVERLUSOL
man:+MatSeqAIJFromMatlab++MatSeqAIJFromMatlab++++man+manualpages/Mat/MatSeqAIJFromMatlab.html#MatSeqAIJFromMatlab
man:+MATSOLVERMATLAB++MATSOLVERMATLAB++++man+manualpages/Mat/MATSOLVERMATLAB.html#MATSOLVERMATLAB
man:+MatCreateSeqAIJPERM++MatCreateSeqAIJPERM++++man+manualpages/Mat/MatCreateSeqAIJPERM.html#MatCreateSeqAIJPERM
man:+MatCreateSeqAIJCRL++MatCreateSeqAIJCRL++++man+manualpages/Mat/MatCreateSeqAIJCRL.html#MatCreateSeqAIJCRL
man:+MATSOLVERBAS++MATSOLVERBAS++++man+manualpages/Mat/MATSOLVERBAS.html#MATSOLVERBAS
man:+MatCUSPSetFormat++MatCUSPSetFormat++++man+manualpages/Mat/MatCUSPSetFormat.html#MatCUSPSetFormat
man:+MatCreateSeqAIJCUSP++MatCreateSeqAIJCUSP++++man+manualpages/Mat/MatCreateSeqAIJCUSP.html#MatCreateSeqAIJCUSP
man:+MATSEQAIJCUSP++MATSEQAIJCUSP++++man+manualpages/Mat/MATSEQAIJCUSP.html#MATSEQAIJCUSP
man:+MatCreateSeqAIJViennaCL++MatCreateSeqAIJViennaCL++++man+manualpages/Mat/MatCreateSeqAIJViennaCL.html#MatCreateSeqAIJViennaCL
man:+MATSEQAIJVIENNACL++MATSEQAIJVIENNACL++++man+manualpages/Mat/MATSEQAIJVIENNACL.html#MATSEQAIJVIENNACL
man:+MATSOLVERCUSPARSE++MATSOLVERCUSPARSE++++man+manualpages/Mat/MATSOLVERCUSPARSE.html#MATSOLVERCUSPARSE
man:+MatCUSPARSESetFormat++MatCUSPARSESetFormat++++man+manualpages/Mat/MatCUSPARSESetFormat.html#MatCUSPARSESetFormat
man:+MatCreateSeqAIJCUSPARSE++MatCreateSeqAIJCUSPARSE++++man+manualpages/Mat/MatCreateSeqAIJCUSPARSE.html#MatCreateSeqAIJCUSPARSE
man:+MATSEQAIJCUSPARSE++MATSEQAIJCUSPARSE++++man+manualpages/Mat/MATSEQAIJCUSPARSE.html#MATSEQAIJCUSPARSE
man:+MATSOLVERKLU++MATSOLVERKLU++++man+manualpages/Mat/MATSOLVERKLU.html#MATSOLVERKLU
man:+MatMkl_PardisoSetCntl++MatMkl_PardisoSetCntl++++man+manualpages/Mat/MatMkl_PardisoSetCntl.html#MatMkl_PardisoSetCntl
man:+MATSOLVERMKL_PARDISO++MATSOLVERMKL_PARDISO++++man+manualpages/Mat/MATSOLVERMKL_PARDISO.html#MATSOLVERMKL_PARDISO
man:+MATAIJ++MATAIJ++++man+manualpages/Mat/MATAIJ.html#MATAIJ
man:+MATAIJCRL++MATAIJCRL++++man+manualpages/Mat/MATAIJCRL.html#MATAIJCRL
man:+MatMPIAIJSetUseScalableIncreaseOverlap++MatMPIAIJSetUseScalableIncreaseOverlap++++man+manualpages/Mat/MatMPIAIJSetUseScalableIncreaseOverlap.html#MatMPIAIJSetUseScalableIncreaseOverlap
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:+MatCreateAIJ++MatCreateAIJ++++man+manualpages/Mat/MatCreateAIJ.html#MatCreateAIJ
man:+MatCreateMPIAIJSumSeqAIJ++MatCreateMPIAIJSumSeqAIJ++++man+manualpages/Mat/MatCreateMPIAIJSumSeqAIJ.html#MatCreateMPIAIJSumSeqAIJ
man:+MatMPIAIJGetLocalMat++MatMPIAIJGetLocalMat++++man+manualpages/Mat/MatMPIAIJGetLocalMat.html#MatMPIAIJGetLocalMat
man:+MatMPIAIJGetLocalMatCondensed++MatMPIAIJGetLocalMatCondensed++++man+manualpages/Mat/MatMPIAIJGetLocalMatCondensed.html#MatMPIAIJGetLocalMatCondensed
man:+MatGetBrowsOfAcols++MatGetBrowsOfAcols++++man+manualpages/Mat/MatGetBrowsOfAcols.html#MatGetBrowsOfAcols
man:+MatGetCommunicationStructs++MatGetCommunicationStructs++++man+manualpages/Mat/MatGetCommunicationStructs.html#MatGetCommunicationStructs
man:+MATMPIAIJ++MATMPIAIJ++++man+manualpages/Mat/MATMPIAIJ.html#MATMPIAIJ
man:+MatCreateMPIAIJWithSplitArrays++MatCreateMPIAIJWithSplitArrays++++man+manualpages/Mat/MatCreateMPIAIJWithSplitArrays.html#MatCreateMPIAIJWithSplitArrays
man:+MATSOLVERSUPERLU_DIST++MATSOLVERSUPERLU_DIST++++man+manualpages/Mat/MATSOLVERSUPERLU_DIST.html#MATSOLVERSUPERLU_DIST
man:+MatMumpsSetIcntl++MatMumpsSetIcntl++++man+manualpages/Mat/MatMumpsSetIcntl.html#MatMumpsSetIcntl
man:+MatMumpsGetIcntl++MatMumpsGetIcntl++++man+manualpages/Mat/MatMumpsGetIcntl.html#MatMumpsGetIcntl
man:+MatMumpsSetCntl++MatMumpsSetCntl++++man+manualpages/Mat/MatMumpsSetCntl.html#MatMumpsSetCntl
man:+MatMumpsGetCntl++MatMumpsGetCntl++++man+manualpages/Mat/MatMumpsGetCntl.html#MatMumpsGetCntl
man:+MatMumpsGetInfo++MatMumpsGetInfo++++man+manualpages/Mat/MatMumpsGetInfo.html#MatMumpsGetInfo
man:+MatMumpsGetInfog++MatMumpsGetInfog++++man+manualpages/Mat/MatMumpsGetInfog.html#MatMumpsGetInfog
man:+MatMumpsGetRinfo++MatMumpsGetRinfo++++man+manualpages/Mat/MatMumpsGetRinfo.html#MatMumpsGetRinfo
man:+MatMumpsGetRinfog++MatMumpsGetRinfog++++man+manualpages/Mat/MatMumpsGetRinfog.html#MatMumpsGetRinfog
man:+MATSOLVERMUMPS++MATSOLVERMUMPS++++man+manualpages/Mat/MATSOLVERMUMPS.html#MATSOLVERMUMPS
man:+MatCreateMPIAIJPERM++MatCreateMPIAIJPERM++++man+manualpages/Mat/MatCreateMPIAIJPERM.html#MatCreateMPIAIJPERM
man:+MATAIJPERM++MATAIJPERM++++man+manualpages/Mat/MATAIJPERM.html#MATAIJPERM
man:+MatCreateMPIAIJCRL++MatCreateMPIAIJCRL++++man+manualpages/Mat/MatCreateMPIAIJCRL.html#MatCreateMPIAIJCRL
man:+MATSOLVERPASTIX++MATSOLVERPASTIX++++man+manualpages/Mat/MATSOLVERPASTIX.html#MATSOLVERPASTIX
man:+MatCreateAIJCUSP++MatCreateAIJCUSP++++man+manualpages/Mat/MatCreateAIJCUSP.html#MatCreateAIJCUSP
man:+MATAIJCUSP++MATAIJCUSP++++man+manualpages/Mat/MATAIJCUSP.html#MATAIJCUSP
man:+MatMPIAIJSetValuesBatch++MatMPIAIJSetValuesBatch++++man+manualpages/Mat/MatMPIAIJSetValuesBatch.html#MatMPIAIJSetValuesBatch
man:+MatCreateAIJCUSPARSE++MatCreateAIJCUSPARSE++++man+manualpages/Mat/MatCreateAIJCUSPARSE.html#MatCreateAIJCUSPARSE
man:+MATAIJCUSPARSE++MATAIJCUSPARSE++++man+manualpages/Mat/MATAIJCUSPARSE.html#MATAIJCUSPARSE
man:+MatCreateAIJViennaCL++MatCreateAIJViennaCL++++man+manualpages/Mat/MatCreateAIJViennaCL.html#MatCreateAIJViennaCL
man:+MATAIJVIENNACL++MATAIJVIENNACL++++man+manualpages/Mat/MATAIJVIENNACL.html#MATAIJVIENNACL
man:+MATSOLVERCLIQUE++MATSOLVERCLIQUE++++man+manualpages/Mat/MATSOLVERCLIQUE.html#MATSOLVERCLIQUE
man:+MatMkl_CPardisoSetCntl++MatMkl_CPardisoSetCntl++++man+manualpages/Mat/MatMkl_CPardisoSetCntl.html#MatMkl_CPardisoSetCntl
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:+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:+MatSeqBAIJSetPreallocationCSR++MatSeqBAIJSetPreallocationCSR++++man+manualpages/Mat/MatSeqBAIJSetPreallocationCSR.html#MatSeqBAIJSetPreallocationCSR
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:+MatCreateBAIJ++MatCreateBAIJ++++man+manualpages/Mat/MatCreateBAIJ.html#MatCreateBAIJ
man:+MatMPIBAIJSetHashTableFactor++MatMPIBAIJSetHashTableFactor++++man+manualpages/Mat/MatMPIBAIJSetHashTableFactor.html#MatMPIBAIJSetHashTableFactor
man:+MatMPIBAIJSetValuesBlocked++MatMPIBAIJSetValuesBlocked++++man+manualpages/Mat/MatMPIBAIJSetValuesBlocked.html#MatMPIBAIJSetValuesBlocked
man:+MatCreateMPIBAIJWithArrays++MatCreateMPIBAIJWithArrays++++man+manualpages/Mat/MatCreateMPIBAIJWithArrays.html#MatCreateMPIBAIJWithArrays
man:+MatMPIAdjCreateNonemptySubcommMat++MatMPIAdjCreateNonemptySubcommMat++++man+manualpages/Mat/MatMPIAdjCreateNonemptySubcommMat.html#MatMPIAdjCreateNonemptySubcommMat
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:+MatMAIJGetAIJ++MatMAIJGetAIJ++++man+manualpages/Mat/MatMAIJGetAIJ.html#MatMAIJGetAIJ
man:+MatMAIJRedimension++MatMAIJRedimension++++man+manualpages/Mat/MatMAIJRedimension.html#MatMAIJRedimension
man:+MATMAIJ++MATMAIJ++++man+manualpages/Mat/MATMAIJ.html#MATMAIJ
man:+MatCreateMAIJ++MatCreateMAIJ++++man+manualpages/Mat/MatCreateMAIJ.html#MatCreateMAIJ
man:+MatISSetPreallocation++MatISSetPreallocation++++man+manualpages/Mat/MatISSetPreallocation.html#MatISSetPreallocation
man:+MatISGetMPIXAIJ++MatISGetMPIXAIJ++++man+manualpages/Mat/MatISGetMPIXAIJ.html#MatISGetMPIXAIJ
man:+MatISGetLocalMat++MatISGetLocalMat++++man+manualpages/Mat/MatISGetLocalMat.html#MatISGetLocalMat
man:+MatISSetLocalMat++MatISSetLocalMat++++man+manualpages/Mat/MatISSetLocalMat.html#MatISSetLocalMat
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:+MatSeqSBAIJSetPreallocationCSR++MatSeqSBAIJSetPreallocationCSR++++man+manualpages/Mat/MatSeqSBAIJSetPreallocationCSR.html#MatSeqSBAIJSetPreallocationCSR
man:+MatCreateSeqSBAIJ++MatCreateSeqSBAIJ++++man+manualpages/Mat/MatCreateSeqSBAIJ.html#MatCreateSeqSBAIJ
man:+MatCreateSeqSBAIJWithArrays++MatCreateSeqSBAIJWithArrays++++man+manualpages/Mat/MatCreateSeqSBAIJWithArrays.html#MatCreateSeqSBAIJWithArrays
man:+MATSOLVERCHOLMOD++MATSOLVERCHOLMOD++++man+manualpages/Mat/MATSOLVERCHOLMOD.html#MATSOLVERCHOLMOD
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:+MatCreateSBAIJ++MatCreateSBAIJ++++man+manualpages/Mat/MatCreateSBAIJ.html#MatCreateSBAIJ
man:+MatCreateMPISBAIJWithArrays++MatCreateMPISBAIJWithArrays++++man+manualpages/Mat/MatCreateMPISBAIJWithArrays.html#MatCreateMPISBAIJWithArrays
man:+MatMPISBAIJSetPreallocationCSR++MatMPISBAIJSetPreallocationCSR++++man+manualpages/Mat/MatMPISBAIJSetPreallocationCSR.html#MatMPISBAIJSetPreallocationCSR
man:+MatCreateNormal++MatCreateNormal++++man+manualpages/Mat/MatCreateNormal.html#MatCreateNormal
man:+MatCreateNormalHermitian++MatCreateNormalHermitian++++man+manualpages/Mat/MatCreateNormalHermitian.html#MatCreateNormalHermitian
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:+MatBlockMatSetPreallocation++MatBlockMatSetPreallocation++++man+manualpages/Mat/MatBlockMatSetPreallocation.html#MatBlockMatSetPreallocation
man:+MATBLOCKMAT++MATBLOCKMAT++++man+manualpages/Mat/MATBLOCKMAT.html#MATBLOCKMAT
man:+MatCreateBlockMat++MatCreateBlockMat++++man+manualpages/Mat/MatCreateBlockMat.html#MatCreateBlockMat
man:+MATCOMPOSITE++MATCOMPOSITE++++man+manualpages/Mat/MATCOMPOSITE.html#MATCOMPOSITE
man:+MatCreateComposite++MatCreateComposite++++man+manualpages/Mat/MatCreateComposite.html#MatCreateComposite
man:+MatCompositeAddMat++MatCompositeAddMat++++man+manualpages/Mat/MatCompositeAddMat.html#MatCompositeAddMat
man:+MatCompositeSetType++MatCompositeSetType++++man+manualpages/Mat/MatCompositeSetType.html#MatCompositeSetType
man:+MatCompositeMerge++MatCompositeMerge++++man+manualpages/Mat/MatCompositeMerge.html#MatCompositeMerge
man:+MatCreateSeqCUFFT++MatCreateSeqCUFFT++++man+manualpages/Mat/MatCreateSeqCUFFT.html#MatCreateSeqCUFFT
man:+MatMFFDFinalizePackage++MatMFFDFinalizePackage++++man+manualpages/Mat/MatMFFDFinalizePackage.html#MatMFFDFinalizePackage
man:+MatMFFDInitializePackage++MatMFFDInitializePackage++++man+manualpages/Mat/MatMFFDInitializePackage.html#MatMFFDInitializePackage
man:+MatMFFDSetType++MatMFFDSetType++++man+manualpages/Mat/MatMFFDSetType.html#MatMFFDSetType
man:+MatMFFDRegister++MatMFFDRegister++++man+manualpages/Mat/MatMFFDRegister.html#MatMFFDRegister
man:+MatMFFDSetOptionsPrefix++MatMFFDSetOptionsPrefix++++man+manualpages/Mat/MatMFFDSetOptionsPrefix.html#MatMFFDSetOptionsPrefix
man:+MATMFFD++MATMFFD++++man+manualpages/Mat/MATMFFD.html#MATMFFD
man:+MatCreateMFFD++MatCreateMFFD++++man+manualpages/Mat/MatCreateMFFD.html#MatCreateMFFD
man:+MatMFFDGetH++MatMFFDGetH++++man+manualpages/Mat/MatMFFDGetH.html#MatMFFDGetH
man:+MatMFFDSetFunction++MatMFFDSetFunction++++man+manualpages/Mat/MatMFFDSetFunction.html#MatMFFDSetFunction
man:+MatMFFDSetFunctioni++MatMFFDSetFunctioni++++man+manualpages/Mat/MatMFFDSetFunctioni.html#MatMFFDSetFunctioni
man:+MatMFFDSetFunctioniBase++MatMFFDSetFunctioniBase++++man+manualpages/Mat/MatMFFDSetFunctioniBase.html#MatMFFDSetFunctioniBase
man:+MatMFFDSetPeriod++MatMFFDSetPeriod++++man+manualpages/Mat/MatMFFDSetPeriod.html#MatMFFDSetPeriod
man:+MatMFFDSetFunctionError++MatMFFDSetFunctionError++++man+manualpages/Mat/MatMFFDSetFunctionError.html#MatMFFDSetFunctionError
man:+MatMFFDSetHHistory++MatMFFDSetHHistory++++man+manualpages/Mat/MatMFFDSetHHistory.html#MatMFFDSetHHistory
man:+MatMFFDResetHHistory++MatMFFDResetHHistory++++man+manualpages/Mat/MatMFFDResetHHistory.html#MatMFFDResetHHistory
man:+MatMFFDSetBase++MatMFFDSetBase++++man+manualpages/Mat/MatMFFDSetBase.html#MatMFFDSetBase
man:+MatMFFDSetCheckh++MatMFFDSetCheckh++++man+manualpages/Mat/MatMFFDSetCheckh.html#MatMFFDSetCheckh
man:+MatMFFDCheckPositivity++MatMFFDCheckPositivity++++man+manualpages/Mat/MatMFFDCheckPositivity.html#MatMFFDCheckPositivity
man:+MatMFFDDSSetUmin++MatMFFDDSSetUmin++++man+manualpages/Mat/MatMFFDDSSetUmin.html#MatMFFDDSSetUmin
man:+MATMFFD_DS++MATMFFD_DS++++man+manualpages/Mat/MATMFFD_DS.html#MATMFFD_DS
man:+MatMFFDRegisterAll++MatMFFDRegisterAll++++man+manualpages/Mat/MatMFFDRegisterAll.html#MatMFFDRegisterAll
man:+MATMFFD_WP++MATMFFD_WP++++man+manualpages/Mat/MATMFFD_WP.html#MATMFFD_WP
man:+MatMFFDWPSetComputeNormU++MatMFFDWPSetComputeNormU++++man+manualpages/Mat/MatMFFDWPSetComputeNormU.html#MatMFFDWPSetComputeNormU
man:+MatCreateTranspose++MatCreateTranspose++++man+manualpages/Mat/MatCreateTranspose.html#MatCreateTranspose
man:+MatCreateHermitianTranspose++MatCreateHermitianTranspose++++man+manualpages/Mat/MatCreateHermitianTranspose.html#MatCreateHermitianTranspose
man:+MatPythonSetType++MatPythonSetType++++man+manualpages/Mat/MatPythonSetType.html#MatPythonSetType
man:+MatPythonCreate++MatPythonCreate++++man+manualpages/Mat/MatPythonCreate.html#MatPythonCreate
man:+MatCreateSubMatrix++MatCreateSubMatrix++++man+manualpages/Mat/MatCreateSubMatrix.html#MatCreateSubMatrix
man:+MatSubMatrixUpdate++MatSubMatrixUpdate++++man+manualpages/Mat/MatSubMatrixUpdate.html#MatSubMatrixUpdate
man:+MatCreateLocalRef++MatCreateLocalRef++++man+manualpages/Mat/MatCreateLocalRef.html#MatCreateLocalRef
man:+MatNestGetSubMat++MatNestGetSubMat++++man+manualpages/Mat/MatNestGetSubMat.html#MatNestGetSubMat
man:+MatNestSetSubMat++MatNestSetSubMat++++man+manualpages/Mat/MatNestSetSubMat.html#MatNestSetSubMat
man:+MatNestGetSubMats++MatNestGetSubMats++++man+manualpages/Mat/MatNestGetSubMats.html#MatNestGetSubMats
man:+MatNestGetSize++MatNestGetSize++++man+manualpages/Mat/MatNestGetSize.html#MatNestGetSize
man:+MatNestGetISs++MatNestGetISs++++man+manualpages/Mat/MatNestGetISs.html#MatNestGetISs
man:+MatNestGetLocalISs++MatNestGetLocalISs++++man+manualpages/Mat/MatNestGetLocalISs.html#MatNestGetLocalISs
man:+MatNestSetVecType++MatNestSetVecType++++man+manualpages/Mat/MatNestSetVecType.html#MatNestSetVecType
man:+MatNestSetSubMats++MatNestSetSubMats++++man+manualpages/Mat/MatNestSetSubMats.html#MatNestSetSubMats
man:+MatCreateNest++MatCreateNest++++man+manualpages/Mat/MatCreateNest.html#MatCreateNest
man:+MATNEST++MATNEST++++man+manualpages/Mat/MATNEST.html#MATNEST
man:+MatCreateFFT++MatCreateFFT++++man+manualpages/Mat/MatCreateFFT.html#MatCreateFFT
man:+MatCreateVecsFFTW++MatCreateVecsFFTW++++man+manualpages/Mat/MatCreateVecsFFTW.html#MatCreateVecsFFTW
man:+VecScatterPetscToFFTW++VecScatterPetscToFFTW++++man+manualpages/Mat/VecScatterPetscToFFTW.html#VecScatterPetscToFFTW
man:+VecScatterFFTWToPetsc++VecScatterFFTWToPetsc++++man+manualpages/Mat/VecScatterFFTWToPetsc.html#VecScatterFFTWToPetsc
man:+PetscElementalInitializePackage++PetscElementalInitializePackage++++man+manualpages/Mat/PetscElementalInitializePackage.html#PetscElementalInitializePackage
man:+PetscElementalFinalizePackage++PetscElementalFinalizePackage++++man+manualpages/Mat/PetscElementalFinalizePackage.html#PetscElementalFinalizePackage
man:+MatElementalHermitianGenDefEig++MatElementalHermitianGenDefEig++++man+manualpages/Mat/MatElementalHermitianGenDefEig.html#MatElementalHermitianGenDefEig
man:+MATELEMENTAL++MATELEMENTAL++++man+manualpages/Mat/MATELEMENTAL.html#MATELEMENTAL
man:+MatPreallocatorPreallocate++MatPreallocatorPreallocate++++man+manualpages/Mat/MatPreallocatorPreallocate.html#MatPreallocatorPreallocate
man:+MATPREALLOCATOR++MATPREALLOCATOR++++man+manualpages/Mat/MATPREALLOCATOR.html#MATPREALLOCATOR
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:+MatChop++MatChop++++man+manualpages/Mat/MatChop.html#MatChop
man:+MatReorderForNonzeroDiagonal++MatReorderForNonzeroDiagonal++++man+manualpages/Mat/MatReorderForNonzeroDiagonal.html#MatReorderForNonzeroDiagonal
man:+MatGetColumnVector++MatGetColumnVector++++man+manualpages/Mat/MatGetColumnVector.html#MatGetColumnVector
man:+MatGetColumnNorms++MatGetColumnNorms++++man+manualpages/Mat/MatGetColumnNorms.html#MatGetColumnNorms
man:+MatCreate++MatCreate++++man+manualpages/Mat/MatCreate.html#MatCreate
man:+MatSetErrorIfFailure++MatSetErrorIfFailure++++man+manualpages/Mat/MatSetErrorIfFailure.html#MatSetErrorIfFailure
man:+MatSetSizes++MatSetSizes++++man+manualpages/Mat/MatSetSizes.html#MatSetSizes
man:+MatSetFromOptions++MatSetFromOptions++++man+manualpages/Mat/MatSetFromOptions.html#MatSetFromOptions
man:+MatXAIJSetPreallocation++MatXAIJSetPreallocation++++man+manualpages/Mat/MatXAIJSetPreallocation.html#MatXAIJSetPreallocation
man:+MatCheckCompressedRow++MatCheckCompressedRow++++man+manualpages/Mat/MatCheckCompressedRow.html#MatCheckCompressedRow
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:+MatMatMultEqual++MatMatMultEqual++++man+manualpages/Mat/MatMatMultEqual.html#MatMatMultEqual
man:+MatTransposeMatMultEqual++MatTransposeMatMultEqual++++man+manualpages/Mat/MatTransposeMatMultEqual.html#MatTransposeMatMultEqual
man:+MatComputeBandwidth++MatComputeBandwidth++++man+manualpages/Mat/MatComputeBandwidth.html#MatComputeBandwidth
man:+MatFDColoringView++MatFDColoringView++++man+manualpages/MatFD/MatFDColoringView.html#MatFDColoringView
man:+MatFDColoringSetParameters++MatFDColoringSetParameters++++man+manualpages/MatFD/MatFDColoringSetParameters.html#MatFDColoringSetParameters
man:+MatFDColoringSetBlockSize++MatFDColoringSetBlockSize++++man+manualpages/MatFD/MatFDColoringSetBlockSize.html#MatFDColoringSetBlockSize
man:+MatFDColoringSetUp++MatFDColoringSetUp++++man+manualpages/MatFD/MatFDColoringSetUp.html#MatFDColoringSetUp
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:+MatFDColoringSetType++MatFDColoringSetType++++man+manualpages/MatFD/MatFDColoringSetType.html#MatFDColoringSetType
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:+MatPartitioningRegister++MatPartitioningRegister++++man+manualpages/MatOrderings/MatPartitioningRegister.html#MatPartitioningRegister
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:+MatPartitioningChacoGetGlobal++MatPartitioningChacoGetGlobal++++man+manualpages/MatOrderings/MatPartitioningChacoGetGlobal.html#MatPartitioningChacoGetGlobal
man:+MatPartitioningChacoSetLocal++MatPartitioningChacoSetLocal++++man+manualpages/MatOrderings/MatPartitioningChacoSetLocal.html#MatPartitioningChacoSetLocal
man:+MatPartitioningChacoGetLocal++MatPartitioningChacoGetLocal++++man+manualpages/MatOrderings/MatPartitioningChacoGetLocal.html#MatPartitioningChacoGetLocal
man:+MatPartitioningChacoSetCoarseLevel++MatPartitioningChacoSetCoarseLevel++++man+manualpages/MatOrderings/MatPartitioningChacoSetCoarseLevel.html#MatPartitioningChacoSetCoarseLevel
man:+MatPartitioningChacoSetEigenSolver++MatPartitioningChacoSetEigenSolver++++man+manualpages/MatOrderings/MatPartitioningChacoSetEigenSolver.html#MatPartitioningChacoSetEigenSolver
man:+MatPartitioningChacoGetEigenSolver++MatPartitioningChacoGetEigenSolver++++man+manualpages/MatOrderings/MatPartitioningChacoGetEigenSolver.html#MatPartitioningChacoGetEigenSolver
man:+MatPartitioningChacoSetEigenTol++MatPartitioningChacoSetEigenTol++++man+manualpages/MatOrderings/MatPartitioningChacoSetEigenTol.html#MatPartitioningChacoSetEigenTol
man:+MatPartitioningChacoGetEigenTol++MatPartitioningChacoGetEigenTol++++man+manualpages/MatOrderings/MatPartitioningChacoGetEigenTol.html#MatPartitioningChacoGetEigenTol
man:+MatPartitioningChacoSetEigenNumber++MatPartitioningChacoSetEigenNumber++++man+manualpages/MatOrderings/MatPartitioningChacoSetEigenNumber.html#MatPartitioningChacoSetEigenNumber
man:+MatPartitioningChacoGetEigenNumber++MatPartitioningChacoGetEigenNumber++++man+manualpages/MatOrderings/MatPartitioningChacoGetEigenNumber.html#MatPartitioningChacoGetEigenNumber
man:+MATPARTITIONINGCHACO++MATPARTITIONINGCHACO++++man+manualpages/MatOrderings/MATPARTITIONINGCHACO.html#MATPARTITIONINGCHACO
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:+MATPARTITIONINGPARTY++MATPARTITIONINGPARTY++++man+manualpages/MatOrderings/MATPARTITIONINGPARTY.html#MATPARTITIONINGPARTY
man:+MatPartitioningParmetisSetCoarseSequential++MatPartitioningParmetisSetCoarseSequential++++man+manualpages/MatOrderings/MatPartitioningParmetisSetCoarseSequential.html#MatPartitioningParmetisSetCoarseSequential
man:+MatPartitioningParmetisSetRepartition++MatPartitioningParmetisSetRepartition++++man+manualpages/MatOrderings/MatPartitioningParmetisSetRepartition.html#MatPartitioningParmetisSetRepartition
man:+MatPartitioningParmetisGetEdgeCut++MatPartitioningParmetisGetEdgeCut++++man+manualpages/MatOrderings/MatPartitioningParmetisGetEdgeCut.html#MatPartitioningParmetisGetEdgeCut
man:+MATPARTITIONINGPARMETIS++MATPARTITIONINGPARMETIS++++man+manualpages/MatOrderings/MATPARTITIONINGPARMETIS.html#MATPARTITIONINGPARMETIS
man:+MatMeshToVertexGraph++MatMeshToVertexGraph++++man+manualpages/MatOrderings/MatMeshToVertexGraph.html#MatMeshToVertexGraph
man:+MatMeshToCellGraph++MatMeshToCellGraph++++man+manualpages/MatOrderings/MatMeshToCellGraph.html#MatMeshToCellGraph
man:+MatPartitioningPTScotchSetImbalance++MatPartitioningPTScotchSetImbalance++++man+manualpages/MatOrderings/MatPartitioningPTScotchSetImbalance.html#MatPartitioningPTScotchSetImbalance
man:+MatPartitioningPTScotchGetImbalance++MatPartitioningPTScotchGetImbalance++++man+manualpages/MatOrderings/MatPartitioningPTScotchGetImbalance.html#MatPartitioningPTScotchGetImbalance
man:+MatPartitioningPTScotchSetStrategy++MatPartitioningPTScotchSetStrategy++++man+manualpages/MatOrderings/MatPartitioningPTScotchSetStrategy.html#MatPartitioningPTScotchSetStrategy
man:+MatPartitioningPTScotchGetStrategy++MatPartitioningPTScotchGetStrategy++++man+manualpages/MatOrderings/MatPartitioningPTScotchGetStrategy.html#MatPartitioningPTScotchGetStrategy
man:+MATPARTITIONINGPTSCOTCH++MATPARTITIONINGPTSCOTCH++++man+manualpages/MatOrderings/MATPARTITIONINGPTSCOTCH.html#MATPARTITIONINGPTSCOTCH
man:+MATPARTITIONINGHIERARCHPART++MATPARTITIONINGHIERARCHPART++++man+manualpages/MatOrderings/MATPARTITIONINGHIERARCHPART.html#MATPARTITIONINGHIERARCHPART
man:+MatCoarsenRegister++MatCoarsenRegister++++man+manualpages/MatOrderings/MatCoarsenRegister.html#MatCoarsenRegister
man:+MatCoarsenGetType++MatCoarsenGetType++++man+manualpages/MatOrderings/MatCoarsenGetType.html#MatCoarsenGetType
man:+MatCoarsenApply++MatCoarsenApply++++man+manualpages/MatOrderings/MatCoarsenApply.html#MatCoarsenApply
man:+MatCoarsenSetAdjacency++MatCoarsenSetAdjacency++++man+manualpages/MatOrderings/MatCoarsenSetAdjacency.html#MatCoarsenSetAdjacency
man:+MatCoarsenSetStrictAggs++MatCoarsenSetStrictAggs++++man+manualpages/MatOrderings/MatCoarsenSetStrictAggs.html#MatCoarsenSetStrictAggs
man:+MatCoarsenDestroy++MatCoarsenDestroy++++man+manualpages/MatOrderings/MatCoarsenDestroy.html#MatCoarsenDestroy
man:+MatCoarsenCreate++MatCoarsenCreate++++man+manualpages/MatOrderings/MatCoarsenCreate.html#MatCoarsenCreate
man:+MatCoarsenView++MatCoarsenView++++man+manualpages/MatOrderings/MatCoarsenView.html#MatCoarsenView
man:+MatCoarsenSetType++MatCoarsenSetType++++man+manualpages/MatOrderings/MatCoarsenSetType.html#MatCoarsenSetType
man:+MatCoarsenSetGreedyOrdering++MatCoarsenSetGreedyOrdering++++man+manualpages/MatOrderings/MatCoarsenSetGreedyOrdering.html#MatCoarsenSetGreedyOrdering
man:+MatCoarsenGetData++MatCoarsenGetData++++man+manualpages/MatOrderings/MatCoarsenGetData.html#MatCoarsenGetData
man:+MatCoarsenSetFromOptions++MatCoarsenSetFromOptions++++man+manualpages/MatOrderings/MatCoarsenSetFromOptions.html#MatCoarsenSetFromOptions
man:+MatCoarsenRegisterAll++MatCoarsenRegisterAll++++man+manualpages/MatOrderings/MatCoarsenRegisterAll.html#MatCoarsenRegisterAll
man:+MATCOARSENMIS++MATCOARSENMIS++++man+manualpages/MatOrderings/MATCOARSENMIS.html#MATCOARSENMIS
man:+MATCOARSENHEM++MATCOARSENHEM++++man+manualpages/MatOrderings/MATCOARSENHEM.html#MATCOARSENHEM
man:+MatOrderingRegister++MatOrderingRegister++++man+manualpages/MatOrderings/MatOrderingRegister.html#MatOrderingRegister
man:+MatGetOrdering++MatGetOrdering++++man+manualpages/MatOrderings/MatGetOrdering.html#MatGetOrdering
man:+MatCreateLaplacian++MatCreateLaplacian++++man+manualpages/MatOrderings/MatCreateLaplacian.html#MatCreateLaplacian
man:+MatOrderingRegisterAll++MatOrderingRegisterAll++++man+manualpages/MatOrderings/MatOrderingRegisterAll.html#MatOrderingRegisterAll
man:+MatColoringRegister++MatColoringRegister++++man+manualpages/MatOrderings/MatColoringRegister.html#MatColoringRegister
man:+MatColoringCreate++MatColoringCreate++++man+manualpages/MatOrderings/MatColoringCreate.html#MatColoringCreate
man:+MatColoringDestroy++MatColoringDestroy++++man+manualpages/MatOrderings/MatColoringDestroy.html#MatColoringDestroy
man:+MatColoringSetType++MatColoringSetType++++man+manualpages/MatOrderings/MatColoringSetType.html#MatColoringSetType
man:+MatColoringSetFromOptions++MatColoringSetFromOptions++++man+manualpages/MatOrderings/MatColoringSetFromOptions.html#MatColoringSetFromOptions
man:+MatColoringSetDistance++MatColoringSetDistance++++man+manualpages/MatOrderings/MatColoringSetDistance.html#MatColoringSetDistance
man:+MatColoringGetDistance++MatColoringGetDistance++++man+manualpages/MatOrderings/MatColoringGetDistance.html#MatColoringGetDistance
man:+MatColoringSetMaxColors++MatColoringSetMaxColors++++man+manualpages/MatOrderings/MatColoringSetMaxColors.html#MatColoringSetMaxColors
man:+MatColoringGetMaxColors++MatColoringGetMaxColors++++man+manualpages/MatOrderings/MatColoringGetMaxColors.html#MatColoringGetMaxColors
man:+MatColoringApply++MatColoringApply++++man+manualpages/MatOrderings/MatColoringApply.html#MatColoringApply
man:+MatColoringView++MatColoringView++++man+manualpages/MatOrderings/MatColoringView.html#MatColoringView
man:+MatColoringSetWeightType++MatColoringSetWeightType++++man+manualpages/MatOrderings/MatColoringSetWeightType.html#MatColoringSetWeightType
man:+MatColoringRegisterAll++MatColoringRegisterAll++++man+manualpages/MatOrderings/MatColoringRegisterAll.html#MatColoringRegisterAll
man:+MATCOLORINGJP++MATCOLORINGJP++++man+manualpages/MatOrderings/MATCOLORINGJP.html#MATCOLORINGJP
man:+MATCOLORINGGREEDY++MATCOLORINGGREEDY++++man+manualpages/MatOrderings/MATCOLORINGGREEDY.html#MATCOLORINGGREEDY
man:+MATCOLORINGPOWER++MATCOLORINGPOWER++++man+manualpages/MatOrderings/MATCOLORINGPOWER.html#MATCOLORINGPOWER
man:+DMType++DMType++++man+manualpages/DM/DMType.html#DMType
man:+DM++DM++++man+manualpages/DM/DM.html#DM
man:+DMBoundaryType++DMBoundaryType++++man+manualpages/DM/DMBoundaryType.html#DMBoundaryType
man:+PetscPartitioner++PetscPartitioner++++man+manualpages/DM/PetscPartitioner.html#PetscPartitioner
man:+DMPATCH++DMPATCH++++man+manualpages/DM/DMPATCH.html#DMPATCH
man:+PetscPartitionerType++PetscPartitionerType++++man+manualpages/DM/PetscPartitionerType.html#PetscPartitionerType
man:+DMLabel++DMLabel++++man+manualpages/DM/DMLabel.html#DMLabel
man:+DMDACreate2d++DMDACreate2d++++man+manualpages/DM/DMDACreate2d.html#DMDACreate2d
man:+DMDACreate1d++DMDACreate1d++++man+manualpages/DM/DMDACreate1d.html#DMDACreate1d
man:+DMDACreate3d++DMDACreate3d++++man+manualpages/DM/DMDACreate3d.html#DMDACreate3d
man:+DMDAGetGhostCorners++DMDAGetGhostCorners++++man+manualpages/DM/DMDAGetGhostCorners.html#DMDAGetGhostCorners
man:+DMDASetFieldName++DMDASetFieldName++++man+manualpages/DM/DMDASetFieldName.html#DMDASetFieldName
man:+DMDAGetFieldNames++DMDAGetFieldNames++++man+manualpages/DM/DMDAGetFieldNames.html#DMDAGetFieldNames
man:+DMDASetFieldNames++DMDASetFieldNames++++man+manualpages/DM/DMDASetFieldNames.html#DMDASetFieldNames
man:+DMDAGetFieldName++DMDAGetFieldName++++man+manualpages/DM/DMDAGetFieldName.html#DMDAGetFieldName
man:+DMDASetCoordinateName++DMDASetCoordinateName++++man+manualpages/DM/DMDASetCoordinateName.html#DMDASetCoordinateName
man:+DMDAGetCoordinateName++DMDAGetCoordinateName++++man+manualpages/DM/DMDAGetCoordinateName.html#DMDAGetCoordinateName
man:+DMDAGetCorners++DMDAGetCorners++++man+manualpages/DM/DMDAGetCorners.html#DMDAGetCorners
man:+DMDAGetLocalBoundingBox++DMDAGetLocalBoundingBox++++man+manualpages/DM/DMDAGetLocalBoundingBox.html#DMDAGetLocalBoundingBox
man:+DMDAGetBoundingBox++DMDAGetBoundingBox++++man+manualpages/DM/DMDAGetBoundingBox.html#DMDAGetBoundingBox
man:+DMDAGetReducedDMDA++DMDAGetReducedDMDA++++man+manualpages/DM/DMDAGetReducedDMDA.html#DMDAGetReducedDMDA
man:+DMDAGetCoordinateArray++DMDAGetCoordinateArray++++man+manualpages/DM/DMDAGetCoordinateArray.html#DMDAGetCoordinateArray
man:+DMDARestoreCoordinateArray++DMDARestoreCoordinateArray++++man+manualpages/DM/DMDARestoreCoordinateArray.html#DMDARestoreCoordinateArray
man:+DMDAGlobalToNaturalBegin++DMDAGlobalToNaturalBegin++++man+manualpages/DM/DMDAGlobalToNaturalBegin.html#DMDAGlobalToNaturalBegin
man:+DMDAGlobalToNaturalEnd++DMDAGlobalToNaturalEnd++++man+manualpages/DM/DMDAGlobalToNaturalEnd.html#DMDAGlobalToNaturalEnd
man:+DMDANaturalToGlobalBegin++DMDANaturalToGlobalBegin++++man+manualpages/DM/DMDANaturalToGlobalBegin.html#DMDANaturalToGlobalBegin
man:+DMDANaturalToGlobalEnd++DMDANaturalToGlobalEnd++++man+manualpages/DM/DMDANaturalToGlobalEnd.html#DMDANaturalToGlobalEnd
man:+DMDASetAOType++DMDASetAOType++++man+manualpages/DM/DMDASetAOType.html#DMDASetAOType
man:+DMDAGetAO++DMDAGetAO++++man+manualpages/DM/DMDAGetAO.html#DMDAGetAO
man:+DMDAGetScatter++DMDAGetScatter++++man+manualpages/DM/DMDAGetScatter.html#DMDAGetScatter
man:+DMDA++DMDA++++man+manualpages/DM/DMDA.html#DMDA
man:+DMDACreate++DMDACreate++++man+manualpages/DM/DMDACreate.html#DMDACreate
man:+DMDAGetNumCells++DMDAGetNumCells++++man+manualpages/DM/DMDAGetNumCells.html#DMDAGetNumCells
man:+DMDAGetCellPoint++DMDAGetCellPoint++++man+manualpages/DM/DMDAGetCellPoint.html#DMDAGetCellPoint
man:+DMDACreateSection++DMDACreateSection++++man+manualpages/DM/DMDACreateSection.html#DMDACreateSection
man:+DMDAGetArray++DMDAGetArray++++man+manualpages/DM/DMDAGetArray.html#DMDAGetArray
man:+DMDARestoreArray++DMDARestoreArray++++man+manualpages/DM/DMDARestoreArray.html#DMDARestoreArray
man:+DMDACreateNaturalVector++DMDACreateNaturalVector++++man+manualpages/DM/DMDACreateNaturalVector.html#DMDACreateNaturalVector
man:+DMDAGetInfo++DMDAGetInfo++++man+manualpages/DM/DMDAGetInfo.html#DMDAGetInfo
man:+DMDAGetLocalInfo++DMDAGetLocalInfo++++man+manualpages/DM/DMDAGetLocalInfo.html#DMDAGetLocalInfo
man:+DMDAGetLogicalCoordinate++DMDAGetLogicalCoordinate++++man+manualpages/DM/DMDAGetLogicalCoordinate.html#DMDAGetLogicalCoordinate
man:+DMDAGetRay++DMDAGetRay++++man+manualpages/DM/DMDAGetRay.html#DMDAGetRay
man:+DMDAGetProcessorSubset++DMDAGetProcessorSubset++++man+manualpages/DM/DMDAGetProcessorSubset.html#DMDAGetProcessorSubset
man:+DMDAGetProcessorSubsets++DMDAGetProcessorSubsets++++man+manualpages/DM/DMDAGetProcessorSubsets.html#DMDAGetProcessorSubsets
man:+DMDASetUniformCoordinates++DMDASetUniformCoordinates++++man+manualpages/DM/DMDASetUniformCoordinates.html#DMDASetUniformCoordinates
man:+DMDAGlobalToNaturalAllCreate++DMDAGlobalToNaturalAllCreate++++man+manualpages/DM/DMDAGlobalToNaturalAllCreate.html#DMDAGlobalToNaturalAllCreate
man:+DMDANaturalAllToGlobalCreate++DMDANaturalAllToGlobalCreate++++man+manualpages/DM/DMDANaturalAllToGlobalCreate.html#DMDANaturalAllToGlobalCreate
man:+DMCreateInterpolationScale++DMCreateInterpolationScale++++man+manualpages/DM/DMCreateInterpolationScale.html#DMCreateInterpolationScale
man:+DMDACreatePF++DMDACreatePF++++man+manualpages/DM/DMDACreatePF.html#DMDACreatePF
man:+DMDAVecGetArray++DMDAVecGetArray++++man+manualpages/DM/DMDAVecGetArray.html#DMDAVecGetArray
man:+DMDAVecRestoreArray++DMDAVecRestoreArray++++man+manualpages/DM/DMDAVecRestoreArray.html#DMDAVecRestoreArray
man:+DMDAVecGetArrayDOF++DMDAVecGetArrayDOF++++man+manualpages/DM/DMDAVecGetArrayDOF.html#DMDAVecGetArrayDOF
man:+DMDAVecRestoreArrayDOF++DMDAVecRestoreArrayDOF++++man+manualpages/DM/DMDAVecRestoreArrayDOF.html#DMDAVecRestoreArrayDOF
man:+DMDAVecGetArrayRead++DMDAVecGetArrayRead++++man+manualpages/DM/DMDAVecGetArrayRead.html#DMDAVecGetArrayRead
man:+DMDAVecRestoreArrayRead++DMDAVecRestoreArrayRead++++man+manualpages/DM/DMDAVecRestoreArrayRead.html#DMDAVecRestoreArrayRead
man:+DMDAVecGetArrayDOFRead++DMDAVecGetArrayDOFRead++++man+manualpages/DM/DMDAVecGetArrayDOFRead.html#DMDAVecGetArrayDOFRead
man:+DMDAVecRestoreArrayDOFRead++DMDAVecRestoreArrayDOFRead++++man+manualpages/DM/DMDAVecRestoreArrayDOFRead.html#DMDAVecRestoreArrayDOFRead
man:+DMDASetElementType++DMDASetElementType++++man+manualpages/DM/DMDASetElementType.html#DMDASetElementType
man:+DMDAGetElementType++DMDAGetElementType++++man+manualpages/DM/DMDAGetElementType.html#DMDAGetElementType
man:+DMDAGetElements++DMDAGetElements++++man+manualpages/DM/DMDAGetElements.html#DMDAGetElements
man:+DMDARestoreElements++DMDARestoreElements++++man+manualpages/DM/DMDARestoreElements.html#DMDARestoreElements
man:+DMDASetSizes++DMDASetSizes++++man+manualpages/DM/DMDASetSizes.html#DMDASetSizes
man:+DMDASetNumProcs++DMDASetNumProcs++++man+manualpages/DM/DMDASetNumProcs.html#DMDASetNumProcs
man:+DMDASetBoundaryType++DMDASetBoundaryType++++man+manualpages/DM/DMDASetBoundaryType.html#DMDASetBoundaryType
man:+DMDASetDof++DMDASetDof++++man+manualpages/DM/DMDASetDof.html#DMDASetDof
man:+DMDAGetDof++DMDAGetDof++++man+manualpages/DM/DMDAGetDof.html#DMDAGetDof
man:+DMDAGetOverlap++DMDAGetOverlap++++man+manualpages/DM/DMDAGetOverlap.html#DMDAGetOverlap
man:+DMDASetOverlap++DMDASetOverlap++++man+manualpages/DM/DMDASetOverlap.html#DMDASetOverlap
man:+DMDAGetNumLocalSubDomains++DMDAGetNumLocalSubDomains++++man+manualpages/DM/DMDAGetNumLocalSubDomains.html#DMDAGetNumLocalSubDomains
man:+DMDASetNumLocalSubDomains++DMDASetNumLocalSubDomains++++man+manualpages/DM/DMDASetNumLocalSubDomains.html#DMDASetNumLocalSubDomains
man:+DMDASetOffset++DMDASetOffset++++man+manualpages/DM/DMDASetOffset.html#DMDASetOffset
man:+DMDAGetOffset++DMDAGetOffset++++man+manualpages/DM/DMDAGetOffset.html#DMDAGetOffset
man:+DMDAGetNonOverlappingRegion++DMDAGetNonOverlappingRegion++++man+manualpages/DM/DMDAGetNonOverlappingRegion.html#DMDAGetNonOverlappingRegion
man:+DMDASetNonOverlappingRegion++DMDASetNonOverlappingRegion++++man+manualpages/DM/DMDASetNonOverlappingRegion.html#DMDASetNonOverlappingRegion
man:+DMDASetStencilType++DMDASetStencilType++++man+manualpages/DM/DMDASetStencilType.html#DMDASetStencilType
man:+DMDAGetStencilType++DMDAGetStencilType++++man+manualpages/DM/DMDAGetStencilType.html#DMDAGetStencilType
man:+DMDASetStencilWidth++DMDASetStencilWidth++++man+manualpages/DM/DMDASetStencilWidth.html#DMDASetStencilWidth
man:+DMDAGetStencilWidth++DMDAGetStencilWidth++++man+manualpages/DM/DMDAGetStencilWidth.html#DMDAGetStencilWidth
man:+DMDASetOwnershipRanges++DMDASetOwnershipRanges++++man+manualpages/DM/DMDASetOwnershipRanges.html#DMDASetOwnershipRanges
man:+DMDASetInterpolationType++DMDASetInterpolationType++++man+manualpages/DM/DMDASetInterpolationType.html#DMDASetInterpolationType
man:+DMDAGetInterpolationType++DMDAGetInterpolationType++++man+manualpages/DM/DMDAGetInterpolationType.html#DMDAGetInterpolationType
man:+DMDAGetNeighbors++DMDAGetNeighbors++++man+manualpages/DM/DMDAGetNeighbors.html#DMDAGetNeighbors
man:+DMDAGetOwnershipRanges++DMDAGetOwnershipRanges++++man+manualpages/DM/DMDAGetOwnershipRanges.html#DMDAGetOwnershipRanges
man:+DMDASetRefinementFactor++DMDASetRefinementFactor++++man+manualpages/DM/DMDASetRefinementFactor.html#DMDASetRefinementFactor
man:+DMDAGetRefinementFactor++DMDAGetRefinementFactor++++man+manualpages/DM/DMDAGetRefinementFactor.html#DMDAGetRefinementFactor
man:+DMDASetGetMatrix++DMDASetGetMatrix++++man+manualpages/DM/DMDASetGetMatrix.html#DMDASetGetMatrix
man:+DMDASetBlockFills++DMDASetBlockFills++++man+manualpages/DM/DMDASetBlockFills.html#DMDASetBlockFills
man:+MatSetupDM++MatSetupDM++++man+manualpages/DM/MatSetupDM.html#MatSetupDM
man:+DMDAVTKWriteAll++DMDAVTKWriteAll++++man+manualpages/DM/DMDAVTKWriteAll.html#DMDAVTKWriteAll
man:+DMDAConvertToCell++DMDAConvertToCell++++man+manualpages/DM/DMDAConvertToCell.html#DMDAConvertToCell
man:+DMDACreatePatchIS++DMDACreatePatchIS++++man+manualpages/DM/DMDACreatePatchIS.html#DMDACreatePatchIS
man:+DMDASetPreallocationCenterDimension++DMDASetPreallocationCenterDimension++++man+manualpages/DM/DMDASetPreallocationCenterDimension.html#DMDASetPreallocationCenterDimension
man:+DMDAGetPreallocationCenterDimension++DMDAGetPreallocationCenterDimension++++man+manualpages/DM/DMDAGetPreallocationCenterDimension.html#DMDAGetPreallocationCenterDimension
man:+DMDA_STENCIL_STAR++DMDA_STENCIL_STAR++++man+manualpages/DM/DMDA_STENCIL_STAR.html#DMDA_STENCIL_STAR
man:+DMDA_STENCIL_BOX++DMDA_STENCIL_BOX++++man+manualpages/DM/DMDA_STENCIL_BOX.html#DMDA_STENCIL_BOX
man:+DMDACoor2d++DMDACoor2d++++man+manualpages/DM/DMDACoor2d.html#DMDACoor2d
man:+DMDACoor3d++DMDACoor3d++++man+manualpages/DM/DMDACoor3d.html#DMDACoor3d
man:+DMDAStencilType++DMDAStencilType++++man+manualpages/DM/DMDAStencilType.html#DMDAStencilType
man:+DMDAInterpolationType++DMDAInterpolationType++++man+manualpages/DM/DMDAInterpolationType.html#DMDAInterpolationType
man:+DMDAElementType++DMDAElementType++++man+manualpages/DM/DMDAElementType.html#DMDAElementType
man:+DMDALocalInfo++DMDALocalInfo++++man+manualpages/DM/DMDALocalInfo.html#DMDALocalInfo
man:+MatCreateSeqUSFFT++MatCreateSeqUSFFT++++man+manualpages/DM/MatCreateSeqUSFFT.html#MatCreateSeqUSFFT
man:+MATHYPRESTRUCT++MATHYPRESTRUCT++++man+manualpages/DM/MATHYPRESTRUCT.html#MATHYPRESTRUCT
man:+MATHYPRESSTRUCT++MATHYPRESSTRUCT++++man+manualpages/DM/MATHYPRESSTRUCT.html#MATHYPRESSTRUCT
man:+DMSlicedSetGhosts++DMSlicedSetGhosts++++man+manualpages/DM/DMSlicedSetGhosts.html#DMSlicedSetGhosts
man:+DMSlicedSetPreallocation++DMSlicedSetPreallocation++++man+manualpages/DM/DMSlicedSetPreallocation.html#DMSlicedSetPreallocation
man:+DMSlicedSetBlockFills++DMSlicedSetBlockFills++++man+manualpages/DM/DMSlicedSetBlockFills.html#DMSlicedSetBlockFills
man:+DMSLICED++DMSLICED++++man+manualpages/DM/DMSLICED.html#DMSLICED
man:+DMSlicedCreate++DMSlicedCreate++++man+manualpages/DM/DMSlicedCreate.html#DMSlicedCreate
man:+DMCompositeSetCoupling++DMCompositeSetCoupling++++man+manualpages/DM/DMCompositeSetCoupling.html#DMCompositeSetCoupling
man:+DMCompositeGetNumberDM++DMCompositeGetNumberDM++++man+manualpages/DM/DMCompositeGetNumberDM.html#DMCompositeGetNumberDM
man:+DMCompositeGetAccess++DMCompositeGetAccess++++man+manualpages/DM/DMCompositeGetAccess.html#DMCompositeGetAccess
man:+DMCompositeGetAccessArray++DMCompositeGetAccessArray++++man+manualpages/DM/DMCompositeGetAccessArray.html#DMCompositeGetAccessArray
man:+DMCompositeRestoreAccess++DMCompositeRestoreAccess++++man+manualpages/DM/DMCompositeRestoreAccess.html#DMCompositeRestoreAccess
man:+DMCompositeRestoreAccessArray++DMCompositeRestoreAccessArray++++man+manualpages/DM/DMCompositeRestoreAccessArray.html#DMCompositeRestoreAccessArray
man:+DMCompositeScatter++DMCompositeScatter++++man+manualpages/DM/DMCompositeScatter.html#DMCompositeScatter
man:+DMCompositeScatterArray++DMCompositeScatterArray++++man+manualpages/DM/DMCompositeScatterArray.html#DMCompositeScatterArray
man:+DMCompositeGather++DMCompositeGather++++man+manualpages/DM/DMCompositeGather.html#DMCompositeGather
man:+DMCompositeGatherArray++DMCompositeGatherArray++++man+manualpages/DM/DMCompositeGatherArray.html#DMCompositeGatherArray
man:+DMCompositeAddDM++DMCompositeAddDM++++man+manualpages/DM/DMCompositeAddDM.html#DMCompositeAddDM
man:+DMCompositeGetISLocalToGlobalMappings++DMCompositeGetISLocalToGlobalMappings++++man+manualpages/DM/DMCompositeGetISLocalToGlobalMappings.html#DMCompositeGetISLocalToGlobalMappings
man:+DMCompositeGetLocalISs++DMCompositeGetLocalISs++++man+manualpages/DM/DMCompositeGetLocalISs.html#DMCompositeGetLocalISs
man:+DMCompositeGetGlobalISs++DMCompositeGetGlobalISs++++man+manualpages/DM/DMCompositeGetGlobalISs.html#DMCompositeGetGlobalISs
man:+DMCompositeGetLocalVectors++DMCompositeGetLocalVectors++++man+manualpages/DM/DMCompositeGetLocalVectors.html#DMCompositeGetLocalVectors
man:+DMCompositeRestoreLocalVectors++DMCompositeRestoreLocalVectors++++man+manualpages/DM/DMCompositeRestoreLocalVectors.html#DMCompositeRestoreLocalVectors
man:+DMCompositeGetEntries++DMCompositeGetEntries++++man+manualpages/DM/DMCompositeGetEntries.html#DMCompositeGetEntries
man:+DMCompositeGetEntriesArray++DMCompositeGetEntriesArray++++man+manualpages/DM/DMCompositeGetEntriesArray.html#DMCompositeGetEntriesArray
man:+DMCOMPOSITE++DMCOMPOSITE++++man+manualpages/DM/DMCOMPOSITE.html#DMCOMPOSITE
man:+DMCompositeCreate++DMCompositeCreate++++man+manualpages/DM/DMCompositeCreate.html#DMCompositeCreate
man:+DMRedundantSetSize++DMRedundantSetSize++++man+manualpages/DM/DMRedundantSetSize.html#DMRedundantSetSize
man:+DMRedundantGetSize++DMRedundantGetSize++++man+manualpages/DM/DMRedundantGetSize.html#DMRedundantGetSize
man:+DMREDUNDANT++DMREDUNDANT++++man+manualpages/DM/DMREDUNDANT.html#DMREDUNDANT
man:+DMRedundantCreate++DMRedundantCreate++++man+manualpages/DM/DMRedundantCreate.html#DMRedundantCreate
man:+DMPlexCreateDoublet++DMPlexCreateDoublet++++man+manualpages/DM/DMPlexCreateDoublet.html#DMPlexCreateDoublet
man:+DMPlexCreateSquareBoundary++DMPlexCreateSquareBoundary++++man+manualpages/DM/DMPlexCreateSquareBoundary.html#DMPlexCreateSquareBoundary
man:+DMPlexCreateCubeBoundary++DMPlexCreateCubeBoundary++++man+manualpages/DM/DMPlexCreateCubeBoundary.html#DMPlexCreateCubeBoundary
man:+DMPlexCreateSquareMesh++DMPlexCreateSquareMesh++++man+manualpages/DM/DMPlexCreateSquareMesh.html#DMPlexCreateSquareMesh
man:+DMPlexCreateBoxMesh++DMPlexCreateBoxMesh++++man+manualpages/DM/DMPlexCreateBoxMesh.html#DMPlexCreateBoxMesh
man:+DMPlexCreateHexBoxMesh++DMPlexCreateHexBoxMesh++++man+manualpages/DM/DMPlexCreateHexBoxMesh.html#DMPlexCreateHexBoxMesh
man:+DMPLEX++DMPLEX++++man+manualpages/DM/DMPLEX.html#DMPLEX
man:+DMPlexCreate++DMPlexCreate++++man+manualpages/DM/DMPlexCreate.html#DMPlexCreate
man:+DMPlexCreateFromCellList++DMPlexCreateFromCellList++++man+manualpages/DM/DMPlexCreateFromCellList.html#DMPlexCreateFromCellList
man:+DMPlexCreateFromDAG++DMPlexCreateFromDAG++++man+manualpages/DM/DMPlexCreateFromDAG.html#DMPlexCreateFromDAG
man:+DMPlexCreateFromFile++DMPlexCreateFromFile++++man+manualpages/DM/DMPlexCreateFromFile.html#DMPlexCreateFromFile
man:+DMPlexCreateReferenceCell++DMPlexCreateReferenceCell++++man+manualpages/DM/DMPlexCreateReferenceCell.html#DMPlexCreateReferenceCell
man:+DMPlexGetChart++DMPlexGetChart++++man+manualpages/DM/DMPlexGetChart.html#DMPlexGetChart
man:+DMPlexSetChart++DMPlexSetChart++++man+manualpages/DM/DMPlexSetChart.html#DMPlexSetChart
man:+DMPlexGetConeSize++DMPlexGetConeSize++++man+manualpages/DM/DMPlexGetConeSize.html#DMPlexGetConeSize
man:+DMPlexSetConeSize++DMPlexSetConeSize++++man+manualpages/DM/DMPlexSetConeSize.html#DMPlexSetConeSize
man:+DMPlexAddConeSize++DMPlexAddConeSize++++man+manualpages/DM/DMPlexAddConeSize.html#DMPlexAddConeSize
man:+DMPlexGetCone++DMPlexGetCone++++man+manualpages/DM/DMPlexGetCone.html#DMPlexGetCone
man:+DMPlexSetCone++DMPlexSetCone++++man+manualpages/DM/DMPlexSetCone.html#DMPlexSetCone
man:+DMPlexGetConeOrientation++DMPlexGetConeOrientation++++man+manualpages/DM/DMPlexGetConeOrientation.html#DMPlexGetConeOrientation
man:+DMPlexSetConeOrientation++DMPlexSetConeOrientation++++man+manualpages/DM/DMPlexSetConeOrientation.html#DMPlexSetConeOrientation
man:+DMPlexGetSupportSize++DMPlexGetSupportSize++++man+manualpages/DM/DMPlexGetSupportSize.html#DMPlexGetSupportSize
man:+DMPlexSetSupportSize++DMPlexSetSupportSize++++man+manualpages/DM/DMPlexSetSupportSize.html#DMPlexSetSupportSize
man:+DMPlexGetSupport++DMPlexGetSupport++++man+manualpages/DM/DMPlexGetSupport.html#DMPlexGetSupport
man:+DMPlexSetSupport++DMPlexSetSupport++++man+manualpages/DM/DMPlexSetSupport.html#DMPlexSetSupport
man:+DMPlexGetTransitiveClosure++DMPlexGetTransitiveClosure++++man+manualpages/DM/DMPlexGetTransitiveClosure.html#DMPlexGetTransitiveClosure
man:+DMPlexGetTransitiveClosure_Internal++DMPlexGetTransitiveClosure_Internal++++man+manualpages/DM/DMPlexGetTransitiveClosure_Internal.html#DMPlexGetTransitiveClosure_Internal
man:+DMPlexRestoreTransitiveClosure++DMPlexRestoreTransitiveClosure++++man+manualpages/DM/DMPlexRestoreTransitiveClosure.html#DMPlexRestoreTransitiveClosure
man:+DMPlexGetMaxSizes++DMPlexGetMaxSizes++++man+manualpages/DM/DMPlexGetMaxSizes.html#DMPlexGetMaxSizes
man:+DMPlexSymmetrize++DMPlexSymmetrize++++man+manualpages/DM/DMPlexSymmetrize.html#DMPlexSymmetrize
man:+DMPlexStratify++DMPlexStratify++++man+manualpages/DM/DMPlexStratify.html#DMPlexStratify
man:+DMPlexGetJoin++DMPlexGetJoin++++man+manualpages/DM/DMPlexGetJoin.html#DMPlexGetJoin
man:+DMPlexRestoreJoin++DMPlexRestoreJoin++++man+manualpages/DM/DMPlexRestoreJoin.html#DMPlexRestoreJoin
man:+DMPlexGetFullJoin++DMPlexGetFullJoin++++man+manualpages/DM/DMPlexGetFullJoin.html#DMPlexGetFullJoin
man:+DMPlexGetMeet++DMPlexGetMeet++++man+manualpages/DM/DMPlexGetMeet.html#DMPlexGetMeet
man:+DMPlexRestoreMeet++DMPlexRestoreMeet++++man+manualpages/DM/DMPlexRestoreMeet.html#DMPlexRestoreMeet
man:+DMPlexGetFullMeet++DMPlexGetFullMeet++++man+manualpages/DM/DMPlexGetFullMeet.html#DMPlexGetFullMeet
man:+DMPlexEqual++DMPlexEqual++++man+manualpages/DM/DMPlexEqual.html#DMPlexEqual
man:+DMPlexGetDepthLabel++DMPlexGetDepthLabel++++man+manualpages/DM/DMPlexGetDepthLabel.html#DMPlexGetDepthLabel
man:+DMPlexGetDepth++DMPlexGetDepth++++man+manualpages/DM/DMPlexGetDepth.html#DMPlexGetDepth
man:+DMPlexGetDepthStratum++DMPlexGetDepthStratum++++man+manualpages/DM/DMPlexGetDepthStratum.html#DMPlexGetDepthStratum
man:+DMPlexGetHeightStratum++DMPlexGetHeightStratum++++man+manualpages/DM/DMPlexGetHeightStratum.html#DMPlexGetHeightStratum
man:+DMPlexCreateSection++DMPlexCreateSection++++man+manualpages/DM/DMPlexCreateSection.html#DMPlexCreateSection
man:+DMPlexVecGetClosure++DMPlexVecGetClosure++++man+manualpages/DM/DMPlexVecGetClosure.html#DMPlexVecGetClosure
man:+DMPlexVecRestoreClosure++DMPlexVecRestoreClosure++++man+manualpages/DM/DMPlexVecRestoreClosure.html#DMPlexVecRestoreClosure
man:+DMPlexVecSetClosure++DMPlexVecSetClosure++++man+manualpages/DM/DMPlexVecSetClosure.html#DMPlexVecSetClosure
man:+DMPlexMatSetClosure++DMPlexMatSetClosure++++man+manualpages/DM/DMPlexMatSetClosure.html#DMPlexMatSetClosure
man:+DMPlexGetHybridBounds++DMPlexGetHybridBounds++++man+manualpages/DM/DMPlexGetHybridBounds.html#DMPlexGetHybridBounds
man:+DMPlexSetHybridBounds++DMPlexSetHybridBounds++++man+manualpages/DM/DMPlexSetHybridBounds.html#DMPlexSetHybridBounds
man:+DMPlexCheckSymmetry++DMPlexCheckSymmetry++++man+manualpages/DM/DMPlexCheckSymmetry.html#DMPlexCheckSymmetry
man:+DMPlexCheckSkeleton++DMPlexCheckSkeleton++++man+manualpages/DM/DMPlexCheckSkeleton.html#DMPlexCheckSkeleton
man:+DMPlexCheckFaces++DMPlexCheckFaces++++man+manualpages/DM/DMPlexCheckFaces.html#DMPlexCheckFaces
man:+DMPlexGetRegularRefinement++DMPlexGetRegularRefinement++++man+manualpages/DM/DMPlexGetRegularRefinement.html#DMPlexGetRegularRefinement
man:+DMPlexSetRegularRefinement++DMPlexSetRegularRefinement++++man+manualpages/DM/DMPlexSetRegularRefinement.html#DMPlexSetRegularRefinement
man:+DMPlexGetAnchors++DMPlexGetAnchors++++man+manualpages/DM/DMPlexGetAnchors.html#DMPlexGetAnchors
man:+DMPlexSetAnchors++DMPlexSetAnchors++++man+manualpages/DM/DMPlexSetAnchors.html#DMPlexSetAnchors
man:+DMPlexCreatePartitionerGraph++DMPlexCreatePartitionerGraph++++man+manualpages/DM/DMPlexCreatePartitionerGraph.html#DMPlexCreatePartitionerGraph
man:+PetscPartitionerRegister++PetscPartitionerRegister++++man+manualpages/DM/PetscPartitionerRegister.html#PetscPartitionerRegister
man:+PetscPartitionerSetType++PetscPartitionerSetType++++man+manualpages/DM/PetscPartitionerSetType.html#PetscPartitionerSetType
man:+PetscPartitionerGetType++PetscPartitionerGetType++++man+manualpages/DM/PetscPartitionerGetType.html#PetscPartitionerGetType
man:+PetscPartitionerView++PetscPartitionerView++++man+manualpages/DM/PetscPartitionerView.html#PetscPartitionerView
man:+PetscPartitionerSetFromOptions++PetscPartitionerSetFromOptions++++man+manualpages/DM/PetscPartitionerSetFromOptions.html#PetscPartitionerSetFromOptions
man:+PetscPartitionerSetUp++PetscPartitionerSetUp++++man+manualpages/DM/PetscPartitionerSetUp.html#PetscPartitionerSetUp
man:+PetscPartitionerDestroy++PetscPartitionerDestroy++++man+manualpages/DM/PetscPartitionerDestroy.html#PetscPartitionerDestroy
man:+PetscPartitionerCreate++PetscPartitionerCreate++++man+manualpages/DM/PetscPartitionerCreate.html#PetscPartitionerCreate
man:+PetscPartitionerPartition++PetscPartitionerPartition++++man+manualpages/DM/PetscPartitionerPartition.html#PetscPartitionerPartition
man:+PETSCPARTITIONERSHELL++PETSCPARTITIONERSHELL++++man+manualpages/DM/PETSCPARTITIONERSHELL.html#PETSCPARTITIONERSHELL
man:+PetscPartitionerShellSetPartition++PetscPartitionerShellSetPartition++++man+manualpages/DM/PetscPartitionerShellSetPartition.html#PetscPartitionerShellSetPartition
man:+PETSCPARTITIONERSIMPLE++PETSCPARTITIONERSIMPLE++++man+manualpages/DM/PETSCPARTITIONERSIMPLE.html#PETSCPARTITIONERSIMPLE
man:+PETSCPARTITIONERGATHER++PETSCPARTITIONERGATHER++++man+manualpages/DM/PETSCPARTITIONERGATHER.html#PETSCPARTITIONERGATHER
man:+PETSCPARTITIONERCHACO++PETSCPARTITIONERCHACO++++man+manualpages/DM/PETSCPARTITIONERCHACO.html#PETSCPARTITIONERCHACO
man:+PETSCPARTITIONERPARMETIS++PETSCPARTITIONERPARMETIS++++man+manualpages/DM/PETSCPARTITIONERPARMETIS.html#PETSCPARTITIONERPARMETIS
man:+DMPlexGetPartitioner++DMPlexGetPartitioner++++man+manualpages/DM/DMPlexGetPartitioner.html#DMPlexGetPartitioner
man:+DMPlexSetPartitioner++DMPlexSetPartitioner++++man+manualpages/DM/DMPlexSetPartitioner.html#DMPlexSetPartitioner
man:+DMPlexPartitionLabelClosure++DMPlexPartitionLabelClosure++++man+manualpages/DM/DMPlexPartitionLabelClosure.html#DMPlexPartitionLabelClosure
man:+DMPlexPartitionLabelAdjacency++DMPlexPartitionLabelAdjacency++++man+manualpages/DM/DMPlexPartitionLabelAdjacency.html#DMPlexPartitionLabelAdjacency
man:+DMPlexPartitionLabelPropagate++DMPlexPartitionLabelPropagate++++man+manualpages/DM/DMPlexPartitionLabelPropagate.html#DMPlexPartitionLabelPropagate
man:+DMPlexPartitionLabelInvert++DMPlexPartitionLabelInvert++++man+manualpages/DM/DMPlexPartitionLabelInvert.html#DMPlexPartitionLabelInvert
man:+DMPlexPartitionLabelCreateSF++DMPlexPartitionLabelCreateSF++++man+manualpages/DM/DMPlexPartitionLabelCreateSF.html#DMPlexPartitionLabelCreateSF
man:+DMPlexSetAdjacencyUseCone++DMPlexSetAdjacencyUseCone++++man+manualpages/DM/DMPlexSetAdjacencyUseCone.html#DMPlexSetAdjacencyUseCone
man:+DMPlexGetAdjacencyUseCone++DMPlexGetAdjacencyUseCone++++man+manualpages/DM/DMPlexGetAdjacencyUseCone.html#DMPlexGetAdjacencyUseCone
man:+DMPlexSetAdjacencyUseClosure++DMPlexSetAdjacencyUseClosure++++man+manualpages/DM/DMPlexSetAdjacencyUseClosure.html#DMPlexSetAdjacencyUseClosure
man:+DMPlexGetAdjacencyUseClosure++DMPlexGetAdjacencyUseClosure++++man+manualpages/DM/DMPlexGetAdjacencyUseClosure.html#DMPlexGetAdjacencyUseClosure
man:+DMPlexSetAdjacencyUseAnchors++DMPlexSetAdjacencyUseAnchors++++man+manualpages/DM/DMPlexSetAdjacencyUseAnchors.html#DMPlexSetAdjacencyUseAnchors
man:+DMPlexGetAdjacencyUseAnchors++DMPlexGetAdjacencyUseAnchors++++man+manualpages/DM/DMPlexGetAdjacencyUseAnchors.html#DMPlexGetAdjacencyUseAnchors
man:+DMPlexGetAdjacency++DMPlexGetAdjacency++++man+manualpages/DM/DMPlexGetAdjacency.html#DMPlexGetAdjacency
man:+DMPlexCreateTwoSidedProcessSF++DMPlexCreateTwoSidedProcessSF++++man+manualpages/DM/DMPlexCreateTwoSidedProcessSF.html#DMPlexCreateTwoSidedProcessSF
man:+DMPlexDistributeOwnership++DMPlexDistributeOwnership++++man+manualpages/DM/DMPlexDistributeOwnership.html#DMPlexDistributeOwnership
man:+DMPlexCreateOverlap++DMPlexCreateOverlap++++man+manualpages/DM/DMPlexCreateOverlap.html#DMPlexCreateOverlap
man:+DMPlexStratifyMigrationSF++DMPlexStratifyMigrationSF++++man+manualpages/DM/DMPlexStratifyMigrationSF.html#DMPlexStratifyMigrationSF
man:+DMPlexDistributeField++DMPlexDistributeField++++man+manualpages/DM/DMPlexDistributeField.html#DMPlexDistributeField
man:+DMPlexDistributeFieldIS++DMPlexDistributeFieldIS++++man+manualpages/DM/DMPlexDistributeFieldIS.html#DMPlexDistributeFieldIS
man:+DMPlexDistributeData++DMPlexDistributeData++++man+manualpages/DM/DMPlexDistributeData.html#DMPlexDistributeData
man:+DMPlexDerivePointSF++DMPlexDerivePointSF++++man+manualpages/DM/DMPlexDerivePointSF.html#DMPlexDerivePointSF
man:+DMPlexMigrate++DMPlexMigrate++++man+manualpages/DM/DMPlexMigrate.html#DMPlexMigrate
man:+DMPlexDistribute++DMPlexDistribute++++man+manualpages/DM/DMPlexDistribute.html#DMPlexDistribute
man:+DMPlexDistribute++DMPlexDistribute++++man+manualpages/DM/DMPlexDistribute.html#DMPlexDistribute
man:+DMPlexGetGatherDM++DMPlexGetGatherDM++++man+manualpages/DM/DMPlexGetGatherDM.html#DMPlexGetGatherDM
man:+DMPlexGetRedundantDM++DMPlexGetRedundantDM++++man+manualpages/DM/DMPlexGetRedundantDM.html#DMPlexGetRedundantDM
man:+DMPlexCreateProcessSF++DMPlexCreateProcessSF++++man+manualpages/DM/DMPlexCreateProcessSF.html#DMPlexCreateProcessSF
man:+DMPlexCreateCoarsePointIS++DMPlexCreateCoarsePointIS++++man+manualpages/DM/DMPlexCreateCoarsePointIS.html#DMPlexCreateCoarsePointIS
man:+DMPlexSetRefinementUniform++DMPlexSetRefinementUniform++++man+manualpages/DM/DMPlexSetRefinementUniform.html#DMPlexSetRefinementUniform
man:+DMPlexGetRefinementUniform++DMPlexGetRefinementUniform++++man+manualpages/DM/DMPlexGetRefinementUniform.html#DMPlexGetRefinementUniform
man:+DMPlexSetRefinementLimit++DMPlexSetRefinementLimit++++man+manualpages/DM/DMPlexSetRefinementLimit.html#DMPlexSetRefinementLimit
man:+DMPlexGetRefinementLimit++DMPlexGetRefinementLimit++++man+manualpages/DM/DMPlexGetRefinementLimit.html#DMPlexGetRefinementLimit
man:+DMPlexSetRefinementFunction++DMPlexSetRefinementFunction++++man+manualpages/DM/DMPlexSetRefinementFunction.html#DMPlexSetRefinementFunction
man:+DMPlexGetRefinementFunction++DMPlexGetRefinementFunction++++man+manualpages/DM/DMPlexGetRefinementFunction.html#DMPlexGetRefinementFunction
man:+DMPlexInterpolate++DMPlexInterpolate++++man+manualpages/DM/DMPlexInterpolate.html#DMPlexInterpolate
man:+DMPlexCopyCoordinates++DMPlexCopyCoordinates++++man+manualpages/DM/DMPlexCopyCoordinates.html#DMPlexCopyCoordinates
man:+DMPlexUninterpolate++DMPlexUninterpolate++++man+manualpages/DM/DMPlexUninterpolate.html#DMPlexUninterpolate
man:+DMPlexGetOrdering++DMPlexGetOrdering++++man+manualpages/DM/DMPlexGetOrdering.html#DMPlexGetOrdering
man:+DMPlexPermute++DMPlexPermute++++man+manualpages/DM/DMPlexPermute.html#DMPlexPermute
man:+DMPlexComputeCellGeometryAffineFEM++DMPlexComputeCellGeometryAffineFEM++++man+manualpages/DM/DMPlexComputeCellGeometryAffineFEM.html#DMPlexComputeCellGeometryAffineFEM
man:+DMPlexComputeCellGeometryFEM++DMPlexComputeCellGeometryFEM++++man+manualpages/DM/DMPlexComputeCellGeometryFEM.html#DMPlexComputeCellGeometryFEM
man:+DMPlexComputeCellGeometryFVM++DMPlexComputeCellGeometryFVM++++man+manualpages/DM/DMPlexComputeCellGeometryFVM.html#DMPlexComputeCellGeometryFVM
man:+DMPlexComputeGeometryFVM++DMPlexComputeGeometryFVM++++man+manualpages/DM/DMPlexComputeGeometryFVM.html#DMPlexComputeGeometryFVM
man:+DMPlexGetMinRadius++DMPlexGetMinRadius++++man+manualpages/DM/DMPlexGetMinRadius.html#DMPlexGetMinRadius
man:+DMPlexSetMinRadius++DMPlexSetMinRadius++++man+manualpages/DM/DMPlexSetMinRadius.html#DMPlexSetMinRadius
man:+DMPlexComputeGradientFVM++DMPlexComputeGradientFVM++++man+manualpages/DM/DMPlexComputeGradientFVM.html#DMPlexComputeGradientFVM
man:+DMPlexMarkBoundaryFaces++DMPlexMarkBoundaryFaces++++man+manualpages/DM/DMPlexMarkBoundaryFaces.html#DMPlexMarkBoundaryFaces
man:+DMPlexLabelComplete++DMPlexLabelComplete++++man+manualpages/DM/DMPlexLabelComplete.html#DMPlexLabelComplete
man:+DMPlexLabelAddCells++DMPlexLabelAddCells++++man+manualpages/DM/DMPlexLabelAddCells.html#DMPlexLabelAddCells
man:+DMPlexLabelClearCells++DMPlexLabelClearCells++++man+manualpages/DM/DMPlexLabelClearCells.html#DMPlexLabelClearCells
man:+DMPlexConstructGhostCells++DMPlexConstructGhostCells++++man+manualpages/DM/DMPlexConstructGhostCells.html#DMPlexConstructGhostCells
man:+DMPlexConstructCohesiveCells++DMPlexConstructCohesiveCells++++man+manualpages/DM/DMPlexConstructCohesiveCells.html#DMPlexConstructCohesiveCells
man:+DMPlexLabelCohesiveComplete++DMPlexLabelCohesiveComplete++++man+manualpages/DM/DMPlexLabelCohesiveComplete.html#DMPlexLabelCohesiveComplete
man:+DMPlexCreateHybridMesh++DMPlexCreateHybridMesh++++man+manualpages/DM/DMPlexCreateHybridMesh.html#DMPlexCreateHybridMesh
man:+DMPlexCreateSubmesh++DMPlexCreateSubmesh++++man+manualpages/DM/DMPlexCreateSubmesh.html#DMPlexCreateSubmesh
man:+DMPlexFilter++DMPlexFilter++++man+manualpages/DM/DMPlexFilter.html#DMPlexFilter
man:+DMPlexGetSubpointMap++DMPlexGetSubpointMap++++man+manualpages/DM/DMPlexGetSubpointMap.html#DMPlexGetSubpointMap
man:+DMPlexCreateSubpointIS++DMPlexCreateSubpointIS++++man+manualpages/DM/DMPlexCreateSubpointIS.html#DMPlexCreateSubpointIS
man:+DMPlexCreateExodus++DMPlexCreateExodus++++man+manualpages/DM/DMPlexCreateExodus.html#DMPlexCreateExodus
man:+DMPlexCreateExodus++DMPlexCreateExodus++++man+manualpages/DM/DMPlexCreateExodus.html#DMPlexCreateExodus
man:+DMPlexCreateGmshFromFile++DMPlexCreateGmshFromFile++++man+manualpages/DM/DMPlexCreateGmshFromFile.html#DMPlexCreateGmshFromFile
man:+DMPlexCreateGmsh++DMPlexCreateGmsh++++man+manualpages/DM/DMPlexCreateGmsh.html#DMPlexCreateGmsh
man:+DMPlexCreateFluentFromFile++DMPlexCreateFluentFromFile++++man+manualpages/DM/DMPlexCreateFluentFromFile.html#DMPlexCreateFluentFromFile
man:+DMPlexCreateFluent++DMPlexCreateFluent++++man+manualpages/DM/DMPlexCreateFluent.html#DMPlexCreateFluent
man:+DMPlexCreateCGNS++DMPlexCreateCGNS++++man+manualpages/DM/DMPlexCreateCGNS.html#DMPlexCreateCGNS
man:+DMPlexCreateCGNS++DMPlexCreateCGNS++++man+manualpages/DM/DMPlexCreateCGNS.html#DMPlexCreateCGNS
man:+DMPlexVTKWriteAll++DMPlexVTKWriteAll++++man+manualpages/DM/DMPlexVTKWriteAll.html#DMPlexVTKWriteAll
man:+DMPlexGetPointLocal++DMPlexGetPointLocal++++man+manualpages/DM/DMPlexGetPointLocal.html#DMPlexGetPointLocal
man:+DMPlexPointLocalRead++DMPlexPointLocalRead++++man+manualpages/DM/DMPlexPointLocalRead.html#DMPlexPointLocalRead
man:+DMPlexPointLocalRef++DMPlexPointLocalRef++++man+manualpages/DM/DMPlexPointLocalRef.html#DMPlexPointLocalRef
man:+DMPlexGetPointLocalField++DMPlexGetPointLocalField++++man+manualpages/DM/DMPlexGetPointLocalField.html#DMPlexGetPointLocalField
man:+DMPlexPointLocalFieldRead++DMPlexPointLocalFieldRead++++man+manualpages/DM/DMPlexPointLocalFieldRead.html#DMPlexPointLocalFieldRead
man:+DMPlexPointLocalFieldRef++DMPlexPointLocalFieldRef++++man+manualpages/DM/DMPlexPointLocalFieldRef.html#DMPlexPointLocalFieldRef
man:+DMPlexGetPointGlobal++DMPlexGetPointGlobal++++man+manualpages/DM/DMPlexGetPointGlobal.html#DMPlexGetPointGlobal
man:+DMPlexPointGlobalRead++DMPlexPointGlobalRead++++man+manualpages/DM/DMPlexPointGlobalRead.html#DMPlexPointGlobalRead
man:+DMPlexPointGlobalRef++DMPlexPointGlobalRef++++man+manualpages/DM/DMPlexPointGlobalRef.html#DMPlexPointGlobalRef
man:+DMPlexGetPointGlobalField++DMPlexGetPointGlobalField++++man+manualpages/DM/DMPlexGetPointGlobalField.html#DMPlexGetPointGlobalField
man:+DMPlexPointGlobalFieldRead++DMPlexPointGlobalFieldRead++++man+manualpages/DM/DMPlexPointGlobalFieldRead.html#DMPlexPointGlobalFieldRead
man:+DMPlexPointGlobalFieldRef++DMPlexPointGlobalFieldRef++++man+manualpages/DM/DMPlexPointGlobalFieldRef.html#DMPlexPointGlobalFieldRef
man:+DMPlexCreateRigidBody++DMPlexCreateRigidBody++++man+manualpages/DM/DMPlexCreateRigidBody.html#DMPlexCreateRigidBody
man:+DMPlexSetMaxProjectionHeight++DMPlexSetMaxProjectionHeight++++man+manualpages/DM/DMPlexSetMaxProjectionHeight.html#DMPlexSetMaxProjectionHeight
man:+DMPlexGetMaxProjectionHeight++DMPlexGetMaxProjectionHeight++++man+manualpages/DM/DMPlexGetMaxProjectionHeight.html#DMPlexGetMaxProjectionHeight
man:+DMPlexComputeL2DiffVec++DMPlexComputeL2DiffVec++++man+manualpages/DM/DMPlexComputeL2DiffVec.html#DMPlexComputeL2DiffVec
man:+DMPlexComputeIntegralFEM++DMPlexComputeIntegralFEM++++man+manualpages/DM/DMPlexComputeIntegralFEM.html#DMPlexComputeIntegralFEM
man:+DMPlexComputeInterpolatorNested++DMPlexComputeInterpolatorNested++++man+manualpages/DM/DMPlexComputeInterpolatorNested.html#DMPlexComputeInterpolatorNested
man:+DMPlexComputeInterpolatorGeneral++DMPlexComputeInterpolatorGeneral++++man+manualpages/DM/DMPlexComputeInterpolatorGeneral.html#DMPlexComputeInterpolatorGeneral
man:+DMPlexCreateClosureIndex++DMPlexCreateClosureIndex++++man+manualpages/DM/DMPlexCreateClosureIndex.html#DMPlexCreateClosureIndex
man:+DMPlexSetReferenceTree++DMPlexSetReferenceTree++++man+manualpages/DM/DMPlexSetReferenceTree.html#DMPlexSetReferenceTree
man:+DMPlexGetReferenceTree++DMPlexGetReferenceTree++++man+manualpages/DM/DMPlexGetReferenceTree.html#DMPlexGetReferenceTree
man:+DMPlexReferenceTreeGetChildSymmetry++DMPlexReferenceTreeGetChildSymmetry++++man+manualpages/DM/DMPlexReferenceTreeGetChildSymmetry.html#DMPlexReferenceTreeGetChildSymmetry
man:+DMPlexCreateDefaultReferenceTree++DMPlexCreateDefaultReferenceTree++++man+manualpages/DM/DMPlexCreateDefaultReferenceTree.html#DMPlexCreateDefaultReferenceTree
man:+DMPlexSetTree++DMPlexSetTree++++man+manualpages/DM/DMPlexSetTree.html#DMPlexSetTree
man:+DMPlexGetTree++DMPlexGetTree++++man+manualpages/DM/DMPlexGetTree.html#DMPlexGetTree
man:+DMPlexGetTreeParent++DMPlexGetTreeParent++++man+manualpages/DM/DMPlexGetTreeParent.html#DMPlexGetTreeParent
man:+DMPlexGetTreeChildren++DMPlexGetTreeChildren++++man+manualpages/DM/DMPlexGetTreeChildren.html#DMPlexGetTreeChildren
man:+DMPlexInvertCell++DMPlexInvertCell++++man+manualpages/DM/DMPlexInvertCell.html#DMPlexInvertCell
man:+DMPlexTriangleSetOptions++DMPlexTriangleSetOptions++++man+manualpages/DM/DMPlexTriangleSetOptions.html#DMPlexTriangleSetOptions
man:+DMPlexTetgenSetOptions++DMPlexTetgenSetOptions++++man+manualpages/DM/DMPlexTetgenSetOptions.html#DMPlexTetgenSetOptions
man:+DMPlexGenerate++DMPlexGenerate++++man+manualpages/DM/DMPlexGenerate.html#DMPlexGenerate
man:+DMPlexReverseCell++DMPlexReverseCell++++man+manualpages/DM/DMPlexReverseCell.html#DMPlexReverseCell
man:+DMPlexOrient++DMPlexOrient++++man+manualpages/DM/DMPlexOrient.html#DMPlexOrient
man:+DMPlexCreateGlobalToNaturalSF++DMPlexCreateGlobalToNaturalSF++++man+manualpages/DM/DMPlexCreateGlobalToNaturalSF.html#DMPlexCreateGlobalToNaturalSF
man:+DMPlexGlobalToNaturalBegin++DMPlexGlobalToNaturalBegin++++man+manualpages/DM/DMPlexGlobalToNaturalBegin.html#DMPlexGlobalToNaturalBegin
man:+DMPlexGlobalToNaturalEnd++DMPlexGlobalToNaturalEnd++++man+manualpages/DM/DMPlexGlobalToNaturalEnd.html#DMPlexGlobalToNaturalEnd
man:+DMPlexNaturalToGlobalBegin++DMPlexNaturalToGlobalBegin++++man+manualpages/DM/DMPlexNaturalToGlobalBegin.html#DMPlexNaturalToGlobalBegin
man:+DMPlexNaturalToGlobalEnd++DMPlexNaturalToGlobalEnd++++man+manualpages/DM/DMPlexNaturalToGlobalEnd.html#DMPlexNaturalToGlobalEnd
man:+DMGlobalToLocalBeginDefaultShell++DMGlobalToLocalBeginDefaultShell++++man+manualpages/DM/DMGlobalToLocalBeginDefaultShell.html#DMGlobalToLocalBeginDefaultShell
man:+DMGlobalToLocalEndDefaultShell++DMGlobalToLocalEndDefaultShell++++man+manualpages/DM/DMGlobalToLocalEndDefaultShell.html#DMGlobalToLocalEndDefaultShell
man:+DMLocalToGlobalBeginDefaultShell++DMLocalToGlobalBeginDefaultShell++++man+manualpages/DM/DMLocalToGlobalBeginDefaultShell.html#DMLocalToGlobalBeginDefaultShell
man:+DMLocalToGlobalEndDefaultShell++DMLocalToGlobalEndDefaultShell++++man+manualpages/DM/DMLocalToGlobalEndDefaultShell.html#DMLocalToGlobalEndDefaultShell
man:+DMLocalToLocalBeginDefaultShell++DMLocalToLocalBeginDefaultShell++++man+manualpages/DM/DMLocalToLocalBeginDefaultShell.html#DMLocalToLocalBeginDefaultShell
man:+DMLocalToLocalEndDefaultShell++DMLocalToLocalEndDefaultShell++++man+manualpages/DM/DMLocalToLocalEndDefaultShell.html#DMLocalToLocalEndDefaultShell
man:+DMShellSetContext++DMShellSetContext++++man+manualpages/DM/DMShellSetContext.html#DMShellSetContext
man:+DMShellGetContext++DMShellGetContext++++man+manualpages/DM/DMShellGetContext.html#DMShellGetContext
man:+DMShellSetMatrix++DMShellSetMatrix++++man+manualpages/DM/DMShellSetMatrix.html#DMShellSetMatrix
man:+DMShellSetCreateMatrix++DMShellSetCreateMatrix++++man+manualpages/DM/DMShellSetCreateMatrix.html#DMShellSetCreateMatrix
man:+DMShellSetGlobalVector++DMShellSetGlobalVector++++man+manualpages/DM/DMShellSetGlobalVector.html#DMShellSetGlobalVector
man:+DMShellSetCreateGlobalVector++DMShellSetCreateGlobalVector++++man+manualpages/DM/DMShellSetCreateGlobalVector.html#DMShellSetCreateGlobalVector
man:+DMShellSetLocalVector++DMShellSetLocalVector++++man+manualpages/DM/DMShellSetLocalVector.html#DMShellSetLocalVector
man:+DMShellSetCreateLocalVector++DMShellSetCreateLocalVector++++man+manualpages/DM/DMShellSetCreateLocalVector.html#DMShellSetCreateLocalVector
man:+DMShellSetGlobalToLocal++DMShellSetGlobalToLocal++++man+manualpages/DM/DMShellSetGlobalToLocal.html#DMShellSetGlobalToLocal
man:+DMShellSetLocalToGlobal++DMShellSetLocalToGlobal++++man+manualpages/DM/DMShellSetLocalToGlobal.html#DMShellSetLocalToGlobal
man:+DMShellSetLocalToLocal++DMShellSetLocalToLocal++++man+manualpages/DM/DMShellSetLocalToLocal.html#DMShellSetLocalToLocal
man:+DMShellSetGlobalToLocalVecScatter++DMShellSetGlobalToLocalVecScatter++++man+manualpages/DM/DMShellSetGlobalToLocalVecScatter.html#DMShellSetGlobalToLocalVecScatter
man:+DMShellSetLocalToGlobalVecScatter++DMShellSetLocalToGlobalVecScatter++++man+manualpages/DM/DMShellSetLocalToGlobalVecScatter.html#DMShellSetLocalToGlobalVecScatter
man:+DMShellSetLocalToLocalVecScatter++DMShellSetLocalToLocalVecScatter++++man+manualpages/DM/DMShellSetLocalToLocalVecScatter.html#DMShellSetLocalToLocalVecScatter
man:+DMShellSetCoarsen++DMShellSetCoarsen++++man+manualpages/DM/DMShellSetCoarsen.html#DMShellSetCoarsen
man:+DMShellSetRefine++DMShellSetRefine++++man+manualpages/DM/DMShellSetRefine.html#DMShellSetRefine
man:+DMShellSetCreateInterpolation++DMShellSetCreateInterpolation++++man+manualpages/DM/DMShellSetCreateInterpolation.html#DMShellSetCreateInterpolation
man:+DMShellSetCreateRestriction++DMShellSetCreateRestriction++++man+manualpages/DM/DMShellSetCreateRestriction.html#DMShellSetCreateRestriction
man:+DMShellSetCreateInjection++DMShellSetCreateInjection++++man+manualpages/DM/DMShellSetCreateInjection.html#DMShellSetCreateInjection
man:+DMShellSetCreateFieldDecomposition++DMShellSetCreateFieldDecomposition++++man+manualpages/DM/DMShellSetCreateFieldDecomposition.html#DMShellSetCreateFieldDecomposition
man:+DMShellSetCreateSubDM++DMShellSetCreateSubDM++++man+manualpages/DM/DMShellSetCreateSubDM.html#DMShellSetCreateSubDM
man:+DMShellCreate++DMShellCreate++++man+manualpages/DM/DMShellCreate.html#DMShellCreate
man:+DMPatchCreate++DMPatchCreate++++man+manualpages/DM/DMPatchCreate.html#DMPatchCreate
man:+DMMOAB++DMMOAB++++man+manualpages/DM/DMMOAB.html#DMMOAB
man:+DMMoabCreate++DMMoabCreate++++man+manualpages/DM/DMMoabCreate.html#DMMoabCreate
man:+DMMoabCreate++DMMoabCreate++++man+manualpages/DM/DMMoabCreate.html#DMMoabCreate
man:+DMMoabSetParallelComm++DMMoabSetParallelComm++++man+manualpages/DM/DMMoabSetParallelComm.html#DMMoabSetParallelComm
man:+DMMoabGetParallelComm++DMMoabGetParallelComm++++man+manualpages/DM/DMMoabGetParallelComm.html#DMMoabGetParallelComm
man:+DMMoabSetInterface++DMMoabSetInterface++++man+manualpages/DM/DMMoabSetInterface.html#DMMoabSetInterface
man:+DMMoabGetInterface++DMMoabGetInterface++++man+manualpages/DM/DMMoabGetInterface.html#DMMoabGetInterface
man:+DMMoabSetLocalVertices++DMMoabSetLocalVertices++++man+manualpages/DM/DMMoabSetLocalVertices.html#DMMoabSetLocalVertices
man:+DMMoabGetAllVertices++DMMoabGetAllVertices++++man+manualpages/DM/DMMoabGetAllVertices.html#DMMoabGetAllVertices
man:+DMMoabGetLocalVertices++DMMoabGetLocalVertices++++man+manualpages/DM/DMMoabGetLocalVertices.html#DMMoabGetLocalVertices
man:+DMMoabGetLocalElements++DMMoabGetLocalElements++++man+manualpages/DM/DMMoabGetLocalElements.html#DMMoabGetLocalElements
man:+DMMoabSetLocalElements++DMMoabSetLocalElements++++man+manualpages/DM/DMMoabSetLocalElements.html#DMMoabSetLocalElements
man:+DMMoabSetLocalToGlobalTag++DMMoabSetLocalToGlobalTag++++man+manualpages/DM/DMMoabSetLocalToGlobalTag.html#DMMoabSetLocalToGlobalTag
man:+DMMoabGetLocalToGlobalTag++DMMoabGetLocalToGlobalTag++++man+manualpages/DM/DMMoabGetLocalToGlobalTag.html#DMMoabGetLocalToGlobalTag
man:+DMMoabSetBlockSize++DMMoabSetBlockSize++++man+manualpages/DM/DMMoabSetBlockSize.html#DMMoabSetBlockSize
man:+DMMoabGetBlockSize++DMMoabGetBlockSize++++man+manualpages/DM/DMMoabGetBlockSize.html#DMMoabGetBlockSize
man:+DMMoabGetSize++DMMoabGetSize++++man+manualpages/DM/DMMoabGetSize.html#DMMoabGetSize
man:+DMMoabGetLocalSize++DMMoabGetLocalSize++++man+manualpages/DM/DMMoabGetLocalSize.html#DMMoabGetLocalSize
man:+DMMoabGetOffset++DMMoabGetOffset++++man+manualpages/DM/DMMoabGetOffset.html#DMMoabGetOffset
man:+DMMoabGetDimension++DMMoabGetDimension++++man+manualpages/DM/DMMoabGetDimension.html#DMMoabGetDimension
man:+DMMoabGetMaterialBlock++DMMoabGetMaterialBlock++++man+manualpages/DM/DMMoabGetMaterialBlock.html#DMMoabGetMaterialBlock
man:+DMMoabGetVertexCoordinates++DMMoabGetVertexCoordinates++++man+manualpages/DM/DMMoabGetVertexCoordinates.html#DMMoabGetVertexCoordinates
man:+DMMoabGetVertexConnectivity++DMMoabGetVertexConnectivity++++man+manualpages/DM/DMMoabGetVertexConnectivity.html#DMMoabGetVertexConnectivity
man:+DMMoabRestoreVertexConnectivity++DMMoabRestoreVertexConnectivity++++man+manualpages/DM/DMMoabRestoreVertexConnectivity.html#DMMoabRestoreVertexConnectivity
man:+DMMoabGetElementConnectivity++DMMoabGetElementConnectivity++++man+manualpages/DM/DMMoabGetElementConnectivity.html#DMMoabGetElementConnectivity
man:+DMMoabIsEntityOnBoundary++DMMoabIsEntityOnBoundary++++man+manualpages/DM/DMMoabIsEntityOnBoundary.html#DMMoabIsEntityOnBoundary
man:+DMMoabIsEntityOnBoundary++DMMoabIsEntityOnBoundary++++man+manualpages/DM/DMMoabIsEntityOnBoundary.html#DMMoabIsEntityOnBoundary
man:+DMMoabGetBoundaryMarkers++DMMoabGetBoundaryMarkers++++man+manualpages/DM/DMMoabGetBoundaryMarkers.html#DMMoabGetBoundaryMarkers
man:+DMMoabCreateVector++DMMoabCreateVector++++man+manualpages/DM/DMMoabCreateVector.html#DMMoabCreateVector
man:+DMMoabGetVecTag++DMMoabGetVecTag++++man+manualpages/DM/DMMoabGetVecTag.html#DMMoabGetVecTag
man:+DMMoabGetVecRange++DMMoabGetVecRange++++man+manualpages/DM/DMMoabGetVecRange.html#DMMoabGetVecRange
man:+DMMoabVecGetArray++DMMoabVecGetArray++++man+manualpages/DM/DMMoabVecGetArray.html#DMMoabVecGetArray
man:+DMMoabVecRestoreArray++DMMoabVecRestoreArray++++man+manualpages/DM/DMMoabVecRestoreArray.html#DMMoabVecRestoreArray
man:+DMMoabVecGetArrayRead++DMMoabVecGetArrayRead++++man+manualpages/DM/DMMoabVecGetArrayRead.html#DMMoabVecGetArrayRead
man:+DMMoabVecRestoreArray++DMMoabVecRestoreArray++++man+manualpages/DM/DMMoabVecRestoreArray.html#DMMoabVecRestoreArray
man:+DMMoabSetBlockFills++DMMoabSetBlockFills++++man+manualpages/DM/DMMoabSetBlockFills.html#DMMoabSetBlockFills
man:+DMMoabSetFieldVector++DMMoabSetFieldVector++++man+manualpages/DM/DMMoabSetFieldVector.html#DMMoabSetFieldVector
man:+DMMoabSetGlobalFieldVector++DMMoabSetGlobalFieldVector++++man+manualpages/DM/DMMoabSetGlobalFieldVector.html#DMMoabSetGlobalFieldVector
man:+DMMoabSetFieldNames++DMMoabSetFieldNames++++man+manualpages/DM/DMMoabSetFieldNames.html#DMMoabSetFieldNames
man:+DMMoabGetFieldName++DMMoabGetFieldName++++man+manualpages/DM/DMMoabGetFieldName.html#DMMoabGetFieldName
man:+DMMoabSetFieldName++DMMoabSetFieldName++++man+manualpages/DM/DMMoabSetFieldName.html#DMMoabSetFieldName
man:+DMMoabGetFieldDof++DMMoabGetFieldDof++++man+manualpages/DM/DMMoabGetFieldDof.html#DMMoabGetFieldDof
man:+DMMoabGetFieldDofs++DMMoabGetFieldDofs++++man+manualpages/DM/DMMoabGetFieldDofs.html#DMMoabGetFieldDofs
man:+DMMoabGetFieldDofsLocal++DMMoabGetFieldDofsLocal++++man+manualpages/DM/DMMoabGetFieldDofsLocal.html#DMMoabGetFieldDofsLocal
man:+DMMoabGetDofs++DMMoabGetDofs++++man+manualpages/DM/DMMoabGetDofs.html#DMMoabGetDofs
man:+DMMoabGetDofsLocal++DMMoabGetDofsLocal++++man+manualpages/DM/DMMoabGetDofsLocal.html#DMMoabGetDofsLocal
man:+DMMoabGetDofsBlocked++DMMoabGetDofsBlocked++++man+manualpages/DM/DMMoabGetDofsBlocked.html#DMMoabGetDofsBlocked
man:+DMMoabGetDofsBlockedLocal++DMMoabGetDofsBlockedLocal++++man+manualpages/DM/DMMoabGetDofsBlockedLocal.html#DMMoabGetDofsBlockedLocal
man:+DMMoabGetVertexDofsBlocked++DMMoabGetVertexDofsBlocked++++man+manualpages/DM/DMMoabGetVertexDofsBlocked.html#DMMoabGetVertexDofsBlocked
man:+DMMoabGetVertexDofsBlockedLocal++DMMoabGetVertexDofsBlockedLocal++++man+manualpages/DM/DMMoabGetVertexDofsBlockedLocal.html#DMMoabGetVertexDofsBlockedLocal
man:+DMMoabOutput++DMMoabOutput++++man+manualpages/DM/DMMoabOutput.html#DMMoabOutput
man:+DMMoabCreateBoxMesh++DMMoabCreateBoxMesh++++man+manualpages/DM/DMMoabCreateBoxMesh.html#DMMoabCreateBoxMesh
man:+DMMoabLoadFromFile++DMMoabLoadFromFile++++man+manualpages/DM/DMMoabLoadFromFile.html#DMMoabLoadFromFile
man:+DMNETWORK++DMNETWORK++++man+manualpages/DM/DMNETWORK.html#DMNETWORK
man:+DMNetworkCreate++DMNetworkCreate++++man+manualpages/DM/DMNetworkCreate.html#DMNetworkCreate
man:+DMNetworkSetSizes++DMNetworkSetSizes++++man+manualpages/DM/DMNetworkSetSizes.html#DMNetworkSetSizes
man:+DMNetworkSetEdgeList++DMNetworkSetEdgeList++++man+manualpages/DM/DMNetworkSetEdgeList.html#DMNetworkSetEdgeList
man:+DMNetworkLayoutSetUp++DMNetworkLayoutSetUp++++man+manualpages/DM/DMNetworkLayoutSetUp.html#DMNetworkLayoutSetUp
man:+DMNetworkRegisterComponent++DMNetworkRegisterComponent++++man+manualpages/DM/DMNetworkRegisterComponent.html#DMNetworkRegisterComponent
man:+DMNetworkGetVertexRange++DMNetworkGetVertexRange++++man+manualpages/DM/DMNetworkGetVertexRange.html#DMNetworkGetVertexRange
man:+DMNetworkGetEdgeRange++DMNetworkGetEdgeRange++++man+manualpages/DM/DMNetworkGetEdgeRange.html#DMNetworkGetEdgeRange
man:+DMNetworkAddComponent++DMNetworkAddComponent++++man+manualpages/DM/DMNetworkAddComponent.html#DMNetworkAddComponent
man:+DMNetworkGetNumComponents++DMNetworkGetNumComponents++++man+manualpages/DM/DMNetworkGetNumComponents.html#DMNetworkGetNumComponents
man:+DMNetworkGetComponentTypeOffset++DMNetworkGetComponentTypeOffset++++man+manualpages/DM/DMNetworkGetComponentTypeOffset.html#DMNetworkGetComponentTypeOffset
man:+DMNetworkGetVariableOffset++DMNetworkGetVariableOffset++++man+manualpages/DM/DMNetworkGetVariableOffset.html#DMNetworkGetVariableOffset
man:+DMNetworkGetVariableGlobalOffset++DMNetworkGetVariableGlobalOffset++++man+manualpages/DM/DMNetworkGetVariableGlobalOffset.html#DMNetworkGetVariableGlobalOffset
man:+DMNetworkAddNumVariables++DMNetworkAddNumVariables++++man+manualpages/DM/DMNetworkAddNumVariables.html#DMNetworkAddNumVariables
man:+DMNetworkGetNumVariables++DMNetworkGetNumVariables++++man+manualpages/DM/DMNetworkGetNumVariables.html#DMNetworkGetNumVariables
man:+DMNetworkSetNumVariables++DMNetworkSetNumVariables++++man+manualpages/DM/DMNetworkSetNumVariables.html#DMNetworkSetNumVariables
man:+DMNetworkGetComponentDataArray++DMNetworkGetComponentDataArray++++man+manualpages/DM/DMNetworkGetComponentDataArray.html#DMNetworkGetComponentDataArray
man:+DMNetworkDistribute++DMNetworkDistribute++++man+manualpages/DM/DMNetworkDistribute.html#DMNetworkDistribute
man:+DMNetworkGetSupportingEdges++DMNetworkGetSupportingEdges++++man+manualpages/DM/DMNetworkGetSupportingEdges.html#DMNetworkGetSupportingEdges
man:+DMNetworkGetConnectedNodes++DMNetworkGetConnectedNodes++++man+manualpages/DM/DMNetworkGetConnectedNodes.html#DMNetworkGetConnectedNodes
man:+DMNetworkIsGhostVertex++DMNetworkIsGhostVertex++++man+manualpages/DM/DMNetworkIsGhostVertex.html#DMNetworkIsGhostVertex
man:+DMNetworkHasJacobian++DMNetworkHasJacobian++++man+manualpages/DM/DMNetworkHasJacobian.html#DMNetworkHasJacobian
man:+DMNetworkEdgeSetMatrix++DMNetworkEdgeSetMatrix++++man+manualpages/DM/DMNetworkEdgeSetMatrix.html#DMNetworkEdgeSetMatrix
man:+DMNetworkVertexSetMatrix++DMNetworkVertexSetMatrix++++man+manualpages/DM/DMNetworkVertexSetMatrix.html#DMNetworkVertexSetMatrix
man:+DMNetworkMonitorCreate++DMNetworkMonitorCreate++++man+manualpages/DM/DMNetworkMonitorCreate.html#DMNetworkMonitorCreate
man:+DMNetworkMonitorDestroy++DMNetworkMonitorDestroy++++man+manualpages/DM/DMNetworkMonitorDestroy.html#DMNetworkMonitorDestroy
man:+DMNetworkMonitorPop++DMNetworkMonitorPop++++man+manualpages/DM/DMNetworkMonitorPop.html#DMNetworkMonitorPop
man:+DMNetworkMonitorAdd++DMNetworkMonitorAdd++++man+manualpages/DM/DMNetworkMonitorAdd.html#DMNetworkMonitorAdd
man:+DMNetworkMonitorView++DMNetworkMonitorView++++man+manualpages/DM/DMNetworkMonitorView.html#DMNetworkMonitorView
man:+DMForestRegisterType++DMForestRegisterType++++man+manualpages/DM/DMForestRegisterType.html#DMForestRegisterType
man:+DMIsForest++DMIsForest++++man+manualpages/DM/DMIsForest.html#DMIsForest
man:+DMForestTemplate++DMForestTemplate++++man+manualpages/DM/DMForestTemplate.html#DMForestTemplate
man:+DMForestSetTopology++DMForestSetTopology++++man+manualpages/DM/DMForestSetTopology.html#DMForestSetTopology
man:+DMForestGetTopology++DMForestGetTopology++++man+manualpages/DM/DMForestGetTopology.html#DMForestGetTopology
man:+DMForestSetBaseDM++DMForestSetBaseDM++++man+manualpages/DM/DMForestSetBaseDM.html#DMForestSetBaseDM
man:+DMForestGetBaseDM++DMForestGetBaseDM++++man+manualpages/DM/DMForestGetBaseDM.html#DMForestGetBaseDM
man:+DMForestSetAdaptivityForest++DMForestSetAdaptivityForest++++man+manualpages/DM/DMForestSetAdaptivityForest.html#DMForestSetAdaptivityForest
man:+DMForestGetAdaptivityForest++DMForestGetAdaptivityForest++++man+manualpages/DM/DMForestGetAdaptivityForest.html#DMForestGetAdaptivityForest
man:+DMForestSetAdaptivityPurpose++DMForestSetAdaptivityPurpose++++man+manualpages/DM/DMForestSetAdaptivityPurpose.html#DMForestSetAdaptivityPurpose
man:+DMForestGetAdaptivityPurpose++DMForestGetAdaptivityPurpose++++man+manualpages/DM/DMForestGetAdaptivityPurpose.html#DMForestGetAdaptivityPurpose
man:+DMForestSetAdjacencyDimension++DMForestSetAdjacencyDimension++++man+manualpages/DM/DMForestSetAdjacencyDimension.html#DMForestSetAdjacencyDimension
man:+DMForestSetAdjacencyCodimension++DMForestSetAdjacencyCodimension++++man+manualpages/DM/DMForestSetAdjacencyCodimension.html#DMForestSetAdjacencyCodimension
man:+DMForestGetAdjacencyDimension++DMForestGetAdjacencyDimension++++man+manualpages/DM/DMForestGetAdjacencyDimension.html#DMForestGetAdjacencyDimension
man:+DMForestGetAdjacencyCodimension++DMForestGetAdjacencyCodimension++++man+manualpages/DM/DMForestGetAdjacencyCodimension.html#DMForestGetAdjacencyCodimension
man:+DMForestSetPartitionOverlap++DMForestSetPartitionOverlap++++man+manualpages/DM/DMForestSetPartitionOverlap.html#DMForestSetPartitionOverlap
man:+DMForestGetPartitionOverlap++DMForestGetPartitionOverlap++++man+manualpages/DM/DMForestGetPartitionOverlap.html#DMForestGetPartitionOverlap
man:+DMForestSetMinimumRefinement++DMForestSetMinimumRefinement++++man+manualpages/DM/DMForestSetMinimumRefinement.html#DMForestSetMinimumRefinement
man:+DMForestGetMinimumRefinement++DMForestGetMinimumRefinement++++man+manualpages/DM/DMForestGetMinimumRefinement.html#DMForestGetMinimumRefinement
man:+DMForestSetInitialRefinement++DMForestSetInitialRefinement++++man+manualpages/DM/DMForestSetInitialRefinement.html#DMForestSetInitialRefinement
man:+DMForestGetInitialRefinement++DMForestGetInitialRefinement++++man+manualpages/DM/DMForestGetInitialRefinement.html#DMForestGetInitialRefinement
man:+DMForestSetMaximumRefinement++DMForestSetMaximumRefinement++++man+manualpages/DM/DMForestSetMaximumRefinement.html#DMForestSetMaximumRefinement
man:+DMForestGetMaximumRefinement++DMForestGetMaximumRefinement++++man+manualpages/DM/DMForestGetMaximumRefinement.html#DMForestGetMaximumRefinement
man:+DMForestSetAdaptivityStrategy++DMForestSetAdaptivityStrategy++++man+manualpages/DM/DMForestSetAdaptivityStrategy.html#DMForestSetAdaptivityStrategy
man:+DMForestSetAdaptivityStrategy++DMForestSetAdaptivityStrategy++++man+manualpages/DM/DMForestSetAdaptivityStrategy.html#DMForestSetAdaptivityStrategy
man:+DMForestSetComputeAdaptivitySF++DMForestSetComputeAdaptivitySF++++man+manualpages/DM/DMForestSetComputeAdaptivitySF.html#DMForestSetComputeAdaptivitySF
man:+DMForestGetComputeAdaptivitySF++DMForestGetComputeAdaptivitySF++++man+manualpages/DM/DMForestGetComputeAdaptivitySF.html#DMForestGetComputeAdaptivitySF
man:+DMForestGetAdaptivitySF++DMForestGetAdaptivitySF++++man+manualpages/DM/DMForestGetAdaptivitySF.html#DMForestGetAdaptivitySF
man:+DMForestSetGradeFactor++DMForestSetGradeFactor++++man+manualpages/DM/DMForestSetGradeFactor.html#DMForestSetGradeFactor
man:+DMForestGetGradeFactor++DMForestGetGradeFactor++++man+manualpages/DM/DMForestGetGradeFactor.html#DMForestGetGradeFactor
man:+DMForestSetCellWeightFactor++DMForestSetCellWeightFactor++++man+manualpages/DM/DMForestSetCellWeightFactor.html#DMForestSetCellWeightFactor
man:+DMForestGetCellWeightFactor++DMForestGetCellWeightFactor++++man+manualpages/DM/DMForestGetCellWeightFactor.html#DMForestGetCellWeightFactor
man:+DMForestGetCellChart++DMForestGetCellChart++++man+manualpages/DM/DMForestGetCellChart.html#DMForestGetCellChart
man:+DMForestGetCellSF++DMForestGetCellSF++++man+manualpages/DM/DMForestGetCellSF.html#DMForestGetCellSF
man:+DMForestSetAdaptivityLabel++DMForestSetAdaptivityLabel++++man+manualpages/DM/DMForestSetAdaptivityLabel.html#DMForestSetAdaptivityLabel
man:+DMForestGetAdaptivityLabel++DMForestGetAdaptivityLabel++++man+manualpages/DM/DMForestGetAdaptivityLabel.html#DMForestGetAdaptivityLabel
man:+DMForestSetCellWeights++DMForestSetCellWeights++++man+manualpages/DM/DMForestSetCellWeights.html#DMForestSetCellWeights
man:+DMForestGetCellWeights++DMForestGetCellWeights++++man+manualpages/DM/DMForestGetCellWeights.html#DMForestGetCellWeights
man:+DMForestSetWeightCapacity++DMForestSetWeightCapacity++++man+manualpages/DM/DMForestSetWeightCapacity.html#DMForestSetWeightCapacity
man:+DMForestGetWeightCapacity++DMForestGetWeightCapacity++++man+manualpages/DM/DMForestGetWeightCapacity.html#DMForestGetWeightCapacity
man:+DMFOREST++DMFOREST++++man+manualpages/DM/DMFOREST.html#DMFOREST
man:+DMCreate++DMCreate++++man+manualpages/DM/DMCreate.html#DMCreate
man:+DMClone++DMClone++++man+manualpages/DM/DMClone.html#DMClone
man:+DMSetVecType++DMSetVecType++++man+manualpages/DM/DMSetVecType.html#DMSetVecType
man:+DMGetVecType++DMGetVecType++++man+manualpages/DM/DMGetVecType.html#DMGetVecType
man:+VecGetDM++VecGetDM++++man+manualpages/DM/VecGetDM.html#VecGetDM
man:+VecSetDM++VecSetDM++++man+manualpages/DM/VecSetDM.html#VecSetDM
man:+DMSetMatType++DMSetMatType++++man+manualpages/DM/DMSetMatType.html#DMSetMatType
man:+DMGetMatType++DMGetMatType++++man+manualpages/DM/DMGetMatType.html#DMGetMatType
man:+MatGetDM++MatGetDM++++man+manualpages/DM/MatGetDM.html#MatGetDM
man:+MatSetDM++MatSetDM++++man+manualpages/DM/MatSetDM.html#MatSetDM
man:+DMSetOptionsPrefix++DMSetOptionsPrefix++++man+manualpages/DM/DMSetOptionsPrefix.html#DMSetOptionsPrefix
man:+DMAppendOptionsPrefix++DMAppendOptionsPrefix++++man+manualpages/DM/DMAppendOptionsPrefix.html#DMAppendOptionsPrefix
man:+DMGetOptionsPrefix++DMGetOptionsPrefix++++man+manualpages/DM/DMGetOptionsPrefix.html#DMGetOptionsPrefix
man:+DMDestroy++DMDestroy++++man+manualpages/DM/DMDestroy.html#DMDestroy
man:+DMSetUp++DMSetUp++++man+manualpages/DM/DMSetUp.html#DMSetUp
man:+DMSetFromOptions++DMSetFromOptions++++man+manualpages/DM/DMSetFromOptions.html#DMSetFromOptions
man:+DMView++DMView++++man+manualpages/DM/DMView.html#DMView
man:+DMCreateGlobalVector++DMCreateGlobalVector++++man+manualpages/DM/DMCreateGlobalVector.html#DMCreateGlobalVector
man:+DMCreateLocalVector++DMCreateLocalVector++++man+manualpages/DM/DMCreateLocalVector.html#DMCreateLocalVector
man:+DMGetLocalToGlobalMapping++DMGetLocalToGlobalMapping++++man+manualpages/DM/DMGetLocalToGlobalMapping.html#DMGetLocalToGlobalMapping
man:+DMGetBlockSize++DMGetBlockSize++++man+manualpages/DM/DMGetBlockSize.html#DMGetBlockSize
man:+DMCreateInterpolation++DMCreateInterpolation++++man+manualpages/DM/DMCreateInterpolation.html#DMCreateInterpolation
man:+DMCreateRestriction++DMCreateRestriction++++man+manualpages/DM/DMCreateRestriction.html#DMCreateRestriction
man:+DMCreateInjection++DMCreateInjection++++man+manualpages/DM/DMCreateInjection.html#DMCreateInjection
man:+DMCreateColoring++DMCreateColoring++++man+manualpages/DM/DMCreateColoring.html#DMCreateColoring
man:+DMCreateMatrix++DMCreateMatrix++++man+manualpages/DM/DMCreateMatrix.html#DMCreateMatrix
man:+DMSetMatrixPreallocateOnly++DMSetMatrixPreallocateOnly++++man+manualpages/DM/DMSetMatrixPreallocateOnly.html#DMSetMatrixPreallocateOnly
man:+DMGetWorkArray++DMGetWorkArray++++man+manualpages/DM/DMGetWorkArray.html#DMGetWorkArray
man:+DMRestoreWorkArray++DMRestoreWorkArray++++man+manualpages/DM/DMRestoreWorkArray.html#DMRestoreWorkArray
man:+DMCreateFieldIS++DMCreateFieldIS++++man+manualpages/DM/DMCreateFieldIS.html#DMCreateFieldIS
man:+DMCreateFieldDecomposition++DMCreateFieldDecomposition++++man+manualpages/DM/DMCreateFieldDecomposition.html#DMCreateFieldDecomposition
man:+DMCreateSubDM++DMCreateSubDM++++man+manualpages/DM/DMCreateSubDM.html#DMCreateSubDM
man:+DMCreateDomainDecomposition++DMCreateDomainDecomposition++++man+manualpages/DM/DMCreateDomainDecomposition.html#DMCreateDomainDecomposition
man:+DMCreateDomainDecompositionScatters++DMCreateDomainDecompositionScatters++++man+manualpages/DM/DMCreateDomainDecompositionScatters.html#DMCreateDomainDecompositionScatters
man:+DMRefine++DMRefine++++man+manualpages/DM/DMRefine.html#DMRefine
man:+DMRefineHookAdd++DMRefineHookAdd++++man+manualpages/DM/DMRefineHookAdd.html#DMRefineHookAdd
man:+DMInterpolate++DMInterpolate++++man+manualpages/DM/DMInterpolate.html#DMInterpolate
man:+DMGetRefineLevel++DMGetRefineLevel++++man+manualpages/DM/DMGetRefineLevel.html#DMGetRefineLevel
man:+DMSetRefineLevel++DMSetRefineLevel++++man+manualpages/DM/DMSetRefineLevel.html#DMSetRefineLevel
man:+DMGlobalToLocalHookAdd++DMGlobalToLocalHookAdd++++man+manualpages/DM/DMGlobalToLocalHookAdd.html#DMGlobalToLocalHookAdd
man:+DMGlobalToLocalBegin++DMGlobalToLocalBegin++++man+manualpages/DM/DMGlobalToLocalBegin.html#DMGlobalToLocalBegin
man:+DMGlobalToLocalEnd++DMGlobalToLocalEnd++++man+manualpages/DM/DMGlobalToLocalEnd.html#DMGlobalToLocalEnd
man:+DMLocalToGlobalHookAdd++DMLocalToGlobalHookAdd++++man+manualpages/DM/DMLocalToGlobalHookAdd.html#DMLocalToGlobalHookAdd
man:+DMLocalToGlobalBegin++DMLocalToGlobalBegin++++man+manualpages/DM/DMLocalToGlobalBegin.html#DMLocalToGlobalBegin
man:+DMLocalToGlobalEnd++DMLocalToGlobalEnd++++man+manualpages/DM/DMLocalToGlobalEnd.html#DMLocalToGlobalEnd
man:+DMLocalToLocalBegin++DMLocalToLocalBegin++++man+manualpages/DM/DMLocalToLocalBegin.html#DMLocalToLocalBegin
man:+DMLocalToLocalEnd++DMLocalToLocalEnd++++man+manualpages/DM/DMLocalToLocalEnd.html#DMLocalToLocalEnd
man:+DMCoarsen++DMCoarsen++++man+manualpages/DM/DMCoarsen.html#DMCoarsen
man:+DMCoarsenHookAdd++DMCoarsenHookAdd++++man+manualpages/DM/DMCoarsenHookAdd.html#DMCoarsenHookAdd
man:+DMRestrict++DMRestrict++++man+manualpages/DM/DMRestrict.html#DMRestrict
man:+DMSubDomainHookAdd++DMSubDomainHookAdd++++man+manualpages/DM/DMSubDomainHookAdd.html#DMSubDomainHookAdd
man:+DMSubDomainRestrict++DMSubDomainRestrict++++man+manualpages/DM/DMSubDomainRestrict.html#DMSubDomainRestrict
man:+DMGetCoarsenLevel++DMGetCoarsenLevel++++man+manualpages/DM/DMGetCoarsenLevel.html#DMGetCoarsenLevel
man:+DMRefineHierarchy++DMRefineHierarchy++++man+manualpages/DM/DMRefineHierarchy.html#DMRefineHierarchy
man:+DMCoarsenHierarchy++DMCoarsenHierarchy++++man+manualpages/DM/DMCoarsenHierarchy.html#DMCoarsenHierarchy
man:+DMCreateAggregates++DMCreateAggregates++++man+manualpages/DM/DMCreateAggregates.html#DMCreateAggregates
man:+DMSetApplicationContextDestroy++DMSetApplicationContextDestroy++++man+manualpages/DM/DMSetApplicationContextDestroy.html#DMSetApplicationContextDestroy
man:+DMSetApplicationContext++DMSetApplicationContext++++man+manualpages/DM/DMSetApplicationContext.html#DMSetApplicationContext
man:+DMGetApplicationContext++DMGetApplicationContext++++man+manualpages/DM/DMGetApplicationContext.html#DMGetApplicationContext
man:+DMSetVariableBounds++DMSetVariableBounds++++man+manualpages/DM/DMSetVariableBounds.html#DMSetVariableBounds
man:+DMHasVariableBounds++DMHasVariableBounds++++man+manualpages/DM/DMHasVariableBounds.html#DMHasVariableBounds
man:+DMComputeVariableBounds++DMComputeVariableBounds++++man+manualpages/DM/DMComputeVariableBounds.html#DMComputeVariableBounds
man:+DMHasColoring++DMHasColoring++++man+manualpages/DM/DMHasColoring.html#DMHasColoring
man:+DMHasCreateRestriction++DMHasCreateRestriction++++man+manualpages/DM/DMHasCreateRestriction.html#DMHasCreateRestriction
man:+DMSetVec++DMSetVec++++man+manualpages/DM/DMSetVec.html#DMSetVec
man:+DMSetType++DMSetType++++man+manualpages/DM/DMSetType.html#DMSetType
man:+DMGetType++DMGetType++++man+manualpages/DM/DMGetType.html#DMGetType
man:+DMConvert++DMConvert++++man+manualpages/DM/DMConvert.html#DMConvert
man:+DMRegister++DMRegister++++man+manualpages/DM/DMRegister.html#DMRegister
man:+DMLoad++DMLoad++++man+manualpages/DM/DMLoad.html#DMLoad
man:+DMGetDefaultSection++DMGetDefaultSection++++man+manualpages/DM/DMGetDefaultSection.html#DMGetDefaultSection
man:+DMSetDefaultSection++DMSetDefaultSection++++man+manualpages/DM/DMSetDefaultSection.html#DMSetDefaultSection
man:+DMGetDefaultConstraints++DMGetDefaultConstraints++++man+manualpages/DM/DMGetDefaultConstraints.html#DMGetDefaultConstraints
man:+DMSetDefaultConstraints++DMSetDefaultConstraints++++man+manualpages/DM/DMSetDefaultConstraints.html#DMSetDefaultConstraints
man:+DMGetDefaultGlobalSection++DMGetDefaultGlobalSection++++man+manualpages/DM/DMGetDefaultGlobalSection.html#DMGetDefaultGlobalSection
man:+DMSetDefaultGlobalSection++DMSetDefaultGlobalSection++++man+manualpages/DM/DMSetDefaultGlobalSection.html#DMSetDefaultGlobalSection
man:+DMGetDefaultSF++DMGetDefaultSF++++man+manualpages/DM/DMGetDefaultSF.html#DMGetDefaultSF
man:+DMSetDefaultSF++DMSetDefaultSF++++man+manualpages/DM/DMSetDefaultSF.html#DMSetDefaultSF
man:+DMCreateDefaultSF++DMCreateDefaultSF++++man+manualpages/DM/DMCreateDefaultSF.html#DMCreateDefaultSF
man:+DMGetPointSF++DMGetPointSF++++man+manualpages/DM/DMGetPointSF.html#DMGetPointSF
man:+DMSetPointSF++DMSetPointSF++++man+manualpages/DM/DMSetPointSF.html#DMSetPointSF
man:+DMGetDS++DMGetDS++++man+manualpages/DM/DMGetDS.html#DMGetDS
man:+DMSetDS++DMSetDS++++man+manualpages/DM/DMSetDS.html#DMSetDS
man:+DMGetField++DMGetField++++man+manualpages/DM/DMGetField.html#DMGetField
man:+DMSetField++DMSetField++++man+manualpages/DM/DMSetField.html#DMSetField
man:+DMGetDimension++DMGetDimension++++man+manualpages/DM/DMGetDimension.html#DMGetDimension
man:+DMSetDimension++DMSetDimension++++man+manualpages/DM/DMSetDimension.html#DMSetDimension
man:+DMGetDimPoints++DMGetDimPoints++++man+manualpages/DM/DMGetDimPoints.html#DMGetDimPoints
man:+DMSetCoordinates++DMSetCoordinates++++man+manualpages/DM/DMSetCoordinates.html#DMSetCoordinates
man:+DMSetCoordinatesLocal++DMSetCoordinatesLocal++++man+manualpages/DM/DMSetCoordinatesLocal.html#DMSetCoordinatesLocal
man:+DMGetCoordinates++DMGetCoordinates++++man+manualpages/DM/DMGetCoordinates.html#DMGetCoordinates
man:+DMGetCoordinatesLocal++DMGetCoordinatesLocal++++man+manualpages/DM/DMGetCoordinatesLocal.html#DMGetCoordinatesLocal
man:+DMGetCoordinateDM++DMGetCoordinateDM++++man+manualpages/DM/DMGetCoordinateDM.html#DMGetCoordinateDM
man:+DMSetCoordinateDM++DMSetCoordinateDM++++man+manualpages/DM/DMSetCoordinateDM.html#DMSetCoordinateDM
man:+DMGetCoordinateDim++DMGetCoordinateDim++++man+manualpages/DM/DMGetCoordinateDim.html#DMGetCoordinateDim
man:+DMSetCoordinateDim++DMSetCoordinateDim++++man+manualpages/DM/DMSetCoordinateDim.html#DMSetCoordinateDim
man:+DMGetCoordinateSection++DMGetCoordinateSection++++man+manualpages/DM/DMGetCoordinateSection.html#DMGetCoordinateSection
man:+DMSetCoordinateSection++DMSetCoordinateSection++++man+manualpages/DM/DMSetCoordinateSection.html#DMSetCoordinateSection
man:+DMSetPeriodicity++DMSetPeriodicity++++man+manualpages/DM/DMSetPeriodicity.html#DMSetPeriodicity
man:+DMSetPeriodicity++DMSetPeriodicity++++man+manualpages/DM/DMSetPeriodicity.html#DMSetPeriodicity
man:+DMLocalizeCoordinate++DMLocalizeCoordinate++++man+manualpages/DM/DMLocalizeCoordinate.html#DMLocalizeCoordinate
man:+DMGetCoordinatesLocalized++DMGetCoordinatesLocalized++++man+manualpages/DM/DMGetCoordinatesLocalized.html#DMGetCoordinatesLocalized
man:+DMLocalizeCoordinates++DMLocalizeCoordinates++++man+manualpages/DM/DMLocalizeCoordinates.html#DMLocalizeCoordinates
man:+DMLocatePoints++DMLocatePoints++++man+manualpages/DM/DMLocatePoints.html#DMLocatePoints
man:+DMGetOutputDM++DMGetOutputDM++++man+manualpages/DM/DMGetOutputDM.html#DMGetOutputDM
man:+DMGetOutputSequenceNumber++DMGetOutputSequenceNumber++++man+manualpages/DM/DMGetOutputSequenceNumber.html#DMGetOutputSequenceNumber
man:+DMSetOutputSequenceNumber++DMSetOutputSequenceNumber++++man+manualpages/DM/DMSetOutputSequenceNumber.html#DMSetOutputSequenceNumber
man:+DMOutputSequenceLoad++DMOutputSequenceLoad++++man+manualpages/DM/DMOutputSequenceLoad.html#DMOutputSequenceLoad
man:+DMGetUseNatural++DMGetUseNatural++++man+manualpages/DM/DMGetUseNatural.html#DMGetUseNatural
man:+DMSetUseNatural++DMSetUseNatural++++man+manualpages/DM/DMSetUseNatural.html#DMSetUseNatural
man:+DMCreateLabel++DMCreateLabel++++man+manualpages/DM/DMCreateLabel.html#DMCreateLabel
man:+DMGetLabelValue++DMGetLabelValue++++man+manualpages/DM/DMGetLabelValue.html#DMGetLabelValue
man:+DMSetLabelValue++DMSetLabelValue++++man+manualpages/DM/DMSetLabelValue.html#DMSetLabelValue
man:+DMClearLabelValue++DMClearLabelValue++++man+manualpages/DM/DMClearLabelValue.html#DMClearLabelValue
man:+DMGetLabelSize++DMGetLabelSize++++man+manualpages/DM/DMGetLabelSize.html#DMGetLabelSize
man:+DMGetLabelIdIS++DMGetLabelIdIS++++man+manualpages/DM/DMGetLabelIdIS.html#DMGetLabelIdIS
man:+DMGetStratumSize++DMGetStratumSize++++man+manualpages/DM/DMGetStratumSize.html#DMGetStratumSize
man:+DMGetStratumIS++DMGetStratumIS++++man+manualpages/DM/DMGetStratumIS.html#DMGetStratumIS
man:+DMClearLabelStratum++DMClearLabelStratum++++man+manualpages/DM/DMClearLabelStratum.html#DMClearLabelStratum
man:+DMGetNumLabels++DMGetNumLabels++++man+manualpages/DM/DMGetNumLabels.html#DMGetNumLabels
man:+DMGetLabelName++DMGetLabelName++++man+manualpages/DM/DMGetLabelName.html#DMGetLabelName
man:+DMHasLabel++DMHasLabel++++man+manualpages/DM/DMHasLabel.html#DMHasLabel
man:+DMGetLabel++DMGetLabel++++man+manualpages/DM/DMGetLabel.html#DMGetLabel
man:+DMGetLabelByNum++DMGetLabelByNum++++man+manualpages/DM/DMGetLabelByNum.html#DMGetLabelByNum
man:+DMAddLabel++DMAddLabel++++man+manualpages/DM/DMAddLabel.html#DMAddLabel
man:+DMRemoveLabel++DMRemoveLabel++++man+manualpages/DM/DMRemoveLabel.html#DMRemoveLabel
man:+DMGetLabelOutput++DMGetLabelOutput++++man+manualpages/DM/DMGetLabelOutput.html#DMGetLabelOutput
man:+DMSetLabelOutput++DMSetLabelOutput++++man+manualpages/DM/DMSetLabelOutput.html#DMSetLabelOutput
man:+DMCopyLabels++DMCopyLabels++++man+manualpages/DM/DMCopyLabels.html#DMCopyLabels
man:+DMGetCoarseDM++DMGetCoarseDM++++man+manualpages/DM/DMGetCoarseDM.html#DMGetCoarseDM
man:+DMSetCoarseDM++DMSetCoarseDM++++man+manualpages/DM/DMSetCoarseDM.html#DMSetCoarseDM
man:+DMGetFineDM++DMGetFineDM++++man+manualpages/DM/DMGetFineDM.html#DMGetFineDM
man:+DMSetFineDM++DMSetFineDM++++man+manualpages/DM/DMSetFineDM.html#DMSetFineDM
man:+DMAddBoundary++DMAddBoundary++++man+manualpages/DM/DMAddBoundary.html#DMAddBoundary
man:+DMGetNumBoundary++DMGetNumBoundary++++man+manualpages/DM/DMGetNumBoundary.html#DMGetNumBoundary
man:+DMGetBoundary++DMGetBoundary++++man+manualpages/DM/DMGetBoundary.html#DMGetBoundary
man:+DMProjectFunction++DMProjectFunction++++man+manualpages/DM/DMProjectFunction.html#DMProjectFunction
man:+DMComputeL2Diff++DMComputeL2Diff++++man+manualpages/DM/DMComputeL2Diff.html#DMComputeL2Diff
man:+DMComputeL2GradientDiff++DMComputeL2GradientDiff++++man+manualpages/DM/DMComputeL2GradientDiff.html#DMComputeL2GradientDiff
man:+DMComputeL2FieldDiff++DMComputeL2FieldDiff++++man+manualpages/DM/DMComputeL2FieldDiff.html#DMComputeL2FieldDiff
man:+DMRegisterAll++DMRegisterAll++++man+manualpages/DM/DMRegisterAll.html#DMRegisterAll
man:+PetscPartitionerRegisterAll++PetscPartitionerRegisterAll++++man+manualpages/DM/PetscPartitionerRegisterAll.html#PetscPartitionerRegisterAll
man:+PetscSpaceRegisterAll++PetscSpaceRegisterAll++++man+manualpages/DM/PetscSpaceRegisterAll.html#PetscSpaceRegisterAll
man:+PetscDualSpaceRegisterAll++PetscDualSpaceRegisterAll++++man+manualpages/DM/PetscDualSpaceRegisterAll.html#PetscDualSpaceRegisterAll
man:+PetscFERegisterAll++PetscFERegisterAll++++man+manualpages/DM/PetscFERegisterAll.html#PetscFERegisterAll
man:+PetscLimiterRegisterAll++PetscLimiterRegisterAll++++man+manualpages/DM/PetscLimiterRegisterAll.html#PetscLimiterRegisterAll
man:+PetscFVRegisterAll++PetscFVRegisterAll++++man+manualpages/DM/PetscFVRegisterAll.html#PetscFVRegisterAll
man:+PetscDSRegisterAll++PetscDSRegisterAll++++man+manualpages/DM/PetscDSRegisterAll.html#PetscDSRegisterAll
man:+DMGetLocalVector++DMGetLocalVector++++man+manualpages/DM/DMGetLocalVector.html#DMGetLocalVector
man:+DMRestoreLocalVector++DMRestoreLocalVector++++man+manualpages/DM/DMRestoreLocalVector.html#DMRestoreLocalVector
man:+DMGetGlobalVector++DMGetGlobalVector++++man+manualpages/DM/DMGetGlobalVector.html#DMGetGlobalVector
man:+DMClearGlobalVectors++DMClearGlobalVectors++++man+manualpages/DM/DMClearGlobalVectors.html#DMClearGlobalVectors
man:+DMClearLocalVectors++DMClearLocalVectors++++man+manualpages/DM/DMClearLocalVectors.html#DMClearLocalVectors
man:+DMRestoreGlobalVector++DMRestoreGlobalVector++++man+manualpages/DM/DMRestoreGlobalVector.html#DMRestoreGlobalVector
man:+DMHasNamedGlobalVector++DMHasNamedGlobalVector++++man+manualpages/DM/DMHasNamedGlobalVector.html#DMHasNamedGlobalVector
man:+DMGetNamedGlobalVector++DMGetNamedGlobalVector++++man+manualpages/DM/DMGetNamedGlobalVector.html#DMGetNamedGlobalVector
man:+DMRestoreNamedGlobalVector++DMRestoreNamedGlobalVector++++man+manualpages/DM/DMRestoreNamedGlobalVector.html#DMRestoreNamedGlobalVector
man:+DMHasNamedLocalVector++DMHasNamedLocalVector++++man+manualpages/DM/DMHasNamedLocalVector.html#DMHasNamedLocalVector
man:+DMGetNamedLocalVector++DMGetNamedLocalVector++++man+manualpages/DM/DMGetNamedLocalVector.html#DMGetNamedLocalVector
man:+DMRestoreNamedLocalVector++DMRestoreNamedLocalVector++++man+manualpages/DM/DMRestoreNamedLocalVector.html#DMRestoreNamedLocalVector
man:+DMFinalizePackage++DMFinalizePackage++++man+manualpages/DM/DMFinalizePackage.html#DMFinalizePackage
man:+DMInitializePackage++DMInitializePackage++++man+manualpages/DM/DMInitializePackage.html#DMInitializePackage
man:+PetscFEFinalizePackage++PetscFEFinalizePackage++++man+manualpages/DM/PetscFEFinalizePackage.html#PetscFEFinalizePackage
man:+PetscFEInitializePackage++PetscFEInitializePackage++++man+manualpages/DM/PetscFEInitializePackage.html#PetscFEInitializePackage
man:+PetscFVFinalizePackage++PetscFVFinalizePackage++++man+manualpages/DM/PetscFVFinalizePackage.html#PetscFVFinalizePackage
man:+PetscFVInitializePackage++PetscFVInitializePackage++++man+manualpages/DM/PetscFVInitializePackage.html#PetscFVInitializePackage
man:+PetscDSFinalizePackage++PetscDSFinalizePackage++++man+manualpages/DM/PetscDSFinalizePackage.html#PetscDSFinalizePackage
man:+PetscDSInitializePackage++PetscDSInitializePackage++++man+manualpages/DM/PetscDSInitializePackage.html#PetscDSInitializePackage
man:+PetscQuadrature++PetscQuadrature++++man+manualpages/DM/PetscQuadrature.html#PetscQuadrature
man:+PetscSpaceType++PetscSpaceType++++man+manualpages/DM/PetscSpaceType.html#PetscSpaceType
man:+PetscDualSpaceType++PetscDualSpaceType++++man+manualpages/DM/PetscDualSpaceType.html#PetscDualSpaceType
man:+PetscFEType++PetscFEType++++man+manualpages/DM/PetscFEType.html#PetscFEType
man:+PetscSpace++PetscSpace++++man+manualpages/DM/PetscSpace.html#PetscSpace
man:+PetscDualSpace++PetscDualSpace++++man+manualpages/DM/PetscDualSpace.html#PetscDualSpace
man:+PetscFE++PetscFE++++man+manualpages/DM/PetscFE.html#PetscFE
man:+PetscFEJacobianType++PetscFEJacobianType++++man+manualpages/DM/PetscFEJacobianType.html#PetscFEJacobianType
man:+PetscLimiterType++PetscLimiterType++++man+manualpages/DM/PetscLimiterType.html#PetscLimiterType
man:+PetscFVType++PetscFVType++++man+manualpages/DM/PetscFVType.html#PetscFVType
man:+PetscLimiter++PetscLimiter++++man+manualpages/DM/PetscLimiter.html#PetscLimiter
man:+PetscFV++PetscFV++++man+manualpages/DM/PetscFV.html#PetscFV
man:+PetscFVFaceGeom++PetscFVFaceGeom++++man+manualpages/DM/PetscFVFaceGeom.html#PetscFVFaceGeom
man:+PetscFVCellGeom++PetscFVCellGeom++++man+manualpages/DM/PetscFVCellGeom.html#PetscFVCellGeom
man:+PetscDSType++PetscDSType++++man+manualpages/DM/PetscDSType.html#PetscDSType
man:+PetscDS++PetscDS++++man+manualpages/DM/PetscDS.html#PetscDS
man:+PetscQuadratureCreate++PetscQuadratureCreate++++man+manualpages/DM/PetscQuadratureCreate.html#PetscQuadratureCreate
man:+PetscQuadratureDuplicate++PetscQuadratureDuplicate++++man+manualpages/DM/PetscQuadratureDuplicate.html#PetscQuadratureDuplicate
man:+PetscQuadratureDestroy++PetscQuadratureDestroy++++man+manualpages/DM/PetscQuadratureDestroy.html#PetscQuadratureDestroy
man:+PetscQuadratureGetOrder++PetscQuadratureGetOrder++++man+manualpages/DM/PetscQuadratureGetOrder.html#PetscQuadratureGetOrder
man:+PetscQuadratureSetOrder++PetscQuadratureSetOrder++++man+manualpages/DM/PetscQuadratureSetOrder.html#PetscQuadratureSetOrder
man:+PetscQuadratureGetData++PetscQuadratureGetData++++man+manualpages/DM/PetscQuadratureGetData.html#PetscQuadratureGetData
man:+PetscQuadratureSetData++PetscQuadratureSetData++++man+manualpages/DM/PetscQuadratureSetData.html#PetscQuadratureSetData
man:+PetscQuadratureView++PetscQuadratureView++++man+manualpages/DM/PetscQuadratureView.html#PetscQuadratureView
man:+PetscQuadratureExpandComposite++PetscQuadratureExpandComposite++++man+manualpages/DM/PetscQuadratureExpandComposite.html#PetscQuadratureExpandComposite
man:+PetscDTLegendreEval++PetscDTLegendreEval++++man+manualpages/DM/PetscDTLegendreEval.html#PetscDTLegendreEval
man:+PetscDTGaussQuadrature++PetscDTGaussQuadrature++++man+manualpages/DM/PetscDTGaussQuadrature.html#PetscDTGaussQuadrature
man:+PetscDTGaussTensorQuadrature++PetscDTGaussTensorQuadrature++++man+manualpages/DM/PetscDTGaussTensorQuadrature.html#PetscDTGaussTensorQuadrature
man:+PetscDTGaussJacobiQuadrature++PetscDTGaussJacobiQuadrature++++man+manualpages/DM/PetscDTGaussJacobiQuadrature.html#PetscDTGaussJacobiQuadrature
man:+PetscDTTanhSinhTensorQuadrature++PetscDTTanhSinhTensorQuadrature++++man+manualpages/DM/PetscDTTanhSinhTensorQuadrature.html#PetscDTTanhSinhTensorQuadrature
man:+PetscDTReconstructPoly++PetscDTReconstructPoly++++man+manualpages/DM/PetscDTReconstructPoly.html#PetscDTReconstructPoly
man:+PetscSpaceRegister++PetscSpaceRegister++++man+manualpages/DM/PetscSpaceRegister.html#PetscSpaceRegister
man:+PetscSpaceSetType++PetscSpaceSetType++++man+manualpages/DM/PetscSpaceSetType.html#PetscSpaceSetType
man:+PetscSpaceGetType++PetscSpaceGetType++++man+manualpages/DM/PetscSpaceGetType.html#PetscSpaceGetType
man:+PetscSpaceView++PetscSpaceView++++man+manualpages/DM/PetscSpaceView.html#PetscSpaceView
man:+PetscSpaceSetFromOptions++PetscSpaceSetFromOptions++++man+manualpages/DM/PetscSpaceSetFromOptions.html#PetscSpaceSetFromOptions
man:+PetscSpaceSetUp++PetscSpaceSetUp++++man+manualpages/DM/PetscSpaceSetUp.html#PetscSpaceSetUp
man:+PetscSpaceDestroy++PetscSpaceDestroy++++man+manualpages/DM/PetscSpaceDestroy.html#PetscSpaceDestroy
man:+PetscSpaceCreate++PetscSpaceCreate++++man+manualpages/DM/PetscSpaceCreate.html#PetscSpaceCreate
man:+PetscSpaceGetOrder++PetscSpaceGetOrder++++man+manualpages/DM/PetscSpaceGetOrder.html#PetscSpaceGetOrder
man:+PetscSpaceSetOrder++PetscSpaceSetOrder++++man+manualpages/DM/PetscSpaceSetOrder.html#PetscSpaceSetOrder
man:+PetscSpaceEvaluate++PetscSpaceEvaluate++++man+manualpages/DM/PetscSpaceEvaluate.html#PetscSpaceEvaluate
man:+PETSCSPACEPOLYNOMIAL++PETSCSPACEPOLYNOMIAL++++man+manualpages/DM/PETSCSPACEPOLYNOMIAL.html#PETSCSPACEPOLYNOMIAL
man:+PetscSpacePolynomialSetTensor++PetscSpacePolynomialSetTensor++++man+manualpages/DM/PetscSpacePolynomialSetTensor.html#PetscSpacePolynomialSetTensor
man:+PetscSpacePolynomialGetTensor++PetscSpacePolynomialGetTensor++++man+manualpages/DM/PetscSpacePolynomialGetTensor.html#PetscSpacePolynomialGetTensor
man:+PETSCSPACEDG++PETSCSPACEDG++++man+manualpages/DM/PETSCSPACEDG.html#PETSCSPACEDG
man:+PetscDualSpaceRegister++PetscDualSpaceRegister++++man+manualpages/DM/PetscDualSpaceRegister.html#PetscDualSpaceRegister
man:+PetscDualSpaceSetType++PetscDualSpaceSetType++++man+manualpages/DM/PetscDualSpaceSetType.html#PetscDualSpaceSetType
man:+PetscDualSpaceGetType++PetscDualSpaceGetType++++man+manualpages/DM/PetscDualSpaceGetType.html#PetscDualSpaceGetType
man:+PetscDualSpaceView++PetscDualSpaceView++++man+manualpages/DM/PetscDualSpaceView.html#PetscDualSpaceView
man:+PetscDualSpaceSetFromOptions++PetscDualSpaceSetFromOptions++++man+manualpages/DM/PetscDualSpaceSetFromOptions.html#PetscDualSpaceSetFromOptions
man:+PetscDualSpaceSetUp++PetscDualSpaceSetUp++++man+manualpages/DM/PetscDualSpaceSetUp.html#PetscDualSpaceSetUp
man:+PetscDualSpaceDestroy++PetscDualSpaceDestroy++++man+manualpages/DM/PetscDualSpaceDestroy.html#PetscDualSpaceDestroy
man:+PetscDualSpaceCreate++PetscDualSpaceCreate++++man+manualpages/DM/PetscDualSpaceCreate.html#PetscDualSpaceCreate
man:+PetscDualSpaceDuplicate++PetscDualSpaceDuplicate++++man+manualpages/DM/PetscDualSpaceDuplicate.html#PetscDualSpaceDuplicate
man:+PetscDualSpaceGetDM++PetscDualSpaceGetDM++++man+manualpages/DM/PetscDualSpaceGetDM.html#PetscDualSpaceGetDM
man:+PetscDualSpaceSetDM++PetscDualSpaceSetDM++++man+manualpages/DM/PetscDualSpaceSetDM.html#PetscDualSpaceSetDM
man:+PetscDualSpaceGetOrder++PetscDualSpaceGetOrder++++man+manualpages/DM/PetscDualSpaceGetOrder.html#PetscDualSpaceGetOrder
man:+PetscDualSpaceSetOrder++PetscDualSpaceSetOrder++++man+manualpages/DM/PetscDualSpaceSetOrder.html#PetscDualSpaceSetOrder
man:+PetscDualSpaceGetFunctional++PetscDualSpaceGetFunctional++++man+manualpages/DM/PetscDualSpaceGetFunctional.html#PetscDualSpaceGetFunctional
man:+PetscDualSpaceGetDimension++PetscDualSpaceGetDimension++++man+manualpages/DM/PetscDualSpaceGetDimension.html#PetscDualSpaceGetDimension
man:+PetscDualSpaceGetNumDof++PetscDualSpaceGetNumDof++++man+manualpages/DM/PetscDualSpaceGetNumDof.html#PetscDualSpaceGetNumDof
man:+PetscDualSpaceCreateReferenceCell++PetscDualSpaceCreateReferenceCell++++man+manualpages/DM/PetscDualSpaceCreateReferenceCell.html#PetscDualSpaceCreateReferenceCell
man:+PetscDualSpaceApply++PetscDualSpaceApply++++man+manualpages/DM/PetscDualSpaceApply.html#PetscDualSpaceApply
man:+PetscDualSpaceApplyFVM++PetscDualSpaceApplyFVM++++man+manualpages/DM/PetscDualSpaceApplyFVM.html#PetscDualSpaceApplyFVM
man:+PetscDualSpaceGetHeightSubspace++PetscDualSpaceGetHeightSubspace++++man+manualpages/DM/PetscDualSpaceGetHeightSubspace.html#PetscDualSpaceGetHeightSubspace
man:+PetscDualSpaceLagrangeGetContinuity++PetscDualSpaceLagrangeGetContinuity++++man+manualpages/DM/PetscDualSpaceLagrangeGetContinuity.html#PetscDualSpaceLagrangeGetContinuity
man:+PetscDualSpaceLagrangeSetContinuity++PetscDualSpaceLagrangeSetContinuity++++man+manualpages/DM/PetscDualSpaceLagrangeSetContinuity.html#PetscDualSpaceLagrangeSetContinuity
man:+PETSCDUALSPACELAGRANGE++PETSCDUALSPACELAGRANGE++++man+manualpages/DM/PETSCDUALSPACELAGRANGE.html#PETSCDUALSPACELAGRANGE
man:+PetscDualSpaceSimpleSetDimension++PetscDualSpaceSimpleSetDimension++++man+manualpages/DM/PetscDualSpaceSimpleSetDimension.html#PetscDualSpaceSimpleSetDimension
man:+PetscDualSpaceSimpleSetFunctional++PetscDualSpaceSimpleSetFunctional++++man+manualpages/DM/PetscDualSpaceSimpleSetFunctional.html#PetscDualSpaceSimpleSetFunctional
man:+PETSCDUALSPACESIMPLE++PETSCDUALSPACESIMPLE++++man+manualpages/DM/PETSCDUALSPACESIMPLE.html#PETSCDUALSPACESIMPLE
man:+PetscFERegister++PetscFERegister++++man+manualpages/DM/PetscFERegister.html#PetscFERegister
man:+PetscFESetType++PetscFESetType++++man+manualpages/DM/PetscFESetType.html#PetscFESetType
man:+PetscFEGetType++PetscFEGetType++++man+manualpages/DM/PetscFEGetType.html#PetscFEGetType
man:+PetscFEView++PetscFEView++++man+manualpages/DM/PetscFEView.html#PetscFEView
man:+PetscFESetFromOptions++PetscFESetFromOptions++++man+manualpages/DM/PetscFESetFromOptions.html#PetscFESetFromOptions
man:+PetscFESetUp++PetscFESetUp++++man+manualpages/DM/PetscFESetUp.html#PetscFESetUp
man:+PetscFEDestroy++PetscFEDestroy++++man+manualpages/DM/PetscFEDestroy.html#PetscFEDestroy
man:+PetscFECreate++PetscFECreate++++man+manualpages/DM/PetscFECreate.html#PetscFECreate
man:+PetscFEGetSpatialDimension++PetscFEGetSpatialDimension++++man+manualpages/DM/PetscFEGetSpatialDimension.html#PetscFEGetSpatialDimension
man:+PetscFESetNumComponents++PetscFESetNumComponents++++man+manualpages/DM/PetscFESetNumComponents.html#PetscFESetNumComponents
man:+PetscFEGetNumComponents++PetscFEGetNumComponents++++man+manualpages/DM/PetscFEGetNumComponents.html#PetscFEGetNumComponents
man:+PetscFESetTileSizes++PetscFESetTileSizes++++man+manualpages/DM/PetscFESetTileSizes.html#PetscFESetTileSizes
man:+PetscFEGetTileSizes++PetscFEGetTileSizes++++man+manualpages/DM/PetscFEGetTileSizes.html#PetscFEGetTileSizes
man:+PetscFEGetBasisSpace++PetscFEGetBasisSpace++++man+manualpages/DM/PetscFEGetBasisSpace.html#PetscFEGetBasisSpace
man:+PetscFESetBasisSpace++PetscFESetBasisSpace++++man+manualpages/DM/PetscFESetBasisSpace.html#PetscFESetBasisSpace
man:+PetscFEGetDualSpace++PetscFEGetDualSpace++++man+manualpages/DM/PetscFEGetDualSpace.html#PetscFEGetDualSpace
man:+PetscFESetDualSpace++PetscFESetDualSpace++++man+manualpages/DM/PetscFESetDualSpace.html#PetscFESetDualSpace
man:+PetscFEGetQuadrature++PetscFEGetQuadrature++++man+manualpages/DM/PetscFEGetQuadrature.html#PetscFEGetQuadrature
man:+PetscFESetQuadrature++PetscFESetQuadrature++++man+manualpages/DM/PetscFESetQuadrature.html#PetscFESetQuadrature
man:+PETSCFEBASIC++PETSCFEBASIC++++man+manualpages/DM/PETSCFEBASIC.html#PETSCFEBASIC
man:+PETSCFENONAFFINE++PETSCFENONAFFINE++++man+manualpages/DM/PETSCFENONAFFINE.html#PETSCFENONAFFINE
man:+PETSCFEOPENCL++PETSCFEOPENCL++++man+manualpages/DM/PETSCFEOPENCL.html#PETSCFEOPENCL
man:+PETSCFECOMPOSITE++PETSCFECOMPOSITE++++man+manualpages/DM/PETSCFECOMPOSITE.html#PETSCFECOMPOSITE
man:+PetscFECompositeGetMapping++PetscFECompositeGetMapping++++man+manualpages/DM/PetscFECompositeGetMapping.html#PetscFECompositeGetMapping
man:+PetscFEGetDimension++PetscFEGetDimension++++man+manualpages/DM/PetscFEGetDimension.html#PetscFEGetDimension
man:+PetscFEIntegrate++PetscFEIntegrate++++man+manualpages/DM/PetscFEIntegrate.html#PetscFEIntegrate
man:+PetscFEIntegrateResidual++PetscFEIntegrateResidual++++man+manualpages/DM/PetscFEIntegrateResidual.html#PetscFEIntegrateResidual
man:+PetscFEIntegrateBdResidual++PetscFEIntegrateBdResidual++++man+manualpages/DM/PetscFEIntegrateBdResidual.html#PetscFEIntegrateBdResidual
man:+PetscFEIntegrateJacobian++PetscFEIntegrateJacobian++++man+manualpages/DM/PetscFEIntegrateJacobian.html#PetscFEIntegrateJacobian
man:+PetscFECreateDefault++PetscFECreateDefault++++man+manualpages/DM/PetscFECreateDefault.html#PetscFECreateDefault
man:+PetscLimiterRegister++PetscLimiterRegister++++man+manualpages/DM/PetscLimiterRegister.html#PetscLimiterRegister
man:+PetscLimiterSetType++PetscLimiterSetType++++man+manualpages/DM/PetscLimiterSetType.html#PetscLimiterSetType
man:+PetscLimiterGetType++PetscLimiterGetType++++man+manualpages/DM/PetscLimiterGetType.html#PetscLimiterGetType
man:+PetscLimiterView++PetscLimiterView++++man+manualpages/DM/PetscLimiterView.html#PetscLimiterView
man:+PetscLimiterSetFromOptions++PetscLimiterSetFromOptions++++man+manualpages/DM/PetscLimiterSetFromOptions.html#PetscLimiterSetFromOptions
man:+PetscLimiterSetUp++PetscLimiterSetUp++++man+manualpages/DM/PetscLimiterSetUp.html#PetscLimiterSetUp
man:+PetscLimiterDestroy++PetscLimiterDestroy++++man+manualpages/DM/PetscLimiterDestroy.html#PetscLimiterDestroy
man:+PetscLimiterCreate++PetscLimiterCreate++++man+manualpages/DM/PetscLimiterCreate.html#PetscLimiterCreate
man:+PETSCLIMITERSIN++PETSCLIMITERSIN++++man+manualpages/DM/PETSCLIMITERSIN.html#PETSCLIMITERSIN
man:+PETSCLIMITERZERO++PETSCLIMITERZERO++++man+manualpages/DM/PETSCLIMITERZERO.html#PETSCLIMITERZERO
man:+PETSCLIMITERNONE++PETSCLIMITERNONE++++man+manualpages/DM/PETSCLIMITERNONE.html#PETSCLIMITERNONE
man:+PETSCLIMITERMINMOD++PETSCLIMITERMINMOD++++man+manualpages/DM/PETSCLIMITERMINMOD.html#PETSCLIMITERMINMOD
man:+PETSCLIMITERVANLEER++PETSCLIMITERVANLEER++++man+manualpages/DM/PETSCLIMITERVANLEER.html#PETSCLIMITERVANLEER
man:+PETSCLIMITERVANALBADA++PETSCLIMITERVANALBADA++++man+manualpages/DM/PETSCLIMITERVANALBADA.html#PETSCLIMITERVANALBADA
man:+PETSCLIMITERSUPERBEE++PETSCLIMITERSUPERBEE++++man+manualpages/DM/PETSCLIMITERSUPERBEE.html#PETSCLIMITERSUPERBEE
man:+PETSCLIMITERMC++PETSCLIMITERMC++++man+manualpages/DM/PETSCLIMITERMC.html#PETSCLIMITERMC
man:+PetscFVRegister++PetscFVRegister++++man+manualpages/DM/PetscFVRegister.html#PetscFVRegister
man:+PetscFVSetType++PetscFVSetType++++man+manualpages/DM/PetscFVSetType.html#PetscFVSetType
man:+PetscFVGetType++PetscFVGetType++++man+manualpages/DM/PetscFVGetType.html#PetscFVGetType
man:+PetscFVView++PetscFVView++++man+manualpages/DM/PetscFVView.html#PetscFVView
man:+PetscFVSetFromOptions++PetscFVSetFromOptions++++man+manualpages/DM/PetscFVSetFromOptions.html#PetscFVSetFromOptions
man:+PetscFVSetUp++PetscFVSetUp++++man+manualpages/DM/PetscFVSetUp.html#PetscFVSetUp
man:+PetscFVDestroy++PetscFVDestroy++++man+manualpages/DM/PetscFVDestroy.html#PetscFVDestroy
man:+PetscFVCreate++PetscFVCreate++++man+manualpages/DM/PetscFVCreate.html#PetscFVCreate
man:+PetscFVSetLimiter++PetscFVSetLimiter++++man+manualpages/DM/PetscFVSetLimiter.html#PetscFVSetLimiter
man:+PetscFVGetLimiter++PetscFVGetLimiter++++man+manualpages/DM/PetscFVGetLimiter.html#PetscFVGetLimiter
man:+PetscFVSetNumComponents++PetscFVSetNumComponents++++man+manualpages/DM/PetscFVSetNumComponents.html#PetscFVSetNumComponents
man:+PetscFVGetNumComponents++PetscFVGetNumComponents++++man+manualpages/DM/PetscFVGetNumComponents.html#PetscFVGetNumComponents
man:+PetscFVSetComponentName++PetscFVSetComponentName++++man+manualpages/DM/PetscFVSetComponentName.html#PetscFVSetComponentName
man:+PetscFVGetComponentName++PetscFVGetComponentName++++man+manualpages/DM/PetscFVGetComponentName.html#PetscFVGetComponentName
man:+PetscFVSetSpatialDimension++PetscFVSetSpatialDimension++++man+manualpages/DM/PetscFVSetSpatialDimension.html#PetscFVSetSpatialDimension
man:+PetscFVGetSpatialDimension++PetscFVGetSpatialDimension++++man+manualpages/DM/PetscFVGetSpatialDimension.html#PetscFVGetSpatialDimension
man:+PetscFVSetComputeGradients++PetscFVSetComputeGradients++++man+manualpages/DM/PetscFVSetComputeGradients.html#PetscFVSetComputeGradients
man:+PetscFVGetComputeGradients++PetscFVGetComputeGradients++++man+manualpages/DM/PetscFVGetComputeGradients.html#PetscFVGetComputeGradients
man:+PetscFVSetQuadrature++PetscFVSetQuadrature++++man+manualpages/DM/PetscFVSetQuadrature.html#PetscFVSetQuadrature
man:+PetscFVGetQuadrature++PetscFVGetQuadrature++++man+manualpages/DM/PetscFVGetQuadrature.html#PetscFVGetQuadrature
man:+PetscFVGetDualSpace++PetscFVGetDualSpace++++man+manualpages/DM/PetscFVGetDualSpace.html#PetscFVGetDualSpace
man:+PetscFVSetDualSpace++PetscFVSetDualSpace++++man+manualpages/DM/PetscFVSetDualSpace.html#PetscFVSetDualSpace
man:+PetscFVComputeGradient++PetscFVComputeGradient++++man+manualpages/DM/PetscFVComputeGradient.html#PetscFVComputeGradient
man:+PetscFVRefine++PetscFVRefine++++man+manualpages/DM/PetscFVRefine.html#PetscFVRefine
man:+PETSCFVUPWIND++PETSCFVUPWIND++++man+manualpages/DM/PETSCFVUPWIND.html#PETSCFVUPWIND
man:+PETSCFVLEASTSQUARES++PETSCFVLEASTSQUARES++++man+manualpages/DM/PETSCFVLEASTSQUARES.html#PETSCFVLEASTSQUARES
man:+PetscFVLeastSquaresSetMaxFaces++PetscFVLeastSquaresSetMaxFaces++++man+manualpages/DM/PetscFVLeastSquaresSetMaxFaces.html#PetscFVLeastSquaresSetMaxFaces
man:+PetscDSRegister++PetscDSRegister++++man+manualpages/DM/PetscDSRegister.html#PetscDSRegister
man:+PetscDSSetType++PetscDSSetType++++man+manualpages/DM/PetscDSSetType.html#PetscDSSetType
man:+PetscDSGetType++PetscDSGetType++++man+manualpages/DM/PetscDSGetType.html#PetscDSGetType
man:+PetscDSView++PetscDSView++++man+manualpages/DM/PetscDSView.html#PetscDSView
man:+PetscDSSetFromOptions++PetscDSSetFromOptions++++man+manualpages/DM/PetscDSSetFromOptions.html#PetscDSSetFromOptions
man:+PetscDSSetUp++PetscDSSetUp++++man+manualpages/DM/PetscDSSetUp.html#PetscDSSetUp
man:+PetscDSDestroy++PetscDSDestroy++++man+manualpages/DM/PetscDSDestroy.html#PetscDSDestroy
man:+PetscDSCreate++PetscDSCreate++++man+manualpages/DM/PetscDSCreate.html#PetscDSCreate
man:+PetscDSGetNumFields++PetscDSGetNumFields++++man+manualpages/DM/PetscDSGetNumFields.html#PetscDSGetNumFields
man:+PetscDSGetSpatialDimension++PetscDSGetSpatialDimension++++man+manualpages/DM/PetscDSGetSpatialDimension.html#PetscDSGetSpatialDimension
man:+PetscDSGetTotalDimension++PetscDSGetTotalDimension++++man+manualpages/DM/PetscDSGetTotalDimension.html#PetscDSGetTotalDimension
man:+PetscDSGetTotalBdDimension++PetscDSGetTotalBdDimension++++man+manualpages/DM/PetscDSGetTotalBdDimension.html#PetscDSGetTotalBdDimension
man:+PetscDSGetTotalComponents++PetscDSGetTotalComponents++++man+manualpages/DM/PetscDSGetTotalComponents.html#PetscDSGetTotalComponents
man:+PetscDSGetDiscretization++PetscDSGetDiscretization++++man+manualpages/DM/PetscDSGetDiscretization.html#PetscDSGetDiscretization
man:+PetscDSGetBdDiscretization++PetscDSGetBdDiscretization++++man+manualpages/DM/PetscDSGetBdDiscretization.html#PetscDSGetBdDiscretization
man:+PetscDSSetDiscretization++PetscDSSetDiscretization++++man+manualpages/DM/PetscDSSetDiscretization.html#PetscDSSetDiscretization
man:+PetscDSSetBdDiscretization++PetscDSSetBdDiscretization++++man+manualpages/DM/PetscDSSetBdDiscretization.html#PetscDSSetBdDiscretization
man:+PetscDSAddDiscretization++PetscDSAddDiscretization++++man+manualpages/DM/PetscDSAddDiscretization.html#PetscDSAddDiscretization
man:+PetscDSAddBdDiscretization++PetscDSAddBdDiscretization++++man+manualpages/DM/PetscDSAddBdDiscretization.html#PetscDSAddBdDiscretization
man:+PetscDSGetImplicit++PetscDSGetImplicit++++man+manualpages/DM/PetscDSGetImplicit.html#PetscDSGetImplicit
man:+PetscDSSetImplicit++PetscDSSetImplicit++++man+manualpages/DM/PetscDSSetImplicit.html#PetscDSSetImplicit
man:+PetscDSGetAdjacency++PetscDSGetAdjacency++++man+manualpages/DM/PetscDSGetAdjacency.html#PetscDSGetAdjacency
man:+PetscDSSetAdjacency++PetscDSSetAdjacency++++man+manualpages/DM/PetscDSSetAdjacency.html#PetscDSSetAdjacency
man:+PetscDSGetResidual++PetscDSGetResidual++++man+manualpages/DM/PetscDSGetResidual.html#PetscDSGetResidual
man:+PetscDSSetResidual++PetscDSSetResidual++++man+manualpages/DM/PetscDSSetResidual.html#PetscDSSetResidual
man:+PetscDSGetJacobian++PetscDSGetJacobian++++man+manualpages/DM/PetscDSGetJacobian.html#PetscDSGetJacobian
man:+PetscDSSetJacobian++PetscDSSetJacobian++++man+manualpages/DM/PetscDSSetJacobian.html#PetscDSSetJacobian
man:+PetscDSHasJacobianPreconditioner++PetscDSHasJacobianPreconditioner++++man+manualpages/DM/PetscDSHasJacobianPreconditioner.html#PetscDSHasJacobianPreconditioner
man:+PetscDSGetJacobianPreconditioner++PetscDSGetJacobianPreconditioner++++man+manualpages/DM/PetscDSGetJacobianPreconditioner.html#PetscDSGetJacobianPreconditioner
man:+PetscDSSetJacobianPreconditioner++PetscDSSetJacobianPreconditioner++++man+manualpages/DM/PetscDSSetJacobianPreconditioner.html#PetscDSSetJacobianPreconditioner
man:+PetscDSHasDynamicJacobian++PetscDSHasDynamicJacobian++++man+manualpages/DM/PetscDSHasDynamicJacobian.html#PetscDSHasDynamicJacobian
man:+PetscDSGetDynamicJacobian++PetscDSGetDynamicJacobian++++man+manualpages/DM/PetscDSGetDynamicJacobian.html#PetscDSGetDynamicJacobian
man:+PetscDSSetDynamicJacobian++PetscDSSetDynamicJacobian++++man+manualpages/DM/PetscDSSetDynamicJacobian.html#PetscDSSetDynamicJacobian
man:+PetscDSGetRiemannSolver++PetscDSGetRiemannSolver++++man+manualpages/DM/PetscDSGetRiemannSolver.html#PetscDSGetRiemannSolver
man:+PetscDSSetRiemannSolver++PetscDSSetRiemannSolver++++man+manualpages/DM/PetscDSSetRiemannSolver.html#PetscDSSetRiemannSolver
man:+PetscDSGetBdResidual++PetscDSGetBdResidual++++man+manualpages/DM/PetscDSGetBdResidual.html#PetscDSGetBdResidual
man:+PetscDSSetBdResidual++PetscDSSetBdResidual++++man+manualpages/DM/PetscDSSetBdResidual.html#PetscDSSetBdResidual
man:+PetscDSGetBdJacobian++PetscDSGetBdJacobian++++man+manualpages/DM/PetscDSGetBdJacobian.html#PetscDSGetBdJacobian
man:+PetscDSSetBdJacobian++PetscDSSetBdJacobian++++man+manualpages/DM/PetscDSSetBdJacobian.html#PetscDSSetBdJacobian
man:+PetscDSGetFieldOffset++PetscDSGetFieldOffset++++man+manualpages/DM/PetscDSGetFieldOffset.html#PetscDSGetFieldOffset
man:+PetscDSGetBdFieldOffset++PetscDSGetBdFieldOffset++++man+manualpages/DM/PetscDSGetBdFieldOffset.html#PetscDSGetBdFieldOffset
man:+PetscDSGetComponentOffset++PetscDSGetComponentOffset++++man+manualpages/DM/PetscDSGetComponentOffset.html#PetscDSGetComponentOffset
man:+PetscDSGetComponentOffsets++PetscDSGetComponentOffsets++++man+manualpages/DM/PetscDSGetComponentOffsets.html#PetscDSGetComponentOffsets
man:+PetscDSGetComponentDerivativeOffsets++PetscDSGetComponentDerivativeOffsets++++man+manualpages/DM/PetscDSGetComponentDerivativeOffsets.html#PetscDSGetComponentDerivativeOffsets
man:+PetscDSGetComponentBdOffsets++PetscDSGetComponentBdOffsets++++man+manualpages/DM/PetscDSGetComponentBdOffsets.html#PetscDSGetComponentBdOffsets
man:+PetscDSGetComponentBdDerivativeOffsets++PetscDSGetComponentBdDerivativeOffsets++++man+manualpages/DM/PetscDSGetComponentBdDerivativeOffsets.html#PetscDSGetComponentBdDerivativeOffsets
man:+PetscDSGetTabulation++PetscDSGetTabulation++++man+manualpages/DM/PetscDSGetTabulation.html#PetscDSGetTabulation
man:+PetscDSGetBdTabulation++PetscDSGetBdTabulation++++man+manualpages/DM/PetscDSGetBdTabulation.html#PetscDSGetBdTabulation
man:+PetscDSCopyEquations++PetscDSCopyEquations++++man+manualpages/DM/PetscDSCopyEquations.html#PetscDSCopyEquations
man:+PETSCDSBASIC++PETSCDSBASIC++++man+manualpages/DM/PETSCDSBASIC.html#PETSCDSBASIC
man:+DMLabelCreate++DMLabelCreate++++man+manualpages/DM/DMLabelCreate.html#DMLabelCreate
man:+DMLabelGetName++DMLabelGetName++++man+manualpages/DM/DMLabelGetName.html#DMLabelGetName
man:+DMLabelView++DMLabelView++++man+manualpages/DM/DMLabelView.html#DMLabelView
man:+DMLabelHasValue++DMLabelHasValue++++man+manualpages/DM/DMLabelHasValue.html#DMLabelHasValue
man:+DMLabelHasPoint++DMLabelHasPoint++++man+manualpages/DM/DMLabelHasPoint.html#DMLabelHasPoint
man:+DMLabelStratumHasPoint++DMLabelStratumHasPoint++++man+manualpages/DM/DMLabelStratumHasPoint.html#DMLabelStratumHasPoint
man:+DMLabelGetValue++DMLabelGetValue++++man+manualpages/DM/DMLabelGetValue.html#DMLabelGetValue
man:+DMLabelSetValue++DMLabelSetValue++++man+manualpages/DM/DMLabelSetValue.html#DMLabelSetValue
man:+DMLabelClearValue++DMLabelClearValue++++man+manualpages/DM/DMLabelClearValue.html#DMLabelClearValue
man:+DMLabelInsertIS++DMLabelInsertIS++++man+manualpages/DM/DMLabelInsertIS.html#DMLabelInsertIS
man:+DMLabelGather++DMLabelGather++++man+manualpages/DM/DMLabelGather.html#DMLabelGather
man:+PetscSectionCreateGlobalSectionLabel++PetscSectionCreateGlobalSectionLabel++++man+manualpages/DM/PetscSectionCreateGlobalSectionLabel.html#PetscSectionCreateGlobalSectionLabel
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:+PCRichardsonConvergedReason++PCRichardsonConvergedReason++++man+manualpages/PC/PCRichardsonConvergedReason.html#PCRichardsonConvergedReason
man:+PCJacobiType++PCJacobiType++++man+manualpages/PC/PCJacobiType.html#PCJacobiType
man:+PCASMType++PCASMType++++man+manualpages/PC/PCASMType.html#PCASMType
man:+PCGASMType++PCGASMType++++man+manualpages/PC/PCGASMType.html#PCGASMType
man:+PCCompositeType++PCCompositeType++++man+manualpages/PC/PCCompositeType.html#PCCompositeType
man:+PCFieldSplitSchurPreType++PCFieldSplitSchurPreType++++man+manualpages/PC/PCFieldSplitSchurPreType.html#PCFieldSplitSchurPreType
man:+PCFieldSplitSchurFactType++PCFieldSplitSchurFactType++++man+manualpages/PC/PCFieldSplitSchurFactType.html#PCFieldSplitSchurFactType
man:+PCPARMSGlobalType++PCPARMSGlobalType++++man+manualpages/PC/PCPARMSGlobalType.html#PCPARMSGlobalType
man:+PCPARMSLocalType++PCPARMSLocalType++++man+manualpages/PC/PCPARMSLocalType.html#PCPARMSLocalType
man:+PCGAMGType++PCGAMGType++++man+manualpages/PC/PCGAMGType.html#PCGAMGType
man:+PCMGType++PCMGType++++man+manualpages/PC/PCMGType.html#PCMGType
man:+PCMGCycleType++PCMGCycleType++++man+manualpages/PC/PCMGCycleType.html#PCMGCycleType
man:+PCExoticType++PCExoticType++++man+manualpages/PC/PCExoticType.html#PCExoticType
man:+PCFailedReason++PCFailedReason++++man+manualpages/PC/PCFailedReason.html#PCFailedReason
man:+PCReset++PCReset++++man+manualpages/PC/PCReset.html#PCReset
man:+PCDestroy++PCDestroy++++man+manualpages/PC/PCDestroy.html#PCDestroy
man:+PCGetDiagonalScale++PCGetDiagonalScale++++man+manualpages/PC/PCGetDiagonalScale.html#PCGetDiagonalScale
man:+PCSetDiagonalScale++PCSetDiagonalScale++++man+manualpages/PC/PCSetDiagonalScale.html#PCSetDiagonalScale
man:+PCDiagonalScaleLeft++PCDiagonalScaleLeft++++man+manualpages/PC/PCDiagonalScaleLeft.html#PCDiagonalScaleLeft
man:+PCDiagonalScaleRight++PCDiagonalScaleRight++++man+manualpages/PC/PCDiagonalScaleRight.html#PCDiagonalScaleRight
man:+PCSetUseAmat++PCSetUseAmat++++man+manualpages/PC/PCSetUseAmat.html#PCSetUseAmat
man:+PCSetErrorIfFailure++PCSetErrorIfFailure++++man+manualpages/PC/PCSetErrorIfFailure.html#PCSetErrorIfFailure
man:+PCGetUseAmat++PCGetUseAmat++++man+manualpages/PC/PCGetUseAmat.html#PCGetUseAmat
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:+PCApplyTransposeExists++PCApplyTransposeExists++++man+manualpages/PC/PCApplyTransposeExists.html#PCApplyTransposeExists
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:+PCGetSetUpFailedReason++PCGetSetUpFailedReason++++man+manualpages/PC/PCGetSetUpFailedReason.html#PCGetSetUpFailedReason
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:+PCSetReusePreconditioner++PCSetReusePreconditioner++++man+manualpages/PC/PCSetReusePreconditioner.html#PCSetReusePreconditioner
man:+PCGetReusePreconditioner++PCGetReusePreconditioner++++man+manualpages/PC/PCGetReusePreconditioner.html#PCGetReusePreconditioner
man:+PCGetOperators++PCGetOperators++++man+manualpages/PC/PCGetOperators.html#PCGetOperators
man:+PCGetOperatorsSet++PCGetOperatorsSet++++man+manualpages/PC/PCGetOperatorsSet.html#PCGetOperatorsSet
man:+PCFactorGetMatrix++PCFactorGetMatrix++++man+manualpages/PC/PCFactorGetMatrix.html#PCFactorGetMatrix
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:+PCLoad++PCLoad++++man+manualpages/PC/PCLoad.html#PCLoad
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:+PCSetCoordinates++PCSetCoordinates++++man+manualpages/PC/PCSetCoordinates.html#PCSetCoordinates
man:+PCSetType++PCSetType++++man+manualpages/PC/PCSetType.html#PCSetType
man:+PCGetType++PCGetType++++man+manualpages/PC/PCGetType.html#PCGetType
man:+PCSetFromOptions++PCSetFromOptions++++man+manualpages/PC/PCSetFromOptions.html#PCSetFromOptions
man:+PCSetDM++PCSetDM++++man+manualpages/PC/PCSetDM.html#PCSetDM
man:+PCGetDM++PCGetDM++++man+manualpages/PC/PCGetDM.html#PCGetDM
man:+PCSetApplicationContext++PCSetApplicationContext++++man+manualpages/PC/PCSetApplicationContext.html#PCSetApplicationContext
man:+PCGetApplicationContext++PCGetApplicationContext++++man+manualpages/PC/PCGetApplicationContext.html#PCGetApplicationContext
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:+PCJacobiGetUseAbs++PCJacobiGetUseAbs++++man+manualpages/PC/PCJacobiGetUseAbs.html#PCJacobiGetUseAbs
man:+PCJacobiSetType++PCJacobiSetType++++man+manualpages/PC/PCJacobiSetType.html#PCJacobiSetType
man:+PCJacobiGetType++PCJacobiGetType++++man+manualpages/PC/PCJacobiGetType.html#PCJacobiGetType
man:+PCNONE++PCNONE++++man+manualpages/PC/PCNONE.html#PCNONE
man:+PCSORGetSymmetric++PCSORGetSymmetric++++man+manualpages/PC/PCSORGetSymmetric.html#PCSORGetSymmetric
man:+PCSORGetOmega++PCSORGetOmega++++man+manualpages/PC/PCSORGetOmega.html#PCSORGetOmega
man:+PCSORGetIterations++PCSORGetIterations++++man+manualpages/PC/PCSORGetIterations.html#PCSORGetIterations
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:+PCShellSetApplySymmetricLeft++PCShellSetApplySymmetricLeft++++man+manualpages/PC/PCShellSetApplySymmetricLeft.html#PCShellSetApplySymmetricLeft
man:+PCShellSetApplySymmetricRight++PCShellSetApplySymmetricRight++++man+manualpages/PC/PCShellSetApplySymmetricRight.html#PCShellSetApplySymmetricRight
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:+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:+PCMGGetType++PCMGGetType++++man+manualpages/PC/PCMGGetType.html#PCMGGetType
man:+PCMGSetCycleType++PCMGSetCycleType++++man+manualpages/PC/PCMGSetCycleType.html#PCMGSetCycleType
man:+PCMGMultiplicativeSetCycles++PCMGMultiplicativeSetCycles++++man+manualpages/PC/PCMGMultiplicativeSetCycles.html#PCMGMultiplicativeSetCycles
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:+PCMGResidualDefault++PCMGResidualDefault++++man+manualpages/PC/PCMGResidualDefault.html#PCMGResidualDefault
man:+PCMGGetCoarseSolve++PCMGGetCoarseSolve++++man+manualpages/PC/PCMGGetCoarseSolve.html#PCMGGetCoarseSolve
man:+PCMGSetResidual++PCMGSetResidual++++man+manualpages/PC/PCMGSetResidual.html#PCMGSetResidual
man:+PCMGSetInterpolation++PCMGSetInterpolation++++man+manualpages/PC/PCMGSetInterpolation.html#PCMGSetInterpolation
man:+PCMGGetInterpolation++PCMGGetInterpolation++++man+manualpages/PC/PCMGGetInterpolation.html#PCMGGetInterpolation
man:+PCMGSetRestriction++PCMGSetRestriction++++man+manualpages/PC/PCMGSetRestriction.html#PCMGSetRestriction
man:+PCMGGetRestriction++PCMGGetRestriction++++man+manualpages/PC/PCMGGetRestriction.html#PCMGGetRestriction
man:+PCMGSetRScale++PCMGSetRScale++++man+manualpages/PC/PCMGSetRScale.html#PCMGSetRScale
man:+PCMGGetRScale++PCMGGetRScale++++man+manualpages/PC/PCMGGetRScale.html#PCMGGetRScale
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:+PCEisenstatSetOmega++PCEisenstatSetOmega++++man+manualpages/PC/PCEisenstatSetOmega.html#PCEisenstatSetOmega
man:+PCEisenstatSetNoDiagonalScaling++PCEisenstatSetNoDiagonalScaling++++man+manualpages/PC/PCEisenstatSetNoDiagonalScaling.html#PCEisenstatSetNoDiagonalScaling
man:+PCEisenstatGetOmega++PCEisenstatGetOmega++++man+manualpages/PC/PCEisenstatGetOmega.html#PCEisenstatGetOmega
man:+PCEisenstatGetNoDiagonalScaling++PCEisenstatGetNoDiagonalScaling++++man+manualpages/PC/PCEisenstatGetNoDiagonalScaling.html#PCEisenstatGetNoDiagonalScaling
man:+PCEISENSTAT++PCEISENSTAT++++man+manualpages/PC/PCEISENSTAT.html#PCEISENSTAT
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:+PCASMGetType++PCASMGetType++++man+manualpages/PC/PCASMGetType.html#PCASMGetType
man:+PCASMSetLocalType++PCASMSetLocalType++++man+manualpages/PC/PCASMSetLocalType.html#PCASMSetLocalType
man:+PCASMGetLocalType++PCASMGetLocalType++++man+manualpages/PC/PCASMGetLocalType.html#PCASMGetLocalType
man:+PCASMSetSortIndices++PCASMSetSortIndices++++man+manualpages/PC/PCASMSetSortIndices.html#PCASMSetSortIndices
man:+PCASMGetSubKSP++PCASMGetSubKSP++++man+manualpages/PC/PCASMGetSubKSP.html#PCASMGetSubKSP
man:+PCASM++PCASM++++man+manualpages/PC/PCASM.html#PCASM
man:+PCASMCreateSubdomains++PCASMCreateSubdomains++++man+manualpages/PC/PCASMCreateSubdomains.html#PCASMCreateSubdomains
man:+PCASMDestroySubdomains++PCASMDestroySubdomains++++man+manualpages/PC/PCASMDestroySubdomains.html#PCASMDestroySubdomains
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:+PCASMSetDMSubdomains++PCASMSetDMSubdomains++++man+manualpages/PC/PCASMSetDMSubdomains.html#PCASMSetDMSubdomains
man:+PCASMGetDMSubdomains++PCASMGetDMSubdomains++++man+manualpages/PC/PCASMGetDMSubdomains.html#PCASMGetDMSubdomains
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:+PCCompositeGetType++PCCompositeGetType++++man+manualpages/PC/PCCompositeGetType.html#PCCompositeGetType
man:+PCCompositeSpecialSetAlpha++PCCompositeSpecialSetAlpha++++man+manualpages/PC/PCCompositeSpecialSetAlpha.html#PCCompositeSpecialSetAlpha
man:+PCCompositeAddPC++PCCompositeAddPC++++man+manualpages/PC/PCCompositeAddPC.html#PCCompositeAddPC
man:+PCCompositeGetNumberPC++PCCompositeGetNumberPC++++man+manualpages/PC/PCCompositeGetNumberPC.html#PCCompositeGetNumberPC
man:+PCCompositeGetPC++PCCompositeGetPC++++man+manualpages/PC/PCCompositeGetPC.html#PCCompositeGetPC
man:+PCCOMPOSITE++PCCOMPOSITE++++man+manualpages/PC/PCCOMPOSITE.html#PCCOMPOSITE
man:+PCRedundantSetNumber++PCRedundantSetNumber++++man+manualpages/PC/PCRedundantSetNumber.html#PCRedundantSetNumber
man:+PCRedundantSetScatter++PCRedundantSetScatter++++man+manualpages/PC/PCRedundantSetScatter.html#PCRedundantSetScatter
man:+PCRedundantGetKSP++PCRedundantGetKSP++++man+manualpages/PC/PCRedundantGetKSP.html#PCRedundantGetKSP
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:+PCISSetUseStiffnessScaling++PCISSetUseStiffnessScaling++++man+manualpages/PC/PCISSetUseStiffnessScaling.html#PCISSetUseStiffnessScaling
man:+PCISSetSubdomainDiagonalScaling++PCISSetSubdomainDiagonalScaling++++man+manualpages/PC/PCISSetSubdomainDiagonalScaling.html#PCISSetSubdomainDiagonalScaling
man:+PCISSetSubdomainScalingFactor++PCISSetSubdomainScalingFactor++++man+manualpages/PC/PCISSetSubdomainScalingFactor.html#PCISSetSubdomainScalingFactor
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:+PCMAT++PCMAT++++man+manualpages/PC/PCMAT.html#PCMAT
man:+PCHYPRESetDiscreteGradient++PCHYPRESetDiscreteGradient++++man+manualpages/PC/PCHYPRESetDiscreteGradient.html#PCHYPRESetDiscreteGradient
man:+PCHYPRESetDiscreteCurl++PCHYPRESetDiscreteCurl++++man+manualpages/PC/PCHYPRESetDiscreteCurl.html#PCHYPRESetDiscreteCurl
man:+PCHYPRESetAlphaPoissonMatrix++PCHYPRESetAlphaPoissonMatrix++++man+manualpages/PC/PCHYPRESetAlphaPoissonMatrix.html#PCHYPRESetAlphaPoissonMatrix
man:+PCHYPRESetBetaPoissonMatrix++PCHYPRESetBetaPoissonMatrix++++man+manualpages/PC/PCHYPRESetBetaPoissonMatrix.html#PCHYPRESetBetaPoissonMatrix
man:+PCHYPRESetEdgeConstantVectors++PCHYPRESetEdgeConstantVectors++++man+manualpages/PC/PCHYPRESetEdgeConstantVectors.html#PCHYPRESetEdgeConstantVectors
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:+PCPFMG++PCPFMG++++man+manualpages/PC/PCPFMG.html#PCPFMG
man:+PCSysPFMG++PCSysPFMG++++man+manualpages/PC/PCSysPFMG.html#PCSysPFMG
man:+PCTFS++PCTFS++++man+manualpages/PC/PCTFS.html#PCTFS
man:+PCFieldSplitRestrictIS++PCFieldSplitRestrictIS++++man+manualpages/PC/PCFieldSplitRestrictIS.html#PCFieldSplitRestrictIS
man:+PCFieldSplitSetFields++PCFieldSplitSetFields++++man+manualpages/PC/PCFieldSplitSetFields.html#PCFieldSplitSetFields
man:+PCFieldSplitSetDiagUseAmat++PCFieldSplitSetDiagUseAmat++++man+manualpages/PC/PCFieldSplitSetDiagUseAmat.html#PCFieldSplitSetDiagUseAmat
man:+PCFieldSplitGetDiagUseAmat++PCFieldSplitGetDiagUseAmat++++man+manualpages/PC/PCFieldSplitGetDiagUseAmat.html#PCFieldSplitGetDiagUseAmat
man:+PCFieldSplitSetOffDiagUseAmat++PCFieldSplitSetOffDiagUseAmat++++man+manualpages/PC/PCFieldSplitSetOffDiagUseAmat.html#PCFieldSplitSetOffDiagUseAmat
man:+PCFieldSplitGetOffDiagUseAmat++PCFieldSplitGetOffDiagUseAmat++++man+manualpages/PC/PCFieldSplitGetOffDiagUseAmat.html#PCFieldSplitGetOffDiagUseAmat
man:+PCFieldSplitSetIS++PCFieldSplitSetIS++++man+manualpages/PC/PCFieldSplitSetIS.html#PCFieldSplitSetIS
man:+PCFieldSplitGetIS++PCFieldSplitGetIS++++man+manualpages/PC/PCFieldSplitGetIS.html#PCFieldSplitGetIS
man:+PCFieldSplitSetBlockSize++PCFieldSplitSetBlockSize++++man+manualpages/PC/PCFieldSplitSetBlockSize.html#PCFieldSplitSetBlockSize
man:+PCFieldSplitGetSubKSP++PCFieldSplitGetSubKSP++++man+manualpages/PC/PCFieldSplitGetSubKSP.html#PCFieldSplitGetSubKSP
man:+PCFieldSplitSetSchurPre++PCFieldSplitSetSchurPre++++man+manualpages/PC/PCFieldSplitSetSchurPre.html#PCFieldSplitSetSchurPre
man:+PCFieldSplitGetSchurPre++PCFieldSplitGetSchurPre++++man+manualpages/PC/PCFieldSplitGetSchurPre.html#PCFieldSplitGetSchurPre
man:+PCFieldSplitSchurGetS++PCFieldSplitSchurGetS++++man+manualpages/PC/PCFieldSplitSchurGetS.html#PCFieldSplitSchurGetS
man:+PCFieldSplitSchurRestoreS++PCFieldSplitSchurRestoreS++++man+manualpages/PC/PCFieldSplitSchurRestoreS.html#PCFieldSplitSchurRestoreS
man:+PCFieldSplitSetSchurFactType++PCFieldSplitSetSchurFactType++++man+manualpages/PC/PCFieldSplitSetSchurFactType.html#PCFieldSplitSetSchurFactType
man:+PCFieldSplitGetSchurBlocks++PCFieldSplitGetSchurBlocks++++man+manualpages/PC/PCFieldSplitGetSchurBlocks.html#PCFieldSplitGetSchurBlocks
man:+PCFieldSplitSetType++PCFieldSplitSetType++++man+manualpages/PC/PCFieldSplitSetType.html#PCFieldSplitSetType
man:+PCFieldSplitGetType++PCFieldSplitGetType++++man+manualpages/PC/PCFieldSplitGetType.html#PCFieldSplitGetType
man:+PCFieldSplitSetDMSplits++PCFieldSplitSetDMSplits++++man+manualpages/PC/PCFieldSplitSetDMSplits.html#PCFieldSplitSetDMSplits
man:+PCFieldSplitGetDMSplits++PCFieldSplitGetDMSplits++++man+manualpages/PC/PCFieldSplitGetDMSplits.html#PCFieldSplitGetDMSplits
man:+PCFIELDSPLIT++PCFIELDSPLIT++++man+manualpages/PC/PCFIELDSPLIT.html#PCFIELDSPLIT
man:+PCFactorSetUpMatSolverPackage++PCFactorSetUpMatSolverPackage++++man+manualpages/PC/PCFactorSetUpMatSolverPackage.html#PCFactorSetUpMatSolverPackage
man:+PCFactorSetZeroPivot++PCFactorSetZeroPivot++++man+manualpages/PC/PCFactorSetZeroPivot.html#PCFactorSetZeroPivot
man:+PCFactorSetShiftType++PCFactorSetShiftType++++man+manualpages/PC/PCFactorSetShiftType.html#PCFactorSetShiftType
man:+PCFactorSetShiftAmount++PCFactorSetShiftAmount++++man+manualpages/PC/PCFactorSetShiftAmount.html#PCFactorSetShiftAmount
man:+PCFactorGetZeroPivot++PCFactorGetZeroPivot++++man+manualpages/PC/PCFactorGetZeroPivot.html#PCFactorGetZeroPivot
man:+PCFactorGetShiftAmount++PCFactorGetShiftAmount++++man+manualpages/PC/PCFactorGetShiftAmount.html#PCFactorGetShiftAmount
man:+PCFactorGetShiftType++PCFactorGetShiftType++++man+manualpages/PC/PCFactorGetShiftType.html#PCFactorGetShiftType
man:+PCFactorGetLevels++PCFactorGetLevels++++man+manualpages/PC/PCFactorGetLevels.html#PCFactorGetLevels
man:+PCFactorSetLevels++PCFactorSetLevels++++man+manualpages/PC/PCFactorSetLevels.html#PCFactorSetLevels
man:+PCFactorSetAllowDiagonalFill++PCFactorSetAllowDiagonalFill++++man+manualpages/PC/PCFactorSetAllowDiagonalFill.html#PCFactorSetAllowDiagonalFill
man:+PCFactorGetAllowDiagonalFill++PCFactorGetAllowDiagonalFill++++man+manualpages/PC/PCFactorGetAllowDiagonalFill.html#PCFactorGetAllowDiagonalFill
man:+PCFactorReorderForNonzeroDiagonal++PCFactorReorderForNonzeroDiagonal++++man+manualpages/PC/PCFactorReorderForNonzeroDiagonal.html#PCFactorReorderForNonzeroDiagonal
man:+PCFactorSetMatSolverPackage++PCFactorSetMatSolverPackage++++man+manualpages/PC/PCFactorSetMatSolverPackage.html#PCFactorSetMatSolverPackage
man:+PCFactorGetMatSolverPackage++PCFactorGetMatSolverPackage++++man+manualpages/PC/PCFactorGetMatSolverPackage.html#PCFactorGetMatSolverPackage
man:+PCFactorSetFill++PCFactorSetFill++++man+manualpages/PC/PCFactorSetFill.html#PCFactorSetFill
man:+PCFactorSetUseInPlace++PCFactorSetUseInPlace++++man+manualpages/PC/PCFactorSetUseInPlace.html#PCFactorSetUseInPlace
man:+PCFactorGetUseInPlace++PCFactorGetUseInPlace++++man+manualpages/PC/PCFactorGetUseInPlace.html#PCFactorGetUseInPlace
man:+PCFactorSetMatOrderingType++PCFactorSetMatOrderingType++++man+manualpages/PC/PCFactorSetMatOrderingType.html#PCFactorSetMatOrderingType
man:+PCFactorSetColumnPivot++PCFactorSetColumnPivot++++man+manualpages/PC/PCFactorSetColumnPivot.html#PCFactorSetColumnPivot
man:+PCFactorSetPivotInBlocks++PCFactorSetPivotInBlocks++++man+manualpages/PC/PCFactorSetPivotInBlocks.html#PCFactorSetPivotInBlocks
man:+PCFactorSetReuseFill++PCFactorSetReuseFill++++man+manualpages/PC/PCFactorSetReuseFill.html#PCFactorSetReuseFill
man:+PCLU++PCLU++++man+manualpages/PC/PCLU.html#PCLU
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:+PCCHOLESKY++PCCHOLESKY++++man+manualpages/PC/PCCHOLESKY.html#PCCHOLESKY
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:+PCCP++PCCP++++man+manualpages/PC/PCCP.html#PCCP
man:+PCExoticSetType++PCExoticSetType++++man+manualpages/PC/PCExoticSetType.html#PCExoticSetType
man:+PCEXOTIC++PCEXOTIC++++man+manualpages/PC/PCEXOTIC.html#PCEXOTIC
man:+PCPythonSetType++PCPythonSetType++++man+manualpages/PC/PCPythonSetType.html#PCPythonSetType
man:+PCAINVCUSP++PCAINVCUSP++++man+manualpages/PC/PCAINVCUSP.html#PCAINVCUSP
man:+PCSACUSP++PCSACUSP++++man+manualpages/PC/PCSACUSP.html#PCSACUSP
man:+PCLSC++PCLSC++++man+manualpages/PC/PCLSC.html#PCLSC
man:+PCRedistributeGetKSP++PCRedistributeGetKSP++++man+manualpages/PC/PCRedistributeGetKSP.html#PCRedistributeGetKSP
man:+PCREDISTRIBUTE++PCREDISTRIBUTE++++man+manualpages/PC/PCREDISTRIBUTE.html#PCREDISTRIBUTE
man:+PCGASMSetTotalSubdomains++PCGASMSetTotalSubdomains++++man+manualpages/PC/PCGASMSetTotalSubdomains.html#PCGASMSetTotalSubdomains
man:+PCGASMSetSubdomains++PCGASMSetSubdomains++++man+manualpages/PC/PCGASMSetSubdomains.html#PCGASMSetSubdomains
man:+PCGASMSetOverlap++PCGASMSetOverlap++++man+manualpages/PC/PCGASMSetOverlap.html#PCGASMSetOverlap
man:+PCGASMSetType++PCGASMSetType++++man+manualpages/PC/PCGASMSetType.html#PCGASMSetType
man:+PCGASMSetSortIndices++PCGASMSetSortIndices++++man+manualpages/PC/PCGASMSetSortIndices.html#PCGASMSetSortIndices
man:+PCGASMGetSubKSP++PCGASMGetSubKSP++++man+manualpages/PC/PCGASMGetSubKSP.html#PCGASMGetSubKSP
man:+PCGASM++PCGASM++++man+manualpages/PC/PCGASM.html#PCGASM
man:+PCGASMCreateSubdomains++PCGASMCreateSubdomains++++man+manualpages/PC/PCGASMCreateSubdomains.html#PCGASMCreateSubdomains
man:+PCGASMDestroySubdomains++PCGASMDestroySubdomains++++man+manualpages/PC/PCGASMDestroySubdomains.html#PCGASMDestroySubdomains
man:+PCGASMCreateSubdomains2D++PCGASMCreateSubdomains2D++++man+manualpages/PC/PCGASMCreateSubdomains2D.html#PCGASMCreateSubdomains2D
man:+PCGASMGetSubdomains++PCGASMGetSubdomains++++man+manualpages/PC/PCGASMGetSubdomains.html#PCGASMGetSubdomains
man:+PCGASMGetSubmatrices++PCGASMGetSubmatrices++++man+manualpages/PC/PCGASMGetSubmatrices.html#PCGASMGetSubmatrices
man:+PCGASMSetUseDMSubdomains++PCGASMSetUseDMSubdomains++++man+manualpages/PC/PCGASMSetUseDMSubdomains.html#PCGASMSetUseDMSubdomains
man:+PCGASMGetUseDMSubdomains++PCGASMGetUseDMSubdomains++++man+manualpages/PC/PCGASMGetUseDMSubdomains.html#PCGASMGetUseDMSubdomains
man:+PCSVD++PCSVD++++man+manualpages/PC/PCSVD.html#PCSVD
man:+PCGAMGSetProcEqLim++PCGAMGSetProcEqLim++++man+manualpages/PC/PCGAMGSetProcEqLim.html#PCGAMGSetProcEqLim
man:+PCGAMGSetCoarseEqLim++PCGAMGSetCoarseEqLim++++man+manualpages/PC/PCGAMGSetCoarseEqLim.html#PCGAMGSetCoarseEqLim
man:+PCGAMGSetRepartitioning++PCGAMGSetRepartitioning++++man+manualpages/PC/PCGAMGSetRepartitioning.html#PCGAMGSetRepartitioning
man:+PCGAMGSetReuseInterpolation++PCGAMGSetReuseInterpolation++++man+manualpages/PC/PCGAMGSetReuseInterpolation.html#PCGAMGSetReuseInterpolation
man:+PCGAMGSetUseASMAggs++PCGAMGSetUseASMAggs++++man+manualpages/PC/PCGAMGSetUseASMAggs.html#PCGAMGSetUseASMAggs
man:+PCGAMGSetNlevels++PCGAMGSetNlevels++++man+manualpages/PC/PCGAMGSetNlevels.html#PCGAMGSetNlevels
man:+PCGAMGSetThreshold++PCGAMGSetThreshold++++man+manualpages/PC/PCGAMGSetThreshold.html#PCGAMGSetThreshold
man:+PCGAMGSetType++PCGAMGSetType++++man+manualpages/PC/PCGAMGSetType.html#PCGAMGSetType
man:+PCGAMGGetType++PCGAMGGetType++++man+manualpages/PC/PCGAMGGetType.html#PCGAMGGetType
man:+PCGAMG++PCGAMG++++man+manualpages/PC/PCGAMG.html#PCGAMG
man:+PCGAMGInitializePackage++PCGAMGInitializePackage++++man+manualpages/PC/PCGAMGInitializePackage.html#PCGAMGInitializePackage
man:+PCGAMGFinalizePackage++PCGAMGFinalizePackage++++man+manualpages/PC/PCGAMGFinalizePackage.html#PCGAMGFinalizePackage
man:+PCGAMGRegister++PCGAMGRegister++++man+manualpages/PC/PCGAMGRegister.html#PCGAMGRegister
man:+PCGAMGSetNSmooths++PCGAMGSetNSmooths++++man+manualpages/PC/PCGAMGSetNSmooths.html#PCGAMGSetNSmooths
man:+PCGAMGSetSymGraph++PCGAMGSetSymGraph++++man+manualpages/PC/PCGAMGSetSymGraph.html#PCGAMGSetSymGraph
man:+PCGAMGSetSquareGraph++PCGAMGSetSquareGraph++++man+manualpages/PC/PCGAMGSetSquareGraph.html#PCGAMGSetSquareGraph
man:+PCGAMGClassicalSetType++PCGAMGClassicalSetType++++man+manualpages/PC/PCGAMGClassicalSetType.html#PCGAMGClassicalSetType
man:+PCGAMGClassicalGetType++PCGAMGClassicalGetType++++man+manualpages/PC/PCGAMGClassicalGetType.html#PCGAMGClassicalGetType
man:+PCPARMSSetGlobal++PCPARMSSetGlobal++++man+manualpages/PC/PCPARMSSetGlobal.html#PCPARMSSetGlobal
man:+PCPARMSSetLocal++PCPARMSSetLocal++++man+manualpages/PC/PCPARMSSetLocal.html#PCPARMSSetLocal
man:+PCPARMSSetSolveTolerances++PCPARMSSetSolveTolerances++++man+manualpages/PC/PCPARMSSetSolveTolerances.html#PCPARMSSetSolveTolerances
man:+PCPARMSSetSolveRestart++PCPARMSSetSolveRestart++++man+manualpages/PC/PCPARMSSetSolveRestart.html#PCPARMSSetSolveRestart
man:+PCPARMSSetNonsymPerm++PCPARMSSetNonsymPerm++++man+manualpages/PC/PCPARMSSetNonsymPerm.html#PCPARMSSetNonsymPerm
man:+PCPARMSSetFill++PCPARMSSetFill++++man+manualpages/PC/PCPARMSSetFill.html#PCPARMSSetFill
man:+PCPARMS++PCPARMS++++man+manualpages/PC/PCPARMS.html#PCPARMS
man:+PCBDDCSetChangeOfBasisMat++PCBDDCSetChangeOfBasisMat++++man+manualpages/PC/PCBDDCSetChangeOfBasisMat.html#PCBDDCSetChangeOfBasisMat
man:+PCBDDCSetPrimalVerticesLocalIS++PCBDDCSetPrimalVerticesLocalIS++++man+manualpages/PC/PCBDDCSetPrimalVerticesLocalIS.html#PCBDDCSetPrimalVerticesLocalIS
man:+PCBDDCSetCoarseningRatio++PCBDDCSetCoarseningRatio++++man+manualpages/PC/PCBDDCSetCoarseningRatio.html#PCBDDCSetCoarseningRatio
man:+PCBDDCSetLevels++PCBDDCSetLevels++++man+manualpages/PC/PCBDDCSetLevels.html#PCBDDCSetLevels
man:+PCBDDCSetNullSpace++PCBDDCSetNullSpace++++man+manualpages/PC/PCBDDCSetNullSpace.html#PCBDDCSetNullSpace
man:+PCBDDCSetDirichletBoundaries++PCBDDCSetDirichletBoundaries++++man+manualpages/PC/PCBDDCSetDirichletBoundaries.html#PCBDDCSetDirichletBoundaries
man:+PCBDDCSetDirichletBoundariesLocal++PCBDDCSetDirichletBoundariesLocal++++man+manualpages/PC/PCBDDCSetDirichletBoundariesLocal.html#PCBDDCSetDirichletBoundariesLocal
man:+PCBDDCSetNeumannBoundaries++PCBDDCSetNeumannBoundaries++++man+manualpages/PC/PCBDDCSetNeumannBoundaries.html#PCBDDCSetNeumannBoundaries
man:+PCBDDCSetNeumannBoundariesLocal++PCBDDCSetNeumannBoundariesLocal++++man+manualpages/PC/PCBDDCSetNeumannBoundariesLocal.html#PCBDDCSetNeumannBoundariesLocal
man:+PCBDDCGetDirichletBoundaries++PCBDDCGetDirichletBoundaries++++man+manualpages/PC/PCBDDCGetDirichletBoundaries.html#PCBDDCGetDirichletBoundaries
man:+PCBDDCGetDirichletBoundariesLocal++PCBDDCGetDirichletBoundariesLocal++++man+manualpages/PC/PCBDDCGetDirichletBoundariesLocal.html#PCBDDCGetDirichletBoundariesLocal
man:+PCBDDCGetNeumannBoundaries++PCBDDCGetNeumannBoundaries++++man+manualpages/PC/PCBDDCGetNeumannBoundaries.html#PCBDDCGetNeumannBoundaries
man:+PCBDDCGetNeumannBoundariesLocal++PCBDDCGetNeumannBoundariesLocal++++man+manualpages/PC/PCBDDCGetNeumannBoundariesLocal.html#PCBDDCGetNeumannBoundariesLocal
man:+PCBDDCSetLocalAdjacencyGraph++PCBDDCSetLocalAdjacencyGraph++++man+manualpages/PC/PCBDDCSetLocalAdjacencyGraph.html#PCBDDCSetLocalAdjacencyGraph
man:+PCBDDCSetDofsSplittingLocal++PCBDDCSetDofsSplittingLocal++++man+manualpages/PC/PCBDDCSetDofsSplittingLocal.html#PCBDDCSetDofsSplittingLocal
man:+PCBDDCSetDofsSplitting++PCBDDCSetDofsSplitting++++man+manualpages/PC/PCBDDCSetDofsSplitting.html#PCBDDCSetDofsSplitting
man:+PCBDDCMatFETIDPGetRHS++PCBDDCMatFETIDPGetRHS++++man+manualpages/PC/PCBDDCMatFETIDPGetRHS.html#PCBDDCMatFETIDPGetRHS
man:+PCBDDCMatFETIDPGetSolution++PCBDDCMatFETIDPGetSolution++++man+manualpages/PC/PCBDDCMatFETIDPGetSolution.html#PCBDDCMatFETIDPGetSolution
man:+PCBDDCCreateFETIDPOperators++PCBDDCCreateFETIDPOperators++++man+manualpages/PC/PCBDDCCreateFETIDPOperators.html#PCBDDCCreateFETIDPOperators
man:+PCBDDC++PCBDDC++++man+manualpages/PC/PCBDDC.html#PCBDDC
man:+PCKaczmarz++PCKaczmarz++++man+manualpages/PC/PCKaczmarz.html#PCKaczmarz
man:+PCTelescopeGetKSP++PCTelescopeGetKSP++++man+manualpages/PC/PCTelescopeGetKSP.html#PCTelescopeGetKSP
man:+PCTelescopeGetReductionFactor++PCTelescopeGetReductionFactor++++man+manualpages/PC/PCTelescopeGetReductionFactor.html#PCTelescopeGetReductionFactor
man:+PCTelescopeSetReductionFactor++PCTelescopeSetReductionFactor++++man+manualpages/PC/PCTelescopeSetReductionFactor.html#PCTelescopeSetReductionFactor
man:+PCTelescopeGetIgnoreDM++PCTelescopeGetIgnoreDM++++man+manualpages/PC/PCTelescopeGetIgnoreDM.html#PCTelescopeGetIgnoreDM
man:+PCTelescopeSetIgnoreDM++PCTelescopeSetIgnoreDM++++man+manualpages/PC/PCTelescopeSetIgnoreDM.html#PCTelescopeSetIgnoreDM
man:+PCTelescopeGetIgnoreKSPComputeOperators++PCTelescopeGetIgnoreKSPComputeOperators++++man+manualpages/PC/PCTelescopeGetIgnoreKSPComputeOperators.html#PCTelescopeGetIgnoreKSPComputeOperators
man:+PCTelescopeSetIgnoreKSPComputeOperators++PCTelescopeSetIgnoreKSPComputeOperators++++man+manualpages/PC/PCTelescopeSetIgnoreKSPComputeOperators.html#PCTelescopeSetIgnoreKSPComputeOperators
man:+PCTelescopeGetDM++PCTelescopeGetDM++++man+manualpages/PC/PCTelescopeGetDM.html#PCTelescopeGetDM
man:+PCTELESCOPE++PCTELESCOPE++++man+manualpages/PC/PCTELESCOPE.html#PCTELESCOPE
man:+KSP++KSP++++man+manualpages/KSP/KSP.html#KSP
man:+KSPType++KSPType++++man+manualpages/KSP/KSPType.html#KSPType
man:+KSPFCDTruncationType++KSPFCDTruncationType++++man+manualpages/KSP/KSPFCDTruncationType.html#KSPFCDTruncationType
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_NORM_NONE++KSP_NORM_NONE++++man+manualpages/KSP/KSP_NORM_NONE.html#KSP_NORM_NONE
man:+KSP_NORM_PRECONDITIONED++KSP_NORM_PRECONDITIONED++++man+manualpages/KSP/KSP_NORM_PRECONDITIONED.html#KSP_NORM_PRECONDITIONED
man:+KSP_NORM_UNPRECONDITIONED++KSP_NORM_UNPRECONDITIONED++++man+manualpages/KSP/KSP_NORM_UNPRECONDITIONED.html#KSP_NORM_UNPRECONDITIONED
man:+KSP_NORM_NATURAL++KSP_NORM_NATURAL++++man+manualpages/KSP/KSP_NORM_NATURAL.html#KSP_NORM_NATURAL
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_DIVERGED_PCSETUP_FAILED++KSP_DIVERGED_PCSETUP_FAILED++++man+manualpages/KSP/KSP_DIVERGED_PCSETUP_FAILED.html#KSP_DIVERGED_PCSETUP_FAILED
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:+MatSchurComplementAinvType++MatSchurComplementAinvType++++man+manualpages/KSP/MatSchurComplementAinvType.html#MatSchurComplementAinvType
man:+KSPSetOptionsPrefix++KSPSetOptionsPrefix++++man+manualpages/KSP/KSPSetOptionsPrefix.html#KSPSetOptionsPrefix
man:+KSPAppendOptionsPrefix++KSPAppendOptionsPrefix++++man+manualpages/KSP/KSPAppendOptionsPrefix.html#KSPAppendOptionsPrefix
man:+KSPGetTabLevel++KSPGetTabLevel++++man+manualpages/KSP/KSPGetTabLevel.html#KSPGetTabLevel
man:+KSPSetTabLevel++KSPSetTabLevel++++man+manualpages/KSP/KSPSetTabLevel.html#KSPSetTabLevel
man:+KSPSetUseFischerGuess++KSPSetUseFischerGuess++++man+manualpages/KSP/KSPSetUseFischerGuess.html#KSPSetUseFischerGuess
man:+KSPSetFischerGuess++KSPSetFischerGuess++++man+manualpages/KSP/KSPSetFischerGuess.html#KSPSetFischerGuess
man:+KSPGetFischerGuess++KSPGetFischerGuess++++man+manualpages/KSP/KSPGetFischerGuess.html#KSPGetFischerGuess
man:+KSPGetOptionsPrefix++KSPGetOptionsPrefix++++man+manualpages/KSP/KSPGetOptionsPrefix.html#KSPGetOptionsPrefix
man:+KSPMonitorSetFromOptions++KSPMonitorSetFromOptions++++man+manualpages/KSP/KSPMonitorSetFromOptions.html#KSPMonitorSetFromOptions
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:+KSPComputeRitz++KSPComputeRitz++++man+manualpages/KSP/KSPComputeRitz.html#KSPComputeRitz
man:+KSPSetUpOnBlocks++KSPSetUpOnBlocks++++man+manualpages/KSP/KSPSetUpOnBlocks.html#KSPSetUpOnBlocks
man:+KSPSetReusePreconditioner++KSPSetReusePreconditioner++++man+manualpages/KSP/KSPSetReusePreconditioner.html#KSPSetReusePreconditioner
man:+KSPSetSkipPCSetFromOptions++KSPSetSkipPCSetFromOptions++++man+manualpages/KSP/KSPSetSkipPCSetFromOptions.html#KSPSetSkipPCSetFromOptions
man:+KSPSetUp++KSPSetUp++++man+manualpages/KSP/KSPSetUp.html#KSPSetUp
man:+KSPReasonView++KSPReasonView++++man+manualpages/KSP/KSPReasonView.html#KSPReasonView
man:+KSPReasonViewFromOptions++KSPReasonViewFromOptions++++man+manualpages/KSP/KSPReasonViewFromOptions.html#KSPReasonViewFromOptions
man:+KSPSolve++KSPSolve++++man+manualpages/KSP/KSPSolve.html#KSPSolve
man:+KSPSolveTranspose++KSPSolveTranspose++++man+manualpages/KSP/KSPSolveTranspose.html#KSPSolveTranspose
man:+KSPReset++KSPReset++++man+manualpages/KSP/KSPReset.html#KSPReset
man:+KSPDestroy++KSPDestroy++++man+manualpages/KSP/KSPDestroy.html#KSPDestroy
man:+KSPSetPCSide++KSPSetPCSide++++man+manualpages/KSP/KSPSetPCSide.html#KSPSetPCSide
man:+KSPGetPCSide++KSPGetPCSide++++man+manualpages/KSP/KSPGetPCSide.html#KSPGetPCSide
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:+KSPSetErrorIfNotConverged++KSPSetErrorIfNotConverged++++man+manualpages/KSP/KSPSetErrorIfNotConverged.html#KSPSetErrorIfNotConverged
man:+KSPGetErrorIfNotConverged++KSPGetErrorIfNotConverged++++man+manualpages/KSP/KSPGetErrorIfNotConverged.html#KSPGetErrorIfNotConverged
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:+KSPSetComputeRitz++KSPSetComputeRitz++++man+manualpages/KSP/KSPSetComputeRitz.html#KSPSetComputeRitz
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:+KSPMonitor++KSPMonitor++++man+manualpages/KSP/KSPMonitor.html#KSPMonitor
man:+KSPMonitorSet++KSPMonitorSet++++man+manualpages/KSP/KSPMonitorSet.html#KSPMonitorSet
man:+KSPMonitorCancel++KSPMonitorCancel++++man+manualpages/KSP/KSPMonitorCancel.html#KSPMonitorCancel
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:+KSPSetComputeOperators++KSPSetComputeOperators++++man+manualpages/KSP/KSPSetComputeOperators.html#KSPSetComputeOperators
man:+KSPSetComputeRHS++KSPSetComputeRHS++++man+manualpages/KSP/KSPSetComputeRHS.html#KSPSetComputeRHS
man:+KSPSetComputeInitialGuess++KSPSetComputeInitialGuess++++man+manualpages/KSP/KSPSetComputeInitialGuess.html#KSPSetComputeInitialGuess
man:+KSPFischerGuessCreate++KSPFischerGuessCreate++++man+manualpages/KSP/KSPFischerGuessCreate.html#KSPFischerGuessCreate
man:+KSPLoad++KSPLoad++++man+manualpages/KSP/KSPLoad.html#KSPLoad
man:+KSPView++KSPView++++man+manualpages/KSP/KSPView.html#KSPView
man:+KSPSetNormType++KSPSetNormType++++man+manualpages/KSP/KSPSetNormType.html#KSPSetNormType
man:+KSPSetCheckNormIteration++KSPSetCheckNormIteration++++man+manualpages/KSP/KSPSetCheckNormIteration.html#KSPSetCheckNormIteration
man:+KSPSetLagNorm++KSPSetLagNorm++++man+manualpages/KSP/KSPSetLagNorm.html#KSPSetLagNorm
man:+KSPSetSupportedNorm++KSPSetSupportedNorm++++man+manualpages/KSP/KSPSetSupportedNorm.html#KSPSetSupportedNorm
man:+KSPGetNormType++KSPGetNormType++++man+manualpages/KSP/KSPGetNormType.html#KSPGetNormType
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:+KSPSetPreSolve++KSPSetPreSolve++++man+manualpages/KSP/KSPSetPreSolve.html#KSPSetPreSolve
man:+KSPSetPostSolve++KSPSetPostSolve++++man+manualpages/KSP/KSPSetPostSolve.html#KSPSetPostSolve
man:+KSPCreate++KSPCreate++++man+manualpages/KSP/KSPCreate.html#KSPCreate
man:+KSPSetType++KSPSetType++++man+manualpages/KSP/KSPSetType.html#KSPSetType
man:+KSPGetType++KSPGetType++++man+manualpages/KSP/KSPGetType.html#KSPGetType
man:+KSPRegister++KSPRegister++++man+manualpages/KSP/KSPRegister.html#KSPRegister
man:+KSPGetResidualNorm++KSPGetResidualNorm++++man+manualpages/KSP/KSPGetResidualNorm.html#KSPGetResidualNorm
man:+KSPGetIterationNumber++KSPGetIterationNumber++++man+manualpages/KSP/KSPGetIterationNumber.html#KSPGetIterationNumber
man:+KSPGetTotalIterations++KSPGetTotalIterations++++man+manualpages/KSP/KSPGetTotalIterations.html#KSPGetTotalIterations
man:+KSPMonitorSingularValue++KSPMonitorSingularValue++++man+manualpages/KSP/KSPMonitorSingularValue.html#KSPMonitorSingularValue
man:+KSPMonitorSolution++KSPMonitorSolution++++man+manualpages/KSP/KSPMonitorSolution.html#KSPMonitorSolution
man:+KSPMonitorDefault++KSPMonitorDefault++++man+manualpages/KSP/KSPMonitorDefault.html#KSPMonitorDefault
man:+KSPMonitorTrueResidualNorm++KSPMonitorTrueResidualNorm++++man+manualpages/KSP/KSPMonitorTrueResidualNorm.html#KSPMonitorTrueResidualNorm
man:+KSPMonitorTrueResidualMaxNorm++KSPMonitorTrueResidualMaxNorm++++man+manualpages/KSP/KSPMonitorTrueResidualMaxNorm.html#KSPMonitorTrueResidualMaxNorm
man:+KSPMonitorRange++KSPMonitorRange++++man+manualpages/KSP/KSPMonitorRange.html#KSPMonitorRange
man:+KSPMonitorDynamicTolerance++KSPMonitorDynamicTolerance++++man+manualpages/KSP/KSPMonitorDynamicTolerance.html#KSPMonitorDynamicTolerance
man:+KSPConvergedSkip++KSPConvergedSkip++++man+manualpages/KSP/KSPConvergedSkip.html#KSPConvergedSkip
man:+KSPConvergedDefaultCreate++KSPConvergedDefaultCreate++++man+manualpages/KSP/KSPConvergedDefaultCreate.html#KSPConvergedDefaultCreate
man:+KSPConvergedDefaultSetUIRNorm++KSPConvergedDefaultSetUIRNorm++++man+manualpages/KSP/KSPConvergedDefaultSetUIRNorm.html#KSPConvergedDefaultSetUIRNorm
man:+KSPConvergedDefaultSetUMIRNorm++KSPConvergedDefaultSetUMIRNorm++++man+manualpages/KSP/KSPConvergedDefaultSetUMIRNorm.html#KSPConvergedDefaultSetUMIRNorm
man:+KSPConvergedDefault++KSPConvergedDefault++++man+manualpages/KSP/KSPConvergedDefault.html#KSPConvergedDefault
man:+KSPConvergedDefaultDestroy++KSPConvergedDefaultDestroy++++man+manualpages/KSP/KSPConvergedDefaultDestroy.html#KSPConvergedDefaultDestroy
man:+KSPCreateVecs++KSPCreateVecs++++man+manualpages/KSP/KSPCreateVecs.html#KSPCreateVecs
man:+KSPGetConvergedReason++KSPGetConvergedReason++++man+manualpages/KSP/KSPGetConvergedReason.html#KSPGetConvergedReason
man:+KSPSetDM++KSPSetDM++++man+manualpages/KSP/KSPSetDM.html#KSPSetDM
man:+KSPSetDMActive++KSPSetDMActive++++man+manualpages/KSP/KSPSetDMActive.html#KSPSetDMActive
man:+KSPGetDM++KSPGetDM++++man+manualpages/KSP/KSPGetDM.html#KSPGetDM
man:+KSPSetApplicationContext++KSPSetApplicationContext++++man+manualpages/KSP/KSPSetApplicationContext.html#KSPSetApplicationContext
man:+KSPGetApplicationContext++KSPGetApplicationContext++++man+manualpages/KSP/KSPGetApplicationContext.html#KSPGetApplicationContext
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:+KSPMonitorLGResidualNormCreate++KSPMonitorLGResidualNormCreate++++man+manualpages/KSP/KSPMonitorLGResidualNormCreate.html#KSPMonitorLGResidualNormCreate
man:+KSPMonitorLGTrueResidualNormCreate++KSPMonitorLGTrueResidualNormCreate++++man+manualpages/KSP/KSPMonitorLGTrueResidualNormCreate.html#KSPMonitorLGTrueResidualNormCreate
man:+KSPComputeExplicitOperator++KSPComputeExplicitOperator++++man+manualpages/KSP/KSPComputeExplicitOperator.html#KSPComputeExplicitOperator
man:+KSPComputeEigenvaluesExplicitly++KSPComputeEigenvaluesExplicitly++++man+manualpages/KSP/KSPComputeEigenvaluesExplicitly.html#KSPComputeEigenvaluesExplicitly
man:+PCFinalizePackage++PCFinalizePackage++++man+manualpages/KSP/PCFinalizePackage.html#PCFinalizePackage
man:+PCInitializePackage++PCInitializePackage++++man+manualpages/KSP/PCInitializePackage.html#PCInitializePackage
man:+KSPFinalizePackage++KSPFinalizePackage++++man+manualpages/KSP/KSPFinalizePackage.html#KSPFinalizePackage
man:+KSPInitializePackage++KSPInitializePackage++++man+manualpages/KSP/KSPInitializePackage.html#KSPInitializePackage
man:+DMKSPCopy++DMKSPCopy++++man+manualpages/KSP/DMKSPCopy.html#DMKSPCopy
man:+DMGetDMKSP++DMGetDMKSP++++man+manualpages/KSP/DMGetDMKSP.html#DMGetDMKSP
man:+DMGetDMKSPWrite++DMGetDMKSPWrite++++man+manualpages/KSP/DMGetDMKSPWrite.html#DMGetDMKSPWrite
man:+DMCopyDMKSP++DMCopyDMKSP++++man+manualpages/KSP/DMCopyDMKSP.html#DMCopyDMKSP
man:+DMKSPSetComputeOperators++DMKSPSetComputeOperators++++man+manualpages/KSP/DMKSPSetComputeOperators.html#DMKSPSetComputeOperators
man:+DMKSPGetComputeOperators++DMKSPGetComputeOperators++++man+manualpages/KSP/DMKSPGetComputeOperators.html#DMKSPGetComputeOperators
man:+DMKSPSetComputeRHS++DMKSPSetComputeRHS++++man+manualpages/KSP/DMKSPSetComputeRHS.html#DMKSPSetComputeRHS
man:+DMKSPSetComputeInitialGuess++DMKSPSetComputeInitialGuess++++man+manualpages/KSP/DMKSPSetComputeInitialGuess.html#DMKSPSetComputeInitialGuess
man:+DMKSPGetComputeRHS++DMKSPGetComputeRHS++++man+manualpages/KSP/DMKSPGetComputeRHS.html#DMKSPGetComputeRHS
man:+DMKSPGetComputeInitialGuess++DMKSPGetComputeInitialGuess++++man+manualpages/KSP/DMKSPGetComputeInitialGuess.html#DMKSPGetComputeInitialGuess
man:+KSPMonitorSAWsCreate++KSPMonitorSAWsCreate++++man+manualpages/KSP/KSPMonitorSAWsCreate.html#KSPMonitorSAWsCreate
man:+KSPMonitorSAWsDestroy++KSPMonitorSAWsDestroy++++man+manualpages/KSP/KSPMonitorSAWsDestroy.html#KSPMonitorSAWsDestroy
man:+KSPMonitorSAWs++KSPMonitorSAWs++++man+manualpages/KSP/KSPMonitorSAWs.html#KSPMonitorSAWs
man:+KSPCR++KSPCR++++man+manualpages/KSP/KSPCR.html#KSPCR
man:+KSPPIPECR++KSPPIPECR++++man+manualpages/KSP/KSPPIPECR.html#KSPPIPECR
man:+KSPBCGS++KSPBCGS++++man+manualpages/KSP/KSPBCGS.html#KSPBCGS
man:+KSPFBCGS++KSPFBCGS++++man+manualpages/KSP/KSPFBCGS.html#KSPFBCGS
man:+KSPFBCGSR++KSPFBCGSR++++man+manualpages/KSP/KSPFBCGSR.html#KSPFBCGSR
man:+KSPBCGSLSetXRes++KSPBCGSLSetXRes++++man+manualpages/KSP/KSPBCGSLSetXRes.html#KSPBCGSLSetXRes
man:+KSPBCGSLSetUsePseudoinverse++KSPBCGSLSetUsePseudoinverse++++man+manualpages/KSP/KSPBCGSLSetUsePseudoinverse.html#KSPBCGSLSetUsePseudoinverse
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:+KSPCGUseSingleReduction++KSPCGUseSingleReduction++++man+manualpages/KSP/KSPCGUseSingleReduction.html#KSPCGUseSingleReduction
man:+KSCGLS++KSCGLS++++man+manualpages/KSP/KSCGLS.html#KSCGLS
man:+KSPCGNE++KSPCGNE++++man+manualpages/KSP/KSPCGNE.html#KSPCGNE
man:+KSPGLTRSetRadius++KSPGLTRSetRadius++++man+manualpages/KSP/KSPGLTRSetRadius.html#KSPGLTRSetRadius
man:+KSPGLTRGetNormD++KSPGLTRGetNormD++++man+manualpages/KSP/KSPGLTRGetNormD.html#KSPGLTRGetNormD
man:+KSPGLTRGetObjFcn++KSPGLTRGetObjFcn++++man+manualpages/KSP/KSPGLTRGetObjFcn.html#KSPGLTRGetObjFcn
man:+KSPGLTRGetMinEig++KSPGLTRGetMinEig++++man+manualpages/KSP/KSPGLTRGetMinEig.html#KSPGLTRGetMinEig
man:+KSPGLTRGetLambda++KSPGLTRGetLambda++++man+manualpages/KSP/KSPGLTRGetLambda.html#KSPGLTRGetLambda
man:+KSPGLTR++KSPGLTR++++man+manualpages/KSP/KSPGLTR.html#KSPGLTR
man:+KSPNASHSetRadius++KSPNASHSetRadius++++man+manualpages/KSP/KSPNASHSetRadius.html#KSPNASHSetRadius
man:+KSPNASHGetNormD++KSPNASHGetNormD++++man+manualpages/KSP/KSPNASHGetNormD.html#KSPNASHGetNormD
man:+KSPNASHGetObjFcn++KSPNASHGetObjFcn++++man+manualpages/KSP/KSPNASHGetObjFcn.html#KSPNASHGetObjFcn
man:+KSPNASH++KSPNASH++++man+manualpages/KSP/KSPNASH.html#KSPNASH
man:+KSPSTCGSetRadius++KSPSTCGSetRadius++++man+manualpages/KSP/KSPSTCGSetRadius.html#KSPSTCGSetRadius
man:+KSPSTCGGetNormD++KSPSTCGGetNormD++++man+manualpages/KSP/KSPSTCGGetNormD.html#KSPSTCGGetNormD
man:+KSPSTCGGetObjFcn++KSPSTCGGetObjFcn++++man+manualpages/KSP/KSPSTCGGetObjFcn.html#KSPSTCGGetObjFcn
man:+KSPSTCG++KSPSTCG++++man+manualpages/KSP/KSPSTCG.html#KSPSTCG
man:+KSPPIPECG++KSPPIPECG++++man+manualpages/KSP/KSPPIPECG.html#KSPPIPECG
man:+KSPPIPECGRR++KSPPIPECGRR++++man+manualpages/KSP/KSPPIPECGRR.html#KSPPIPECGRR
man:+KSPGROPPCG++KSPGROPPCG++++man+manualpages/KSP/KSPGROPPCG.html#KSPGROPPCG
man:+KSPCGS++KSPCGS++++man+manualpages/KSP/KSPCGS.html#KSPCGS
man:+KSPGMRESMonitorKrylov++KSPGMRESMonitorKrylov++++man+manualpages/KSP/KSPGMRESMonitorKrylov.html#KSPGMRESMonitorKrylov
man:+KSPGMRESSetCGSRefinementType++KSPGMRESSetCGSRefinementType++++man+manualpages/KSP/KSPGMRESSetCGSRefinementType.html#KSPGMRESSetCGSRefinementType
man:+KSPGMRESGetCGSRefinementType++KSPGMRESGetCGSRefinementType++++man+manualpages/KSP/KSPGMRESGetCGSRefinementType.html#KSPGMRESGetCGSRefinementType
man:+KSPGMRESSetRestart++KSPGMRESSetRestart++++man+manualpages/KSP/KSPGMRESSetRestart.html#KSPGMRESSetRestart
man:+KSPGMRESGetRestart++KSPGMRESGetRestart++++man+manualpages/KSP/KSPGMRESGetRestart.html#KSPGMRESGetRestart
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:+KSPGMRESGetOrthogonalization++KSPGMRESGetOrthogonalization++++man+manualpages/KSP/KSPGMRESGetOrthogonalization.html#KSPGMRESGetOrthogonalization
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:+KSPDGMRES++KSPDGMRES++++man+manualpages/KSP/KSPDGMRES.html#KSPDGMRES
man:+KSPPGMRES++KSPPGMRES++++man+manualpages/KSP/KSPPGMRES.html#KSPPGMRES
man:+KSPPIPEFGMRES++KSPPIPEFGMRES++++man+manualpages/KSP/KSPPIPEFGMRES.html#KSPPIPEFGMRES
man:+KSPPIPEFGMRESSetShift++KSPPIPEFGMRESSetShift++++man+manualpages/KSP/KSPPIPEFGMRESSetShift.html#KSPPIPEFGMRESSetShift
man:+KSPChebyshevSetEigenvalues++KSPChebyshevSetEigenvalues++++man+manualpages/KSP/KSPChebyshevSetEigenvalues.html#KSPChebyshevSetEigenvalues
man:+KSPChebyshevEstEigSet++KSPChebyshevEstEigSet++++man+manualpages/KSP/KSPChebyshevEstEigSet.html#KSPChebyshevEstEigSet
man:+KSPChebyshevEstEigSetUseRandom++KSPChebyshevEstEigSetUseRandom++++man+manualpages/KSP/KSPChebyshevEstEigSetUseRandom.html#KSPChebyshevEstEigSetUseRandom
man:+KSPChebyshevEstEigSetRandom++KSPChebyshevEstEigSetRandom++++man+manualpages/KSP/KSPChebyshevEstEigSetRandom.html#KSPChebyshevEstEigSetRandom
man:+KSPChebyshevEstEigGetKSP++KSPChebyshevEstEigGetKSP++++man+manualpages/KSP/KSPChebyshevEstEigGetKSP.html#KSPChebyshevEstEigGetKSP
man:+KSPCHEBYSHEV++KSPCHEBYSHEV++++man+manualpages/KSP/KSPCHEBYSHEV.html#KSPCHEBYSHEV
man:+KSPRICHARDSON++KSPRICHARDSON++++man+manualpages/KSP/KSPRICHARDSON.html#KSPRICHARDSON
man:+KSPRichardsonSetScale++KSPRichardsonSetScale++++man+manualpages/KSP/KSPRichardsonSetScale.html#KSPRichardsonSetScale
man:+KSPRichardsonSetSelfScale++KSPRichardsonSetSelfScale++++man+manualpages/KSP/KSPRichardsonSetSelfScale.html#KSPRichardsonSetSelfScale
man:+KSPLSQRMonitorDefault++KSPLSQRMonitorDefault++++man+manualpages/KSP/KSPLSQRMonitorDefault.html#KSPLSQRMonitorDefault
man:+KSPLSQRDefaultConverged++KSPLSQRDefaultConverged++++man+manualpages/KSP/KSPLSQRDefaultConverged.html#KSPLSQRDefaultConverged
man:+KSPLSQR++KSPLSQR++++man+manualpages/KSP/KSPLSQR.html#KSPLSQR
man:+KSPPREONLY++KSPPREONLY++++man+manualpages/KSP/KSPPREONLY.html#KSPPREONLY
man:+KSPTCQMR++KSPTCQMR++++man+manualpages/KSP/KSPTCQMR.html#KSPTCQMR
man:+KSPTFQMR++KSPTFQMR++++man+manualpages/KSP/KSPTFQMR.html#KSPTFQMR
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:+KSPLCD++KSPLCD++++man+manualpages/KSP/KSPLCD.html#KSPLCD
man:+KSPIBCGS++KSPIBCGS++++man+manualpages/KSP/KSPIBCGS.html#KSPIBCGS
man:+KSPPythonSetType++KSPPythonSetType++++man+manualpages/KSP/KSPPythonSetType.html#KSPPythonSetType
man:+KSPGCRSetModifyPC++KSPGCRSetModifyPC++++man+manualpages/KSP/KSPGCRSetModifyPC.html#KSPGCRSetModifyPC
man:+KSPGCR++KSPGCR++++man+manualpages/KSP/KSPGCR.html#KSPGCR
man:+KSPPIPEGCRSetUnrollW++KSPPIPEGCRSetUnrollW++++man+manualpages/KSP/KSPPIPEGCRSetUnrollW.html#KSPPIPEGCRSetUnrollW
man:+KSPPIPEGCRGetUnrollW++KSPPIPEGCRGetUnrollW++++man+manualpages/KSP/KSPPIPEGCRGetUnrollW.html#KSPPIPEGCRGetUnrollW
man:+KSPPIPEGCRSetMmax++KSPPIPEGCRSetMmax++++man+manualpages/KSP/KSPPIPEGCRSetMmax.html#KSPPIPEGCRSetMmax
man:+KSPPIPEGCRGetMmax++KSPPIPEGCRGetMmax++++man+manualpages/KSP/KSPPIPEGCRGetMmax.html#KSPPIPEGCRGetMmax
man:+KSPPIPEGCRSetNprealloc++KSPPIPEGCRSetNprealloc++++man+manualpages/KSP/KSPPIPEGCRSetNprealloc.html#KSPPIPEGCRSetNprealloc
man:+KSPPIPEGCRGetNprealloc++KSPPIPEGCRGetNprealloc++++man+manualpages/KSP/KSPPIPEGCRGetNprealloc.html#KSPPIPEGCRGetNprealloc
man:+KSPPIPEGCRSetTruncationType++KSPPIPEGCRSetTruncationType++++man+manualpages/KSP/KSPPIPEGCRSetTruncationType.html#KSPPIPEGCRSetTruncationType
man:+KSPPIPEGCRGetTruncationType++KSPPIPEGCRGetTruncationType++++man+manualpages/KSP/KSPPIPEGCRGetTruncationType.html#KSPPIPEGCRGetTruncationType
man:+KSPPIPEGCRSetModifyPC++KSPPIPEGCRSetModifyPC++++man+manualpages/KSP/KSPPIPEGCRSetModifyPC.html#KSPPIPEGCRSetModifyPC
man:+KSPPIPEGCR++KSPPIPEGCR++++man+manualpages/KSP/KSPPIPEGCR.html#KSPPIPEGCR
man:+KSPFCGSetMmax++KSPFCGSetMmax++++man+manualpages/KSP/KSPFCGSetMmax.html#KSPFCGSetMmax
man:+KSPFCGGetMmax++KSPFCGGetMmax++++man+manualpages/KSP/KSPFCGGetMmax.html#KSPFCGGetMmax
man:+KSPFCGSetNprealloc++KSPFCGSetNprealloc++++man+manualpages/KSP/KSPFCGSetNprealloc.html#KSPFCGSetNprealloc
man:+KSPFCGGetNprealloc++KSPFCGGetNprealloc++++man+manualpages/KSP/KSPFCGGetNprealloc.html#KSPFCGGetNprealloc
man:+KSPFCGSetTruncationType++KSPFCGSetTruncationType++++man+manualpages/KSP/KSPFCGSetTruncationType.html#KSPFCGSetTruncationType
man:+KSPFCGGetTruncationType++KSPFCGGetTruncationType++++man+manualpages/KSP/KSPFCGGetTruncationType.html#KSPFCGGetTruncationType
man:+KSPFCG++KSPFCG++++man+manualpages/KSP/KSPFCG.html#KSPFCG
man:+KSPPIPEFCGSetMmax++KSPPIPEFCGSetMmax++++man+manualpages/KSP/KSPPIPEFCGSetMmax.html#KSPPIPEFCGSetMmax
man:+KSPPIPEFCGGetMmax++KSPPIPEFCGGetMmax++++man+manualpages/KSP/KSPPIPEFCGGetMmax.html#KSPPIPEFCGGetMmax
man:+KSPPIPEFCGSetNprealloc++KSPPIPEFCGSetNprealloc++++man+manualpages/KSP/KSPPIPEFCGSetNprealloc.html#KSPPIPEFCGSetNprealloc
man:+KSPPIPEFCGGetNprealloc++KSPPIPEFCGGetNprealloc++++man+manualpages/KSP/KSPPIPEFCGGetNprealloc.html#KSPPIPEFCGGetNprealloc
man:+KSPPIPEFCGSetTruncationType++KSPPIPEFCGSetTruncationType++++man+manualpages/KSP/KSPPIPEFCGSetTruncationType.html#KSPPIPEFCGSetTruncationType
man:+KSPPIPEFCGGetTruncationType++KSPPIPEFCGGetTruncationType++++man+manualpages/KSP/KSPPIPEFCGGetTruncationType.html#KSPPIPEFCGGetTruncationType
man:+KSPPIPEFCG++KSPPIPEFCG++++man+manualpages/KSP/KSPPIPEFCG.html#KSPPIPEFCG
man:+MatCreateSchurComplement++MatCreateSchurComplement++++man+manualpages/KSP/MatCreateSchurComplement.html#MatCreateSchurComplement
man:+MatSchurComplementSetSubMatrices++MatSchurComplementSetSubMatrices++++man+manualpages/KSP/MatSchurComplementSetSubMatrices.html#MatSchurComplementSetSubMatrices
man:+MatSchurComplementGetKSP++MatSchurComplementGetKSP++++man+manualpages/KSP/MatSchurComplementGetKSP.html#MatSchurComplementGetKSP
man:+MatSchurComplementSetKSP++MatSchurComplementSetKSP++++man+manualpages/KSP/MatSchurComplementSetKSP.html#MatSchurComplementSetKSP
man:+MatSchurComplementUpdateSubMatrices++MatSchurComplementUpdateSubMatrices++++man+manualpages/KSP/MatSchurComplementUpdateSubMatrices.html#MatSchurComplementUpdateSubMatrices
man:+MatSchurComplementGetSubMatrices++MatSchurComplementGetSubMatrices++++man+manualpages/KSP/MatSchurComplementGetSubMatrices.html#MatSchurComplementGetSubMatrices
man:+MatSchurComplementComputeExplicitOperator++MatSchurComplementComputeExplicitOperator++++man+manualpages/KSP/MatSchurComplementComputeExplicitOperator.html#MatSchurComplementComputeExplicitOperator
man:+MatGetSchurComplement++MatGetSchurComplement++++man+manualpages/KSP/MatGetSchurComplement.html#MatGetSchurComplement
man:+MatSchurComplementSetAinvType++MatSchurComplementSetAinvType++++man+manualpages/KSP/MatSchurComplementSetAinvType.html#MatSchurComplementSetAinvType
man:+MatSchurComplementGetAinvType++MatSchurComplementGetAinvType++++man+manualpages/KSP/MatSchurComplementGetAinvType.html#MatSchurComplementGetAinvType
man:+MatCreateSchurComplementPmat++MatCreateSchurComplementPmat++++man+manualpages/KSP/MatCreateSchurComplementPmat.html#MatCreateSchurComplementPmat
man:+MatSchurComplementGetPmat++MatSchurComplementGetPmat++++man+manualpages/KSP/MatSchurComplementGetPmat.html#MatSchurComplementGetPmat
man:+KSPMatRegisterAll++KSPMatRegisterAll++++man+manualpages/KSP/KSPMatRegisterAll.html#KSPMatRegisterAll
man:+DMGlobalToLocalSolve++DMGlobalToLocalSolve++++man+manualpages/KSP/DMGlobalToLocalSolve.html#DMGlobalToLocalSolve
man:+DMProjectField++DMProjectField++++man+manualpages/KSP/DMProjectField.html#DMProjectField
man:+SNES++SNES++++man+manualpages/SNES/SNES.html#SNES
man:+SNESType++SNESType++++man+manualpages/SNES/SNESType.html#SNESType
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_SNORM_RELATIVE++SNES_CONVERGED_SNORM_RELATIVE++++man+manualpages/SNES/SNES_CONVERGED_SNORM_RELATIVE.html#SNES_CONVERGED_SNORM_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_LINE_SEARCH++SNES_DIVERGED_LINE_SEARCH++++man+manualpages/SNES/SNES_DIVERGED_LINE_SEARCH.html#SNES_DIVERGED_LINE_SEARCH
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:+SNESNormSchedule++SNESNormSchedule++++man+manualpages/SNES/SNESNormSchedule.html#SNESNormSchedule
man:+SNES_NORM_NONE++SNES_NORM_NONE++++man+manualpages/SNES/SNES_NORM_NONE.html#SNES_NORM_NONE
man:+SNES_NORM_ALWAYS++SNES_NORM_ALWAYS++++man+manualpages/SNES/SNES_NORM_ALWAYS.html#SNES_NORM_ALWAYS
man:+SNES_NORM_INITIAL_ONLY++SNES_NORM_INITIAL_ONLY++++man+manualpages/SNES/SNES_NORM_INITIAL_ONLY.html#SNES_NORM_INITIAL_ONLY
man:+SNES_NORM_FINAL_ONLY++SNES_NORM_FINAL_ONLY++++man+manualpages/SNES/SNES_NORM_FINAL_ONLY.html#SNES_NORM_FINAL_ONLY
man:+SNES_NORM_INITIAL_FINAL_ONLY++SNES_NORM_INITIAL_FINAL_ONLY++++man+manualpages/SNES/SNES_NORM_INITIAL_FINAL_ONLY.html#SNES_NORM_INITIAL_FINAL_ONLY
man:+SNESFunctionType++SNESFunctionType++++man+manualpages/SNES/SNESFunctionType.html#SNESFunctionType
man:+SNESLineSearch++SNESLineSearch++++man+manualpages/SNES/SNESLineSearch.html#SNESLineSearch
man:+SNESLineSearchType++SNESLineSearchType++++man+manualpages/SNES/SNESLineSearchType.html#SNESLineSearchType
man:+SNESLineSearchReason++SNESLineSearchReason++++man+manualpages/SNES/SNESLineSearchReason.html#SNESLineSearchReason
man:+SNESMSType++SNESMSType++++man+manualpages/SNES/SNESMSType.html#SNESMSType
man:+SNESFASType++SNESFASType++++man+manualpages/SNES/SNESFASType.html#SNESFASType
man:+SNESSetErrorIfNotConverged++SNESSetErrorIfNotConverged++++man+manualpages/SNES/SNESSetErrorIfNotConverged.html#SNESSetErrorIfNotConverged
man:+SNESGetErrorIfNotConverged++SNESGetErrorIfNotConverged++++man+manualpages/SNES/SNESGetErrorIfNotConverged.html#SNESGetErrorIfNotConverged
man:+SNESSetFunctionDomainError++SNESSetFunctionDomainError++++man+manualpages/SNES/SNESSetFunctionDomainError.html#SNESSetFunctionDomainError
man:+SNESGetFunctionDomainError++SNESGetFunctionDomainError++++man+manualpages/SNES/SNESGetFunctionDomainError.html#SNESGetFunctionDomainError
man:+SNESLoad++SNESLoad++++man+manualpages/SNES/SNESLoad.html#SNESLoad
man:+SNESView++SNESView++++man+manualpages/SNES/SNESView.html#SNESView
man:+SNESAddOptionsChecker++SNESAddOptionsChecker++++man+manualpages/SNES/SNESAddOptionsChecker.html#SNESAddOptionsChecker
man:+SNESSetUpMatrices++SNESSetUpMatrices++++man+manualpages/SNES/SNESSetUpMatrices.html#SNESSetUpMatrices
man:+SNESMonitorSetFromOptions++SNESMonitorSetFromOptions++++man+manualpages/SNES/SNESMonitorSetFromOptions.html#SNESMonitorSetFromOptions
man:+SNESSetFromOptions++SNESSetFromOptions++++man+manualpages/SNES/SNESSetFromOptions.html#SNESSetFromOptions
man:+SNESSetComputeApplicationContext++SNESSetComputeApplicationContext++++man+manualpages/SNES/SNESSetComputeApplicationContext.html#SNESSetComputeApplicationContext
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:+SNESSetIterationNumber++SNESSetIterationNumber++++man+manualpages/SNES/SNESSetIterationNumber.html#SNESSetIterationNumber
man:+SNESGetNonlinearStepFailures++SNESGetNonlinearStepFailures++++man+manualpages/SNES/SNESGetNonlinearStepFailures.html#SNESGetNonlinearStepFailures
man:+SNESSetMaxNonlinearStepFailures++SNESSetMaxNonlinearStepFailures++++man+manualpages/SNES/SNESSetMaxNonlinearStepFailures.html#SNESSetMaxNonlinearStepFailures
man:+SNESGetMaxNonlinearStepFailures++SNESGetMaxNonlinearStepFailures++++man+manualpages/SNES/SNESGetMaxNonlinearStepFailures.html#SNESGetMaxNonlinearStepFailures
man:+SNESGetNumberFunctionEvals++SNESGetNumberFunctionEvals++++man+manualpages/SNES/SNESGetNumberFunctionEvals.html#SNESGetNumberFunctionEvals
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:+SNESGetLinearSolveIterations++SNESGetLinearSolveIterations++++man+manualpages/SNES/SNESGetLinearSolveIterations.html#SNESGetLinearSolveIterations
man:+SNESSetCountersReset++SNESSetCountersReset++++man+manualpages/SNES/SNESSetCountersReset.html#SNESSetCountersReset
man:+SNESSetKSP++SNESSetKSP++++man+manualpages/SNES/SNESSetKSP.html#SNESSetKSP
man:+SNESCreate++SNESCreate++++man+manualpages/SNES/SNESCreate.html#SNESCreate
man:+SNESFunction++SNESFunction++++man+manualpages/SNES/SNESFunction.html#SNESFunction
man:+SNESSetFunction++SNESSetFunction++++man+manualpages/SNES/SNESSetFunction.html#SNESSetFunction
man:+SNESSetInitialFunction++SNESSetInitialFunction++++man+manualpages/SNES/SNESSetInitialFunction.html#SNESSetInitialFunction
man:+SNESSetNormSchedule++SNESSetNormSchedule++++man+manualpages/SNES/SNESSetNormSchedule.html#SNESSetNormSchedule
man:+SNESGetNormSchedule++SNESGetNormSchedule++++man+manualpages/SNES/SNESGetNormSchedule.html#SNESGetNormSchedule
man:+SNESSetFunctionNorm++SNESSetFunctionNorm++++man+manualpages/SNES/SNESSetFunctionNorm.html#SNESSetFunctionNorm
man:+SNESGetFunctionNorm++SNESGetFunctionNorm++++man+manualpages/SNES/SNESGetFunctionNorm.html#SNESGetFunctionNorm
man:+SNESSetFunctionType++SNESSetFunctionType++++man+manualpages/SNES/SNESSetFunctionType.html#SNESSetFunctionType
man:+SNESGetFunctionType++SNESGetFunctionType++++man+manualpages/SNES/SNESGetFunctionType.html#SNESGetFunctionType
man:+SNESNGSFunction++SNESNGSFunction++++man+manualpages/SNES/SNESNGSFunction.html#SNESNGSFunction
man:+SNESSetNGS++SNESSetNGS++++man+manualpages/SNES/SNESSetNGS.html#SNESSetNGS
man:+SNESSetPicard++SNESSetPicard++++man+manualpages/SNES/SNESSetPicard.html#SNESSetPicard
man:+SNESGetPicard++SNESGetPicard++++man+manualpages/SNES/SNESGetPicard.html#SNESGetPicard
man:+SNESSetComputeInitialGuess++SNESSetComputeInitialGuess++++man+manualpages/SNES/SNESSetComputeInitialGuess.html#SNESSetComputeInitialGuess
man:+SNESGetRhs++SNESGetRhs++++man+manualpages/SNES/SNESGetRhs.html#SNESGetRhs
man:+SNESComputeFunction++SNESComputeFunction++++man+manualpages/SNES/SNESComputeFunction.html#SNESComputeFunction
man:+SNESComputeNGS++SNESComputeNGS++++man+manualpages/SNES/SNESComputeNGS.html#SNESComputeNGS
man:+SNESComputeJacobian++SNESComputeJacobian++++man+manualpages/SNES/SNESComputeJacobian.html#SNESComputeJacobian
man:+SNESJacobianFunction++SNESJacobianFunction++++man+manualpages/SNES/SNESJacobianFunction.html#SNESJacobianFunction
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:+SNESReset++SNESReset++++man+manualpages/SNES/SNESReset.html#SNESReset
man:+SNESDestroy++SNESDestroy++++man+manualpages/SNES/SNESDestroy.html#SNESDestroy
man:+SNESSetLagPreconditioner++SNESSetLagPreconditioner++++man+manualpages/SNES/SNESSetLagPreconditioner.html#SNESSetLagPreconditioner
man:+SNESSetGridSequence++SNESSetGridSequence++++man+manualpages/SNES/SNESSetGridSequence.html#SNESSetGridSequence
man:+SNESGetGridSequence++SNESGetGridSequence++++man+manualpages/SNES/SNESGetGridSequence.html#SNESGetGridSequence
man:+SNESGetLagPreconditioner++SNESGetLagPreconditioner++++man+manualpages/SNES/SNESGetLagPreconditioner.html#SNESGetLagPreconditioner
man:+SNESSetLagJacobian++SNESSetLagJacobian++++man+manualpages/SNES/SNESSetLagJacobian.html#SNESSetLagJacobian
man:+SNESGetLagJacobian++SNESGetLagJacobian++++man+manualpages/SNES/SNESGetLagJacobian.html#SNESGetLagJacobian
man:+SNESSetLagJacobianPersists++SNESSetLagJacobianPersists++++man+manualpages/SNES/SNESSetLagJacobianPersists.html#SNESSetLagJacobianPersists
man:+SNESSetLagPreconditionerPersists++SNESSetLagPreconditionerPersists++++man+manualpages/SNES/SNESSetLagPreconditionerPersists.html#SNESSetLagPreconditionerPersists
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:+SNESMonitor++SNESMonitor++++man+manualpages/SNES/SNESMonitor.html#SNESMonitor
man:+SNESMonitorFunction++SNESMonitorFunction++++man+manualpages/SNES/SNESMonitorFunction.html#SNESMonitorFunction
man:+SNESMonitorSet++SNESMonitorSet++++man+manualpages/SNES/SNESMonitorSet.html#SNESMonitorSet
man:+SNESMonitorCancel++SNESMonitorCancel++++man+manualpages/SNES/SNESMonitorCancel.html#SNESMonitorCancel
man:+SNESConvergenceTestFunction++SNESConvergenceTestFunction++++man+manualpages/SNES/SNESConvergenceTestFunction.html#SNESConvergenceTestFunction
man:+SNESSetConvergenceTest++SNESSetConvergenceTest++++man+manualpages/SNES/SNESSetConvergenceTest.html#SNESSetConvergenceTest
man:+SNESGetConvergedReason++SNESGetConvergedReason++++man+manualpages/SNES/SNESGetConvergedReason.html#SNESGetConvergedReason
man:+SNESSetConvergedReason++SNESSetConvergedReason++++man+manualpages/SNES/SNESSetConvergedReason.html#SNESSetConvergedReason
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:+SNESReasonView++SNESReasonView++++man+manualpages/SNES/SNESReasonView.html#SNESReasonView
man:+SNESReasonViewFromOptions++SNESReasonViewFromOptions++++man+manualpages/SNES/SNESReasonViewFromOptions.html#SNESReasonViewFromOptions
man:+SNESSolve++SNESSolve++++man+manualpages/SNES/SNESSolve.html#SNESSolve
man:+SNESSetType++SNESSetType++++man+manualpages/SNES/SNESSetType.html#SNESSetType
man:+SNESGetType++SNESGetType++++man+manualpages/SNES/SNESGetType.html#SNESGetType
man:+SNESSetSolution++SNESSetSolution++++man+manualpages/SNES/SNESSetSolution.html#SNESSetSolution
man:+SNESGetSolution++SNESGetSolution++++man+manualpages/SNES/SNESGetSolution.html#SNESGetSolution
man:+SNESGetSolutionUpdate++SNESGetSolutionUpdate++++man+manualpages/SNES/SNESGetSolutionUpdate.html#SNESGetSolutionUpdate
man:+SNESGetFunction++SNESGetFunction++++man+manualpages/SNES/SNESGetFunction.html#SNESGetFunction
man:+SNESGetNGS++SNESGetNGS++++man+manualpages/SNES/SNESGetNGS.html#SNESGetNGS
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:+SNESKSPSetUseEW++SNESKSPSetUseEW++++man+manualpages/SNES/SNESKSPSetUseEW.html#SNESKSPSetUseEW
man:+SNESKSPGetUseEW++SNESKSPGetUseEW++++man+manualpages/SNES/SNESKSPGetUseEW.html#SNESKSPGetUseEW
man:+SNESKSPSetParametersEW++SNESKSPSetParametersEW++++man+manualpages/SNES/SNESKSPSetParametersEW.html#SNESKSPSetParametersEW
man:+SNESKSPGetParametersEW++SNESKSPGetParametersEW++++man+manualpages/SNES/SNESKSPGetParametersEW.html#SNESKSPGetParametersEW
man:+SNESGetKSP++SNESGetKSP++++man+manualpages/SNES/SNESGetKSP.html#SNESGetKSP
man:+SNESSetDM++SNESSetDM++++man+manualpages/SNES/SNESSetDM.html#SNESSetDM
man:+SNESGetDM++SNESGetDM++++man+manualpages/SNES/SNESGetDM.html#SNESGetDM
man:+SNESSetNPC++SNESSetNPC++++man+manualpages/SNES/SNESSetNPC.html#SNESSetNPC
man:+SNESGetNPC++SNESGetNPC++++man+manualpages/SNES/SNESGetNPC.html#SNESGetNPC
man:+SNESHasNPC++SNESHasNPC++++man+manualpages/SNES/SNESHasNPC.html#SNESHasNPC
man:+SNESSetNPCSide++SNESSetNPCSide++++man+manualpages/SNES/SNESSetNPCSide.html#SNESSetNPCSide
man:+SNESGetNPCSide++SNESGetNPCSide++++man+manualpages/SNES/SNESGetNPCSide.html#SNESGetNPCSide
man:+SNESSetLineSearch++SNESSetLineSearch++++man+manualpages/SNES/SNESSetLineSearch.html#SNESSetLineSearch
man:+SNESGetLineSearch++SNESGetLineSearch++++man+manualpages/SNES/SNESGetLineSearch.html#SNESGetLineSearch
man:+SNESComputeJacobianDefault++SNESComputeJacobianDefault++++man+manualpages/SNES/SNESComputeJacobianDefault.html#SNESComputeJacobianDefault
man:+SNESRegisterAll++SNESRegisterAll++++man+manualpages/SNES/SNESRegisterAll.html#SNESRegisterAll
man:+SNESMonitorSolution++SNESMonitorSolution++++man+manualpages/SNES/SNESMonitorSolution.html#SNESMonitorSolution
man:+SNESMonitorResidual++SNESMonitorResidual++++man+manualpages/SNES/SNESMonitorResidual.html#SNESMonitorResidual
man:+SNESMonitorSolutionUpdate++SNESMonitorSolutionUpdate++++man+manualpages/SNES/SNESMonitorSolutionUpdate.html#SNESMonitorSolutionUpdate
man:+KSPMonitorSNES++KSPMonitorSNES++++man+manualpages/SNES/KSPMonitorSNES.html#KSPMonitorSNES
man:+KSPMonitorSNESLGResidualNormCreate++KSPMonitorSNESLGResidualNormCreate++++man+manualpages/SNES/KSPMonitorSNESLGResidualNormCreate.html#KSPMonitorSNESLGResidualNormCreate
man:+KSPMonitorSNESLGResidualNormDestroy++KSPMonitorSNESLGResidualNormDestroy++++man+manualpages/SNES/KSPMonitorSNESLGResidualNormDestroy.html#KSPMonitorSNESLGResidualNormDestroy
man:+SNESMonitorDefault++SNESMonitorDefault++++man+manualpages/SNES/SNESMonitorDefault.html#SNESMonitorDefault
man:+SNESMonitorRange++SNESMonitorRange++++man+manualpages/SNES/SNESMonitorRange.html#SNESMonitorRange
man:+SNESMonitorRatio++SNESMonitorRatio++++man+manualpages/SNES/SNESMonitorRatio.html#SNESMonitorRatio
man:+SNESMonitorRatioSetUp++SNESMonitorRatioSetUp++++man+manualpages/SNES/SNESMonitorRatioSetUp.html#SNESMonitorRatioSetUp
man:+SNESMonitorDefaultField++SNESMonitorDefaultField++++man+manualpages/SNES/SNESMonitorDefaultField.html#SNESMonitorDefaultField
man:+SNESConvergedDefault++SNESConvergedDefault++++man+manualpages/SNES/SNESConvergedDefault.html#SNESConvergedDefault
man:+SNESConvergedSkip++SNESConvergedSkip++++man+manualpages/SNES/SNESConvergedSkip.html#SNESConvergedSkip
man:+SNESSetWorkVecs++SNESSetWorkVecs++++man+manualpages/SNES/SNESSetWorkVecs.html#SNESSetWorkVecs
man:+SNESComputeJacobianDefaultColor++SNESComputeJacobianDefaultColor++++man+manualpages/SNES/SNESComputeJacobianDefaultColor.html#SNESComputeJacobianDefaultColor
man:+SNESFinalizePackage++SNESFinalizePackage++++man+manualpages/SNES/SNESFinalizePackage.html#SNESFinalizePackage
man:+SNESInitializePackage++SNESInitializePackage++++man+manualpages/SNES/SNESInitializePackage.html#SNESInitializePackage
man:+SNESObjectiveFunction++SNESObjectiveFunction++++man+manualpages/SNES/SNESObjectiveFunction.html#SNESObjectiveFunction
man:+SNESSetObjective++SNESSetObjective++++man+manualpages/SNES/SNESSetObjective.html#SNESSetObjective
man:+SNESGetObjective++SNESGetObjective++++man+manualpages/SNES/SNESGetObjective.html#SNESGetObjective
man:+SNESComputeObjective++SNESComputeObjective++++man+manualpages/SNES/SNESComputeObjective.html#SNESComputeObjective
man:+SNESObjectiveComputeFunctionDefaultFD++SNESObjectiveComputeFunctionDefaultFD++++man+manualpages/SNES/SNESObjectiveComputeFunctionDefaultFD.html#SNESObjectiveComputeFunctionDefaultFD
man:+SNESApplyNPC++SNESApplyNPC++++man+manualpages/SNES/SNESApplyNPC.html#SNESApplyNPC
man:+SNESGetNPCFunction++SNESGetNPCFunction++++man+manualpages/SNES/SNESGetNPCFunction.html#SNESGetNPCFunction
man:+SNESMatrixFreeCreate2++SNESMatrixFreeCreate2++++man+manualpages/SNES/SNESMatrixFreeCreate2.html#SNESMatrixFreeCreate2
man:+SNESDefaultMatrixFreeSetParameters2++SNESDefaultMatrixFreeSetParameters2++++man+manualpages/SNES/SNESDefaultMatrixFreeSetParameters2.html#SNESDefaultMatrixFreeSetParameters2
man:+SNESMonitorSAWsCreate++SNESMonitorSAWsCreate++++man+manualpages/SNES/SNESMonitorSAWsCreate.html#SNESMonitorSAWsCreate
man:+SNESMonitorSAWsDestroy++SNESMonitorSAWsDestroy++++man+manualpages/SNES/SNESMonitorSAWsDestroy.html#SNESMonitorSAWsDestroy
man:+SNESMonitorSAWs++SNESMonitorSAWs++++man+manualpages/SNES/SNESMonitorSAWs.html#SNESMonitorSAWs
man:+MatMFFDComputeJacobian++MatMFFDComputeJacobian++++man+manualpages/SNES/MatMFFDComputeJacobian.html#MatMFFDComputeJacobian
man:+MatCreateSNESMF++MatCreateSNESMF++++man+manualpages/SNES/MatCreateSNESMF.html#MatCreateSNESMF
man:+SNESKSPONLY++SNESKSPONLY++++man+manualpages/SNES/SNESKSPONLY.html#SNESKSPONLY
man:+SNESNEWTONLS++SNESNEWTONLS++++man+manualpages/SNES/SNESNEWTONLS.html#SNESNEWTONLS
man:+SNESNEWTONTR++SNESNEWTONTR++++man+manualpages/SNES/SNESNEWTONTR.html#SNESNEWTONTR
man:+SNESTEST++SNESTEST++++man+manualpages/SNES/SNESTEST.html#SNESTEST
man:+SNESUpdateCheckJacobian++SNESUpdateCheckJacobian++++man+manualpages/SNES/SNESUpdateCheckJacobian.html#SNESUpdateCheckJacobian
man:+SNESNRICHARDSON++SNESNRICHARDSON++++man+manualpages/SNES/SNESNRICHARDSON.html#SNESNRICHARDSON
man:+SNESPythonSetType++SNESPythonSetType++++man+manualpages/SNES/SNESPythonSetType.html#SNESPythonSetType
man:+SNESVISetComputeVariableBounds++SNESVISetComputeVariableBounds++++man+manualpages/SNES/SNESVISetComputeVariableBounds.html#SNESVISetComputeVariableBounds
man:+SNESVISetVariableBounds++SNESVISetVariableBounds++++man+manualpages/SNES/SNESVISetVariableBounds.html#SNESVISetVariableBounds
man:+SNESVINEWTONSSLS++SNESVINEWTONSSLS++++man+manualpages/SNES/SNESVINEWTONSSLS.html#SNESVINEWTONSSLS
man:+SNESVINEWTONRSLS++SNESVINEWTONRSLS++++man+manualpages/SNES/SNESVINEWTONRSLS.html#SNESVINEWTONRSLS
man:+SNESNGMRESSetRestartFmRise++SNESNGMRESSetRestartFmRise++++man+manualpages/SNES/SNESNGMRESSetRestartFmRise.html#SNESNGMRESSetRestartFmRise
man:+SNESNGMRESSetRestartType++SNESNGMRESSetRestartType++++man+manualpages/SNES/SNESNGMRESSetRestartType.html#SNESNGMRESSetRestartType
man:+SNESNGMRESSetSelectType++SNESNGMRESSetSelectType++++man+manualpages/SNES/SNESNGMRESSetSelectType.html#SNESNGMRESSetSelectType
man:+SNESNGMRES++SNESNGMRES++++man+manualpages/SNES/SNESNGMRES.html#SNESNGMRES
man:+SNESANDERSON++SNESANDERSON++++man+manualpages/SNES/SNESANDERSON.html#SNESANDERSON
man:+SNESQNSetRestartType++SNESQNSetRestartType++++man+manualpages/SNES/SNESQNSetRestartType.html#SNESQNSetRestartType
man:+SNESQNSetScaleType++SNESQNSetScaleType++++man+manualpages/SNES/SNESQNSetScaleType.html#SNESQNSetScaleType
man:+SNESQNSetType++SNESQNSetType++++man+manualpages/SNES/SNESQNSetType.html#SNESQNSetType
man:+SNESQN++SNESQN++++man+manualpages/SNES/SNESQN.html#SNESQN
man:+SNESShellSetSolve++SNESShellSetSolve++++man+manualpages/SNES/SNESShellSetSolve.html#SNESShellSetSolve
man:+SNESShellGetContext++SNESShellGetContext++++man+manualpages/SNES/SNESShellGetContext.html#SNESShellGetContext
man:+SNESShellSetContext++SNESShellSetContext++++man+manualpages/SNES/SNESShellSetContext.html#SNESShellSetContext
man:+SNESSHELL++SNESSHELL++++man+manualpages/SNES/SNESSHELL.html#SNESSHELL
man:+SNESNCGSetType++SNESNCGSetType++++man+manualpages/SNES/SNESNCGSetType.html#SNESNCGSetType
man:+SNESNCG++SNESNCG++++man+manualpages/SNES/SNESNCG.html#SNESNCG
man:+SNESFAS++SNESFAS++++man+manualpages/SNES/SNESFAS.html#SNESFAS
man:+SNESFASCreateCoarseVec++SNESFASCreateCoarseVec++++man+manualpages/SNES/SNESFASCreateCoarseVec.html#SNESFASCreateCoarseVec
man:+SNESFASRestrict++SNESFASRestrict++++man+manualpages/SNES/SNESFASRestrict.html#SNESFASRestrict
man:+SNESFASGetGalerkin++SNESFASGetGalerkin++++man+manualpages/SNES/SNESFASGetGalerkin.html#SNESFASGetGalerkin
man:+SNESFASSetGalerkin++SNESFASSetGalerkin++++man+manualpages/SNES/SNESFASSetGalerkin.html#SNESFASSetGalerkin
man:+SNESFASSetType++SNESFASSetType++++man+manualpages/SNES/SNESFASSetType.html#SNESFASSetType
man:+SNESFASGetType++SNESFASGetType++++man+manualpages/SNES/SNESFASGetType.html#SNESFASGetType
man:+SNESFASSetLevels++SNESFASSetLevels++++man+manualpages/SNES/SNESFASSetLevels.html#SNESFASSetLevels
man:+SNESFASGetLevels++SNESFASGetLevels++++man+manualpages/SNES/SNESFASGetLevels.html#SNESFASGetLevels
man:+SNESFASGetCycleSNES++SNESFASGetCycleSNES++++man+manualpages/SNES/SNESFASGetCycleSNES.html#SNESFASGetCycleSNES
man:+SNESFASSetNumberSmoothUp++SNESFASSetNumberSmoothUp++++man+manualpages/SNES/SNESFASSetNumberSmoothUp.html#SNESFASSetNumberSmoothUp
man:+SNESFASSetNumberSmoothDown++SNESFASSetNumberSmoothDown++++man+manualpages/SNES/SNESFASSetNumberSmoothDown.html#SNESFASSetNumberSmoothDown
man:+SNESFASSetContinuation++SNESFASSetContinuation++++man+manualpages/SNES/SNESFASSetContinuation.html#SNESFASSetContinuation
man:+SNESFASSetCycles++SNESFASSetCycles++++man+manualpages/SNES/SNESFASSetCycles.html#SNESFASSetCycles
man:+SNESFASSetMonitor++SNESFASSetMonitor++++man+manualpages/SNES/SNESFASSetMonitor.html#SNESFASSetMonitor
man:+SNESFASSetLog++SNESFASSetLog++++man+manualpages/SNES/SNESFASSetLog.html#SNESFASSetLog
man:+SNESFASCycleSetCycles++SNESFASCycleSetCycles++++man+manualpages/SNES/SNESFASCycleSetCycles.html#SNESFASCycleSetCycles
man:+SNESFASCycleGetSmoother++SNESFASCycleGetSmoother++++man+manualpages/SNES/SNESFASCycleGetSmoother.html#SNESFASCycleGetSmoother
man:+SNESFASCycleGetSmootherUp++SNESFASCycleGetSmootherUp++++man+manualpages/SNES/SNESFASCycleGetSmootherUp.html#SNESFASCycleGetSmootherUp
man:+SNESFASCycleGetSmootherDown++SNESFASCycleGetSmootherDown++++man+manualpages/SNES/SNESFASCycleGetSmootherDown.html#SNESFASCycleGetSmootherDown
man:+SNESFASCycleGetCorrection++SNESFASCycleGetCorrection++++man+manualpages/SNES/SNESFASCycleGetCorrection.html#SNESFASCycleGetCorrection
man:+SNESFASCycleGetInterpolation++SNESFASCycleGetInterpolation++++man+manualpages/SNES/SNESFASCycleGetInterpolation.html#SNESFASCycleGetInterpolation
man:+SNESFASCycleGetRestriction++SNESFASCycleGetRestriction++++man+manualpages/SNES/SNESFASCycleGetRestriction.html#SNESFASCycleGetRestriction
man:+SNESFASCycleGetInjection++SNESFASCycleGetInjection++++man+manualpages/SNES/SNESFASCycleGetInjection.html#SNESFASCycleGetInjection
man:+SNESFASCycleGetRScale++SNESFASCycleGetRScale++++man+manualpages/SNES/SNESFASCycleGetRScale.html#SNESFASCycleGetRScale
man:+SNESFASCycleIsFine++SNESFASCycleIsFine++++man+manualpages/SNES/SNESFASCycleIsFine.html#SNESFASCycleIsFine
man:+SNESFASSetInterpolation++SNESFASSetInterpolation++++man+manualpages/SNES/SNESFASSetInterpolation.html#SNESFASSetInterpolation
man:+SNESFASGetInterpolation++SNESFASGetInterpolation++++man+manualpages/SNES/SNESFASGetInterpolation.html#SNESFASGetInterpolation
man:+SNESFASSetRestriction++SNESFASSetRestriction++++man+manualpages/SNES/SNESFASSetRestriction.html#SNESFASSetRestriction
man:+SNESFASGetRestriction++SNESFASGetRestriction++++man+manualpages/SNES/SNESFASGetRestriction.html#SNESFASGetRestriction
man:+SNESFASSetInjection++SNESFASSetInjection++++man+manualpages/SNES/SNESFASSetInjection.html#SNESFASSetInjection
man:+SNESFASGetInjection++SNESFASGetInjection++++man+manualpages/SNES/SNESFASGetInjection.html#SNESFASGetInjection
man:+SNESFASSetRScale++SNESFASSetRScale++++man+manualpages/SNES/SNESFASSetRScale.html#SNESFASSetRScale
man:+SNESFASGetSmoother++SNESFASGetSmoother++++man+manualpages/SNES/SNESFASGetSmoother.html#SNESFASGetSmoother
man:+SNESFASGetSmootherDown++SNESFASGetSmootherDown++++man+manualpages/SNES/SNESFASGetSmootherDown.html#SNESFASGetSmootherDown
man:+SNESFASGetSmootherUp++SNESFASGetSmootherUp++++man+manualpages/SNES/SNESFASGetSmootherUp.html#SNESFASGetSmootherUp
man:+SNESFASGetCoarseSolve++SNESFASGetCoarseSolve++++man+manualpages/SNES/SNESFASGetCoarseSolve.html#SNESFASGetCoarseSolve
man:+SNESFASFullSetDownSweep++SNESFASFullSetDownSweep++++man+manualpages/SNES/SNESFASFullSetDownSweep.html#SNESFASFullSetDownSweep
man:+SNESNGSSetTolerances++SNESNGSSetTolerances++++man+manualpages/SNES/SNESNGSSetTolerances.html#SNESNGSSetTolerances
man:+SNESNGSGetTolerances++SNESNGSGetTolerances++++man+manualpages/SNES/SNESNGSGetTolerances.html#SNESNGSGetTolerances
man:+SNESNGSSetSweeps++SNESNGSSetSweeps++++man+manualpages/SNES/SNESNGSSetSweeps.html#SNESNGSSetSweeps
man:+SNESNGSGetSweeps++SNESNGSGetSweeps++++man+manualpages/SNES/SNESNGSGetSweeps.html#SNESNGSGetSweeps
man:+SNESNGS++SNESNGS++++man+manualpages/SNES/SNESNGS.html#SNESNGS
man:+SNESMSRegisterAll++SNESMSRegisterAll++++man+manualpages/SNES/SNESMSRegisterAll.html#SNESMSRegisterAll
man:+SNESMSRegisterDestroy++SNESMSRegisterDestroy++++man+manualpages/SNES/SNESMSRegisterDestroy.html#SNESMSRegisterDestroy
man:+SNESMSInitializePackage++SNESMSInitializePackage++++man+manualpages/SNES/SNESMSInitializePackage.html#SNESMSInitializePackage
man:+SNESMSFinalizePackage++SNESMSFinalizePackage++++man+manualpages/SNES/SNESMSFinalizePackage.html#SNESMSFinalizePackage
man:+SNESMSRegister++SNESMSRegister++++man+manualpages/SNES/SNESMSRegister.html#SNESMSRegister
man:+SNESMSSetType++SNESMSSetType++++man+manualpages/SNES/SNESMSSetType.html#SNESMSSetType
man:+SNESMS++SNESMS++++man+manualpages/SNES/SNESMS.html#SNESMS
man:+SNESNASMSetType++SNESNASMSetType++++man+manualpages/SNES/SNESNASMSetType.html#SNESNASMSetType
man:+SNESNASMGetType++SNESNASMGetType++++man+manualpages/SNES/SNESNASMGetType.html#SNESNASMGetType
man:+SNESNASMSetSubdomains++SNESNASMSetSubdomains++++man+manualpages/SNES/SNESNASMSetSubdomains.html#SNESNASMSetSubdomains
man:+SNESNASMGetSubdomains++SNESNASMGetSubdomains++++man+manualpages/SNES/SNESNASMGetSubdomains.html#SNESNASMGetSubdomains
man:+SNESNASMGetSubdomainVecs++SNESNASMGetSubdomainVecs++++man+manualpages/SNES/SNESNASMGetSubdomainVecs.html#SNESNASMGetSubdomainVecs
man:+SNESNASMSetComputeFinalJacobian++SNESNASMSetComputeFinalJacobian++++man+manualpages/SNES/SNESNASMSetComputeFinalJacobian.html#SNESNASMSetComputeFinalJacobian
man:+SNESNASMSetDamping++SNESNASMSetDamping++++man+manualpages/SNES/SNESNASMSetDamping.html#SNESNASMSetDamping
man:+SNESNASMGetDamping++SNESNASMGetDamping++++man+manualpages/SNES/SNESNASMGetDamping.html#SNESNASMGetDamping
man:+SNESNASM++SNESNASM++++man+manualpages/SNES/SNESNASM.html#SNESNASM
man:+SNESASPIN++SNESASPIN++++man+manualpages/SNES/SNESASPIN.html#SNESASPIN
man:+SNESCompositeSetType++SNESCompositeSetType++++man+manualpages/SNES/SNESCompositeSetType.html#SNESCompositeSetType
man:+SNESCompositeAddSNES++SNESCompositeAddSNES++++man+manualpages/SNES/SNESCompositeAddSNES.html#SNESCompositeAddSNES
man:+SNESCompositeGetSNES++SNESCompositeGetSNES++++man+manualpages/SNES/SNESCompositeGetSNES.html#SNESCompositeGetSNES
man:+SNESCompositeGetNumber++SNESCompositeGetNumber++++man+manualpages/SNES/SNESCompositeGetNumber.html#SNESCompositeGetNumber
man:+SNESCompositeSetDamping++SNESCompositeSetDamping++++man+manualpages/SNES/SNESCompositeSetDamping.html#SNESCompositeSetDamping
man:+SNESCOMPOSITE++SNESCOMPOSITE++++man+manualpages/SNES/SNESCOMPOSITE.html#SNESCOMPOSITE
man:+DMSNESCopy++DMSNESCopy++++man+manualpages/SNES/DMSNESCopy.html#DMSNESCopy
man:+DMGetDMSNES++DMGetDMSNES++++man+manualpages/SNES/DMGetDMSNES.html#DMGetDMSNES
man:+DMGetDMSNESWrite++DMGetDMSNESWrite++++man+manualpages/SNES/DMGetDMSNESWrite.html#DMGetDMSNESWrite
man:+DMCopyDMSNES++DMCopyDMSNES++++man+manualpages/SNES/DMCopyDMSNES.html#DMCopyDMSNES
man:+DMSNESSetFunction++DMSNESSetFunction++++man+manualpages/SNES/DMSNESSetFunction.html#DMSNESSetFunction
man:+DMSNESGetFunction++DMSNESGetFunction++++man+manualpages/SNES/DMSNESGetFunction.html#DMSNESGetFunction
man:+DMSNESSetObjective++DMSNESSetObjective++++man+manualpages/SNES/DMSNESSetObjective.html#DMSNESSetObjective
man:+DMSNESGetObjective++DMSNESGetObjective++++man+manualpages/SNES/DMSNESGetObjective.html#DMSNESGetObjective
man:+DMSNESSetNGS++DMSNESSetNGS++++man+manualpages/SNES/DMSNESSetNGS.html#DMSNESSetNGS
man:+DMSNESGetNGS++DMSNESGetNGS++++man+manualpages/SNES/DMSNESGetNGS.html#DMSNESGetNGS
man:+DMSNESSetJacobian++DMSNESSetJacobian++++man+manualpages/SNES/DMSNESSetJacobian.html#DMSNESSetJacobian
man:+DMSNESGetJacobian++DMSNESGetJacobian++++man+manualpages/SNES/DMSNESGetJacobian.html#DMSNESGetJacobian
man:+DMSNESSetPicard++DMSNESSetPicard++++man+manualpages/SNES/DMSNESSetPicard.html#DMSNESSetPicard
man:+DMSNESGetPicard++DMSNESGetPicard++++man+manualpages/SNES/DMSNESGetPicard.html#DMSNESGetPicard
man:+DMDASNESSetFunctionLocal++DMDASNESSetFunctionLocal++++man+manualpages/SNES/DMDASNESSetFunctionLocal.html#DMDASNESSetFunctionLocal
man:+DMDASNESSetJacobianLocal++DMDASNESSetJacobianLocal++++man+manualpages/SNES/DMDASNESSetJacobianLocal.html#DMDASNESSetJacobianLocal
man:+DMDASNESSetObjectiveLocal++DMDASNESSetObjectiveLocal++++man+manualpages/SNES/DMDASNESSetObjectiveLocal.html#DMDASNESSetObjectiveLocal
man:+DMDASNESSetPicardLocal++DMDASNESSetPicardLocal++++man+manualpages/SNES/DMDASNESSetPicardLocal.html#DMDASNESSetPicardLocal
man:+DMSNESSetFunctionLocal++DMSNESSetFunctionLocal++++man+manualpages/SNES/DMSNESSetFunctionLocal.html#DMSNESSetFunctionLocal
man:+DMSNESSetBoundaryLocal++DMSNESSetBoundaryLocal++++man+manualpages/SNES/DMSNESSetBoundaryLocal.html#DMSNESSetBoundaryLocal
man:+DMSNESSetJacobianLocal++DMSNESSetJacobianLocal++++man+manualpages/SNES/DMSNESSetJacobianLocal.html#DMSNESSetJacobianLocal
man:+SNESMonitorFields++SNESMonitorFields++++man+manualpages/SNES/SNESMonitorFields.html#SNESMonitorFields
man:+DMPlexSNESGetGeometryFEM++DMPlexSNESGetGeometryFEM++++man+manualpages/SNES/DMPlexSNESGetGeometryFEM.html#DMPlexSNESGetGeometryFEM
man:+DMPlexSNESGetGeometryFVM++DMPlexSNESGetGeometryFVM++++man+manualpages/SNES/DMPlexSNESGetGeometryFVM.html#DMPlexSNESGetGeometryFVM
man:+DMPlexSNESGetGradientDM++DMPlexSNESGetGradientDM++++man+manualpages/SNES/DMPlexSNESGetGradientDM.html#DMPlexSNESGetGradientDM
man:+DMPlexGetCellFields++DMPlexGetCellFields++++man+manualpages/SNES/DMPlexGetCellFields.html#DMPlexGetCellFields
man:+DMPlexRestoreCellFields++DMPlexRestoreCellFields++++man+manualpages/SNES/DMPlexRestoreCellFields.html#DMPlexRestoreCellFields
man:+DMPlexGetFaceFields++DMPlexGetFaceFields++++man+manualpages/SNES/DMPlexGetFaceFields.html#DMPlexGetFaceFields
man:+DMPlexRestoreFaceFields++DMPlexRestoreFaceFields++++man+manualpages/SNES/DMPlexRestoreFaceFields.html#DMPlexRestoreFaceFields
man:+DMPlexGetFaceGeometry++DMPlexGetFaceGeometry++++man+manualpages/SNES/DMPlexGetFaceGeometry.html#DMPlexGetFaceGeometry
man:+DMPlexRestoreFaceGeometry++DMPlexRestoreFaceGeometry++++man+manualpages/SNES/DMPlexRestoreFaceGeometry.html#DMPlexRestoreFaceGeometry
man:+DMPlexReconstructGradientsFVM++DMPlexReconstructGradientsFVM++++man+manualpages/SNES/DMPlexReconstructGradientsFVM.html#DMPlexReconstructGradientsFVM
man:+DMPlexSNESComputeResidualFEM++DMPlexSNESComputeResidualFEM++++man+manualpages/SNES/DMPlexSNESComputeResidualFEM.html#DMPlexSNESComputeResidualFEM
man:+DMPlexSNESComputeBoundaryFEM++DMPlexSNESComputeBoundaryFEM++++man+manualpages/SNES/DMPlexSNESComputeBoundaryFEM.html#DMPlexSNESComputeBoundaryFEM
man:+DMPlexSNESComputeJacobianFEM++DMPlexSNESComputeJacobianFEM++++man+manualpages/SNES/DMPlexSNESComputeJacobianFEM.html#DMPlexSNESComputeJacobianFEM
man:+DMPlexSetSNESLocalFEM++DMPlexSetSNESLocalFEM++++man+manualpages/SNES/DMPlexSetSNESLocalFEM.html#DMPlexSetSNESLocalFEM
man:+SNESLineSearchMonitorCancel++SNESLineSearchMonitorCancel++++man+manualpages/SNES/SNESLineSearchMonitorCancel.html#SNESLineSearchMonitorCancel
man:+SNESLineSearchMonitor++SNESLineSearchMonitor++++man+manualpages/SNES/SNESLineSearchMonitor.html#SNESLineSearchMonitor
man:+SNESLineSearchMonitorSet++SNESLineSearchMonitorSet++++man+manualpages/SNES/SNESLineSearchMonitorSet.html#SNESLineSearchMonitorSet
man:+SNESLineSearchMonitorSolutionUpdate++SNESLineSearchMonitorSolutionUpdate++++man+manualpages/SNES/SNESLineSearchMonitorSolutionUpdate.html#SNESLineSearchMonitorSolutionUpdate
man:+SNESLineSearchCreate++SNESLineSearchCreate++++man+manualpages/SNES/SNESLineSearchCreate.html#SNESLineSearchCreate
man:+SNESLineSearchSetUp++SNESLineSearchSetUp++++man+manualpages/SNES/SNESLineSearchSetUp.html#SNESLineSearchSetUp
man:+SNESLineSearchReset++SNESLineSearchReset++++man+manualpages/SNES/SNESLineSearchReset.html#SNESLineSearchReset
man:+SNESLineSearchSetFunction++SNESLineSearchSetFunction++++man+manualpages/SNES/SNESLineSearchSetFunction.html#SNESLineSearchSetFunction
man:+SNESLineSearchPreCheckFunction++SNESLineSearchPreCheckFunction++++man+manualpages/SNES/SNESLineSearchPreCheckFunction.html#SNESLineSearchPreCheckFunction
man:+SNESLineSearchSetPreCheck++SNESLineSearchSetPreCheck++++man+manualpages/SNES/SNESLineSearchSetPreCheck.html#SNESLineSearchSetPreCheck
man:+SNESLineSearchGetPreCheck++SNESLineSearchGetPreCheck++++man+manualpages/SNES/SNESLineSearchGetPreCheck.html#SNESLineSearchGetPreCheck
man:+SNESLineSearchPostCheckFunction++SNESLineSearchPostCheckFunction++++man+manualpages/SNES/SNESLineSearchPostCheckFunction.html#SNESLineSearchPostCheckFunction
man:+SNESLineSearchSetPostCheck++SNESLineSearchSetPostCheck++++man+manualpages/SNES/SNESLineSearchSetPostCheck.html#SNESLineSearchSetPostCheck
man:+SNESLineSearchGetPostCheck++SNESLineSearchGetPostCheck++++man+manualpages/SNES/SNESLineSearchGetPostCheck.html#SNESLineSearchGetPostCheck
man:+SNESLineSearchPreCheck++SNESLineSearchPreCheck++++man+manualpages/SNES/SNESLineSearchPreCheck.html#SNESLineSearchPreCheck
man:+SNESLineSearchPostCheck++SNESLineSearchPostCheck++++man+manualpages/SNES/SNESLineSearchPostCheck.html#SNESLineSearchPostCheck
man:+SNESLineSearchPreCheckPicard++SNESLineSearchPreCheckPicard++++man+manualpages/SNES/SNESLineSearchPreCheckPicard.html#SNESLineSearchPreCheckPicard
man:+SNESLineSearchApply++SNESLineSearchApply++++man+manualpages/SNES/SNESLineSearchApply.html#SNESLineSearchApply
man:+SNESLineSearchDestroy++SNESLineSearchDestroy++++man+manualpages/SNES/SNESLineSearchDestroy.html#SNESLineSearchDestroy
man:+SNESLineSearchSetDefaultMonitor++SNESLineSearchSetDefaultMonitor++++man+manualpages/SNES/SNESLineSearchSetDefaultMonitor.html#SNESLineSearchSetDefaultMonitor
man:+SNESLineSearchGetDefaultMonitor++SNESLineSearchGetDefaultMonitor++++man+manualpages/SNES/SNESLineSearchGetDefaultMonitor.html#SNESLineSearchGetDefaultMonitor
man:+SNESLineSearchMonitorSetFromOptions++SNESLineSearchMonitorSetFromOptions++++man+manualpages/SNES/SNESLineSearchMonitorSetFromOptions.html#SNESLineSearchMonitorSetFromOptions
man:+SNESLineSearchSetFromOptions++SNESLineSearchSetFromOptions++++man+manualpages/SNES/SNESLineSearchSetFromOptions.html#SNESLineSearchSetFromOptions
man:+SNESLineSearchView++SNESLineSearchView++++man+manualpages/SNES/SNESLineSearchView.html#SNESLineSearchView
man:+SNESLineSearchSetType++SNESLineSearchSetType++++man+manualpages/SNES/SNESLineSearchSetType.html#SNESLineSearchSetType
man:+SNESLineSearchSetSNES++SNESLineSearchSetSNES++++man+manualpages/SNES/SNESLineSearchSetSNES.html#SNESLineSearchSetSNES
man:+SNESLineSearchGetSNES++SNESLineSearchGetSNES++++man+manualpages/SNES/SNESLineSearchGetSNES.html#SNESLineSearchGetSNES
man:+SNESLineSearchGetLambda++SNESLineSearchGetLambda++++man+manualpages/SNES/SNESLineSearchGetLambda.html#SNESLineSearchGetLambda
man:+SNESLineSearchSetLambda++SNESLineSearchSetLambda++++man+manualpages/SNES/SNESLineSearchSetLambda.html#SNESLineSearchSetLambda
man:+SNESLineSearchGetTolerances++SNESLineSearchGetTolerances++++man+manualpages/SNES/SNESLineSearchGetTolerances.html#SNESLineSearchGetTolerances
man:+SNESLineSearchSetTolerances++SNESLineSearchSetTolerances++++man+manualpages/SNES/SNESLineSearchSetTolerances.html#SNESLineSearchSetTolerances
man:+SNESLineSearchGetDamping++SNESLineSearchGetDamping++++man+manualpages/SNES/SNESLineSearchGetDamping.html#SNESLineSearchGetDamping
man:+SNESLineSearchSetDamping++SNESLineSearchSetDamping++++man+manualpages/SNES/SNESLineSearchSetDamping.html#SNESLineSearchSetDamping
man:+SNESLineSearchGetOrder++SNESLineSearchGetOrder++++man+manualpages/SNES/SNESLineSearchGetOrder.html#SNESLineSearchGetOrder
man:+SNESLineSearchSetOrder++SNESLineSearchSetOrder++++man+manualpages/SNES/SNESLineSearchSetOrder.html#SNESLineSearchSetOrder
man:+SNESLineSearchGetNorms++SNESLineSearchGetNorms++++man+manualpages/SNES/SNESLineSearchGetNorms.html#SNESLineSearchGetNorms
man:+SNESLineSearchSetNorms++SNESLineSearchSetNorms++++man+manualpages/SNES/SNESLineSearchSetNorms.html#SNESLineSearchSetNorms
man:+SNESLineSearchComputeNorms++SNESLineSearchComputeNorms++++man+manualpages/SNES/SNESLineSearchComputeNorms.html#SNESLineSearchComputeNorms
man:+SNESLineSearchSetComputeNorms++SNESLineSearchSetComputeNorms++++man+manualpages/SNES/SNESLineSearchSetComputeNorms.html#SNESLineSearchSetComputeNorms
man:+SNESLineSearchGetVecs++SNESLineSearchGetVecs++++man+manualpages/SNES/SNESLineSearchGetVecs.html#SNESLineSearchGetVecs
man:+SNESLineSearchSetVecs++SNESLineSearchSetVecs++++man+manualpages/SNES/SNESLineSearchSetVecs.html#SNESLineSearchSetVecs
man:+SNESLineSearchAppendOptionsPrefix++SNESLineSearchAppendOptionsPrefix++++man+manualpages/SNES/SNESLineSearchAppendOptionsPrefix.html#SNESLineSearchAppendOptionsPrefix
man:+SNESLineSearchGetOptionsPrefix++SNESLineSearchGetOptionsPrefix++++man+manualpages/SNES/SNESLineSearchGetOptionsPrefix.html#SNESLineSearchGetOptionsPrefix
man:+SNESLineSearchSetWorkVecs++SNESLineSearchSetWorkVecs++++man+manualpages/SNES/SNESLineSearchSetWorkVecs.html#SNESLineSearchSetWorkVecs
man:+SNESLineSearchGetReason++SNESLineSearchGetReason++++man+manualpages/SNES/SNESLineSearchGetReason.html#SNESLineSearchGetReason
man:+SNESLineSearchSetReason++SNESLineSearchSetReason++++man+manualpages/SNES/SNESLineSearchSetReason.html#SNESLineSearchSetReason
man:+SNESLineSearchSetVIFunctions++SNESLineSearchSetVIFunctions++++man+manualpages/SNES/SNESLineSearchSetVIFunctions.html#SNESLineSearchSetVIFunctions
man:+SNESLineSearchGetVIFunctions++SNESLineSearchGetVIFunctions++++man+manualpages/SNES/SNESLineSearchGetVIFunctions.html#SNESLineSearchGetVIFunctions
man:+SNESLineSearchRegister++SNESLineSearchRegister++++man+manualpages/SNES/SNESLineSearchRegister.html#SNESLineSearchRegister
man:+SNESLineSearchRegisterAll++SNESLineSearchRegisterAll++++man+manualpages/SNES/SNESLineSearchRegisterAll.html#SNESLineSearchRegisterAll
man:+SNESLINESEARCHBASIC++SNESLINESEARCHBASIC++++man+manualpages/SNES/SNESLINESEARCHBASIC.html#SNESLINESEARCHBASIC
man:+SNESLINESEARCHL2++SNESLINESEARCHL2++++man+manualpages/SNES/SNESLINESEARCHL2.html#SNESLINESEARCHL2
man:+SNESLINESEARCHCP++SNESLINESEARCHCP++++man+manualpages/SNES/SNESLINESEARCHCP.html#SNESLINESEARCHCP
man:+SNESLineSearchShellSetUserFunc++SNESLineSearchShellSetUserFunc++++man+manualpages/SNES/SNESLineSearchShellSetUserFunc.html#SNESLineSearchShellSetUserFunc
man:+SNESLineSearchShellGetUserFunc++SNESLineSearchShellGetUserFunc++++man+manualpages/SNES/SNESLineSearchShellGetUserFunc.html#SNESLineSearchShellGetUserFunc
man:+SNESLINESEARCHSHELL++SNESLINESEARCHSHELL++++man+manualpages/SNES/SNESLINESEARCHSHELL.html#SNESLINESEARCHSHELL
man:+SNESLineSearchBTSetAlpha++SNESLineSearchBTSetAlpha++++man+manualpages/SNES/SNESLineSearchBTSetAlpha.html#SNESLineSearchBTSetAlpha
man:+SNESLineSearchBTGetAlpha++SNESLineSearchBTGetAlpha++++man+manualpages/SNES/SNESLineSearchBTGetAlpha.html#SNESLineSearchBTGetAlpha
man:+SNESLINESEARCHBT++SNESLINESEARCHBT++++man+manualpages/SNES/SNESLINESEARCHBT.html#SNESLINESEARCHBT
man:+SNESLINESEARCHNLEQERR++SNESLINESEARCHNLEQERR++++man+manualpages/SNES/SNESLINESEARCHNLEQERR.html#SNESLINESEARCHNLEQERR
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:+TSEquationType++TSEquationType++++man+manualpages/TS/TSEquationType.html#TSEquationType
man:+TSConvergedReason++TSConvergedReason++++man+manualpages/TS/TSConvergedReason.html#TSConvergedReason
man:+TS_CONVERGED_ITERATING++TS_CONVERGED_ITERATING++++man+manualpages/TS/TS_CONVERGED_ITERATING.html#TS_CONVERGED_ITERATING
man:+TS_CONVERGED_TIME++TS_CONVERGED_TIME++++man+manualpages/TS/TS_CONVERGED_TIME.html#TS_CONVERGED_TIME
man:+TS_CONVERGED_ITS++TS_CONVERGED_ITS++++man+manualpages/TS/TS_CONVERGED_ITS.html#TS_CONVERGED_ITS
man:+TS_CONVERGED_USER++TS_CONVERGED_USER++++man+manualpages/TS/TS_CONVERGED_USER.html#TS_CONVERGED_USER
man:+TS_CONVERGED_EVENT++TS_CONVERGED_EVENT++++man+manualpages/TS/TS_CONVERGED_EVENT.html#TS_CONVERGED_EVENT
man:+TS_CONVERGED_PSEUDO_FRTOL++TS_CONVERGED_PSEUDO_FRTOL++++man+manualpages/TS/TS_CONVERGED_PSEUDO_FRTOL.html#TS_CONVERGED_PSEUDO_FRTOL
man:+TS_CONVERGED_PSEUDO_FATOL++TS_CONVERGED_PSEUDO_FATOL++++man+manualpages/TS/TS_CONVERGED_PSEUDO_FATOL.html#TS_CONVERGED_PSEUDO_FATOL
man:+TS_DIVERGED_NONLINEAR_SOLVE++TS_DIVERGED_NONLINEAR_SOLVE++++man+manualpages/TS/TS_DIVERGED_NONLINEAR_SOLVE.html#TS_DIVERGED_NONLINEAR_SOLVE
man:+TS_DIVERGED_STEP_REJECTED++TS_DIVERGED_STEP_REJECTED++++man+manualpages/TS/TS_DIVERGED_STEP_REJECTED.html#TS_DIVERGED_STEP_REJECTED
man:+TSExactFinalTimeOption++TSExactFinalTimeOption++++man+manualpages/TS/TSExactFinalTimeOption.html#TSExactFinalTimeOption
man:+TSTrajectory++TSTrajectory++++man+manualpages/TS/TSTrajectory.html#TSTrajectory
man:+TSTrajectorySetType++TSTrajectorySetType++++man+manualpages/TS/TSTrajectorySetType.html#TSTrajectorySetType
man:+TSSSPType++TSSSPType++++man+manualpages/TS/TSSSPType.html#TSSSPType
man:+TSAdapt++TSAdapt++++man+manualpages/TS/TSAdapt.html#TSAdapt
man:+TSAdaptType++TSAdaptType++++man+manualpages/TS/TSAdaptType.html#TSAdaptType
man:+TSGLAdapt++TSGLAdapt++++man+manualpages/TS/TSGLAdapt.html#TSGLAdapt
man:+TSGLAdaptType++TSGLAdaptType++++man+manualpages/TS/TSGLAdaptType.html#TSGLAdaptType
man:+TSGLAcceptType++TSGLAcceptType++++man+manualpages/TS/TSGLAcceptType.html#TSGLAcceptType
man:+TSGLType++TSGLType++++man+manualpages/TS/TSGLType.html#TSGLType
man:+TSEIMEXType++TSEIMEXType++++man+manualpages/TS/TSEIMEXType.html#TSEIMEXType
man:+TSRKType++TSRKType++++man+manualpages/TS/TSRKType.html#TSRKType
man:+TSARKIMEXType++TSARKIMEXType++++man+manualpages/TS/TSARKIMEXType.html#TSARKIMEXType
man:+TSRosWType++TSRosWType++++man+manualpages/TS/TSRosWType.html#TSRosWType
man:+TSTrajectoryRegister++TSTrajectoryRegister++++man+manualpages/TS/TSTrajectoryRegister.html#TSTrajectoryRegister
man:+TSTrajectoryView++TSTrajectoryView++++man+manualpages/TS/TSTrajectoryView.html#TSTrajectoryView
man:+TSTrajectoryCreate++TSTrajectoryCreate++++man+manualpages/TS/TSTrajectoryCreate.html#TSTrajectoryCreate
man:+TSTrajectorySetType++TSTrajectorySetType++++man+manualpages/TS/TSTrajectorySetType.html#TSTrajectorySetType
man:+TSTrajectoryRegisterAll++TSTrajectoryRegisterAll++++man+manualpages/TS/TSTrajectoryRegisterAll.html#TSTrajectoryRegisterAll
man:+TSTrajectoryDestroy++TSTrajectoryDestroy++++man+manualpages/TS/TSTrajectoryDestroy.html#TSTrajectoryDestroy
man:+TSTrajectorySetMonitor++TSTrajectorySetMonitor++++man+manualpages/TS/TSTrajectorySetMonitor.html#TSTrajectorySetMonitor
man:+TSTrajectorySetFromOptions++TSTrajectorySetFromOptions++++man+manualpages/TS/TSTrajectorySetFromOptions.html#TSTrajectorySetFromOptions
man:+TSTrajectorySetUp++TSTrajectorySetUp++++man+manualpages/TS/TSTrajectorySetUp.html#TSTrajectorySetUp
man:+TSTRAJECTORYBASIC++TSTRAJECTORYBASIC++++man+manualpages/TS/TSTRAJECTORYBASIC.html#TSTRAJECTORYBASIC
man:+TSTRAJECTORYSINGLEFILE++TSTRAJECTORYSINGLEFILE++++man+manualpages/TS/TSTRAJECTORYSINGLEFILE.html#TSTRAJECTORYSINGLEFILE
man:+TSTRAJECTORYMEMORY++TSTRAJECTORYMEMORY++++man+manualpages/TS/TSTRAJECTORYMEMORY.html#TSTRAJECTORYMEMORY
man:+TSTRAJECTORYVISUALIZATION++TSTRAJECTORYVISUALIZATION++++man+manualpages/TS/TSTRAJECTORYVISUALIZATION.html#TSTRAJECTORYVISUALIZATION
man:+TSMonitorSetFromOptions++TSMonitorSetFromOptions++++man+manualpages/TS/TSMonitorSetFromOptions.html#TSMonitorSetFromOptions
man:+TSAdjointMonitorSetFromOptions++TSAdjointMonitorSetFromOptions++++man+manualpages/TS/TSAdjointMonitorSetFromOptions.html#TSAdjointMonitorSetFromOptions
man:+TSSetFromOptions++TSSetFromOptions++++man+manualpages/TS/TSSetFromOptions.html#TSSetFromOptions
man:+TSSetSaveTrajectory++TSSetSaveTrajectory++++man+manualpages/TS/TSSetSaveTrajectory.html#TSSetSaveTrajectory
man:+TSComputeRHSJacobian++TSComputeRHSJacobian++++man+manualpages/TS/TSComputeRHSJacobian.html#TSComputeRHSJacobian
man:+TSComputeRHSFunction++TSComputeRHSFunction++++man+manualpages/TS/TSComputeRHSFunction.html#TSComputeRHSFunction
man:+TSComputeSolutionFunction++TSComputeSolutionFunction++++man+manualpages/TS/TSComputeSolutionFunction.html#TSComputeSolutionFunction
man:+TSComputeForcingFunction++TSComputeForcingFunction++++man+manualpages/TS/TSComputeForcingFunction.html#TSComputeForcingFunction
man:+TSComputeIFunction++TSComputeIFunction++++man+manualpages/TS/TSComputeIFunction.html#TSComputeIFunction
man:+TSComputeIJacobian++TSComputeIJacobian++++man+manualpages/TS/TSComputeIJacobian.html#TSComputeIJacobian
man:+TSSetRHSFunction++TSSetRHSFunction++++man+manualpages/TS/TSSetRHSFunction.html#TSSetRHSFunction
man:+TSSetSolutionFunction++TSSetSolutionFunction++++man+manualpages/TS/TSSetSolutionFunction.html#TSSetSolutionFunction
man:+TSSetForcingFunction++TSSetForcingFunction++++man+manualpages/TS/TSSetForcingFunction.html#TSSetForcingFunction
man:+TSSetRHSJacobian++TSSetRHSJacobian++++man+manualpages/TS/TSSetRHSJacobian.html#TSSetRHSJacobian
man:+TSSetIFunction++TSSetIFunction++++man+manualpages/TS/TSSetIFunction.html#TSSetIFunction
man:+TSGetIFunction++TSGetIFunction++++man+manualpages/TS/TSGetIFunction.html#TSGetIFunction
man:+TSGetRHSFunction++TSGetRHSFunction++++man+manualpages/TS/TSGetRHSFunction.html#TSGetRHSFunction
man:+TSSetIJacobian++TSSetIJacobian++++man+manualpages/TS/TSSetIJacobian.html#TSSetIJacobian
man:+TSRHSJacobianSetReuse++TSRHSJacobianSetReuse++++man+manualpages/TS/TSRHSJacobianSetReuse.html#TSRHSJacobianSetReuse
man:+TSSetI2Function++TSSetI2Function++++man+manualpages/TS/TSSetI2Function.html#TSSetI2Function
man:+TSGetI2Function++TSGetI2Function++++man+manualpages/TS/TSGetI2Function.html#TSGetI2Function
man:+TSSetI2Jacobian++TSSetI2Jacobian++++man+manualpages/TS/TSSetI2Jacobian.html#TSSetI2Jacobian
man:+TSGetI2Jacobian++TSGetI2Jacobian++++man+manualpages/TS/TSGetI2Jacobian.html#TSGetI2Jacobian
man:+TSComputeI2Function++TSComputeI2Function++++man+manualpages/TS/TSComputeI2Function.html#TSComputeI2Function
man:+TSComputeI2Jacobian++TSComputeI2Jacobian++++man+manualpages/TS/TSComputeI2Jacobian.html#TSComputeI2Jacobian
man:+TS2SetSolution++TS2SetSolution++++man+manualpages/TS/TS2SetSolution.html#TS2SetSolution
man:+TS2GetSolution++TS2GetSolution++++man+manualpages/TS/TS2GetSolution.html#TS2GetSolution
man:+TSLoad++TSLoad++++man+manualpages/TS/TSLoad.html#TSLoad
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:+TSSetExactFinalTime++TSSetExactFinalTime++++man+manualpages/TS/TSSetExactFinalTime.html#TSSetExactFinalTime
man:+TSGetTimeStep++TSGetTimeStep++++man+manualpages/TS/TSGetTimeStep.html#TSGetTimeStep
man:+TSGetSolution++TSGetSolution++++man+manualpages/TS/TSGetSolution.html#TSGetSolution
man:+TSGetCostGradients++TSGetCostGradients++++man+manualpages/TS/TSGetCostGradients.html#TSGetCostGradients
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:+TSAdjointSetUp++TSAdjointSetUp++++man+manualpages/TS/TSAdjointSetUp.html#TSAdjointSetUp
man:+TSReset++TSReset++++man+manualpages/TS/TSReset.html#TSReset
man:+TSDestroy++TSDestroy++++man+manualpages/TS/TSDestroy.html#TSDestroy
man:+TSGetSNES++TSGetSNES++++man+manualpages/TS/TSGetSNES.html#TSGetSNES
man:+TSSetSNES++TSSetSNES++++man+manualpages/TS/TSSetSNES.html#TSSetSNES
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:+TSAdjointSetSteps++TSAdjointSetSteps++++man+manualpages/TS/TSAdjointSetSteps.html#TSAdjointSetSteps
man:+TSSetCostGradients++TSSetCostGradients++++man+manualpages/TS/TSSetCostGradients.html#TSSetCostGradients
man:+TSAdjointSetRHSJacobian++TSAdjointSetRHSJacobian++++man+manualpages/TS/TSAdjointSetRHSJacobian.html#TSAdjointSetRHSJacobian
man:+TSAdjointComputeRHSJacobian++TSAdjointComputeRHSJacobian++++man+manualpages/TS/TSAdjointComputeRHSJacobian.html#TSAdjointComputeRHSJacobian
man:+TSSetCostIntegrand++TSSetCostIntegrand++++man+manualpages/TS/TSSetCostIntegrand.html#TSSetCostIntegrand
man:+TSGetCostIntegral++TSGetCostIntegral++++man+manualpages/TS/TSGetCostIntegral.html#TSGetCostIntegral
man:+TSAdjointComputeCostIntegrand++TSAdjointComputeCostIntegrand++++man+manualpages/TS/TSAdjointComputeCostIntegrand.html#TSAdjointComputeCostIntegrand
man:+TSAdjointComputeDRDYFunction++TSAdjointComputeDRDYFunction++++man+manualpages/TS/TSAdjointComputeDRDYFunction.html#TSAdjointComputeDRDYFunction
man:+TSAdjointComputeDRDPFunction++TSAdjointComputeDRDPFunction++++man+manualpages/TS/TSAdjointComputeDRDPFunction.html#TSAdjointComputeDRDPFunction
man:+TSSetPreStep++TSSetPreStep++++man+manualpages/TS/TSSetPreStep.html#TSSetPreStep
man:+TSPreStep++TSPreStep++++man+manualpages/TS/TSPreStep.html#TSPreStep
man:+TSSetPreStage++TSSetPreStage++++man+manualpages/TS/TSSetPreStage.html#TSSetPreStage
man:+TSSetPostStage++TSSetPostStage++++man+manualpages/TS/TSSetPostStage.html#TSSetPostStage
man:+TSPreStage++TSPreStage++++man+manualpages/TS/TSPreStage.html#TSPreStage
man:+TSPostStage++TSPostStage++++man+manualpages/TS/TSPostStage.html#TSPostStage
man:+TSSetPostStep++TSSetPostStep++++man+manualpages/TS/TSSetPostStep.html#TSSetPostStep
man:+TSPostStep++TSPostStep++++man+manualpages/TS/TSPostStep.html#TSPostStep
man:+TSMonitorSet++TSMonitorSet++++man+manualpages/TS/TSMonitorSet.html#TSMonitorSet
man:+TSMonitorCancel++TSMonitorCancel++++man+manualpages/TS/TSMonitorCancel.html#TSMonitorCancel
man:+TSMonitorDefault++TSMonitorDefault++++man+manualpages/TS/TSMonitorDefault.html#TSMonitorDefault
man:+TSAdjointMonitorSet++TSAdjointMonitorSet++++man+manualpages/TS/TSAdjointMonitorSet.html#TSAdjointMonitorSet
man:+TSAdjointMonitorCancel++TSAdjointMonitorCancel++++man+manualpages/TS/TSAdjointMonitorCancel.html#TSAdjointMonitorCancel
man:+TSAdjointMonitorDefault++TSAdjointMonitorDefault++++man+manualpages/TS/TSAdjointMonitorDefault.html#TSAdjointMonitorDefault
man:+TSInterpolate++TSInterpolate++++man+manualpages/TS/TSInterpolate.html#TSInterpolate
man:+TSStep++TSStep++++man+manualpages/TS/TSStep.html#TSStep
man:+TSAdjointStep++TSAdjointStep++++man+manualpages/TS/TSAdjointStep.html#TSAdjointStep
man:+TSEvaluateWLTE++TSEvaluateWLTE++++man+manualpages/TS/TSEvaluateWLTE.html#TSEvaluateWLTE
man:+TSEvaluateStep++TSEvaluateStep++++man+manualpages/TS/TSEvaluateStep.html#TSEvaluateStep
man:+TSForwardCostIntegral++TSForwardCostIntegral++++man+manualpages/TS/TSForwardCostIntegral.html#TSForwardCostIntegral
man:+TSSolve++TSSolve++++man+manualpages/TS/TSSolve.html#TSSolve
man:+TSAdjointCostIntegral++TSAdjointCostIntegral++++man+manualpages/TS/TSAdjointCostIntegral.html#TSAdjointCostIntegral
man:+TSAdjointSolve++TSAdjointSolve++++man+manualpages/TS/TSAdjointSolve.html#TSAdjointSolve
man:+TSMonitor++TSMonitor++++man+manualpages/TS/TSMonitor.html#TSMonitor
man:+TSAdjointMonitor++TSAdjointMonitor++++man+manualpages/TS/TSAdjointMonitor.html#TSAdjointMonitor
man:+TSMonitorLGCtxCreate++TSMonitorLGCtxCreate++++man+manualpages/TS/TSMonitorLGCtxCreate.html#TSMonitorLGCtxCreate
man:+TSMonitorLGCtxDestroy++TSMonitorLGCtxDestroy++++man+manualpages/TS/TSMonitorLGCtxDestroy.html#TSMonitorLGCtxDestroy
man:+TSGetTime++TSGetTime++++man+manualpages/TS/TSGetTime.html#TSGetTime
man:+TSGetPrevTime++TSGetPrevTime++++man+manualpages/TS/TSGetPrevTime.html#TSGetPrevTime
man:+TSSetTime++TSSetTime++++man+manualpages/TS/TSSetTime.html#TSSetTime
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:+TSGetRHSJacobian++TSGetRHSJacobian++++man+manualpages/TS/TSGetRHSJacobian.html#TSGetRHSJacobian
man:+TSGetIJacobian++TSGetIJacobian++++man+manualpages/TS/TSGetIJacobian.html#TSGetIJacobian
man:+TSMonitorDrawSolution++TSMonitorDrawSolution++++man+manualpages/TS/TSMonitorDrawSolution.html#TSMonitorDrawSolution
man:+TSAdjointMonitorDrawSensi++TSAdjointMonitorDrawSensi++++man+manualpages/TS/TSAdjointMonitorDrawSensi.html#TSAdjointMonitorDrawSensi
man:+TSMonitorDrawSolutionPhase++TSMonitorDrawSolutionPhase++++man+manualpages/TS/TSMonitorDrawSolutionPhase.html#TSMonitorDrawSolutionPhase
man:+TSMonitorDrawCtxDestroy++TSMonitorDrawCtxDestroy++++man+manualpages/TS/TSMonitorDrawCtxDestroy.html#TSMonitorDrawCtxDestroy
man:+TSMonitorDrawCtxCreate++TSMonitorDrawCtxCreate++++man+manualpages/TS/TSMonitorDrawCtxCreate.html#TSMonitorDrawCtxCreate
man:+TSMonitorDrawError++TSMonitorDrawError++++man+manualpages/TS/TSMonitorDrawError.html#TSMonitorDrawError
man:+TSSetDM++TSSetDM++++man+manualpages/TS/TSSetDM.html#TSSetDM
man:+TSGetDM++TSGetDM++++man+manualpages/TS/TSGetDM.html#TSGetDM
man:+SNESTSFormFunction++SNESTSFormFunction++++man+manualpages/TS/SNESTSFormFunction.html#SNESTSFormFunction
man:+SNESTSFormJacobian++SNESTSFormJacobian++++man+manualpages/TS/SNESTSFormJacobian.html#SNESTSFormJacobian
man:+TSComputeRHSFunctionLinear++TSComputeRHSFunctionLinear++++man+manualpages/TS/TSComputeRHSFunctionLinear.html#TSComputeRHSFunctionLinear
man:+TSComputeRHSJacobianConstant++TSComputeRHSJacobianConstant++++man+manualpages/TS/TSComputeRHSJacobianConstant.html#TSComputeRHSJacobianConstant
man:+TSComputeIFunctionLinear++TSComputeIFunctionLinear++++man+manualpages/TS/TSComputeIFunctionLinear.html#TSComputeIFunctionLinear
man:+TSComputeIJacobianConstant++TSComputeIJacobianConstant++++man+manualpages/TS/TSComputeIJacobianConstant.html#TSComputeIJacobianConstant
man:+TSGetEquationType++TSGetEquationType++++man+manualpages/TS/TSGetEquationType.html#TSGetEquationType
man:+TSSetEquationType++TSSetEquationType++++man+manualpages/TS/TSSetEquationType.html#TSSetEquationType
man:+TSGetConvergedReason++TSGetConvergedReason++++man+manualpages/TS/TSGetConvergedReason.html#TSGetConvergedReason
man:+TSSetConvergedReason++TSSetConvergedReason++++man+manualpages/TS/TSSetConvergedReason.html#TSSetConvergedReason
man:+TSGetSolveTime++TSGetSolveTime++++man+manualpages/TS/TSGetSolveTime.html#TSGetSolveTime
man:+TSGetTotalSteps++TSGetTotalSteps++++man+manualpages/TS/TSGetTotalSteps.html#TSGetTotalSteps
man:+TSGetSNESIterations++TSGetSNESIterations++++man+manualpages/TS/TSGetSNESIterations.html#TSGetSNESIterations
man:+TSGetKSPIterations++TSGetKSPIterations++++man+manualpages/TS/TSGetKSPIterations.html#TSGetKSPIterations
man:+TSGetStepRejections++TSGetStepRejections++++man+manualpages/TS/TSGetStepRejections.html#TSGetStepRejections
man:+TSGetSNESFailures++TSGetSNESFailures++++man+manualpages/TS/TSGetSNESFailures.html#TSGetSNESFailures
man:+TSSetMaxStepRejections++TSSetMaxStepRejections++++man+manualpages/TS/TSSetMaxStepRejections.html#TSSetMaxStepRejections
man:+TSSetMaxSNESFailures++TSSetMaxSNESFailures++++man+manualpages/TS/TSSetMaxSNESFailures.html#TSSetMaxSNESFailures
man:+TSSetErrorIfStepFails++TSSetErrorIfStepFails++++man+manualpages/TS/TSSetErrorIfStepFails.html#TSSetErrorIfStepFails
man:+TSMonitorSolution++TSMonitorSolution++++man+manualpages/TS/TSMonitorSolution.html#TSMonitorSolution
man:+TSMonitorSolutionVTK++TSMonitorSolutionVTK++++man+manualpages/TS/TSMonitorSolutionVTK.html#TSMonitorSolutionVTK
man:+TSMonitorSolutionVTKDestroy++TSMonitorSolutionVTKDestroy++++man+manualpages/TS/TSMonitorSolutionVTKDestroy.html#TSMonitorSolutionVTKDestroy
man:+TSGetAdapt++TSGetAdapt++++man+manualpages/TS/TSGetAdapt.html#TSGetAdapt
man:+TSSetTolerances++TSSetTolerances++++man+manualpages/TS/TSSetTolerances.html#TSSetTolerances
man:+TSGetTolerances++TSGetTolerances++++man+manualpages/TS/TSGetTolerances.html#TSGetTolerances
man:+TSErrorWeightedNorm2++TSErrorWeightedNorm2++++man+manualpages/TS/TSErrorWeightedNorm2.html#TSErrorWeightedNorm2
man:+TSErrorWeightedNormInfinity++TSErrorWeightedNormInfinity++++man+manualpages/TS/TSErrorWeightedNormInfinity.html#TSErrorWeightedNormInfinity
man:+TSErrorWeightedNorm++TSErrorWeightedNorm++++man+manualpages/TS/TSErrorWeightedNorm.html#TSErrorWeightedNorm
man:+TSSetCFLTimeLocal++TSSetCFLTimeLocal++++man+manualpages/TS/TSSetCFLTimeLocal.html#TSSetCFLTimeLocal
man:+TSGetCFLTime++TSGetCFLTime++++man+manualpages/TS/TSGetCFLTime.html#TSGetCFLTime
man:+TSVISetVariableBounds++TSVISetVariableBounds++++man+manualpages/TS/TSVISetVariableBounds.html#TSVISetVariableBounds
man:+TSMonitorLGSolution++TSMonitorLGSolution++++man+manualpages/TS/TSMonitorLGSolution.html#TSMonitorLGSolution
man:+TSMonitorLGSetVariableNames++TSMonitorLGSetVariableNames++++man+manualpages/TS/TSMonitorLGSetVariableNames.html#TSMonitorLGSetVariableNames
man:+TSMonitorLGCtxSetVariableNames++TSMonitorLGCtxSetVariableNames++++man+manualpages/TS/TSMonitorLGCtxSetVariableNames.html#TSMonitorLGCtxSetVariableNames
man:+TSMonitorLGGetVariableNames++TSMonitorLGGetVariableNames++++man+manualpages/TS/TSMonitorLGGetVariableNames.html#TSMonitorLGGetVariableNames
man:+TSMonitorLGCtxSetDisplayVariables++TSMonitorLGCtxSetDisplayVariables++++man+manualpages/TS/TSMonitorLGCtxSetDisplayVariables.html#TSMonitorLGCtxSetDisplayVariables
man:+TSMonitorLGSetDisplayVariables++TSMonitorLGSetDisplayVariables++++man+manualpages/TS/TSMonitorLGSetDisplayVariables.html#TSMonitorLGSetDisplayVariables
man:+TSMonitorLGSetTransform++TSMonitorLGSetTransform++++man+manualpages/TS/TSMonitorLGSetTransform.html#TSMonitorLGSetTransform
man:+TSMonitorLGCtxSetTransform++TSMonitorLGCtxSetTransform++++man+manualpages/TS/TSMonitorLGCtxSetTransform.html#TSMonitorLGCtxSetTransform
man:+TSMonitorLGError++TSMonitorLGError++++man+manualpages/TS/TSMonitorLGError.html#TSMonitorLGError
man:+TSComputeLinearStability++TSComputeLinearStability++++man+manualpages/TS/TSComputeLinearStability.html#TSComputeLinearStability
man:+TSMonitorEnvelopeCtxCreate++TSMonitorEnvelopeCtxCreate++++man+manualpages/TS/TSMonitorEnvelopeCtxCreate.html#TSMonitorEnvelopeCtxCreate
man:+TSMonitorEnvelope++TSMonitorEnvelope++++man+manualpages/TS/TSMonitorEnvelope.html#TSMonitorEnvelope
man:+TSMonitorEnvelopeGetBounds++TSMonitorEnvelopeGetBounds++++man+manualpages/TS/TSMonitorEnvelopeGetBounds.html#TSMonitorEnvelopeGetBounds
man:+TSMonitorEnvelopeCtxDestroy++TSMonitorEnvelopeCtxDestroy++++man+manualpages/TS/TSMonitorEnvelopeCtxDestroy.html#TSMonitorEnvelopeCtxDestroy
man:+TSRollBack++TSRollBack++++man+manualpages/TS/TSRollBack.html#TSRollBack
man:+TSGetStages++TSGetStages++++man+manualpages/TS/TSGetStages.html#TSGetStages
man:+TSComputeIJacobianDefaultColor++TSComputeIJacobianDefaultColor++++man+manualpages/TS/TSComputeIJacobianDefaultColor.html#TSComputeIJacobianDefaultColor
man:+TSSetFunctionDomainError++TSSetFunctionDomainError++++man+manualpages/TS/TSSetFunctionDomainError.html#TSSetFunctionDomainError
man:+TSFunctionDomainError++TSFunctionDomainError++++man+manualpages/TS/TSFunctionDomainError.html#TSFunctionDomainError
man:+TSClone++TSClone++++man+manualpages/TS/TSClone.html#TSClone
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:+TSRegisterAll++TSRegisterAll++++man+manualpages/TS/TSRegisterAll.html#TSRegisterAll
man:+TSFinalizePackage++TSFinalizePackage++++man+manualpages/TS/TSFinalizePackage.html#TSFinalizePackage
man:+TSInitializePackage++TSInitializePackage++++man+manualpages/TS/TSInitializePackage.html#TSInitializePackage
man:+TSMonitorSPEigCtxCreate++TSMonitorSPEigCtxCreate++++man+manualpages/TS/TSMonitorSPEigCtxCreate.html#TSMonitorSPEigCtxCreate
man:+TSMonitorSPEigCtxDestroy++TSMonitorSPEigCtxDestroy++++man+manualpages/TS/TSMonitorSPEigCtxDestroy.html#TSMonitorSPEigCtxDestroy
man:+TSEULER++TSEULER++++man+manualpages/TS/TSEULER.html#TSEULER
man:+TSRK1++TSRK1++++man+manualpages/TS/TSRK1.html#TSRK1
man:+TSRK2A++TSRK2A++++man+manualpages/TS/TSRK2A.html#TSRK2A
man:+TSRK3++TSRK3++++man+manualpages/TS/TSRK3.html#TSRK3
man:+TSRK3BS++TSRK3BS++++man+manualpages/TS/TSRK3BS.html#TSRK3BS
man:+TSRK4++TSRK4++++man+manualpages/TS/TSRK4.html#TSRK4
man:+TSRK5F++TSRK5F++++man+manualpages/TS/TSRK5F.html#TSRK5F
man:+TSRK5DP++TSRK5DP++++man+manualpages/TS/TSRK5DP.html#TSRK5DP
man:+TSRKRegisterAll++TSRKRegisterAll++++man+manualpages/TS/TSRKRegisterAll.html#TSRKRegisterAll
man:+TSRKRegisterDestroy++TSRKRegisterDestroy++++man+manualpages/TS/TSRKRegisterDestroy.html#TSRKRegisterDestroy
man:+TSRKInitializePackage++TSRKInitializePackage++++man+manualpages/TS/TSRKInitializePackage.html#TSRKInitializePackage
man:+TSRKFinalizePackage++TSRKFinalizePackage++++man+manualpages/TS/TSRKFinalizePackage.html#TSRKFinalizePackage
man:+TSRKRegister++TSRKRegister++++man+manualpages/TS/TSRKRegister.html#TSRKRegister
man:+TSRKSetType++TSRKSetType++++man+manualpages/TS/TSRKSetType.html#TSRKSetType
man:+TSRKGetType++TSRKGetType++++man+manualpages/TS/TSRKGetType.html#TSRKGetType
man:+TSRK++TSRK++++man+manualpages/TS/TSRK.html#TSRK
man:+TSSSPRKS2++TSSSPRKS2++++man+manualpages/TS/TSSSPRKS2.html#TSSSPRKS2
man:+TSSSPRKS3++TSSSPRKS3++++man+manualpages/TS/TSSSPRKS3.html#TSSSPRKS3
man:+TSSSPRKS104++TSSSPRKS104++++man+manualpages/TS/TSSSPRKS104.html#TSSSPRKS104
man:+TSSSPSetType++TSSSPSetType++++man+manualpages/TS/TSSSPSetType.html#TSSSPSetType
man:+TSSSPGetType++TSSSPGetType++++man+manualpages/TS/TSSSPGetType.html#TSSSPGetType
man:+TSSSPSetNumStages++TSSSPSetNumStages++++man+manualpages/TS/TSSSPSetNumStages.html#TSSSPSetNumStages
man:+TSSSPGetNumStages++TSSSPGetNumStages++++man+manualpages/TS/TSSSPGetNumStages.html#TSSSPGetNumStages
man:+TSSSP++TSSSP++++man+manualpages/TS/TSSSP.html#TSSSP
man:+TSSSPInitializePackage++TSSSPInitializePackage++++man+manualpages/TS/TSSSPInitializePackage.html#TSSSPInitializePackage
man:+TSSSPFinalizePackage++TSSSPFinalizePackage++++man+manualpages/TS/TSSSPFinalizePackage.html#TSSSPFinalizePackage
man:+TSSundialsGetIterations++TSSundialsGetIterations++++man+manualpages/TS/TSSundialsGetIterations.html#TSSundialsGetIterations
man:+TSSundialsSetType++TSSundialsSetType++++man+manualpages/TS/TSSundialsSetType.html#TSSundialsSetType
man:+TSSundialsSetMaxl++TSSundialsSetMaxl++++man+manualpages/TS/TSSundialsSetMaxl.html#TSSundialsSetMaxl
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:+TSSundialsSetMinTimeStep++TSSundialsSetMinTimeStep++++man+manualpages/TS/TSSundialsSetMinTimeStep.html#TSSundialsSetMinTimeStep
man:+TSSundialsSetMaxTimeStep++TSSundialsSetMaxTimeStep++++man+manualpages/TS/TSSundialsSetMaxTimeStep.html#TSSundialsSetMaxTimeStep
man:+TSSundialsMonitorInternalSteps++TSSundialsMonitorInternalSteps++++man+manualpages/TS/TSSundialsMonitorInternalSteps.html#TSSundialsMonitorInternalSteps
man:+TSSUNDIALS++TSSUNDIALS++++man+manualpages/TS/TSSUNDIALS.html#TSSUNDIALS
man:+TSTHETA++TSTHETA++++man+manualpages/TS/TSTHETA.html#TSTHETA
man:+TSThetaGetTheta++TSThetaGetTheta++++man+manualpages/TS/TSThetaGetTheta.html#TSThetaGetTheta
man:+TSThetaSetTheta++TSThetaSetTheta++++man+manualpages/TS/TSThetaSetTheta.html#TSThetaSetTheta
man:+TSThetaGetEndpoint++TSThetaGetEndpoint++++man+manualpages/TS/TSThetaGetEndpoint.html#TSThetaGetEndpoint
man:+TSThetaSetEndpoint++TSThetaSetEndpoint++++man+manualpages/TS/TSThetaSetEndpoint.html#TSThetaSetEndpoint
man:+TSBEULER++TSBEULER++++man+manualpages/TS/TSBEULER.html#TSBEULER
man:+TSCN++TSCN++++man+manualpages/TS/TSCN.html#TSCN
man:+TSALPHA++TSALPHA++++man+manualpages/TS/TSALPHA.html#TSALPHA
man:+TSAlphaUseAdapt++TSAlphaUseAdapt++++man+manualpages/TS/TSAlphaUseAdapt.html#TSAlphaUseAdapt
man:+TSAlphaSetRadius++TSAlphaSetRadius++++man+manualpages/TS/TSAlphaSetRadius.html#TSAlphaSetRadius
man:+TSAlphaSetParams++TSAlphaSetParams++++man+manualpages/TS/TSAlphaSetParams.html#TSAlphaSetParams
man:+TSAlphaGetParams++TSAlphaGetParams++++man+manualpages/TS/TSAlphaGetParams.html#TSAlphaGetParams
man:+TSALPHA2++TSALPHA2++++man+manualpages/TS/TSALPHA2.html#TSALPHA2
man:+TSAlpha2UseAdapt++TSAlpha2UseAdapt++++man+manualpages/TS/TSAlpha2UseAdapt.html#TSAlpha2UseAdapt
man:+TSAlpha2SetRadius++TSAlpha2SetRadius++++man+manualpages/TS/TSAlpha2SetRadius.html#TSAlpha2SetRadius
man:+TSAlpha2SetParams++TSAlpha2SetParams++++man+manualpages/TS/TSAlpha2SetParams.html#TSAlpha2SetParams
man:+TSAlpha2GetParams++TSAlpha2GetParams++++man+manualpages/TS/TSAlpha2GetParams.html#TSAlpha2GetParams
man:+TSGLSetType++TSGLSetType++++man+manualpages/TS/TSGLSetType.html#TSGLSetType
man:+TSGLSetAcceptType++TSGLSetAcceptType++++man+manualpages/TS/TSGLSetAcceptType.html#TSGLSetAcceptType
man:+TSGLGetAdapt++TSGLGetAdapt++++man+manualpages/TS/TSGLGetAdapt.html#TSGLGetAdapt
man:+TSGLRegister++TSGLRegister++++man+manualpages/TS/TSGLRegister.html#TSGLRegister
man:+TSGLAcceptRegister++TSGLAcceptRegister++++man+manualpages/TS/TSGLAcceptRegister.html#TSGLAcceptRegister
man:+TSGLRegisterAll++TSGLRegisterAll++++man+manualpages/TS/TSGLRegisterAll.html#TSGLRegisterAll
man:+TSGLInitializePackage++TSGLInitializePackage++++man+manualpages/TS/TSGLInitializePackage.html#TSGLInitializePackage
man:+TSGLFinalizePackage++TSGLFinalizePackage++++man+manualpages/TS/TSGLFinalizePackage.html#TSGLFinalizePackage
man:+TSGL++TSGL++++man+manualpages/TS/TSGL.html#TSGL
man:+TSGLAdaptRegister++TSGLAdaptRegister++++man+manualpages/TS/TSGLAdaptRegister.html#TSGLAdaptRegister
man:+TSGLAdaptRegisterAll++TSGLAdaptRegisterAll++++man+manualpages/TS/TSGLAdaptRegisterAll.html#TSGLAdaptRegisterAll
man:+TSGLFinalizePackage++TSGLFinalizePackage++++man+manualpages/TS/TSGLFinalizePackage.html#TSGLFinalizePackage
man:+TSGLAdaptInitializePackage++TSGLAdaptInitializePackage++++man+manualpages/TS/TSGLAdaptInitializePackage.html#TSGLAdaptInitializePackage
man:+TSPseudoComputeTimeStep++TSPseudoComputeTimeStep++++man+manualpages/TS/TSPseudoComputeTimeStep.html#TSPseudoComputeTimeStep
man:+TSPseudoVerifyTimeStepDefault++TSPseudoVerifyTimeStepDefault++++man+manualpages/TS/TSPseudoVerifyTimeStepDefault.html#TSPseudoVerifyTimeStepDefault
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:+TSPseudoSetMaxTimeStep++TSPseudoSetMaxTimeStep++++man+manualpages/TS/TSPseudoSetMaxTimeStep.html#TSPseudoSetMaxTimeStep
man:+TSPseudoIncrementDtFromInitialDt++TSPseudoIncrementDtFromInitialDt++++man+manualpages/TS/TSPseudoIncrementDtFromInitialDt.html#TSPseudoIncrementDtFromInitialDt
man:+TSPseudoSetTimeStep++TSPseudoSetTimeStep++++man+manualpages/TS/TSPseudoSetTimeStep.html#TSPseudoSetTimeStep
man:+TSPSEUDO++TSPSEUDO++++man+manualpages/TS/TSPSEUDO.html#TSPSEUDO
man:+TSPseudoTimeStepDefault++TSPseudoTimeStepDefault++++man+manualpages/TS/TSPseudoTimeStepDefault.html#TSPseudoTimeStepDefault
man:+TSPythonSetType++TSPythonSetType++++man+manualpages/TS/TSPythonSetType.html#TSPythonSetType
man:+TSARKIMEXARS122++TSARKIMEXARS122++++man+manualpages/TS/TSARKIMEXARS122.html#TSARKIMEXARS122
man:+TSARKIMEXA2++TSARKIMEXA2++++man+manualpages/TS/TSARKIMEXA2.html#TSARKIMEXA2
man:+TSARKIMEXL2++TSARKIMEXL2++++man+manualpages/TS/TSARKIMEXL2.html#TSARKIMEXL2
man:+TSARKIMEX1BEE++TSARKIMEX1BEE++++man+manualpages/TS/TSARKIMEX1BEE.html#TSARKIMEX1BEE
man:+TSARKIMEX2C++TSARKIMEX2C++++man+manualpages/TS/TSARKIMEX2C.html#TSARKIMEX2C
man:+TSARKIMEX2D++TSARKIMEX2D++++man+manualpages/TS/TSARKIMEX2D.html#TSARKIMEX2D
man:+TSARKIMEX2E++TSARKIMEX2E++++man+manualpages/TS/TSARKIMEX2E.html#TSARKIMEX2E
man:+TSARKIMEXPRSSP2++TSARKIMEXPRSSP2++++man+manualpages/TS/TSARKIMEXPRSSP2.html#TSARKIMEXPRSSP2
man:+TSARKIMEX3++TSARKIMEX3++++man+manualpages/TS/TSARKIMEX3.html#TSARKIMEX3
man:+TSARKIMEXARS443++TSARKIMEXARS443++++man+manualpages/TS/TSARKIMEXARS443.html#TSARKIMEXARS443
man:+TSARKIMEXBPR3++TSARKIMEXBPR3++++man+manualpages/TS/TSARKIMEXBPR3.html#TSARKIMEXBPR3
man:+TSARKIMEX4++TSARKIMEX4++++man+manualpages/TS/TSARKIMEX4.html#TSARKIMEX4
man:+TSARKIMEX5++TSARKIMEX5++++man+manualpages/TS/TSARKIMEX5.html#TSARKIMEX5
man:+TSARKIMEXRegisterAll++TSARKIMEXRegisterAll++++man+manualpages/TS/TSARKIMEXRegisterAll.html#TSARKIMEXRegisterAll
man:+TSARKIMEXRegisterDestroy++TSARKIMEXRegisterDestroy++++man+manualpages/TS/TSARKIMEXRegisterDestroy.html#TSARKIMEXRegisterDestroy
man:+TSARKIMEXInitializePackage++TSARKIMEXInitializePackage++++man+manualpages/TS/TSARKIMEXInitializePackage.html#TSARKIMEXInitializePackage
man:+TSARKIMEXFinalizePackage++TSARKIMEXFinalizePackage++++man+manualpages/TS/TSARKIMEXFinalizePackage.html#TSARKIMEXFinalizePackage
man:+TSARKIMEXRegister++TSARKIMEXRegister++++man+manualpages/TS/TSARKIMEXRegister.html#TSARKIMEXRegister
man:+TSARKIMEXSetType++TSARKIMEXSetType++++man+manualpages/TS/TSARKIMEXSetType.html#TSARKIMEXSetType
man:+TSARKIMEXGetType++TSARKIMEXGetType++++man+manualpages/TS/TSARKIMEXGetType.html#TSARKIMEXGetType
man:+TSARKIMEXSetFullyImplicit++TSARKIMEXSetFullyImplicit++++man+manualpages/TS/TSARKIMEXSetFullyImplicit.html#TSARKIMEXSetFullyImplicit
man:+TSARKIMEX++TSARKIMEX++++man+manualpages/TS/TSARKIMEX.html#TSARKIMEX
man:+TSROSWTHETA1++TSROSWTHETA1++++man+manualpages/TS/TSROSWTHETA1.html#TSROSWTHETA1
man:+TSROSWTHETA2++TSROSWTHETA2++++man+manualpages/TS/TSROSWTHETA2.html#TSROSWTHETA2
man:+TSROSW2M++TSROSW2M++++man+manualpages/TS/TSROSW2M.html#TSROSW2M
man:+TSROSW2P++TSROSW2P++++man+manualpages/TS/TSROSW2P.html#TSROSW2P
man:+TSROSWRA3PW++TSROSWRA3PW++++man+manualpages/TS/TSROSWRA3PW.html#TSROSWRA3PW
man:+TSROSWRA34PW2++TSROSWRA34PW2++++man+manualpages/TS/TSROSWRA34PW2.html#TSROSWRA34PW2
man:+TSROSWRODAS3++TSROSWRODAS3++++man+manualpages/TS/TSROSWRODAS3.html#TSROSWRODAS3
man:+TSROSWSANDU3++TSROSWSANDU3++++man+manualpages/TS/TSROSWSANDU3.html#TSROSWSANDU3
man:+TSROSWASSP3P3S1C++TSROSWASSP3P3S1C++++man+manualpages/TS/TSROSWASSP3P3S1C.html#TSROSWASSP3P3S1C
man:+TSROSWLASSP3P4S2C++TSROSWLASSP3P4S2C++++man+manualpages/TS/TSROSWLASSP3P4S2C.html#TSROSWLASSP3P4S2C
man:+TSROSWLLSSP3P4S2C++TSROSWLLSSP3P4S2C++++man+manualpages/TS/TSROSWLLSSP3P4S2C.html#TSROSWLLSSP3P4S2C
man:+TSROSWGRK4T++TSROSWGRK4T++++man+manualpages/TS/TSROSWGRK4T.html#TSROSWGRK4T
man:+TSROSWSHAMP4++TSROSWSHAMP4++++man+manualpages/TS/TSROSWSHAMP4.html#TSROSWSHAMP4
man:+TSROSWVELDD4++TSROSWVELDD4++++man+manualpages/TS/TSROSWVELDD4.html#TSROSWVELDD4
man:+TSROSW4L++TSROSW4L++++man+manualpages/TS/TSROSW4L.html#TSROSW4L
man:+TSRosWRegisterAll++TSRosWRegisterAll++++man+manualpages/TS/TSRosWRegisterAll.html#TSRosWRegisterAll
man:+TSRosWRegisterDestroy++TSRosWRegisterDestroy++++man+manualpages/TS/TSRosWRegisterDestroy.html#TSRosWRegisterDestroy
man:+TSRosWInitializePackage++TSRosWInitializePackage++++man+manualpages/TS/TSRosWInitializePackage.html#TSRosWInitializePackage
man:+TSRosWFinalizePackage++TSRosWFinalizePackage++++man+manualpages/TS/TSRosWFinalizePackage.html#TSRosWFinalizePackage
man:+TSRosWRegister++TSRosWRegister++++man+manualpages/TS/TSRosWRegister.html#TSRosWRegister
man:+TSRosWRegisterRos4++TSRosWRegisterRos4++++man+manualpages/TS/TSRosWRegisterRos4.html#TSRosWRegisterRos4
man:+TSRosWSetType++TSRosWSetType++++man+manualpages/TS/TSRosWSetType.html#TSRosWSetType
man:+TSRosWGetType++TSRosWGetType++++man+manualpages/TS/TSRosWGetType.html#TSRosWGetType
man:+TSRosWSetRecomputeJacobian++TSRosWSetRecomputeJacobian++++man+manualpages/TS/TSRosWSetRecomputeJacobian.html#TSRosWSetRecomputeJacobian
man:+TSROSW++TSROSW++++man+manualpages/TS/TSROSW.html#TSROSW
man:+EIMEX++EIMEX++++man+manualpages/TS/EIMEX.html#EIMEX
man:+TSEIMEXSetMaxRows++TSEIMEXSetMaxRows++++man+manualpages/TS/TSEIMEXSetMaxRows.html#TSEIMEXSetMaxRows
man:+TSEIMEXSetRowCol++TSEIMEXSetRowCol++++man+manualpages/TS/TSEIMEXSetRowCol.html#TSEIMEXSetRowCol
man:+TSEIMEXSetOrdAdapt++TSEIMEXSetOrdAdapt++++man+manualpages/TS/TSEIMEXSetOrdAdapt.html#TSEIMEXSetOrdAdapt
man:+TSEIMEX++TSEIMEX++++man+manualpages/TS/TSEIMEX.html#TSEIMEX
man:+TSMIMEX++TSMIMEX++++man+manualpages/TS/TSMIMEX.html#TSMIMEX
man:+TSBDF++TSBDF++++man+manualpages/TS/TSBDF.html#TSBDF
man:+TSBDFSetOrder++TSBDFSetOrder++++man+manualpages/TS/TSBDFSetOrder.html#TSBDFSetOrder
man:+TSBDFGetOrder++TSBDFGetOrder++++man+manualpages/TS/TSBDFGetOrder.html#TSBDFGetOrder
man:+TSBDFUseAdapt++TSBDFUseAdapt++++man+manualpages/TS/TSBDFUseAdapt.html#TSBDFUseAdapt
man:+Characteristic++Characteristic++++man+manualpages/SemiLagrange/Characteristic.html#Characteristic
man:+CharacteristicType++CharacteristicType++++man+manualpages/SemiLagrange/CharacteristicType.html#CharacteristicType
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:+CharacteristicFinalizePackage++CharacteristicFinalizePackage++++man+manualpages/SemiLagrange/CharacteristicFinalizePackage.html#CharacteristicFinalizePackage
man:+CharacteristicInitializePackage++CharacteristicInitializePackage++++man+manualpages/SemiLagrange/CharacteristicInitializePackage.html#CharacteristicInitializePackage
man:+TSAdaptRegister++TSAdaptRegister++++man+manualpages/TS/TSAdaptRegister.html#TSAdaptRegister
man:+TSAdaptRegisterAll++TSAdaptRegisterAll++++man+manualpages/TS/TSAdaptRegisterAll.html#TSAdaptRegisterAll
man:+TSAdaptFinalizePackage++TSAdaptFinalizePackage++++man+manualpages/TS/TSAdaptFinalizePackage.html#TSAdaptFinalizePackage
man:+TSAdaptInitializePackage++TSAdaptInitializePackage++++man+manualpages/TS/TSAdaptInitializePackage.html#TSAdaptInitializePackage
man:+TSAdaptSetType++TSAdaptSetType++++man+manualpages/TS/TSAdaptSetType.html#TSAdaptSetType
man:+TSAdaptLoad++TSAdaptLoad++++man+manualpages/TS/TSAdaptLoad.html#TSAdaptLoad
man:+TSAdaptReset++TSAdaptReset++++man+manualpages/TS/TSAdaptReset.html#TSAdaptReset
man:+TSAdaptSetMonitor++TSAdaptSetMonitor++++man+manualpages/TS/TSAdaptSetMonitor.html#TSAdaptSetMonitor
man:+TSAdaptSetCheckStage++TSAdaptSetCheckStage++++man+manualpages/TS/TSAdaptSetCheckStage.html#TSAdaptSetCheckStage
man:+TSAdaptSetStepLimits++TSAdaptSetStepLimits++++man+manualpages/TS/TSAdaptSetStepLimits.html#TSAdaptSetStepLimits
man:+TSAdaptCandidatesClear++TSAdaptCandidatesClear++++man+manualpages/TS/TSAdaptCandidatesClear.html#TSAdaptCandidatesClear
man:+TSAdaptCandidateAdd++TSAdaptCandidateAdd++++man+manualpages/TS/TSAdaptCandidateAdd.html#TSAdaptCandidateAdd
man:+TSAdaptCandidatesGet++TSAdaptCandidatesGet++++man+manualpages/TS/TSAdaptCandidatesGet.html#TSAdaptCandidatesGet
man:+TSAdaptChoose++TSAdaptChoose++++man+manualpages/TS/TSAdaptChoose.html#TSAdaptChoose
man:+TSAdaptCheckStage++TSAdaptCheckStage++++man+manualpages/TS/TSAdaptCheckStage.html#TSAdaptCheckStage
man:+TSAdaptCreate++TSAdaptCreate++++man+manualpages/TS/TSAdaptCreate.html#TSAdaptCreate
man:+TSADAPTBASIC++TSADAPTBASIC++++man+manualpages/TS/TSADAPTBASIC.html#TSADAPTBASIC
man:+TSAdaptBasicSetClip++TSAdaptBasicSetClip++++man+manualpages/TS/TSAdaptBasicSetClip.html#TSAdaptBasicSetClip
man:+TSAdaptBasicGetClip++TSAdaptBasicGetClip++++man+manualpages/TS/TSAdaptBasicGetClip.html#TSAdaptBasicGetClip
man:+TSADAPTCFL++TSADAPTCFL++++man+manualpages/TS/TSADAPTCFL.html#TSADAPTCFL
man:+TSADAPTNONE++TSADAPTNONE++++man+manualpages/TS/TSADAPTNONE.html#TSADAPTNONE
man:+DMTSCopy++DMTSCopy++++man+manualpages/TS/DMTSCopy.html#DMTSCopy
man:+DMGetDMTS++DMGetDMTS++++man+manualpages/TS/DMGetDMTS.html#DMGetDMTS
man:+DMGetDMTSWrite++DMGetDMTSWrite++++man+manualpages/TS/DMGetDMTSWrite.html#DMGetDMTSWrite
man:+DMCopyDMTS++DMCopyDMTS++++man+manualpages/TS/DMCopyDMTS.html#DMCopyDMTS
man:+DMTSSetIFunction++DMTSSetIFunction++++man+manualpages/TS/DMTSSetIFunction.html#DMTSSetIFunction
man:+DMTSGetIFunction++DMTSGetIFunction++++man+manualpages/TS/DMTSGetIFunction.html#DMTSGetIFunction
man:+DMTSSetI2Function++DMTSSetI2Function++++man+manualpages/TS/DMTSSetI2Function.html#DMTSSetI2Function
man:+DMTSGetI2Function++DMTSGetI2Function++++man+manualpages/TS/DMTSGetI2Function.html#DMTSGetI2Function
man:+DMTSSetI2Jacobian++DMTSSetI2Jacobian++++man+manualpages/TS/DMTSSetI2Jacobian.html#DMTSSetI2Jacobian
man:+DMTSGetI2Jacobian++DMTSGetI2Jacobian++++man+manualpages/TS/DMTSGetI2Jacobian.html#DMTSGetI2Jacobian
man:+DMTSSetRHSFunction++DMTSSetRHSFunction++++man+manualpages/TS/DMTSSetRHSFunction.html#DMTSSetRHSFunction
man:+DMTSGetSolutionFunction++DMTSGetSolutionFunction++++man+manualpages/TS/DMTSGetSolutionFunction.html#DMTSGetSolutionFunction
man:+DMTSSetSolutionFunction++DMTSSetSolutionFunction++++man+manualpages/TS/DMTSSetSolutionFunction.html#DMTSSetSolutionFunction
man:+DMTSSetForcingFunction++DMTSSetForcingFunction++++man+manualpages/TS/DMTSSetForcingFunction.html#DMTSSetForcingFunction
man:+DMTSGetForcingFunction++DMTSGetForcingFunction++++man+manualpages/TS/DMTSGetForcingFunction.html#DMTSGetForcingFunction
man:+DMTSGetRHSFunction++DMTSGetRHSFunction++++man+manualpages/TS/DMTSGetRHSFunction.html#DMTSGetRHSFunction
man:+DMTSSetIJacobian++DMTSSetIJacobian++++man+manualpages/TS/DMTSSetIJacobian.html#DMTSSetIJacobian
man:+DMTSGetIJacobian++DMTSGetIJacobian++++man+manualpages/TS/DMTSGetIJacobian.html#DMTSGetIJacobian
man:+DMTSSetRHSJacobian++DMTSSetRHSJacobian++++man+manualpages/TS/DMTSSetRHSJacobian.html#DMTSSetRHSJacobian
man:+DMTSGetRHSJacobian++DMTSGetRHSJacobian++++man+manualpages/TS/DMTSGetRHSJacobian.html#DMTSGetRHSJacobian
man:+DMTSSetIFunctionSerialize++DMTSSetIFunctionSerialize++++man+manualpages/TS/DMTSSetIFunctionSerialize.html#DMTSSetIFunctionSerialize
man:+DMTSSetIJacobianSerialize++DMTSSetIJacobianSerialize++++man+manualpages/TS/DMTSSetIJacobianSerialize.html#DMTSSetIJacobianSerialize
man:+DMTSSetBoundaryLocal++DMTSSetBoundaryLocal++++man+manualpages/TS/DMTSSetBoundaryLocal.html#DMTSSetBoundaryLocal
man:+DMTSSetIFunctionLocal++DMTSSetIFunctionLocal++++man+manualpages/TS/DMTSSetIFunctionLocal.html#DMTSSetIFunctionLocal
man:+DMTSSetIJacobianLocal++DMTSSetIJacobianLocal++++man+manualpages/TS/DMTSSetIJacobianLocal.html#DMTSSetIJacobianLocal
man:+DMTSSetRHSFunctionLocal++DMTSSetRHSFunctionLocal++++man+manualpages/TS/DMTSSetRHSFunctionLocal.html#DMTSSetRHSFunctionLocal
man:+DMDATSSetRHSFunctionLocal++DMDATSSetRHSFunctionLocal++++man+manualpages/TS/DMDATSSetRHSFunctionLocal.html#DMDATSSetRHSFunctionLocal
man:+DMDATSSetRHSJacobianLocal++DMDATSSetRHSJacobianLocal++++man+manualpages/TS/DMDATSSetRHSJacobianLocal.html#DMDATSSetRHSJacobianLocal
man:+DMDATSSetIFunctionLocal++DMDATSSetIFunctionLocal++++man+manualpages/TS/DMDATSSetIFunctionLocal.html#DMDATSSetIFunctionLocal
man:+DMDATSSetIJacobianLocal++DMDATSSetIJacobianLocal++++man+manualpages/TS/DMDATSSetIJacobianLocal.html#DMDATSSetIJacobianLocal
man:+DMPlexTSGetGeometryFVM++DMPlexTSGetGeometryFVM++++man+manualpages/TS/DMPlexTSGetGeometryFVM.html#DMPlexTSGetGeometryFVM
man:+DMPlexTSGetGradientDM++DMPlexTSGetGradientDM++++man+manualpages/TS/DMPlexTSGetGradientDM.html#DMPlexTSGetGradientDM
man:+DMPlexTSComputeRHSFunctionFVM++DMPlexTSComputeRHSFunctionFVM++++man+manualpages/TS/DMPlexTSComputeRHSFunctionFVM.html#DMPlexTSComputeRHSFunctionFVM
man:+DMPlexTSComputeBoundary++DMPlexTSComputeBoundary++++man+manualpages/TS/DMPlexTSComputeBoundary.html#DMPlexTSComputeBoundary
man:+DMPlexTSComputeIFunctionFEM++DMPlexTSComputeIFunctionFEM++++man+manualpages/TS/DMPlexTSComputeIFunctionFEM.html#DMPlexTSComputeIFunctionFEM
man:+DMPlexTSComputeIJacobianFEM++DMPlexTSComputeIJacobianFEM++++man+manualpages/TS/DMPlexTSComputeIJacobianFEM.html#DMPlexTSComputeIJacobianFEM
man:+TSSetEventTolerances++TSSetEventTolerances++++man+manualpages/TS/TSSetEventTolerances.html#TSSetEventTolerances
man:+TSSetEventHandler++TSSetEventHandler++++man+manualpages/TS/TSSetEventHandler.html#TSSetEventHandler
man:+TaoSubsetType++TaoSubsetType++++man+manualpages/Tao/TaoSubsetType.html#TaoSubsetType
man:+Tao++Tao++++man+manualpages/Tao/Tao.html#Tao
man:+TaoType++TaoType++++man+manualpages/Tao/TaoType.html#TaoType
man:+TaoCreate++TaoCreate++++man+manualpages/Tao/TaoCreate.html#TaoCreate
man:+TaoSolve++TaoSolve++++man+manualpages/Tao/TaoSolve.html#TaoSolve
man:+TaoSetUp++TaoSetUp++++man+manualpages/Tao/TaoSetUp.html#TaoSetUp
man:+TaoDestroy++TaoDestroy++++man+manualpages/Tao/TaoDestroy.html#TaoDestroy
man:+TaoSetFromOptions++TaoSetFromOptions++++man+manualpages/Tao/TaoSetFromOptions.html#TaoSetFromOptions
man:+TaoView++TaoView++++man+manualpages/Tao/TaoView.html#TaoView
man:+TaoSetTolerances++TaoSetTolerances++++man+manualpages/Tao/TaoSetTolerances.html#TaoSetTolerances
man:+TaoSetConstraintTolerances++TaoSetConstraintTolerances++++man+manualpages/Tao/TaoSetConstraintTolerances.html#TaoSetConstraintTolerances
man:+TaoGetConstraintTolerances++TaoGetConstraintTolerances++++man+manualpages/Tao/TaoGetConstraintTolerances.html#TaoGetConstraintTolerances
man:+TaoSetFunctionLowerBound++TaoSetFunctionLowerBound++++man+manualpages/Tao/TaoSetFunctionLowerBound.html#TaoSetFunctionLowerBound
man:+TaoGetFunctionLowerBound++TaoGetFunctionLowerBound++++man+manualpages/Tao/TaoGetFunctionLowerBound.html#TaoGetFunctionLowerBound
man:+TaoSetMaximumFunctionEvaluations++TaoSetMaximumFunctionEvaluations++++man+manualpages/Tao/TaoSetMaximumFunctionEvaluations.html#TaoSetMaximumFunctionEvaluations
man:+TaoGetMaximumFunctionEvaluations++TaoGetMaximumFunctionEvaluations++++man+manualpages/Tao/TaoGetMaximumFunctionEvaluations.html#TaoGetMaximumFunctionEvaluations
man:+TaoGetCurrentFunctionEvaluations++TaoGetCurrentFunctionEvaluations++++man+manualpages/Tao/TaoGetCurrentFunctionEvaluations.html#TaoGetCurrentFunctionEvaluations
man:+TaoSetMaximumIterations++TaoSetMaximumIterations++++man+manualpages/Tao/TaoSetMaximumIterations.html#TaoSetMaximumIterations
man:+TaoGetMaximumIterations++TaoGetMaximumIterations++++man+manualpages/Tao/TaoGetMaximumIterations.html#TaoGetMaximumIterations
man:+TaoSetInitialTrustRegionRadius++TaoSetInitialTrustRegionRadius++++man+manualpages/Tao/TaoSetInitialTrustRegionRadius.html#TaoSetInitialTrustRegionRadius
man:+TaoGetInitialTrustRegionRadius++TaoGetInitialTrustRegionRadius++++man+manualpages/Tao/TaoGetInitialTrustRegionRadius.html#TaoGetInitialTrustRegionRadius
man:+TaoGetCurrentTrustRegionRadius++TaoGetCurrentTrustRegionRadius++++man+manualpages/Tao/TaoGetCurrentTrustRegionRadius.html#TaoGetCurrentTrustRegionRadius
man:+TaoGetTolerances++TaoGetTolerances++++man+manualpages/Tao/TaoGetTolerances.html#TaoGetTolerances
man:+TaoGetKSP++TaoGetKSP++++man+manualpages/Tao/TaoGetKSP.html#TaoGetKSP
man:+TaoGetLinearSolveIterations++TaoGetLinearSolveIterations++++man+manualpages/Tao/TaoGetLinearSolveIterations.html#TaoGetLinearSolveIterations
man:+TaoGetLineSearch++TaoGetLineSearch++++man+manualpages/Tao/TaoGetLineSearch.html#TaoGetLineSearch
man:+TaoAddLineSearchCounts++TaoAddLineSearchCounts++++man+manualpages/Tao/TaoAddLineSearchCounts.html#TaoAddLineSearchCounts
man:+TaoGetSolutionVector++TaoGetSolutionVector++++man+manualpages/Tao/TaoGetSolutionVector.html#TaoGetSolutionVector
man:+TaoGetGradientVector++TaoGetGradientVector++++man+manualpages/Tao/TaoGetGradientVector.html#TaoGetGradientVector
man:+TaoResetStatistics++TaoResetStatistics++++man+manualpages/Tao/TaoResetStatistics.html#TaoResetStatistics
man:+TaoSetConvergenceTest++TaoSetConvergenceTest++++man+manualpages/Tao/TaoSetConvergenceTest.html#TaoSetConvergenceTest
man:+TaoSetMonitor++TaoSetMonitor++++man+manualpages/Tao/TaoSetMonitor.html#TaoSetMonitor
man:+TaoCancelMonitors++TaoCancelMonitors++++man+manualpages/Tao/TaoCancelMonitors.html#TaoCancelMonitors
man:+TaoDefaultMonitor++TaoDefaultMonitor++++man+manualpages/Tao/TaoDefaultMonitor.html#TaoDefaultMonitor
man:+TaoDefaultSMonitor++TaoDefaultSMonitor++++man+manualpages/Tao/TaoDefaultSMonitor.html#TaoDefaultSMonitor
man:+TaoDefaultCMonitor++TaoDefaultCMonitor++++man+manualpages/Tao/TaoDefaultCMonitor.html#TaoDefaultCMonitor
man:+TaoSolutionMonitor++TaoSolutionMonitor++++man+manualpages/Tao/TaoSolutionMonitor.html#TaoSolutionMonitor
man:+TaoGradientMonitor++TaoGradientMonitor++++man+manualpages/Tao/TaoGradientMonitor.html#TaoGradientMonitor
man:+TaoStepDirectionMonitor++TaoStepDirectionMonitor++++man+manualpages/Tao/TaoStepDirectionMonitor.html#TaoStepDirectionMonitor
man:+TaoDrawSolutionMonitor++TaoDrawSolutionMonitor++++man+manualpages/Tao/TaoDrawSolutionMonitor.html#TaoDrawSolutionMonitor
man:+TaoDrawGradientMonitor++TaoDrawGradientMonitor++++man+manualpages/Tao/TaoDrawGradientMonitor.html#TaoDrawGradientMonitor
man:+TaoDrawStepMonitor++TaoDrawStepMonitor++++man+manualpages/Tao/TaoDrawStepMonitor.html#TaoDrawStepMonitor
man:+TaoSeparableObjectiveMonitor++TaoSeparableObjectiveMonitor++++man+manualpages/Tao/TaoSeparableObjectiveMonitor.html#TaoSeparableObjectiveMonitor
man:+TaoDefaultConvergenceTest++TaoDefaultConvergenceTest++++man+manualpages/Tao/TaoDefaultConvergenceTest.html#TaoDefaultConvergenceTest
man:+TaoSetOptionsPrefix++TaoSetOptionsPrefix++++man+manualpages/Tao/TaoSetOptionsPrefix.html#TaoSetOptionsPrefix
man:+TaoAppendOptionsPrefix++TaoAppendOptionsPrefix++++man+manualpages/Tao/TaoAppendOptionsPrefix.html#TaoAppendOptionsPrefix
man:+TaoGetOptionsPrefix++TaoGetOptionsPrefix++++man+manualpages/Tao/TaoGetOptionsPrefix.html#TaoGetOptionsPrefix
man:+TaoSetType++TaoSetType++++man+manualpages/Tao/TaoSetType.html#TaoSetType
man:+TaoRegister++TaoRegister++++man+manualpages/Tao/TaoRegister.html#TaoRegister
man:+TaoRegisterDestroy++TaoRegisterDestroy++++man+manualpages/Tao/TaoRegisterDestroy.html#TaoRegisterDestroy
man:+TaoGetIterationNumber++TaoGetIterationNumber++++man+manualpages/Tao/TaoGetIterationNumber.html#TaoGetIterationNumber
man:+TaoSetIterationNumber++TaoSetIterationNumber++++man+manualpages/Tao/TaoSetIterationNumber.html#TaoSetIterationNumber
man:+TaoGetTotalIterationNumber++TaoGetTotalIterationNumber++++man+manualpages/Tao/TaoGetTotalIterationNumber.html#TaoGetTotalIterationNumber
man:+TaoSetTotalIterationNumber++TaoSetTotalIterationNumber++++man+manualpages/Tao/TaoSetTotalIterationNumber.html#TaoSetTotalIterationNumber
man:+TaoSetConvergedReason++TaoSetConvergedReason++++man+manualpages/Tao/TaoSetConvergedReason.html#TaoSetConvergedReason
man:+TaoGetConvergedReason++TaoGetConvergedReason++++man+manualpages/Tao/TaoGetConvergedReason.html#TaoGetConvergedReason
man:+TaoGetSolutionStatus++TaoGetSolutionStatus++++man+manualpages/Tao/TaoGetSolutionStatus.html#TaoGetSolutionStatus
man:+TaoGetType++TaoGetType++++man+manualpages/Tao/TaoGetType.html#TaoGetType
man:+TaoMonitor++TaoMonitor++++man+manualpages/Tao/TaoMonitor.html#TaoMonitor
man:+TaoSetConvergenceHistory++TaoSetConvergenceHistory++++man+manualpages/Tao/TaoSetConvergenceHistory.html#TaoSetConvergenceHistory
man:+TaoGetConvergenceHistory++TaoGetConvergenceHistory++++man+manualpages/Tao/TaoGetConvergenceHistory.html#TaoGetConvergenceHistory
man:+TaoSetApplicationContext++TaoSetApplicationContext++++man+manualpages/Tao/TaoSetApplicationContext.html#TaoSetApplicationContext
man:+TaoGetApplicationContext++TaoGetApplicationContext++++man+manualpages/Tao/TaoGetApplicationContext.html#TaoGetApplicationContext
man:+TaoSetGradientNorm++TaoSetGradientNorm++++man+manualpages/Tao/TaoSetGradientNorm.html#TaoSetGradientNorm
man:+TaoGetGradientNorm++TaoGetGradientNorm++++man+manualpages/Tao/TaoGetGradientNorm.html#TaoGetGradientNorm
man:+TaoSetInitialVector++TaoSetInitialVector++++man+manualpages/Tao/TaoSetInitialVector.html#TaoSetInitialVector
man:+TaoComputeGradient++TaoComputeGradient++++man+manualpages/Tao/TaoComputeGradient.html#TaoComputeGradient
man:+TaoComputeObjective++TaoComputeObjective++++man+manualpages/Tao/TaoComputeObjective.html#TaoComputeObjective
man:+TaoComputeObjectiveAndGradient++TaoComputeObjectiveAndGradient++++man+manualpages/Tao/TaoComputeObjectiveAndGradient.html#TaoComputeObjectiveAndGradient
man:+TaoSetObjectiveRoutine++TaoSetObjectiveRoutine++++man+manualpages/Tao/TaoSetObjectiveRoutine.html#TaoSetObjectiveRoutine
man:+TaoSetSeparableObjectiveRoutine++TaoSetSeparableObjectiveRoutine++++man+manualpages/Tao/TaoSetSeparableObjectiveRoutine.html#TaoSetSeparableObjectiveRoutine
man:+TaoSetSeparableObjectiveWeights++TaoSetSeparableObjectiveWeights++++man+manualpages/Tao/TaoSetSeparableObjectiveWeights.html#TaoSetSeparableObjectiveWeights
man:+TaoComputeSeparableObjective++TaoComputeSeparableObjective++++man+manualpages/Tao/TaoComputeSeparableObjective.html#TaoComputeSeparableObjective
man:+TaoSetGradientRoutine++TaoSetGradientRoutine++++man+manualpages/Tao/TaoSetGradientRoutine.html#TaoSetGradientRoutine
man:+TaoSetObjectiveAndGradientRoutine++TaoSetObjectiveAndGradientRoutine++++man+manualpages/Tao/TaoSetObjectiveAndGradientRoutine.html#TaoSetObjectiveAndGradientRoutine
man:+TaoIsObjectiveDefined++TaoIsObjectiveDefined++++man+manualpages/Tao/TaoIsObjectiveDefined.html#TaoIsObjectiveDefined
man:+TaoIsGradientDefined++TaoIsGradientDefined++++man+manualpages/Tao/TaoIsGradientDefined.html#TaoIsGradientDefined
man:+TaoIsObjectiveAndGradientDefined++TaoIsObjectiveAndGradientDefined++++man+manualpages/Tao/TaoIsObjectiveAndGradientDefined.html#TaoIsObjectiveAndGradientDefined
man:+TaoRegisterAll++TaoRegisterAll++++man+manualpages/Tao/TaoRegisterAll.html#TaoRegisterAll
man:+TaoSetHessianRoutine++TaoSetHessianRoutine++++man+manualpages/Tao/TaoSetHessianRoutine.html#TaoSetHessianRoutine
man:+TaoComputeHessian++TaoComputeHessian++++man+manualpages/Tao/TaoComputeHessian.html#TaoComputeHessian
man:+TaoComputeJacobian++TaoComputeJacobian++++man+manualpages/Tao/TaoComputeJacobian.html#TaoComputeJacobian
man:+TaoComputeJacobianState++TaoComputeJacobianState++++man+manualpages/Tao/TaoComputeJacobianState.html#TaoComputeJacobianState
man:+TaoComputeJacobianDesign++TaoComputeJacobianDesign++++man+manualpages/Tao/TaoComputeJacobianDesign.html#TaoComputeJacobianDesign
man:+TaoSetJacobianRoutine++TaoSetJacobianRoutine++++man+manualpages/Tao/TaoSetJacobianRoutine.html#TaoSetJacobianRoutine
man:+TaoSetJacobianStateRoutine++TaoSetJacobianStateRoutine++++man+manualpages/Tao/TaoSetJacobianStateRoutine.html#TaoSetJacobianStateRoutine
man:+TaoSetJacobianDesignRoutine++TaoSetJacobianDesignRoutine++++man+manualpages/Tao/TaoSetJacobianDesignRoutine.html#TaoSetJacobianDesignRoutine
man:+TaoSetStateDesignIS++TaoSetStateDesignIS++++man+manualpages/Tao/TaoSetStateDesignIS.html#TaoSetStateDesignIS
man:+TaoComputeJacobianEquality++TaoComputeJacobianEquality++++man+manualpages/Tao/TaoComputeJacobianEquality.html#TaoComputeJacobianEquality
man:+TaoComputeJacobianInequality++TaoComputeJacobianInequality++++man+manualpages/Tao/TaoComputeJacobianInequality.html#TaoComputeJacobianInequality
man:+TaoSetJacobianEqualityRoutine++TaoSetJacobianEqualityRoutine++++man+manualpages/Tao/TaoSetJacobianEqualityRoutine.html#TaoSetJacobianEqualityRoutine
man:+TaoSetJacobianInequalityRoutine++TaoSetJacobianInequalityRoutine++++man+manualpages/Tao/TaoSetJacobianInequalityRoutine.html#TaoSetJacobianInequalityRoutine
man:+TaoSetVariableBounds++TaoSetVariableBounds++++man+manualpages/Tao/TaoSetVariableBounds.html#TaoSetVariableBounds
man:+TaoSetVariableBoundsRoutine++TaoSetVariableBoundsRoutine++++man+manualpages/Tao/TaoSetVariableBoundsRoutine.html#TaoSetVariableBoundsRoutine
man:+TaoComputeVariableBounds++TaoComputeVariableBounds++++man+manualpages/Tao/TaoComputeVariableBounds.html#TaoComputeVariableBounds
man:+TaoSetInequalityBounds++TaoSetInequalityBounds++++man+manualpages/Tao/TaoSetInequalityBounds.html#TaoSetInequalityBounds
man:+TaoComputeConstraints++TaoComputeConstraints++++man+manualpages/Tao/TaoComputeConstraints.html#TaoComputeConstraints
man:+TaoSetConstraintsRoutine++TaoSetConstraintsRoutine++++man+manualpages/Tao/TaoSetConstraintsRoutine.html#TaoSetConstraintsRoutine
man:+TaoComputeDualVariables++TaoComputeDualVariables++++man+manualpages/Tao/TaoComputeDualVariables.html#TaoComputeDualVariables
man:+TaoGetDualVariables++TaoGetDualVariables++++man+manualpages/Tao/TaoGetDualVariables.html#TaoGetDualVariables
man:+TaoSetEqualityConstraintsRoutine++TaoSetEqualityConstraintsRoutine++++man+manualpages/Tao/TaoSetEqualityConstraintsRoutine.html#TaoSetEqualityConstraintsRoutine
man:+TaoSetInequalityConstraintsRoutine++TaoSetInequalityConstraintsRoutine++++man+manualpages/Tao/TaoSetInequalityConstraintsRoutine.html#TaoSetInequalityConstraintsRoutine
man:+TaoComputeEqualityConstraints++TaoComputeEqualityConstraints++++man+manualpages/Tao/TaoComputeEqualityConstraints.html#TaoComputeEqualityConstraints
man:+TaoComputeInequalityConstraints++TaoComputeInequalityConstraints++++man+manualpages/Tao/TaoComputeInequalityConstraints.html#TaoComputeInequalityConstraints
man:+TaoFinalizePackage++TaoFinalizePackage++++man+manualpages/Tao/TaoFinalizePackage.html#TaoFinalizePackage
man:+TaoInitializePackage++TaoInitializePackage++++man+manualpages/Tao/TaoInitializePackage.html#TaoInitializePackage
man:+TaoDefaultComputeGradient++TaoDefaultComputeGradient++++man+manualpages/Tao/TaoDefaultComputeGradient.html#TaoDefaultComputeGradient
man:+TaoDefaultComputeHessian++TaoDefaultComputeHessian++++man+manualpages/Tao/TaoDefaultComputeHessian.html#TaoDefaultComputeHessian
man:+TaoDefaultComputeHessianColor++TaoDefaultComputeHessianColor++++man+manualpages/Tao/TaoDefaultComputeHessianColor.html#TaoDefaultComputeHessianColor
man:+VecFischer++VecFischer++++man+manualpages/Tao/VecFischer.html#VecFischer
man:+VecSFischer++VecSFischer++++man+manualpages/Tao/VecSFischer.html#VecSFischer
man:+MatDFischer++MatDFischer++++man+manualpages/Tao/MatDFischer.html#MatDFischer
man:+MatDSFischer++MatDSFischer++++man+manualpages/Tao/MatDSFischer.html#MatDSFischer
man:+TAOLMVM++TAOLMVM++++man+manualpages/Tao/TAOLMVM.html#TAOLMVM
man:+TAONLS++TAONLS++++man+manualpages/Tao/TAONLS.html#TAONLS
man:+TAONM++TAONM++++man+manualpages/Tao/TAONM.html#TAONM
man:+TAOCG++TAOCG++++man+manualpages/Tao/TAOCG.html#TAOCG
man:+TAONTR++TAONTR++++man+manualpages/Tao/TAONTR.html#TAONTR
man:+TAONTR++TAONTR++++man+manualpages/Tao/TAONTR.html#TAONTR
man:+TAOOWLQN++TAOOWLQN++++man+manualpages/Tao/TAOOWLQN.html#TAOOWLQN
man:+TAOBMRM++TAOBMRM++++man+manualpages/Tao/TAOBMRM.html#TAOBMRM
man:+TAOIPM++TAOIPM++++man+manualpages/Tao/TAOIPM.html#TAOIPM
man:+TAOBLMVM++TAOBLMVM++++man+manualpages/Tao/TAOBLMVM.html#TAOBLMVM
man:+TAOGPCG++TAOGPCG++++man+manualpages/Tao/TAOGPCG.html#TAOGPCG
man:+TAOBQPIP++TAOBQPIP++++man+manualpages/Tao/TAOBQPIP.html#TAOBQPIP
man:+TAOTRON++TAOTRON++++man+manualpages/Tao/TAOTRON.html#TAOTRON
man:+TAOSSILS++TAOSSILS++++man+manualpages/Tao/TAOSSILS.html#TAOSSILS
man:+TAOSSFLS++TAOSSFLS++++man+manualpages/Tao/TAOSSFLS.html#TAOSSFLS
man:+TAOASILS++TAOASILS++++man+manualpages/Tao/TAOASILS.html#TAOASILS
man:+TAOASFLS++TAOASFLS++++man+manualpages/Tao/TAOASFLS.html#TAOASFLS
man:+TaoLineSearchView++TaoLineSearchView++++man+manualpages/TaoLineSearch/TaoLineSearchView.html#TaoLineSearchView
man:+TaoLineSearchCreate++TaoLineSearchCreate++++man+manualpages/TaoLineSearch/TaoLineSearchCreate.html#TaoLineSearchCreate
man:+TaoLineSearchSetUp++TaoLineSearchSetUp++++man+manualpages/TaoLineSearch/TaoLineSearchSetUp.html#TaoLineSearchSetUp
man:+TaoLineSearchReset++TaoLineSearchReset++++man+manualpages/TaoLineSearch/TaoLineSearchReset.html#TaoLineSearchReset
man:+TaoLineSearchDestroy++TaoLineSearchDestroy++++man+manualpages/TaoLineSearch/TaoLineSearchDestroy.html#TaoLineSearchDestroy
man:+TaoLineSearchApply++TaoLineSearchApply++++man+manualpages/TaoLineSearch/TaoLineSearchApply.html#TaoLineSearchApply
man:+TaoLineSearchSetType++TaoLineSearchSetType++++man+manualpages/TaoLineSearch/TaoLineSearchSetType.html#TaoLineSearchSetType
man:+TaoLineSearchSetFromOptions++TaoLineSearchSetFromOptions++++man+manualpages/TaoLineSearch/TaoLineSearchSetFromOptions.html#TaoLineSearchSetFromOptions
man:+TaoLineSearchGetType++TaoLineSearchGetType++++man+manualpages/TaoLineSearch/TaoLineSearchGetType.html#TaoLineSearchGetType
man:+TaoLineSearchGetNumberFunctionEvaluations++TaoLineSearchGetNumberFunctionEvaluations++++man+manualpages/TaoLineSearch/TaoLineSearchGetNumberFunctionEvaluations.html#TaoLineSearchGetNumberFunctionEvaluations
man:+TaoLineSearchIsUsingTaoRoutines++TaoLineSearchIsUsingTaoRoutines++++man+manualpages/TaoLineSearch/TaoLineSearchIsUsingTaoRoutines.html#TaoLineSearchIsUsingTaoRoutines
man:+TaoLineSearchSetObjectiveRoutine++TaoLineSearchSetObjectiveRoutine++++man+manualpages/TaoLineSearch/TaoLineSearchSetObjectiveRoutine.html#TaoLineSearchSetObjectiveRoutine
man:+TaoLineSearchSetGradientRoutine++TaoLineSearchSetGradientRoutine++++man+manualpages/TaoLineSearch/TaoLineSearchSetGradientRoutine.html#TaoLineSearchSetGradientRoutine
man:+TaoLineSearchSetObjectiveAndGradientRoutine++TaoLineSearchSetObjectiveAndGradientRoutine++++man+manualpages/TaoLineSearch/TaoLineSearchSetObjectiveAndGradientRoutine.html#TaoLineSearchSetObjectiveAndGradientRoutine
man:+TaoLineSearchSetObjectiveAndGTSRoutine++TaoLineSearchSetObjectiveAndGTSRoutine++++man+manualpages/TaoLineSearch/TaoLineSearchSetObjectiveAndGTSRoutine.html#TaoLineSearchSetObjectiveAndGTSRoutine
man:+TaoLineSearchUseTaoRoutines++TaoLineSearchUseTaoRoutines++++man+manualpages/TaoLineSearch/TaoLineSearchUseTaoRoutines.html#TaoLineSearchUseTaoRoutines
man:+TaoLineSearchComputeObjective++TaoLineSearchComputeObjective++++man+manualpages/TaoLineSearch/TaoLineSearchComputeObjective.html#TaoLineSearchComputeObjective
man:+TaoLineSearchComputeObjectiveAndGradient++TaoLineSearchComputeObjectiveAndGradient++++man+manualpages/TaoLineSearch/TaoLineSearchComputeObjectiveAndGradient.html#TaoLineSearchComputeObjectiveAndGradient
man:+TaoLineSearchComputeGradient++TaoLineSearchComputeGradient++++man+manualpages/TaoLineSearch/TaoLineSearchComputeGradient.html#TaoLineSearchComputeGradient
man:+TaoLineSearchComputeObjectiveAndGTS++TaoLineSearchComputeObjectiveAndGTS++++man+manualpages/TaoLineSearch/TaoLineSearchComputeObjectiveAndGTS.html#TaoLineSearchComputeObjectiveAndGTS
man:+TaoLineSearchGetSolution++TaoLineSearchGetSolution++++man+manualpages/TaoLineSearch/TaoLineSearchGetSolution.html#TaoLineSearchGetSolution
man:+TaoLineSearchGetStartingVector++TaoLineSearchGetStartingVector++++man+manualpages/TaoLineSearch/TaoLineSearchGetStartingVector.html#TaoLineSearchGetStartingVector
man:+TaoLineSearchGetStepDirection++TaoLineSearchGetStepDirection++++man+manualpages/TaoLineSearch/TaoLineSearchGetStepDirection.html#TaoLineSearchGetStepDirection
man:+TaoLineSearchGetFullStepObjective++TaoLineSearchGetFullStepObjective++++man+manualpages/TaoLineSearch/TaoLineSearchGetFullStepObjective.html#TaoLineSearchGetFullStepObjective
man:+TaoLineSearchSetVariableBounds++TaoLineSearchSetVariableBounds++++man+manualpages/TaoLineSearch/TaoLineSearchSetVariableBounds.html#TaoLineSearchSetVariableBounds
man:+TaoLineSearchSetInitialStepLength++TaoLineSearchSetInitialStepLength++++man+manualpages/TaoLineSearch/TaoLineSearchSetInitialStepLength.html#TaoLineSearchSetInitialStepLength
man:+TaoLineSearchGetStepLength++TaoLineSearchGetStepLength++++man+manualpages/TaoLineSearch/TaoLineSearchGetStepLength.html#TaoLineSearchGetStepLength
man:+TaoLineSearchRegister++TaoLineSearchRegister++++man+manualpages/TaoLineSearch/TaoLineSearchRegister.html#TaoLineSearchRegister
man:+TaoLineSearchRegisterDestroy++TaoLineSearchRegisterDestroy++++man+manualpages/TaoLineSearch/TaoLineSearchRegisterDestroy.html#TaoLineSearchRegisterDestroy
man:+TaoLineSearchAppendOptionsPrefix++TaoLineSearchAppendOptionsPrefix++++man+manualpages/TaoLineSearch/TaoLineSearchAppendOptionsPrefix.html#TaoLineSearchAppendOptionsPrefix
man:+TaoLineSearchGetOptionsPrefix++TaoLineSearchGetOptionsPrefix++++man+manualpages/TaoLineSearch/TaoLineSearchGetOptionsPrefix.html#TaoLineSearchGetOptionsPrefix
man:+TaoLineSearchSetOptionsPrefix++TaoLineSearchSetOptionsPrefix++++man+manualpages/TaoLineSearch/TaoLineSearchSetOptionsPrefix.html#TaoLineSearchSetOptionsPrefix
man:+TaoLineSearchFinalizePackage++TaoLineSearchFinalizePackage++++man+manualpages/TaoLineSearch/TaoLineSearchFinalizePackage.html#TaoLineSearchFinalizePackage
man:+TaoLineSearchInitializePackage++TaoLineSearchInitializePackage++++man+manualpages/TaoLineSearch/TaoLineSearchInitializePackage.html#TaoLineSearchInitializePackage
man:+MatCreateLMVM++MatCreateLMVM++++man+manualpages/Tao/MatCreateLMVM.html#MatCreateLMVM
man:+MatCreateADA++MatCreateADA++++man+manualpages/Tao/MatCreateADA.html#MatCreateADA
man:+MatCreateSubMatrixFree++MatCreateSubMatrixFree++++man+manualpages/Tao/MatCreateSubMatrixFree.html#MatCreateSubMatrixFree
man:+TAOPOUNDERS++TAOPOUNDERS++++man+manualpages/Tao/TAOPOUNDERS.html#TAOPOUNDERS
man:+TAOLCL++TAOLCL++++man+manualpages/Tao/TAOLCL.html#TAOLCL
man:+PetscErrorCode++PetscErrorCode++++man+manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PetscClassId++PetscClassId++++man+manualpages/Sys/PetscClassId.html#PetscClassId
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:+PetscBLASInt++PetscBLASInt++++man+manualpages/Sys/PetscBLASInt.html#PetscBLASInt
man:+PetscPrecision++PetscPrecision++++man+manualpages/Sys/PetscPrecision.html#PetscPrecision
man:+PetscUnlikely++PetscUnlikely++++man+manualpages/Sys/PetscUnlikely.html#PetscUnlikely
man:+PetscLikely++PetscLikely++++man+manualpages/Sys/PetscLikely.html#PetscLikely
man:+PetscBool++PetscBool++++man+manualpages/Sys/PetscBool.html#PetscBool
man:+PetscCopyMode++PetscCopyMode++++man+manualpages/Sys/PetscCopyMode.html#PetscCopyMode
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_NULL++PETSC_NULL++++man+manualpages/Sys/PETSC_NULL.html#PETSC_NULL
man:+PETSC_IGNORE++PETSC_IGNORE++++man+manualpages/Sys/PETSC_IGNORE.html#PETSC_IGNORE
man:+PETSC_DECIDE++PETSC_DECIDE++++man+manualpages/Sys/PETSC_DECIDE.html#PETSC_DECIDE
man:+PETSC_DETERMINE++PETSC_DETERMINE++++man+manualpages/Sys/PETSC_DETERMINE.html#PETSC_DETERMINE
man:+PETSC_DEFAULT++PETSC_DEFAULT++++man+manualpages/Sys/PETSC_DEFAULT.html#PETSC_DEFAULT
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:+PetscAddrAlign++PetscAddrAlign++++man+manualpages/Sys/PetscAddrAlign.html#PetscAddrAlign
man:+PetscMalloc1++PetscMalloc1++++man+manualpages/Sys/PetscMalloc1.html#PetscMalloc1
man:+PetscCalloc1++PetscCalloc1++++man+manualpages/Sys/PetscCalloc1.html#PetscCalloc1
man:+PetscMalloc2++PetscMalloc2++++man+manualpages/Sys/PetscMalloc2.html#PetscMalloc2
man:+PetscCalloc2++PetscCalloc2++++man+manualpages/Sys/PetscCalloc2.html#PetscCalloc2
man:+PetscMalloc3++PetscMalloc3++++man+manualpages/Sys/PetscMalloc3.html#PetscMalloc3
man:+PetscCalloc3++PetscCalloc3++++man+manualpages/Sys/PetscCalloc3.html#PetscCalloc3
man:+PetscMalloc4++PetscMalloc4++++man+manualpages/Sys/PetscMalloc4.html#PetscMalloc4
man:+PetscCalloc4++PetscCalloc4++++man+manualpages/Sys/PetscCalloc4.html#PetscCalloc4
man:+PetscMalloc5++PetscMalloc5++++man+manualpages/Sys/PetscMalloc5.html#PetscMalloc5
man:+PetscCalloc5++PetscCalloc5++++man+manualpages/Sys/PetscCalloc5.html#PetscCalloc5
man:+PetscMalloc6++PetscMalloc6++++man+manualpages/Sys/PetscMalloc6.html#PetscMalloc6
man:+PetscCalloc6++PetscCalloc6++++man+manualpages/Sys/PetscCalloc6.html#PetscCalloc6
man:+PetscMalloc7++PetscMalloc7++++man+manualpages/Sys/PetscMalloc7.html#PetscMalloc7
man:+PetscCalloc7++PetscCalloc7++++man+manualpages/Sys/PetscCalloc7.html#PetscCalloc7
man:+PetscNew++PetscNew++++man+manualpages/Sys/PetscNew.html#PetscNew
man:+PetscNewLog++PetscNewLog++++man+manualpages/Sys/PetscNewLog.html#PetscNewLog
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:+PetscObjectId++PetscObjectId++++man+manualpages/Sys/PetscObjectId.html#PetscObjectId
man:+PetscObjectState++PetscObjectState++++man+manualpages/Sys/PetscObjectState.html#PetscObjectState
man:+PetscFunctionList++PetscFunctionList++++man+manualpages/Sys/PetscFunctionList.html#PetscFunctionList
man:+PetscFileMode++PetscFileMode++++man+manualpages/Sys/PetscFileMode.html#PetscFileMode
man:+PetscObjectList++PetscObjectList++++man+manualpages/Sys/PetscObjectList.html#PetscObjectList
man:+PetscDLLibrary++PetscDLLibrary++++man+manualpages/Sys/PetscDLLibrary.html#PetscDLLibrary
man:+PetscHelpPrintf++PetscHelpPrintf++++man+manualpages/Sys/PetscHelpPrintf.html#PetscHelpPrintf
man:+PetscContainer++PetscContainer++++man+manualpages/Sys/PetscContainer.html#PetscContainer
man:+PetscMemcpy++PetscMemcpy++++man+manualpages/Sys/PetscMemcpy.html#PetscMemcpy
man:+PetscMemzero++PetscMemzero++++man+manualpages/Sys/PetscMemzero.html#PetscMemzero
man:+PetscPrefetchBlock++PetscPrefetchBlock++++man+manualpages/Sys/PetscPrefetchBlock.html#PetscPrefetchBlock
man:+MPI_Comm++MPI_Comm++++man+manualpages/Sys/MPI_Comm.html#MPI_Comm
man:+PetscScalar++PetscScalar++++man+manualpages/Sys/PetscScalar.html#PetscScalar
man:+PetscComplex++PetscComplex++++man+manualpages/Sys/PetscComplex.html#PetscComplex
man:+PetscReal++PetscReal++++man+manualpages/Sys/PetscReal.html#PetscReal
man:+MPIU_SCALAR++MPIU_SCALAR++++man+manualpages/Sys/MPIU_SCALAR.html#MPIU_SCALAR
man:+PetscBLASIntCast++PetscBLASIntCast++++man+manualpages/Sys/PetscBLASIntCast.html#PetscBLASIntCast
man:+PetscMPIIntCast++PetscMPIIntCast++++man+manualpages/Sys/PetscMPIIntCast.html#PetscMPIIntCast
man:+PetscRealIntMultTruncate++PetscRealIntMultTruncate++++man+manualpages/Sys/PetscRealIntMultTruncate.html#PetscRealIntMultTruncate
man:+PetscIntMultTruncate++PetscIntMultTruncate++++man+manualpages/Sys/PetscIntMultTruncate.html#PetscIntMultTruncate
man:+PetscIntSumTruncate++PetscIntSumTruncate++++man+manualpages/Sys/PetscIntSumTruncate.html#PetscIntSumTruncate
man:+PetscIntMultError++PetscIntMultError++++man+manualpages/Sys/PetscIntMultError.html#PetscIntMultError
man:+PetscIntSumError++PetscIntSumError++++man+manualpages/Sys/PetscIntSumError.html#PetscIntSumError
man:+UsingFortran++UsingFortran++++man+manualpages/Sys/UsingFortran.html#UsingFortran
man:+PetscRandomType++PetscRandomType++++man+manualpages/Sys/PetscRandomType.html#PetscRandomType
man:+PetscRandom++PetscRandom++++man+manualpages/Sys/PetscRandom.html#PetscRandom
man:+PetscBinarySeekType++PetscBinarySeekType++++man+manualpages/Sys/PetscBinarySeekType.html#PetscBinarySeekType
man:+PetscBuildTwoSidedType++PetscBuildTwoSidedType++++man+manualpages/Sys/PetscBuildTwoSidedType.html#PetscBuildTwoSidedType
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:+PetscSubcomm++PetscSubcomm++++man+manualpages/Sys/PetscSubcomm.html#PetscSubcomm
man:+PetscSegBuffer++PetscSegBuffer++++man+manualpages/Sys/PetscSegBuffer.html#PetscSegBuffer
man:+PetscCitationsRegister++PetscCitationsRegister++++man+manualpages/Sys/PetscCitationsRegister.html#PetscCitationsRegister
man:+PetscMin++PetscMin++++man+manualpages/Sys/PetscMin.html#PetscMin
man:+PetscMax++PetscMax++++man+manualpages/Sys/PetscMax.html#PetscMax
man:+PetscClipInterval++PetscClipInterval++++man+manualpages/Sys/PetscClipInterval.html#PetscClipInterval
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:+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:+PetscBT++PetscBT++++man+manualpages/Sys/PetscBT.html#PetscBT
man:+PetscHeaderCreate++PetscHeaderCreate++++man+manualpages/Sys/PetscHeaderCreate.html#PetscHeaderCreate
man:+PetscHeaderDestroy++PetscHeaderDestroy++++man+manualpages/Sys/PetscHeaderDestroy.html#PetscHeaderDestroy
man:+PetscObjectStateIncrease++PetscObjectStateIncrease++++man+manualpages/Sys/PetscObjectStateIncrease.html#PetscObjectStateIncrease
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:+PetscObjectComposedDataSetScalar++PetscObjectComposedDataSetScalar++++man+manualpages/Sys/PetscObjectComposedDataSetScalar.html#PetscObjectComposedDataSetScalar
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:+PetscCUSPFlag++PetscCUSPFlag++++man+manualpages/Sys/PetscCUSPFlag.html#PetscCUSPFlag
man:+PetscViennaCLFlag++PetscViennaCLFlag++++man+manualpages/Sys/PetscViennaCLFlag.html#PetscViennaCLFlag
man:+PetscCUDAFlag++PetscCUDAFlag++++man+manualpages/Sys/PetscCUDAFlag.html#PetscCUDAFlag
man:+MPI_Attr_delete++MPI_Attr_delete++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Attr_delete.html#MPI_Attr_delete
man:+MPI_Attr_get++MPI_Attr_get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Attr_get.html#MPI_Attr_get
man:+MPI_Attr_put++MPI_Attr_put++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Attr_put.html#MPI_Attr_put
man:+MPI_Comm_create_keyval++MPI_Comm_create_keyval++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_create_keyval.html#MPI_Comm_create_keyval
man:+MPI_Comm_delete_attr++MPI_Comm_delete_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_delete_attr.html#MPI_Comm_delete_attr
man:+MPI_Comm_free_keyval++MPI_Comm_free_keyval++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_free_keyval.html#MPI_Comm_free_keyval
man:+MPI_Comm_get_attr++MPI_Comm_get_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_get_attr.html#MPI_Comm_get_attr
man:+MPI_Comm_set_attr++MPI_Comm_set_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_set_attr.html#MPI_Comm_set_attr
man:+MPI_Keyval_create++MPI_Keyval_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Keyval_create.html#MPI_Keyval_create
man:+MPI_Keyval_free++MPI_Keyval_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Keyval_free.html#MPI_Keyval_free
man:+MPI_Type_create_keyval++MPI_Type_create_keyval++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_keyval.html#MPI_Type_create_keyval
man:+MPI_Type_delete_attr++MPI_Type_delete_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_delete_attr.html#MPI_Type_delete_attr
man:+MPI_Type_free_keyval++MPI_Type_free_keyval++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_free_keyval.html#MPI_Type_free_keyval
man:+MPI_Type_get_attr++MPI_Type_get_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_attr.html#MPI_Type_get_attr
man:+MPI_Type_set_attr++MPI_Type_set_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_set_attr.html#MPI_Type_set_attr
man:+MPI_Win_create_keyval++MPI_Win_create_keyval++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_create_keyval.html#MPI_Win_create_keyval
man:+MPI_Win_delete_attr++MPI_Win_delete_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_delete_attr.html#MPI_Win_delete_attr
man:+MPI_Win_free_keyval++MPI_Win_free_keyval++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_free_keyval.html#MPI_Win_free_keyval
man:+MPI_Win_get_attr++MPI_Win_get_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_get_attr.html#MPI_Win_get_attr
man:+MPI_Win_set_attr++MPI_Win_set_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_set_attr.html#MPI_Win_set_attr
man:+MPI_Allreduce++MPI_Allreduce++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Allreduce.html#MPI_Allreduce
man:+MPI_Barrier++MPI_Barrier++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Barrier.html#MPI_Barrier
man:+MPI_Op_create++MPI_Op_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Op_create.html#MPI_Op_create
man:+MPI_Op_free++MPI_Op_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Op_free.html#MPI_Op_free
man:+MPI_Bcast++MPI_Bcast++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Bcast.html#MPI_Bcast
man:+MPI_Alltoall++MPI_Alltoall++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Alltoall.html#MPI_Alltoall
man:+MPI_Alltoallv++MPI_Alltoallv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Alltoallv.html#MPI_Alltoallv
man:+MPI_Reduce++MPI_Reduce++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Reduce.html#MPI_Reduce
man:+MPI_Scatter++MPI_Scatter++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Scatter.html#MPI_Scatter
man:+MPI_Gather++MPI_Gather++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Gather.html#MPI_Gather
man:+MPI_Scatterv++MPI_Scatterv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Scatterv.html#MPI_Scatterv
man:+MPI_Gatherv++MPI_Gatherv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Gatherv.html#MPI_Gatherv
man:+MPI_Scan++MPI_Scan++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Scan.html#MPI_Scan
man:+MPI_Exscan++MPI_Exscan++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Exscan.html#MPI_Exscan
man:+MPI_Allgather++MPI_Allgather++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Allgather.html#MPI_Allgather
man:+MPI_Allgatherv++MPI_Allgatherv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Allgatherv.html#MPI_Allgatherv
man:+MPI_Reduce_scatter++MPI_Reduce_scatter++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Reduce_scatter.html#MPI_Reduce_scatter
man:+MPI_Alltoallw++MPI_Alltoallw++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Alltoallw.html#MPI_Alltoallw
man:+MPI_Reduce_local++MPI_Reduce_local++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Reduce_local.html#MPI_Reduce_local
man:+MPI_Op_commute++MPI_Op_commute++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Op_commute.html#MPI_Op_commute
man:+MPI_Reduce_scatter_block++MPI_Reduce_scatter_block++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Reduce_scatter_block.html#MPI_Reduce_scatter_block
man:+MPI_Iallgather++MPI_Iallgather++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iallgather.html#MPI_Iallgather
man:+MPI_Iallgatherv++MPI_Iallgatherv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iallgatherv.html#MPI_Iallgatherv
man:+MPI_Iallreduce++MPI_Iallreduce++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iallreduce.html#MPI_Iallreduce
man:+MPI_Ialltoall++MPI_Ialltoall++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ialltoall.html#MPI_Ialltoall
man:+MPI_Ialltoallv++MPI_Ialltoallv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ialltoallv.html#MPI_Ialltoallv
man:+MPI_Ialltoallw++MPI_Ialltoallw++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ialltoallw.html#MPI_Ialltoallw
man:+MPI_Ibarrier++MPI_Ibarrier++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ibarrier.html#MPI_Ibarrier
man:+MPI_Ibcast++MPI_Ibcast++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ibcast.html#MPI_Ibcast
man:+MPI_Iexscan++MPI_Iexscan++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iexscan.html#MPI_Iexscan
man:+MPI_Igather++MPI_Igather++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Igather.html#MPI_Igather
man:+MPI_Igatherv++MPI_Igatherv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Igatherv.html#MPI_Igatherv
man:+MPI_Ireduce_scatter++MPI_Ireduce_scatter++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ireduce_scatter.html#MPI_Ireduce_scatter
man:+MPI_Ireduce_scatter_block++MPI_Ireduce_scatter_block++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ireduce_scatter_block.html#MPI_Ireduce_scatter_block
man:+MPI_Ireduce++MPI_Ireduce++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ireduce.html#MPI_Ireduce
man:+MPI_Iscan++MPI_Iscan++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iscan.html#MPI_Iscan
man:+MPI_Iscatter++MPI_Iscatter++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iscatter.html#MPI_Iscatter
man:+MPI_Iscatterv++MPI_Iscatterv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iscatterv.html#MPI_Iscatterv
man:+MPI_Comm_compare++MPI_Comm_compare++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_compare.html#MPI_Comm_compare
man:+MPI_Comm_create++MPI_Comm_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_create.html#MPI_Comm_create
man:+MPI_Comm_create_group++MPI_Comm_create_group++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_create_group.html#MPI_Comm_create_group
man:+MPI_Comm_dup++MPI_Comm_dup++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_dup.html#MPI_Comm_dup
man:+MPI_Comm_dup_with_info++MPI_Comm_dup_with_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_dup_with_info.html#MPI_Comm_dup_with_info
man:+MPI_Comm_free++MPI_Comm_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_free.html#MPI_Comm_free
man:+MPI_Comm_get_name++MPI_Comm_get_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_get_name.html#MPI_Comm_get_name
man:+MPI_Comm_get_info++MPI_Comm_get_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_get_info.html#MPI_Comm_get_info
man:+MPI_Comm_set_info++MPI_Comm_set_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_set_info.html#MPI_Comm_set_info
man:+MPI_Comm_group++MPI_Comm_group++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_group.html#MPI_Comm_group
man:+MPI_Comm_idup++MPI_Comm_idup++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_idup.html#MPI_Comm_idup
man:+MPI_Comm_rank++MPI_Comm_rank++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_rank.html#MPI_Comm_rank
man:+MPI_Comm_size++MPI_Comm_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_size.html#MPI_Comm_size
man:+MPI_Comm_remote_group++MPI_Comm_remote_group++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_remote_group.html#MPI_Comm_remote_group
man:+MPI_Comm_remote_size++MPI_Comm_remote_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_remote_size.html#MPI_Comm_remote_size
man:+MPI_Comm_set_name++MPI_Comm_set_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_set_name.html#MPI_Comm_set_name
man:+MPI_Comm_split++MPI_Comm_split++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_split.html#MPI_Comm_split
man:+MPI_Comm_test_inter++MPI_Comm_test_inter++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_test_inter.html#MPI_Comm_test_inter
man:+MPI_Intercomm_create++MPI_Intercomm_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Intercomm_create.html#MPI_Intercomm_create
man:+MPI_Intercomm_merge++MPI_Intercomm_merge++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Intercomm_merge.html#MPI_Intercomm_merge
man:+MPI_Comm_split_type++MPI_Comm_split_type++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_split_type.html#MPI_Comm_split_type
man:+MPIX_Comm_failure_ack++MPIX_Comm_failure_ack++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_Comm_failure_ack.html#MPIX_Comm_failure_ack
man:+MPIX_Comm_failure_get_acked++MPIX_Comm_failure_get_acked++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_Comm_failure_get_acked.html#MPIX_Comm_failure_get_acked
man:+MPIX_Comm_revoke++MPIX_Comm_revoke++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_Comm_revoke.html#MPIX_Comm_revoke
man:+MPIX_Comm_shrink++MPIX_Comm_shrink++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_Comm_shrink.html#MPIX_Comm_shrink
man:+MPIX_Comm_agree++MPIX_Comm_agree++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_Comm_agree.html#MPIX_Comm_agree
man:+MPI_Address++MPI_Address++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Address.html#MPI_Address
man:+MPI_Get_address++MPI_Get_address++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_address.html#MPI_Get_address
man:+MPI_Get_count++MPI_Get_count++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_count.html#MPI_Get_count
man:+MPI_Get_elements++MPI_Get_elements++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_elements.html#MPI_Get_elements
man:+MPI_Get_elements_x++MPI_Get_elements_x++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_elements_x.html#MPI_Get_elements_x
man:+MPI_Pack++MPI_Pack++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Pack.html#MPI_Pack
man:+MPI_Unpack++MPI_Unpack++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Unpack.html#MPI_Unpack
man:+MPI_Pack_size++MPI_Pack_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Pack_size.html#MPI_Pack_size
man:+MPI_Status_set_elements++MPI_Status_set_elements++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Status_set_elements.html#MPI_Status_set_elements
man:+MPI_Status_set_elements_x++MPI_Status_set_elements_x++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Status_set_elements_x.html#MPI_Status_set_elements_x
man:+MPI_Type_get_name++MPI_Type_get_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_name.html#MPI_Type_get_name
man:+MPI_Type_set_name++MPI_Type_set_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_set_name.html#MPI_Type_set_name
man:+MPI_Type_size++MPI_Type_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_size.html#MPI_Type_size
man:+MPI_Type_size_x++MPI_Type_size_x++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_size_x.html#MPI_Type_size_x
man:+MPI_Type_extent++MPI_Type_extent++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_extent.html#MPI_Type_extent
man:+MPI_Type_vector++MPI_Type_vector++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_vector.html#MPI_Type_vector
man:+MPI_Type_commit++MPI_Type_commit++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_commit.html#MPI_Type_commit
man:+MPI_Type_indexed++MPI_Type_indexed++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_indexed.html#MPI_Type_indexed
man:+MPI_Type_hindexed++MPI_Type_hindexed++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_hindexed.html#MPI_Type_hindexed
man:+MPI_Type_struct++MPI_Type_struct++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_struct.html#MPI_Type_struct
man:+MPI_Type_contiguous++MPI_Type_contiguous++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_contiguous.html#MPI_Type_contiguous
man:+MPI_Type_free++MPI_Type_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_free.html#MPI_Type_free
man:+MPI_Type_hvector++MPI_Type_hvector++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_hvector.html#MPI_Type_hvector
man:+MPI_Type_dup++MPI_Type_dup++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_dup.html#MPI_Type_dup
man:+MPI_Type_get_envelope++MPI_Type_get_envelope++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_envelope.html#MPI_Type_get_envelope
man:+MPI_Type_get_contents++MPI_Type_get_contents++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_contents.html#MPI_Type_get_contents
man:+MPI_Type_ub++MPI_Type_ub++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_ub.html#MPI_Type_ub
man:+MPI_Type_lb++MPI_Type_lb++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_lb.html#MPI_Type_lb
man:+MPI_Type_get_extent++MPI_Type_get_extent++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_extent.html#MPI_Type_get_extent
man:+MPI_Type_get_extent_x++MPI_Type_get_extent_x++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_extent_x.html#MPI_Type_get_extent_x
man:+MPI_Type_get_true_extent++MPI_Type_get_true_extent++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_true_extent.html#MPI_Type_get_true_extent
man:+MPI_Type_get_true_extent_x++MPI_Type_get_true_extent_x++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_true_extent_x.html#MPI_Type_get_true_extent_x
man:+MPI_Type_match_size++MPI_Type_match_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_match_size.html#MPI_Type_match_size
man:+MPI_Type_create_struct++MPI_Type_create_struct++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_struct.html#MPI_Type_create_struct
man:+MPI_Type_create_hindexed++MPI_Type_create_hindexed++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_hindexed.html#MPI_Type_create_hindexed
man:+MPI_Type_create_hvector++MPI_Type_create_hvector++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_hvector.html#MPI_Type_create_hvector
man:+MPI_Pack_external++MPI_Pack_external++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Pack_external.html#MPI_Pack_external
man:+MPI_Pack_external_size++MPI_Pack_external_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Pack_external_size.html#MPI_Pack_external_size
man:+MPI_Unpack_external++MPI_Unpack_external++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Unpack_external.html#MPI_Unpack_external
man:+MPI_Type_create_indexed_block++MPI_Type_create_indexed_block++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_indexed_block.html#MPI_Type_create_indexed_block
man:+MPI_Type_create_hindexed_block++MPI_Type_create_hindexed_block++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_hindexed_block.html#MPI_Type_create_hindexed_block
man:+MPI_Type_create_resized++MPI_Type_create_resized++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_resized.html#MPI_Type_create_resized
man:+MPI_Type_create_darray++MPI_Type_create_darray++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_darray.html#MPI_Type_create_darray
man:+MPI_Type_create_subarray++MPI_Type_create_subarray++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_subarray.html#MPI_Type_create_subarray
man:+MPI_Add_error_code++MPI_Add_error_code++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Add_error_code.html#MPI_Add_error_code
man:+MPI_Add_error_class++MPI_Add_error_class++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Add_error_class.html#MPI_Add_error_class
man:+MPI_Add_error_string++MPI_Add_error_string++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Add_error_string.html#MPI_Add_error_string
man:+MPI_Comm_call_errhandler++MPI_Comm_call_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_call_errhandler.html#MPI_Comm_call_errhandler
man:+MPI_Comm_create_errhandler++MPI_Comm_create_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_create_errhandler.html#MPI_Comm_create_errhandler
man:+MPI_Comm_get_errhandler++MPI_Comm_get_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_get_errhandler.html#MPI_Comm_get_errhandler
man:+MPI_Comm_set_errhandler++MPI_Comm_set_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_set_errhandler.html#MPI_Comm_set_errhandler
man:+MPI_Errhandler_create++MPI_Errhandler_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Errhandler_create.html#MPI_Errhandler_create
man:+MPI_Errhandler_free++MPI_Errhandler_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Errhandler_free.html#MPI_Errhandler_free
man:+MPI_Errhandler_get++MPI_Errhandler_get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Errhandler_get.html#MPI_Errhandler_get
man:+MPI_Errhandler_set++MPI_Errhandler_set++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Errhandler_set.html#MPI_Errhandler_set
man:+MPI_Error_class++MPI_Error_class++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Error_class.html#MPI_Error_class
man:+MPI_Error_string++MPI_Error_string++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Error_string.html#MPI_Error_string
man:+MPI_File_create_errhandler++MPI_File_create_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_create_errhandler.html#MPI_File_create_errhandler
man:+MPI_File_get_errhandler++MPI_File_get_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_get_errhandler.html#MPI_File_get_errhandler
man:+MPI_File_set_errhandler++MPI_File_set_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_set_errhandler.html#MPI_File_set_errhandler
man:+MPI_File_call_errhandler++MPI_File_call_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_call_errhandler.html#MPI_File_call_errhandler
man:+MPI_Win_create_errhandler++MPI_Win_create_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_create_errhandler.html#MPI_Win_create_errhandler
man:+MPI_Win_call_errhandler++MPI_Win_call_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_call_errhandler.html#MPI_Win_call_errhandler
man:+MPI_Win_get_errhandler++MPI_Win_get_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_get_errhandler.html#MPI_Win_get_errhandler
man:+MPI_Win_set_errhandler++MPI_Win_set_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_set_errhandler.html#MPI_Win_set_errhandler
man:+MPI_Group_compare++MPI_Group_compare++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_compare.html#MPI_Group_compare
man:+MPI_Group_difference++MPI_Group_difference++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_difference.html#MPI_Group_difference
man:+MPI_Group_excl++MPI_Group_excl++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_excl.html#MPI_Group_excl
man:+MPI_Group_free++MPI_Group_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_free.html#MPI_Group_free
man:+MPI_Group_incl++MPI_Group_incl++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_incl.html#MPI_Group_incl
man:+MPI_Group_intersection++MPI_Group_intersection++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_intersection.html#MPI_Group_intersection
man:+MPI_Group_range_excl++MPI_Group_range_excl++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_range_excl.html#MPI_Group_range_excl
man:+MPI_Group_range_incl++MPI_Group_range_incl++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_range_incl.html#MPI_Group_range_incl
man:+MPI_Group_rank++MPI_Group_rank++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_rank.html#MPI_Group_rank
man:+MPI_Group_size++MPI_Group_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_size.html#MPI_Group_size
man:+MPI_Group_translate_ranks++MPI_Group_translate_ranks++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_translate_ranks.html#MPI_Group_translate_ranks
man:+MPI_Group_union++MPI_Group_union++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_union.html#MPI_Group_union
man:+MPI_Info_create++MPI_Info_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_create.html#MPI_Info_create
man:+MPI_Info_delete++MPI_Info_delete++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_delete.html#MPI_Info_delete
man:+MPI_Info_dup++MPI_Info_dup++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_dup.html#MPI_Info_dup
man:+MPI_Info_free++MPI_Info_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_free.html#MPI_Info_free
man:+MPI_Info_get++MPI_Info_get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_get.html#MPI_Info_get
man:+MPI_Info_get_nkeys++MPI_Info_get_nkeys++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_get_nkeys.html#MPI_Info_get_nkeys
man:+MPI_Info_get_nthkey++MPI_Info_get_nthkey++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_get_nthkey.html#MPI_Info_get_nthkey
man:+MPI_Info_get_valuelen++MPI_Info_get_valuelen++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_get_valuelen.html#MPI_Info_get_valuelen
man:+MPI_Info_set++MPI_Info_set++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_set.html#MPI_Info_set
man:+MPI_Abort++MPI_Abort++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Abort.html#MPI_Abort
man:+MPI_Init++MPI_Init++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Init.html#MPI_Init
man:+MPI_Initialized++MPI_Initialized++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Initialized.html#MPI_Initialized
man:+MPI_Init_thread++MPI_Init_thread++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Init_thread.html#MPI_Init_thread
man:+MPI_Is_thread_main++MPI_Is_thread_main++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Is_thread_main.html#MPI_Is_thread_main
man:+MPI_Finalize++MPI_Finalize++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Finalize.html#MPI_Finalize
man:+MPI_Finalized++MPI_Finalized++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Finalized.html#MPI_Finalized
man:+MPI_Query_thread++MPI_Query_thread++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Query_thread.html#MPI_Query_thread
man:+MPI_Get_processor_name++MPI_Get_processor_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_processor_name.html#MPI_Get_processor_name
man:+MPI_Pcontrol++MPI_Pcontrol++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Pcontrol.html#MPI_Pcontrol
man:+MPI_Get_version++MPI_Get_version++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_version.html#MPI_Get_version
man:+MPI_Get_library_version++MPI_Get_library_version++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_library_version.html#MPI_Get_library_version
man:+MPI_Bsend++MPI_Bsend++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Bsend.html#MPI_Bsend
man:+MPI_Bsend_init++MPI_Bsend_init++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Bsend_init.html#MPI_Bsend_init
man:+MPI_Buffer_attach++MPI_Buffer_attach++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Buffer_attach.html#MPI_Buffer_attach
man:+MPI_Buffer_detach++MPI_Buffer_detach++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Buffer_detach.html#MPI_Buffer_detach
man:+MPI_Cancel++MPI_Cancel++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cancel.html#MPI_Cancel
man:+MPI_Grequest_start++MPI_Grequest_start++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Grequest_start.html#MPI_Grequest_start
man:+MPI_Grequest_complete++MPI_Grequest_complete++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Grequest_complete.html#MPI_Grequest_complete
man:+MPI_Ibsend++MPI_Ibsend++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ibsend.html#MPI_Ibsend
man:+MPI_Improbe++MPI_Improbe++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Improbe.html#MPI_Improbe
man:+MPI_Imrecv++MPI_Imrecv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Imrecv.html#MPI_Imrecv
man:+MPI_Iprobe++MPI_Iprobe++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iprobe.html#MPI_Iprobe
man:+MPI_Irecv++MPI_Irecv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Irecv.html#MPI_Irecv
man:+MPI_Irsend++MPI_Irsend++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Irsend.html#MPI_Irsend
man:+MPI_Isend++MPI_Isend++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Isend.html#MPI_Isend
man:+MPI_Issend++MPI_Issend++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Issend.html#MPI_Issend
man:+MPI_Mprobe++MPI_Mprobe++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Mprobe.html#MPI_Mprobe
man:+MPI_Mrecv++MPI_Mrecv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Mrecv.html#MPI_Mrecv
man:+MPI_Probe++MPI_Probe++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Probe.html#MPI_Probe
man:+MPI_Recv++MPI_Recv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Recv.html#MPI_Recv
man:+MPI_Recv_init++MPI_Recv_init++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Recv_init.html#MPI_Recv_init
man:+MPI_Request_free++MPI_Request_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Request_free.html#MPI_Request_free
man:+MPI_Request_get_status++MPI_Request_get_status++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Request_get_status.html#MPI_Request_get_status
man:+MPI_Rsend++MPI_Rsend++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Rsend.html#MPI_Rsend
man:+MPI_Rsend_init++MPI_Rsend_init++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Rsend_init.html#MPI_Rsend_init
man:+MPI_Send++MPI_Send++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Send.html#MPI_Send
man:+MPI_Send_init++MPI_Send_init++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Send_init.html#MPI_Send_init
man:+MPI_Sendrecv++MPI_Sendrecv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Sendrecv.html#MPI_Sendrecv
man:+MPI_Sendrecv_replace++MPI_Sendrecv_replace++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Sendrecv_replace.html#MPI_Sendrecv_replace
man:+MPI_Status_set_cancelled++MPI_Status_set_cancelled++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Status_set_cancelled.html#MPI_Status_set_cancelled
man:+MPI_Ssend++MPI_Ssend++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ssend.html#MPI_Ssend
man:+MPI_Ssend_init++MPI_Ssend_init++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ssend_init.html#MPI_Ssend_init
man:+MPI_Start++MPI_Start++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Start.html#MPI_Start
man:+MPI_Startall++MPI_Startall++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Startall.html#MPI_Startall
man:+MPI_Test++MPI_Test++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Test.html#MPI_Test
man:+MPI_Test_cancelled++MPI_Test_cancelled++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Test_cancelled.html#MPI_Test_cancelled
man:+MPI_Testall++MPI_Testall++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Testall.html#MPI_Testall
man:+MPI_Testany++MPI_Testany++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Testany.html#MPI_Testany
man:+MPI_Testsome++MPI_Testsome++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Testsome.html#MPI_Testsome
man:+MPI_Wait++MPI_Wait++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Wait.html#MPI_Wait
man:+MPI_Waitall++MPI_Waitall++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Waitall.html#MPI_Waitall
man:+MPI_Waitany++MPI_Waitany++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Waitany.html#MPI_Waitany
man:+MPI_Waitsome++MPI_Waitsome++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Waitsome.html#MPI_Waitsome
man:+MPI_Accumulate++MPI_Accumulate++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Accumulate.html#MPI_Accumulate
man:+MPI_Alloc_mem++MPI_Alloc_mem++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Alloc_mem.html#MPI_Alloc_mem
man:+MPI_Compare_and_swap++MPI_Compare_and_swap++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Compare_and_swap.html#MPI_Compare_and_swap
man:+MPI_Fetch_and_op++MPI_Fetch_and_op++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Fetch_and_op.html#MPI_Fetch_and_op
man:+MPI_Free_mem++MPI_Free_mem++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Free_mem.html#MPI_Free_mem
man:+MPI_Get++MPI_Get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get.html#MPI_Get
man:+MPI_Get_accumulate++MPI_Get_accumulate++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_accumulate.html#MPI_Get_accumulate
man:+MPI_Put++MPI_Put++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Put.html#MPI_Put
man:+MPI_Raccumulate++MPI_Raccumulate++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Raccumulate.html#MPI_Raccumulate
man:+MPI_Rget++MPI_Rget++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Rget.html#MPI_Rget
man:+MPI_Rget_accumulate++MPI_Rget_accumulate++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Rget_accumulate.html#MPI_Rget_accumulate
man:+MPI_Rput++MPI_Rput++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Rput.html#MPI_Rput
man:+MPI_Win_allocate++MPI_Win_allocate++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_allocate.html#MPI_Win_allocate
man:+MPI_Win_allocate_shared++MPI_Win_allocate_shared++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_allocate_shared.html#MPI_Win_allocate_shared
man:+MPI_Win_attach++MPI_Win_attach++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_attach.html#MPI_Win_attach
man:+MPI_Win_complete++MPI_Win_complete++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_complete.html#MPI_Win_complete
man:+MPI_Win_create++MPI_Win_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_create.html#MPI_Win_create
man:+MPI_Win_create_dynamic++MPI_Win_create_dynamic++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_create_dynamic.html#MPI_Win_create_dynamic
man:+MPI_Win_detach++MPI_Win_detach++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_detach.html#MPI_Win_detach
man:+MPI_Win_fence++MPI_Win_fence++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_fence.html#MPI_Win_fence
man:+MPI_Win_flush++MPI_Win_flush++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_flush.html#MPI_Win_flush
man:+MPI_Win_flush_all++MPI_Win_flush_all++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_flush_all.html#MPI_Win_flush_all
man:+MPI_Win_flush_local++MPI_Win_flush_local++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_flush_local.html#MPI_Win_flush_local
man:+MPI_Win_flush_local_all++MPI_Win_flush_local_all++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_flush_local_all.html#MPI_Win_flush_local_all
man:+MPI_Win_free++MPI_Win_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_free.html#MPI_Win_free
man:+MPI_Win_get_group++MPI_Win_get_group++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_get_group.html#MPI_Win_get_group
man:+MPI_Win_get_info++MPI_Win_get_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_get_info.html#MPI_Win_get_info
man:+MPI_Win_get_name++MPI_Win_get_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_get_name.html#MPI_Win_get_name
man:+MPI_Win_lock++MPI_Win_lock++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_lock.html#MPI_Win_lock
man:+MPI_Win_lock_all++MPI_Win_lock_all++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_lock_all.html#MPI_Win_lock_all
man:+MPI_Win_post++MPI_Win_post++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_post.html#MPI_Win_post
man:+MPI_Win_set_info++MPI_Win_set_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_set_info.html#MPI_Win_set_info
man:+MPI_Win_set_name++MPI_Win_set_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_set_name.html#MPI_Win_set_name
man:+MPI_Win_shared_query++MPI_Win_shared_query++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_shared_query.html#MPI_Win_shared_query
man:+MPI_Win_start++MPI_Win_start++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_start.html#MPI_Win_start
man:+MPI_Win_sync++MPI_Win_sync++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_sync.html#MPI_Win_sync
man:+MPI_Win_test++MPI_Win_test++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_test.html#MPI_Win_test
man:+MPI_Win_unlock++MPI_Win_unlock++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_unlock.html#MPI_Win_unlock
man:+MPI_Win_unlock_all++MPI_Win_unlock_all++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_unlock_all.html#MPI_Win_unlock_all
man:+MPI_Win_wait++MPI_Win_wait++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_wait.html#MPI_Win_wait
man:+MPI_Comm_disconnect++MPI_Comm_disconnect++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_disconnect.html#MPI_Comm_disconnect
man:+MPI_Comm_get_parent++MPI_Comm_get_parent++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_get_parent.html#MPI_Comm_get_parent
man:+MPI_Comm_join++MPI_Comm_join++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_join.html#MPI_Comm_join
man:+MPI_Comm_spawn++MPI_Comm_spawn++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_spawn.html#MPI_Comm_spawn
man:+MPI_Comm_spawn_multiple++MPI_Comm_spawn_multiple++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_spawn_multiple.html#MPI_Comm_spawn_multiple
man:+MPI_Lookup_name++MPI_Lookup_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Lookup_name.html#MPI_Lookup_name
man:+MPI_Publish_name++MPI_Publish_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Publish_name.html#MPI_Publish_name
man:+MPI_Unpublish_name++MPI_Unpublish_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Unpublish_name.html#MPI_Unpublish_name
man:+MPI_Open_port++MPI_Open_port++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Open_port.html#MPI_Open_port
man:+MPI_Close_port++MPI_Close_port++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Close_port.html#MPI_Close_port
man:+MPI_Comm_connect++MPI_Comm_connect++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_connect.html#MPI_Comm_connect
man:+MPI_Comm_accept++MPI_Comm_accept++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_accept.html#MPI_Comm_accept
man:+MPI_Wtime++MPI_Wtime++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Wtime.html#MPI_Wtime
man:+MPI_Wtick++MPI_Wtick++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Wtick.html#MPI_Wtick
man:+MPI_Cart_coords++MPI_Cart_coords++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cart_coords.html#MPI_Cart_coords
man:+MPI_Cart_create++MPI_Cart_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cart_create.html#MPI_Cart_create
man:+MPI_Cart_get++MPI_Cart_get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cart_get.html#MPI_Cart_get
man:+MPI_Cart_map++MPI_Cart_map++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cart_map.html#MPI_Cart_map
man:+MPI_Cart_rank++MPI_Cart_rank++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cart_rank.html#MPI_Cart_rank
man:+MPI_Cart_shift++MPI_Cart_shift++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cart_shift.html#MPI_Cart_shift
man:+MPI_Cart_sub++MPI_Cart_sub++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cart_sub.html#MPI_Cart_sub
man:+MPI_Dims_create++MPI_Dims_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Dims_create.html#MPI_Dims_create
man:+MPI_Graph_get++MPI_Graph_get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Graph_get.html#MPI_Graph_get
man:+MPI_Graph_map++MPI_Graph_map++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Graph_map.html#MPI_Graph_map
man:+MPI_Graph_neighbors++MPI_Graph_neighbors++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Graph_neighbors.html#MPI_Graph_neighbors
man:+MPI_Graph_create++MPI_Graph_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Graph_create.html#MPI_Graph_create
man:+MPI_Graphdims_get++MPI_Graphdims_get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Graphdims_get.html#MPI_Graphdims_get
man:+MPI_Graph_neighbors_count++MPI_Graph_neighbors_count++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Graph_neighbors_count.html#MPI_Graph_neighbors_count
man:+MPI_Cartdim_get++MPI_Cartdim_get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cartdim_get.html#MPI_Cartdim_get
man:+MPI_Topo_test++MPI_Topo_test++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Topo_test.html#MPI_Topo_test
man:+MPI_Dist_graph_create_adjacent++MPI_Dist_graph_create_adjacent++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Dist_graph_create_adjacent.html#MPI_Dist_graph_create_adjacent
man:+MPI_Dist_graph_create++MPI_Dist_graph_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Dist_graph_create.html#MPI_Dist_graph_create
man:+MPI_Dist_graph_neighbors_count++MPI_Dist_graph_neighbors_count++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Dist_graph_neighbors_count.html#MPI_Dist_graph_neighbors_count
man:+MPI_Dist_graph_neighbors++MPI_Dist_graph_neighbors++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Dist_graph_neighbors.html#MPI_Dist_graph_neighbors
man:+MPI_Ineighbor_allgather++MPI_Ineighbor_allgather++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ineighbor_allgather.html#MPI_Ineighbor_allgather
man:+MPI_Ineighbor_allgatherv++MPI_Ineighbor_allgatherv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ineighbor_allgatherv.html#MPI_Ineighbor_allgatherv
man:+MPI_Ineighbor_alltoall++MPI_Ineighbor_alltoall++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ineighbor_alltoall.html#MPI_Ineighbor_alltoall
man:+MPI_Ineighbor_alltoallv++MPI_Ineighbor_alltoallv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ineighbor_alltoallv.html#MPI_Ineighbor_alltoallv
man:+MPI_Ineighbor_alltoallw++MPI_Ineighbor_alltoallw++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ineighbor_alltoallw.html#MPI_Ineighbor_alltoallw
man:+MPI_Neighbor_allgather++MPI_Neighbor_allgather++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Neighbor_allgather.html#MPI_Neighbor_allgather
man:+MPI_Neighbor_allgatherv++MPI_Neighbor_allgatherv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Neighbor_allgatherv.html#MPI_Neighbor_allgatherv
man:+MPI_Neighbor_alltoall++MPI_Neighbor_alltoall++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Neighbor_alltoall.html#MPI_Neighbor_alltoall
man:+MPI_Neighbor_alltoallv++MPI_Neighbor_alltoallv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Neighbor_alltoallv.html#MPI_Neighbor_alltoallv
man:+MPI_Neighbor_alltoallw++MPI_Neighbor_alltoallw++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Neighbor_alltoallw.html#MPI_Neighbor_alltoallw
man:+MPI_Type_create_f90_integer++MPI_Type_create_f90_integer++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_f90_integer.html#MPI_Type_create_f90_integer
man:+MPI_Type_create_f90_real++MPI_Type_create_f90_real++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_f90_real.html#MPI_Type_create_f90_real
man:+MPI_Type_create_f90_complex++MPI_Type_create_f90_complex++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_f90_complex.html#MPI_Type_create_f90_complex
man:+MPI_T_category_changed++MPI_T_category_changed++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_category_changed.html#MPI_T_category_changed
man:+MPI_T_category_get_categories++MPI_T_category_get_categories++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_category_get_categories.html#MPI_T_category_get_categories
man:+MPI_T_category_get_cvars++MPI_T_category_get_cvars++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_category_get_cvars.html#MPI_T_category_get_cvars
man:+MPI_T_category_get_info++MPI_T_category_get_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_category_get_info.html#MPI_T_category_get_info
man:+MPI_T_category_get_num++MPI_T_category_get_num++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_category_get_num.html#MPI_T_category_get_num
man:+MPI_T_category_get_pvars++MPI_T_category_get_pvars++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_category_get_pvars.html#MPI_T_category_get_pvars
man:+MPI_T_cvar_get_info++MPI_T_cvar_get_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_cvar_get_info.html#MPI_T_cvar_get_info
man:+MPI_T_cvar_get_num++MPI_T_cvar_get_num++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_cvar_get_num.html#MPI_T_cvar_get_num
man:+MPI_T_cvar_handle_alloc++MPI_T_cvar_handle_alloc++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_cvar_handle_alloc.html#MPI_T_cvar_handle_alloc
man:+MPI_T_cvar_handle_free++MPI_T_cvar_handle_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_cvar_handle_free.html#MPI_T_cvar_handle_free
man:+MPI_T_cvar_read++MPI_T_cvar_read++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_cvar_read.html#MPI_T_cvar_read
man:+MPI_T_cvar_write++MPI_T_cvar_write++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_cvar_write.html#MPI_T_cvar_write
man:+MPI_T_enum_get_info++MPI_T_enum_get_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_enum_get_info.html#MPI_T_enum_get_info
man:+MPI_T_enum_get_item++MPI_T_enum_get_item++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_enum_get_item.html#MPI_T_enum_get_item
man:+MPI_T_finalize++MPI_T_finalize++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_finalize.html#MPI_T_finalize
man:+MPI_T_init_thread++MPI_T_init_thread++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_init_thread.html#MPI_T_init_thread
man:+MPI_T_pvar_get_info++MPI_T_pvar_get_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_get_info.html#MPI_T_pvar_get_info
man:+MPI_T_pvar_get_num++MPI_T_pvar_get_num++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_get_num.html#MPI_T_pvar_get_num
man:+MPI_T_pvar_handle_alloc++MPI_T_pvar_handle_alloc++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_handle_alloc.html#MPI_T_pvar_handle_alloc
man:+MPI_T_pvar_handle_free++MPI_T_pvar_handle_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_handle_free.html#MPI_T_pvar_handle_free
man:+MPI_T_pvar_read++MPI_T_pvar_read++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_read.html#MPI_T_pvar_read
man:+MPI_T_pvar_readreset++MPI_T_pvar_readreset++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_readreset.html#MPI_T_pvar_readreset
man:+MPI_T_pvar_reset++MPI_T_pvar_reset++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_reset.html#MPI_T_pvar_reset
man:+MPI_T_pvar_session_create++MPI_T_pvar_session_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_session_create.html#MPI_T_pvar_session_create
man:+MPI_T_pvar_session_free++MPI_T_pvar_session_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_session_free.html#MPI_T_pvar_session_free
man:+MPI_T_pvar_start++MPI_T_pvar_start++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_start.html#MPI_T_pvar_start
man:+MPI_T_pvar_stop++MPI_T_pvar_stop++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_stop.html#MPI_T_pvar_stop
man:+MPI_T_pvar_write++MPI_T_pvar_write++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_write.html#MPI_T_pvar_write
man:+MPI_Attr_delete++MPI_Attr_delete++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Attr_delete.html#MPI_Attr_delete
man:+MPI_Attr_get++MPI_Attr_get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Attr_get.html#MPI_Attr_get
man:+MPI_Attr_put++MPI_Attr_put++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Attr_put.html#MPI_Attr_put
man:+MPI_Comm_create_keyval++MPI_Comm_create_keyval++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_create_keyval.html#MPI_Comm_create_keyval
man:+MPI_Comm_delete_attr++MPI_Comm_delete_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_delete_attr.html#MPI_Comm_delete_attr
man:+MPI_Comm_free_keyval++MPI_Comm_free_keyval++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_free_keyval.html#MPI_Comm_free_keyval
man:+MPI_Comm_get_attr++MPI_Comm_get_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_get_attr.html#MPI_Comm_get_attr
man:+MPI_Comm_set_attr++MPI_Comm_set_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_set_attr.html#MPI_Comm_set_attr
man:+MPI_Keyval_create++MPI_Keyval_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Keyval_create.html#MPI_Keyval_create
man:+MPI_Keyval_free++MPI_Keyval_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Keyval_free.html#MPI_Keyval_free
man:+MPI_Type_create_keyval++MPI_Type_create_keyval++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_keyval.html#MPI_Type_create_keyval
man:+MPI_Type_delete_attr++MPI_Type_delete_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_delete_attr.html#MPI_Type_delete_attr
man:+MPI_Type_free_keyval++MPI_Type_free_keyval++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_free_keyval.html#MPI_Type_free_keyval
man:+MPI_Type_get_attr++MPI_Type_get_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_attr.html#MPI_Type_get_attr
man:+MPI_Type_set_attr++MPI_Type_set_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_set_attr.html#MPI_Type_set_attr
man:+MPI_Win_create_keyval++MPI_Win_create_keyval++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_create_keyval.html#MPI_Win_create_keyval
man:+MPI_Win_delete_attr++MPI_Win_delete_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_delete_attr.html#MPI_Win_delete_attr
man:+MPI_Win_free_keyval++MPI_Win_free_keyval++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_free_keyval.html#MPI_Win_free_keyval
man:+MPI_Win_get_attr++MPI_Win_get_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_get_attr.html#MPI_Win_get_attr
man:+MPI_Win_set_attr++MPI_Win_set_attr++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_set_attr.html#MPI_Win_set_attr
man:+MPI_Allreduce++MPI_Allreduce++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Allreduce.html#MPI_Allreduce
man:+MPI_Barrier++MPI_Barrier++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Barrier.html#MPI_Barrier
man:+MPI_Op_create++MPI_Op_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Op_create.html#MPI_Op_create
man:+MPI_Op_free++MPI_Op_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Op_free.html#MPI_Op_free
man:+MPI_Bcast++MPI_Bcast++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Bcast.html#MPI_Bcast
man:+MPI_Alltoall++MPI_Alltoall++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Alltoall.html#MPI_Alltoall
man:+MPI_Alltoallv++MPI_Alltoallv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Alltoallv.html#MPI_Alltoallv
man:+MPI_Reduce++MPI_Reduce++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Reduce.html#MPI_Reduce
man:+MPI_Scatter++MPI_Scatter++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Scatter.html#MPI_Scatter
man:+MPI_Gather++MPI_Gather++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Gather.html#MPI_Gather
man:+MPI_Scatterv++MPI_Scatterv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Scatterv.html#MPI_Scatterv
man:+MPI_Gatherv++MPI_Gatherv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Gatherv.html#MPI_Gatherv
man:+MPI_Scan++MPI_Scan++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Scan.html#MPI_Scan
man:+MPI_Exscan++MPI_Exscan++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Exscan.html#MPI_Exscan
man:+MPI_Allgather++MPI_Allgather++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Allgather.html#MPI_Allgather
man:+MPI_Allgatherv++MPI_Allgatherv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Allgatherv.html#MPI_Allgatherv
man:+MPI_Reduce_scatter++MPI_Reduce_scatter++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Reduce_scatter.html#MPI_Reduce_scatter
man:+MPI_Alltoallw++MPI_Alltoallw++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Alltoallw.html#MPI_Alltoallw
man:+MPI_Reduce_local++MPI_Reduce_local++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Reduce_local.html#MPI_Reduce_local
man:+MPI_Op_commute++MPI_Op_commute++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Op_commute.html#MPI_Op_commute
man:+MPI_Reduce_scatter_block++MPI_Reduce_scatter_block++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Reduce_scatter_block.html#MPI_Reduce_scatter_block
man:+MPI_Iallgather++MPI_Iallgather++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iallgather.html#MPI_Iallgather
man:+MPI_Iallgatherv++MPI_Iallgatherv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iallgatherv.html#MPI_Iallgatherv
man:+MPI_Iallreduce++MPI_Iallreduce++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iallreduce.html#MPI_Iallreduce
man:+MPI_Ialltoall++MPI_Ialltoall++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ialltoall.html#MPI_Ialltoall
man:+MPI_Ialltoallv++MPI_Ialltoallv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ialltoallv.html#MPI_Ialltoallv
man:+MPI_Ialltoallw++MPI_Ialltoallw++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ialltoallw.html#MPI_Ialltoallw
man:+MPI_Ibarrier++MPI_Ibarrier++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ibarrier.html#MPI_Ibarrier
man:+MPI_Ibcast++MPI_Ibcast++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ibcast.html#MPI_Ibcast
man:+MPI_Iexscan++MPI_Iexscan++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iexscan.html#MPI_Iexscan
man:+MPI_Igather++MPI_Igather++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Igather.html#MPI_Igather
man:+MPI_Igatherv++MPI_Igatherv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Igatherv.html#MPI_Igatherv
man:+MPI_Ireduce_scatter++MPI_Ireduce_scatter++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ireduce_scatter.html#MPI_Ireduce_scatter
man:+MPI_Ireduce_scatter_block++MPI_Ireduce_scatter_block++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ireduce_scatter_block.html#MPI_Ireduce_scatter_block
man:+MPI_Ireduce++MPI_Ireduce++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ireduce.html#MPI_Ireduce
man:+MPI_Iscan++MPI_Iscan++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iscan.html#MPI_Iscan
man:+MPI_Iscatter++MPI_Iscatter++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iscatter.html#MPI_Iscatter
man:+MPI_Iscatterv++MPI_Iscatterv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iscatterv.html#MPI_Iscatterv
man:+MPI_Comm_compare++MPI_Comm_compare++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_compare.html#MPI_Comm_compare
man:+MPI_Comm_create++MPI_Comm_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_create.html#MPI_Comm_create
man:+MPI_Comm_create_group++MPI_Comm_create_group++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_create_group.html#MPI_Comm_create_group
man:+MPI_Comm_dup++MPI_Comm_dup++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_dup.html#MPI_Comm_dup
man:+MPI_Comm_dup_with_info++MPI_Comm_dup_with_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_dup_with_info.html#MPI_Comm_dup_with_info
man:+MPI_Comm_free++MPI_Comm_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_free.html#MPI_Comm_free
man:+MPI_Comm_get_name++MPI_Comm_get_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_get_name.html#MPI_Comm_get_name
man:+MPI_Comm_get_info++MPI_Comm_get_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_get_info.html#MPI_Comm_get_info
man:+MPI_Comm_set_info++MPI_Comm_set_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_set_info.html#MPI_Comm_set_info
man:+MPI_Comm_group++MPI_Comm_group++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_group.html#MPI_Comm_group
man:+MPI_Comm_idup++MPI_Comm_idup++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_idup.html#MPI_Comm_idup
man:+MPI_Comm_rank++MPI_Comm_rank++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_rank.html#MPI_Comm_rank
man:+MPI_Comm_size++MPI_Comm_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_size.html#MPI_Comm_size
man:+MPI_Comm_remote_group++MPI_Comm_remote_group++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_remote_group.html#MPI_Comm_remote_group
man:+MPI_Comm_remote_size++MPI_Comm_remote_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_remote_size.html#MPI_Comm_remote_size
man:+MPI_Comm_set_name++MPI_Comm_set_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_set_name.html#MPI_Comm_set_name
man:+MPI_Comm_split++MPI_Comm_split++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_split.html#MPI_Comm_split
man:+MPI_Comm_test_inter++MPI_Comm_test_inter++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_test_inter.html#MPI_Comm_test_inter
man:+MPI_Intercomm_create++MPI_Intercomm_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Intercomm_create.html#MPI_Intercomm_create
man:+MPI_Intercomm_merge++MPI_Intercomm_merge++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Intercomm_merge.html#MPI_Intercomm_merge
man:+MPI_Comm_split_type++MPI_Comm_split_type++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_split_type.html#MPI_Comm_split_type
man:+MPIX_Comm_failure_ack++MPIX_Comm_failure_ack++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_Comm_failure_ack.html#MPIX_Comm_failure_ack
man:+MPIX_Comm_failure_get_acked++MPIX_Comm_failure_get_acked++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_Comm_failure_get_acked.html#MPIX_Comm_failure_get_acked
man:+MPIX_Comm_revoke++MPIX_Comm_revoke++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_Comm_revoke.html#MPIX_Comm_revoke
man:+MPIX_Comm_shrink++MPIX_Comm_shrink++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_Comm_shrink.html#MPIX_Comm_shrink
man:+MPIX_Comm_agree++MPIX_Comm_agree++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_Comm_agree.html#MPIX_Comm_agree
man:+MPI_Address++MPI_Address++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Address.html#MPI_Address
man:+MPI_Get_address++MPI_Get_address++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_address.html#MPI_Get_address
man:+MPI_Get_count++MPI_Get_count++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_count.html#MPI_Get_count
man:+MPI_Get_elements++MPI_Get_elements++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_elements.html#MPI_Get_elements
man:+MPI_Get_elements_x++MPI_Get_elements_x++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_elements_x.html#MPI_Get_elements_x
man:+MPI_Pack++MPI_Pack++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Pack.html#MPI_Pack
man:+MPI_Unpack++MPI_Unpack++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Unpack.html#MPI_Unpack
man:+MPI_Pack_size++MPI_Pack_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Pack_size.html#MPI_Pack_size
man:+MPI_Status_set_elements++MPI_Status_set_elements++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Status_set_elements.html#MPI_Status_set_elements
man:+MPI_Status_set_elements_x++MPI_Status_set_elements_x++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Status_set_elements_x.html#MPI_Status_set_elements_x
man:+MPI_Type_get_name++MPI_Type_get_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_name.html#MPI_Type_get_name
man:+MPI_Type_set_name++MPI_Type_set_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_set_name.html#MPI_Type_set_name
man:+MPI_Type_size++MPI_Type_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_size.html#MPI_Type_size
man:+MPI_Type_size_x++MPI_Type_size_x++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_size_x.html#MPI_Type_size_x
man:+MPI_Type_extent++MPI_Type_extent++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_extent.html#MPI_Type_extent
man:+MPI_Type_vector++MPI_Type_vector++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_vector.html#MPI_Type_vector
man:+MPI_Type_commit++MPI_Type_commit++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_commit.html#MPI_Type_commit
man:+MPI_Type_indexed++MPI_Type_indexed++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_indexed.html#MPI_Type_indexed
man:+MPI_Type_hindexed++MPI_Type_hindexed++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_hindexed.html#MPI_Type_hindexed
man:+MPI_Type_struct++MPI_Type_struct++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_struct.html#MPI_Type_struct
man:+MPI_Type_contiguous++MPI_Type_contiguous++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_contiguous.html#MPI_Type_contiguous
man:+MPI_Type_free++MPI_Type_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_free.html#MPI_Type_free
man:+MPI_Type_hvector++MPI_Type_hvector++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_hvector.html#MPI_Type_hvector
man:+MPI_Type_dup++MPI_Type_dup++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_dup.html#MPI_Type_dup
man:+MPI_Type_get_envelope++MPI_Type_get_envelope++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_envelope.html#MPI_Type_get_envelope
man:+MPI_Type_get_contents++MPI_Type_get_contents++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_contents.html#MPI_Type_get_contents
man:+MPI_Type_ub++MPI_Type_ub++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_ub.html#MPI_Type_ub
man:+MPI_Type_lb++MPI_Type_lb++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_lb.html#MPI_Type_lb
man:+MPI_Type_get_extent++MPI_Type_get_extent++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_extent.html#MPI_Type_get_extent
man:+MPI_Type_get_extent_x++MPI_Type_get_extent_x++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_extent_x.html#MPI_Type_get_extent_x
man:+MPI_Type_get_true_extent++MPI_Type_get_true_extent++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_true_extent.html#MPI_Type_get_true_extent
man:+MPI_Type_get_true_extent_x++MPI_Type_get_true_extent_x++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_get_true_extent_x.html#MPI_Type_get_true_extent_x
man:+MPI_Type_match_size++MPI_Type_match_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_match_size.html#MPI_Type_match_size
man:+MPI_Type_create_struct++MPI_Type_create_struct++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_struct.html#MPI_Type_create_struct
man:+MPI_Type_create_hindexed++MPI_Type_create_hindexed++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_hindexed.html#MPI_Type_create_hindexed
man:+MPI_Type_create_hvector++MPI_Type_create_hvector++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_hvector.html#MPI_Type_create_hvector
man:+MPI_Pack_external++MPI_Pack_external++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Pack_external.html#MPI_Pack_external
man:+MPI_Pack_external_size++MPI_Pack_external_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Pack_external_size.html#MPI_Pack_external_size
man:+MPI_Unpack_external++MPI_Unpack_external++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Unpack_external.html#MPI_Unpack_external
man:+MPI_Type_create_indexed_block++MPI_Type_create_indexed_block++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_indexed_block.html#MPI_Type_create_indexed_block
man:+MPI_Type_create_hindexed_block++MPI_Type_create_hindexed_block++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_hindexed_block.html#MPI_Type_create_hindexed_block
man:+MPI_Type_create_resized++MPI_Type_create_resized++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_resized.html#MPI_Type_create_resized
man:+MPI_Type_create_darray++MPI_Type_create_darray++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_darray.html#MPI_Type_create_darray
man:+MPI_Type_create_subarray++MPI_Type_create_subarray++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_subarray.html#MPI_Type_create_subarray
man:+MPI_Add_error_code++MPI_Add_error_code++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Add_error_code.html#MPI_Add_error_code
man:+MPI_Add_error_class++MPI_Add_error_class++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Add_error_class.html#MPI_Add_error_class
man:+MPI_Add_error_string++MPI_Add_error_string++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Add_error_string.html#MPI_Add_error_string
man:+MPI_Comm_call_errhandler++MPI_Comm_call_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_call_errhandler.html#MPI_Comm_call_errhandler
man:+MPI_Comm_create_errhandler++MPI_Comm_create_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_create_errhandler.html#MPI_Comm_create_errhandler
man:+MPI_Comm_get_errhandler++MPI_Comm_get_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_get_errhandler.html#MPI_Comm_get_errhandler
man:+MPI_Comm_set_errhandler++MPI_Comm_set_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_set_errhandler.html#MPI_Comm_set_errhandler
man:+MPI_Errhandler_create++MPI_Errhandler_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Errhandler_create.html#MPI_Errhandler_create
man:+MPI_Errhandler_free++MPI_Errhandler_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Errhandler_free.html#MPI_Errhandler_free
man:+MPI_Errhandler_get++MPI_Errhandler_get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Errhandler_get.html#MPI_Errhandler_get
man:+MPI_Errhandler_set++MPI_Errhandler_set++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Errhandler_set.html#MPI_Errhandler_set
man:+MPI_Error_class++MPI_Error_class++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Error_class.html#MPI_Error_class
man:+MPI_Error_string++MPI_Error_string++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Error_string.html#MPI_Error_string
man:+MPI_File_create_errhandler++MPI_File_create_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_create_errhandler.html#MPI_File_create_errhandler
man:+MPI_File_get_errhandler++MPI_File_get_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_get_errhandler.html#MPI_File_get_errhandler
man:+MPI_File_set_errhandler++MPI_File_set_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_set_errhandler.html#MPI_File_set_errhandler
man:+MPI_File_call_errhandler++MPI_File_call_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_call_errhandler.html#MPI_File_call_errhandler
man:+MPI_Win_create_errhandler++MPI_Win_create_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_create_errhandler.html#MPI_Win_create_errhandler
man:+MPI_Win_call_errhandler++MPI_Win_call_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_call_errhandler.html#MPI_Win_call_errhandler
man:+MPI_Win_get_errhandler++MPI_Win_get_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_get_errhandler.html#MPI_Win_get_errhandler
man:+MPI_Win_set_errhandler++MPI_Win_set_errhandler++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_set_errhandler.html#MPI_Win_set_errhandler
man:+MPI_Group_compare++MPI_Group_compare++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_compare.html#MPI_Group_compare
man:+MPI_Group_difference++MPI_Group_difference++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_difference.html#MPI_Group_difference
man:+MPI_Group_excl++MPI_Group_excl++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_excl.html#MPI_Group_excl
man:+MPI_Group_free++MPI_Group_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_free.html#MPI_Group_free
man:+MPI_Group_incl++MPI_Group_incl++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_incl.html#MPI_Group_incl
man:+MPI_Group_intersection++MPI_Group_intersection++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_intersection.html#MPI_Group_intersection
man:+MPI_Group_range_excl++MPI_Group_range_excl++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_range_excl.html#MPI_Group_range_excl
man:+MPI_Group_range_incl++MPI_Group_range_incl++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_range_incl.html#MPI_Group_range_incl
man:+MPI_Group_rank++MPI_Group_rank++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_rank.html#MPI_Group_rank
man:+MPI_Group_size++MPI_Group_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_size.html#MPI_Group_size
man:+MPI_Group_translate_ranks++MPI_Group_translate_ranks++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_translate_ranks.html#MPI_Group_translate_ranks
man:+MPI_Group_union++MPI_Group_union++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Group_union.html#MPI_Group_union
man:+MPI_Info_create++MPI_Info_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_create.html#MPI_Info_create
man:+MPI_Info_delete++MPI_Info_delete++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_delete.html#MPI_Info_delete
man:+MPI_Info_dup++MPI_Info_dup++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_dup.html#MPI_Info_dup
man:+MPI_Info_free++MPI_Info_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_free.html#MPI_Info_free
man:+MPI_Info_get++MPI_Info_get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_get.html#MPI_Info_get
man:+MPI_Info_get_nkeys++MPI_Info_get_nkeys++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_get_nkeys.html#MPI_Info_get_nkeys
man:+MPI_Info_get_nthkey++MPI_Info_get_nthkey++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_get_nthkey.html#MPI_Info_get_nthkey
man:+MPI_Info_get_valuelen++MPI_Info_get_valuelen++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_get_valuelen.html#MPI_Info_get_valuelen
man:+MPI_Info_set++MPI_Info_set++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Info_set.html#MPI_Info_set
man:+MPI_Abort++MPI_Abort++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Abort.html#MPI_Abort
man:+MPI_Init++MPI_Init++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Init.html#MPI_Init
man:+MPI_Initialized++MPI_Initialized++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Initialized.html#MPI_Initialized
man:+MPI_Init_thread++MPI_Init_thread++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Init_thread.html#MPI_Init_thread
man:+MPI_Is_thread_main++MPI_Is_thread_main++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Is_thread_main.html#MPI_Is_thread_main
man:+MPI_Finalize++MPI_Finalize++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Finalize.html#MPI_Finalize
man:+MPI_Finalized++MPI_Finalized++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Finalized.html#MPI_Finalized
man:+MPI_Query_thread++MPI_Query_thread++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Query_thread.html#MPI_Query_thread
man:+MPI_Get_processor_name++MPI_Get_processor_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_processor_name.html#MPI_Get_processor_name
man:+MPI_Pcontrol++MPI_Pcontrol++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Pcontrol.html#MPI_Pcontrol
man:+MPI_Get_version++MPI_Get_version++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_version.html#MPI_Get_version
man:+MPI_Get_library_version++MPI_Get_library_version++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_library_version.html#MPI_Get_library_version
man:+MPIX_Aint_add++MPIX_Aint_add++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_Aint_add.html#MPIX_Aint_add
man:+MPIX_Aint_diff++MPIX_Aint_diff++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_Aint_diff.html#MPIX_Aint_diff
man:+MPI_Bsend++MPI_Bsend++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Bsend.html#MPI_Bsend
man:+MPI_Bsend_init++MPI_Bsend_init++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Bsend_init.html#MPI_Bsend_init
man:+MPI_Buffer_attach++MPI_Buffer_attach++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Buffer_attach.html#MPI_Buffer_attach
man:+MPI_Buffer_detach++MPI_Buffer_detach++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Buffer_detach.html#MPI_Buffer_detach
man:+MPI_Cancel++MPI_Cancel++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cancel.html#MPI_Cancel
man:+MPI_Grequest_start++MPI_Grequest_start++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Grequest_start.html#MPI_Grequest_start
man:+MPI_Grequest_complete++MPI_Grequest_complete++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Grequest_complete.html#MPI_Grequest_complete
man:+MPI_Ibsend++MPI_Ibsend++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ibsend.html#MPI_Ibsend
man:+MPI_Improbe++MPI_Improbe++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Improbe.html#MPI_Improbe
man:+MPI_Imrecv++MPI_Imrecv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Imrecv.html#MPI_Imrecv
man:+MPI_Iprobe++MPI_Iprobe++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Iprobe.html#MPI_Iprobe
man:+MPI_Irecv++MPI_Irecv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Irecv.html#MPI_Irecv
man:+MPI_Irsend++MPI_Irsend++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Irsend.html#MPI_Irsend
man:+MPI_Isend++MPI_Isend++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Isend.html#MPI_Isend
man:+MPI_Issend++MPI_Issend++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Issend.html#MPI_Issend
man:+MPI_Mprobe++MPI_Mprobe++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Mprobe.html#MPI_Mprobe
man:+MPI_Mrecv++MPI_Mrecv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Mrecv.html#MPI_Mrecv
man:+MPI_Probe++MPI_Probe++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Probe.html#MPI_Probe
man:+MPI_Recv++MPI_Recv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Recv.html#MPI_Recv
man:+MPI_Recv_init++MPI_Recv_init++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Recv_init.html#MPI_Recv_init
man:+MPI_Request_free++MPI_Request_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Request_free.html#MPI_Request_free
man:+MPI_Request_get_status++MPI_Request_get_status++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Request_get_status.html#MPI_Request_get_status
man:+MPI_Rsend++MPI_Rsend++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Rsend.html#MPI_Rsend
man:+MPI_Rsend_init++MPI_Rsend_init++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Rsend_init.html#MPI_Rsend_init
man:+MPI_Send++MPI_Send++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Send.html#MPI_Send
man:+MPI_Send_init++MPI_Send_init++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Send_init.html#MPI_Send_init
man:+MPI_Sendrecv++MPI_Sendrecv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Sendrecv.html#MPI_Sendrecv
man:+MPI_Sendrecv_replace++MPI_Sendrecv_replace++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Sendrecv_replace.html#MPI_Sendrecv_replace
man:+MPI_Status_set_cancelled++MPI_Status_set_cancelled++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Status_set_cancelled.html#MPI_Status_set_cancelled
man:+MPI_Ssend++MPI_Ssend++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ssend.html#MPI_Ssend
man:+MPI_Ssend_init++MPI_Ssend_init++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ssend_init.html#MPI_Ssend_init
man:+MPI_Start++MPI_Start++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Start.html#MPI_Start
man:+MPI_Startall++MPI_Startall++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Startall.html#MPI_Startall
man:+MPI_Test++MPI_Test++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Test.html#MPI_Test
man:+MPI_Test_cancelled++MPI_Test_cancelled++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Test_cancelled.html#MPI_Test_cancelled
man:+MPI_Testall++MPI_Testall++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Testall.html#MPI_Testall
man:+MPI_Testany++MPI_Testany++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Testany.html#MPI_Testany
man:+MPI_Testsome++MPI_Testsome++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Testsome.html#MPI_Testsome
man:+MPI_Wait++MPI_Wait++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Wait.html#MPI_Wait
man:+MPI_Waitall++MPI_Waitall++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Waitall.html#MPI_Waitall
man:+MPI_Waitany++MPI_Waitany++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Waitany.html#MPI_Waitany
man:+MPI_Waitsome++MPI_Waitsome++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Waitsome.html#MPI_Waitsome
man:+MPI_Accumulate++MPI_Accumulate++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Accumulate.html#MPI_Accumulate
man:+MPI_Alloc_mem++MPI_Alloc_mem++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Alloc_mem.html#MPI_Alloc_mem
man:+MPI_Compare_and_swap++MPI_Compare_and_swap++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Compare_and_swap.html#MPI_Compare_and_swap
man:+MPI_Fetch_and_op++MPI_Fetch_and_op++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Fetch_and_op.html#MPI_Fetch_and_op
man:+MPI_Free_mem++MPI_Free_mem++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Free_mem.html#MPI_Free_mem
man:+MPI_Get++MPI_Get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get.html#MPI_Get
man:+MPI_Get_accumulate++MPI_Get_accumulate++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Get_accumulate.html#MPI_Get_accumulate
man:+MPI_Put++MPI_Put++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Put.html#MPI_Put
man:+MPI_Raccumulate++MPI_Raccumulate++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Raccumulate.html#MPI_Raccumulate
man:+MPI_Rget++MPI_Rget++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Rget.html#MPI_Rget
man:+MPI_Rget_accumulate++MPI_Rget_accumulate++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Rget_accumulate.html#MPI_Rget_accumulate
man:+MPI_Rput++MPI_Rput++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Rput.html#MPI_Rput
man:+MPI_Win_allocate++MPI_Win_allocate++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_allocate.html#MPI_Win_allocate
man:+MPI_Win_allocate_shared++MPI_Win_allocate_shared++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_allocate_shared.html#MPI_Win_allocate_shared
man:+MPI_Win_attach++MPI_Win_attach++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_attach.html#MPI_Win_attach
man:+MPI_Win_complete++MPI_Win_complete++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_complete.html#MPI_Win_complete
man:+MPI_Win_create++MPI_Win_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_create.html#MPI_Win_create
man:+MPI_Win_create_dynamic++MPI_Win_create_dynamic++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_create_dynamic.html#MPI_Win_create_dynamic
man:+MPI_Win_detach++MPI_Win_detach++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_detach.html#MPI_Win_detach
man:+MPI_Win_fence++MPI_Win_fence++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_fence.html#MPI_Win_fence
man:+MPI_Win_flush++MPI_Win_flush++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_flush.html#MPI_Win_flush
man:+MPI_Win_flush_all++MPI_Win_flush_all++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_flush_all.html#MPI_Win_flush_all
man:+MPI_Win_flush_local++MPI_Win_flush_local++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_flush_local.html#MPI_Win_flush_local
man:+MPI_Win_flush_local_all++MPI_Win_flush_local_all++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_flush_local_all.html#MPI_Win_flush_local_all
man:+MPI_Win_free++MPI_Win_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_free.html#MPI_Win_free
man:+MPI_Win_get_group++MPI_Win_get_group++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_get_group.html#MPI_Win_get_group
man:+MPI_Win_get_info++MPI_Win_get_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_get_info.html#MPI_Win_get_info
man:+MPI_Win_get_name++MPI_Win_get_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_get_name.html#MPI_Win_get_name
man:+MPI_Win_lock++MPI_Win_lock++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_lock.html#MPI_Win_lock
man:+MPI_Win_lock_all++MPI_Win_lock_all++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_lock_all.html#MPI_Win_lock_all
man:+MPI_Win_post++MPI_Win_post++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_post.html#MPI_Win_post
man:+MPI_Win_set_info++MPI_Win_set_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_set_info.html#MPI_Win_set_info
man:+MPI_Win_set_name++MPI_Win_set_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_set_name.html#MPI_Win_set_name
man:+MPI_Win_shared_query++MPI_Win_shared_query++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_shared_query.html#MPI_Win_shared_query
man:+MPI_Win_start++MPI_Win_start++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_start.html#MPI_Win_start
man:+MPI_Win_sync++MPI_Win_sync++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_sync.html#MPI_Win_sync
man:+MPI_Win_test++MPI_Win_test++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_test.html#MPI_Win_test
man:+MPI_Win_unlock++MPI_Win_unlock++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_unlock.html#MPI_Win_unlock
man:+MPI_Win_unlock_all++MPI_Win_unlock_all++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_unlock_all.html#MPI_Win_unlock_all
man:+MPI_Win_wait++MPI_Win_wait++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Win_wait.html#MPI_Win_wait
man:+MPI_Comm_disconnect++MPI_Comm_disconnect++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_disconnect.html#MPI_Comm_disconnect
man:+MPI_Comm_get_parent++MPI_Comm_get_parent++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_get_parent.html#MPI_Comm_get_parent
man:+MPI_Comm_join++MPI_Comm_join++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_join.html#MPI_Comm_join
man:+MPI_Comm_spawn++MPI_Comm_spawn++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_spawn.html#MPI_Comm_spawn
man:+MPI_Comm_spawn_multiple++MPI_Comm_spawn_multiple++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_spawn_multiple.html#MPI_Comm_spawn_multiple
man:+MPI_Lookup_name++MPI_Lookup_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Lookup_name.html#MPI_Lookup_name
man:+MPI_Publish_name++MPI_Publish_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Publish_name.html#MPI_Publish_name
man:+MPI_Unpublish_name++MPI_Unpublish_name++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Unpublish_name.html#MPI_Unpublish_name
man:+MPI_Open_port++MPI_Open_port++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Open_port.html#MPI_Open_port
man:+MPI_Close_port++MPI_Close_port++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Close_port.html#MPI_Close_port
man:+MPI_Comm_connect++MPI_Comm_connect++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_connect.html#MPI_Comm_connect
man:+MPI_Comm_accept++MPI_Comm_accept++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Comm_accept.html#MPI_Comm_accept
man:+MPI_Wtime++MPI_Wtime++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Wtime.html#MPI_Wtime
man:+MPI_Wtick++MPI_Wtick++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Wtick.html#MPI_Wtick
man:+MPI_Cart_coords++MPI_Cart_coords++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cart_coords.html#MPI_Cart_coords
man:+MPI_Cart_create++MPI_Cart_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cart_create.html#MPI_Cart_create
man:+MPI_Cart_get++MPI_Cart_get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cart_get.html#MPI_Cart_get
man:+MPI_Cart_map++MPI_Cart_map++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cart_map.html#MPI_Cart_map
man:+MPI_Cart_rank++MPI_Cart_rank++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cart_rank.html#MPI_Cart_rank
man:+MPI_Cart_shift++MPI_Cart_shift++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cart_shift.html#MPI_Cart_shift
man:+MPI_Cart_sub++MPI_Cart_sub++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cart_sub.html#MPI_Cart_sub
man:+MPI_Dims_create++MPI_Dims_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Dims_create.html#MPI_Dims_create
man:+MPI_Graph_get++MPI_Graph_get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Graph_get.html#MPI_Graph_get
man:+MPI_Graph_map++MPI_Graph_map++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Graph_map.html#MPI_Graph_map
man:+MPI_Graph_neighbors++MPI_Graph_neighbors++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Graph_neighbors.html#MPI_Graph_neighbors
man:+MPI_Graph_create++MPI_Graph_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Graph_create.html#MPI_Graph_create
man:+MPI_Graphdims_get++MPI_Graphdims_get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Graphdims_get.html#MPI_Graphdims_get
man:+MPI_Graph_neighbors_count++MPI_Graph_neighbors_count++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Graph_neighbors_count.html#MPI_Graph_neighbors_count
man:+MPI_Cartdim_get++MPI_Cartdim_get++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Cartdim_get.html#MPI_Cartdim_get
man:+MPI_Topo_test++MPI_Topo_test++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Topo_test.html#MPI_Topo_test
man:+MPI_Dist_graph_create_adjacent++MPI_Dist_graph_create_adjacent++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Dist_graph_create_adjacent.html#MPI_Dist_graph_create_adjacent
man:+MPI_Dist_graph_create++MPI_Dist_graph_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Dist_graph_create.html#MPI_Dist_graph_create
man:+MPI_Dist_graph_neighbors_count++MPI_Dist_graph_neighbors_count++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Dist_graph_neighbors_count.html#MPI_Dist_graph_neighbors_count
man:+MPI_Dist_graph_neighbors++MPI_Dist_graph_neighbors++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Dist_graph_neighbors.html#MPI_Dist_graph_neighbors
man:+MPI_Ineighbor_allgather++MPI_Ineighbor_allgather++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ineighbor_allgather.html#MPI_Ineighbor_allgather
man:+MPI_Ineighbor_allgatherv++MPI_Ineighbor_allgatherv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ineighbor_allgatherv.html#MPI_Ineighbor_allgatherv
man:+MPI_Ineighbor_alltoall++MPI_Ineighbor_alltoall++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ineighbor_alltoall.html#MPI_Ineighbor_alltoall
man:+MPI_Ineighbor_alltoallv++MPI_Ineighbor_alltoallv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ineighbor_alltoallv.html#MPI_Ineighbor_alltoallv
man:+MPI_Ineighbor_alltoallw++MPI_Ineighbor_alltoallw++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Ineighbor_alltoallw.html#MPI_Ineighbor_alltoallw
man:+MPI_Neighbor_allgather++MPI_Neighbor_allgather++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Neighbor_allgather.html#MPI_Neighbor_allgather
man:+MPI_Neighbor_allgatherv++MPI_Neighbor_allgatherv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Neighbor_allgatherv.html#MPI_Neighbor_allgatherv
man:+MPI_Neighbor_alltoall++MPI_Neighbor_alltoall++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Neighbor_alltoall.html#MPI_Neighbor_alltoall
man:+MPI_Neighbor_alltoallv++MPI_Neighbor_alltoallv++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Neighbor_alltoallv.html#MPI_Neighbor_alltoallv
man:+MPI_Neighbor_alltoallw++MPI_Neighbor_alltoallw++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Neighbor_alltoallw.html#MPI_Neighbor_alltoallw
man:+MPI_Type_create_f90_integer++MPI_Type_create_f90_integer++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_f90_integer.html#MPI_Type_create_f90_integer
man:+MPI_Type_create_f90_real++MPI_Type_create_f90_real++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_f90_real.html#MPI_Type_create_f90_real
man:+MPI_Type_create_f90_complex++MPI_Type_create_f90_complex++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Type_create_f90_complex.html#MPI_Type_create_f90_complex
man:+MPI_T_category_changed++MPI_T_category_changed++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_category_changed.html#MPI_T_category_changed
man:+MPI_T_category_get_categories++MPI_T_category_get_categories++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_category_get_categories.html#MPI_T_category_get_categories
man:+MPI_T_category_get_cvars++MPI_T_category_get_cvars++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_category_get_cvars.html#MPI_T_category_get_cvars
man:+MPI_T_category_get_info++MPI_T_category_get_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_category_get_info.html#MPI_T_category_get_info
man:+MPI_T_category_get_num++MPI_T_category_get_num++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_category_get_num.html#MPI_T_category_get_num
man:+MPI_T_category_get_pvars++MPI_T_category_get_pvars++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_category_get_pvars.html#MPI_T_category_get_pvars
man:+MPI_T_cvar_get_info++MPI_T_cvar_get_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_cvar_get_info.html#MPI_T_cvar_get_info
man:+MPI_T_cvar_get_num++MPI_T_cvar_get_num++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_cvar_get_num.html#MPI_T_cvar_get_num
man:+MPI_T_cvar_handle_alloc++MPI_T_cvar_handle_alloc++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_cvar_handle_alloc.html#MPI_T_cvar_handle_alloc
man:+MPI_T_cvar_handle_free++MPI_T_cvar_handle_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_cvar_handle_free.html#MPI_T_cvar_handle_free
man:+MPI_T_cvar_read++MPI_T_cvar_read++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_cvar_read.html#MPI_T_cvar_read
man:+MPI_T_cvar_write++MPI_T_cvar_write++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_cvar_write.html#MPI_T_cvar_write
man:+MPI_T_enum_get_info++MPI_T_enum_get_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_enum_get_info.html#MPI_T_enum_get_info
man:+MPI_T_enum_get_item++MPI_T_enum_get_item++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_enum_get_item.html#MPI_T_enum_get_item
man:+MPI_T_finalize++MPI_T_finalize++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_finalize.html#MPI_T_finalize
man:+MPI_T_init_thread++MPI_T_init_thread++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_init_thread.html#MPI_T_init_thread
man:+MPI_T_pvar_get_info++MPI_T_pvar_get_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_get_info.html#MPI_T_pvar_get_info
man:+MPI_T_pvar_get_num++MPI_T_pvar_get_num++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_get_num.html#MPI_T_pvar_get_num
man:+MPI_T_pvar_handle_alloc++MPI_T_pvar_handle_alloc++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_handle_alloc.html#MPI_T_pvar_handle_alloc
man:+MPI_T_pvar_handle_free++MPI_T_pvar_handle_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_handle_free.html#MPI_T_pvar_handle_free
man:+MPI_T_pvar_read++MPI_T_pvar_read++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_read.html#MPI_T_pvar_read
man:+MPI_T_pvar_readreset++MPI_T_pvar_readreset++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_readreset.html#MPI_T_pvar_readreset
man:+MPI_T_pvar_reset++MPI_T_pvar_reset++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_reset.html#MPI_T_pvar_reset
man:+MPI_T_pvar_session_create++MPI_T_pvar_session_create++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_session_create.html#MPI_T_pvar_session_create
man:+MPI_T_pvar_session_free++MPI_T_pvar_session_free++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_session_free.html#MPI_T_pvar_session_free
man:+MPI_T_pvar_start++MPI_T_pvar_start++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_start.html#MPI_T_pvar_start
man:+MPI_T_pvar_stop++MPI_T_pvar_stop++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_stop.html#MPI_T_pvar_stop
man:+MPI_T_pvar_write++MPI_T_pvar_write++++man+http://www.mpich.org/static/docs/latest/www3/MPI_T_pvar_write.html#MPI_T_pvar_write
man:+MPI_File_close++MPI_File_close++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_close.html#MPI_File_close
man:+MPI_File_delete++MPI_File_delete++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_delete.html#MPI_File_delete
man:+MPI_File_c2f++MPI_File_c2f++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_c2f.html#MPI_File_c2f
man:+MPI_File_f2c++MPI_File_f2c++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_f2c.html#MPI_File_f2c
man:+MPI_File_sync++MPI_File_sync++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_sync.html#MPI_File_sync
man:+MPI_File_get_amode++MPI_File_get_amode++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_get_amode.html#MPI_File_get_amode
man:+MPI_File_get_atomicity++MPI_File_get_atomicity++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_get_atomicity.html#MPI_File_get_atomicity
man:+MPI_File_get_byte_offset++MPI_File_get_byte_offset++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_get_byte_offset.html#MPI_File_get_byte_offset
man:+MPI_File_get_type_extent++MPI_File_get_type_extent++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_get_type_extent.html#MPI_File_get_type_extent
man:+MPI_File_get_group++MPI_File_get_group++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_get_group.html#MPI_File_get_group
man:+MPI_File_get_info++MPI_File_get_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_get_info.html#MPI_File_get_info
man:+MPI_File_get_position++MPI_File_get_position++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_get_position.html#MPI_File_get_position
man:+MPI_File_get_position_shared++MPI_File_get_position_shared++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_get_position_shared.html#MPI_File_get_position_shared
man:+MPI_File_get_size++MPI_File_get_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_get_size.html#MPI_File_get_size
man:+MPI_File_get_view++MPI_File_get_view++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_get_view.html#MPI_File_get_view
man:+MPI_File_iread++MPI_File_iread++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_iread.html#MPI_File_iread
man:+MPIX_File_iread_all++MPIX_File_iread_all++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_File_iread_all.html#MPIX_File_iread_all
man:+MPI_File_iread_at++MPI_File_iread_at++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_iread_at.html#MPI_File_iread_at
man:+MPIX_File_iread_at_all++MPIX_File_iread_at_all++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_File_iread_at_all.html#MPIX_File_iread_at_all
man:+MPI_File_iread_shared++MPI_File_iread_shared++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_iread_shared.html#MPI_File_iread_shared
man:+MPI_File_iwrite++MPI_File_iwrite++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_iwrite.html#MPI_File_iwrite
man:+MPIX_File_iwrite_all++MPIX_File_iwrite_all++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_File_iwrite_all.html#MPIX_File_iwrite_all
man:+MPI_File_iwrite_at++MPI_File_iwrite_at++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_iwrite_at.html#MPI_File_iwrite_at
man:+MPIX_File_iwrite_at_all++MPIX_File_iwrite_at_all++++man+http://www.mpich.org/static/docs/latest/www3/MPIX_File_iwrite_at_all.html#MPIX_File_iwrite_at_all
man:+MPI_File_iwrite_shared++MPI_File_iwrite_shared++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_iwrite_shared.html#MPI_File_iwrite_shared
man:+MPI_File_open++MPI_File_open++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_open.html#MPI_File_open
man:+MPI_File_preallocate++MPI_File_preallocate++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_preallocate.html#MPI_File_preallocate
man:+MPI_File_read_at_all_begin++MPI_File_read_at_all_begin++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_read_at_all_begin.html#MPI_File_read_at_all_begin
man:+MPI_File_read_at_all_end++MPI_File_read_at_all_end++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_read_at_all_end.html#MPI_File_read_at_all_end
man:+MPI_File_read++MPI_File_read++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_read.html#MPI_File_read
man:+MPI_File_read_all++MPI_File_read_all++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_read_all.html#MPI_File_read_all
man:+MPI_File_read_all_begin++MPI_File_read_all_begin++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_read_all_begin.html#MPI_File_read_all_begin
man:+MPI_File_read_all_end++MPI_File_read_all_end++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_read_all_end.html#MPI_File_read_all_end
man:+MPI_File_read_at++MPI_File_read_at++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_read_at.html#MPI_File_read_at
man:+MPI_File_read_at_all++MPI_File_read_at_all++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_read_at_all.html#MPI_File_read_at_all
man:+MPI_File_read_ordered++MPI_File_read_ordered++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_read_ordered.html#MPI_File_read_ordered
man:+MPI_File_read_ordered_begin++MPI_File_read_ordered_begin++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_read_ordered_begin.html#MPI_File_read_ordered_begin
man:+MPI_File_read_ordered_end++MPI_File_read_ordered_end++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_read_ordered_end.html#MPI_File_read_ordered_end
man:+MPI_File_read_shared++MPI_File_read_shared++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_read_shared.html#MPI_File_read_shared
man:+MPI_Register_datarep++MPI_Register_datarep++++man+http://www.mpich.org/static/docs/latest/www3/MPI_Register_datarep.html#MPI_Register_datarep
man:+MPI_File_seek++MPI_File_seek++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_seek.html#MPI_File_seek
man:+MPI_File_seek_shared++MPI_File_seek_shared++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_seek_shared.html#MPI_File_seek_shared
man:+MPI_File_set_atomicity++MPI_File_set_atomicity++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_set_atomicity.html#MPI_File_set_atomicity
man:+MPI_File_set_info++MPI_File_set_info++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_set_info.html#MPI_File_set_info
man:+MPI_File_set_size++MPI_File_set_size++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_set_size.html#MPI_File_set_size
man:+MPI_File_set_view++MPI_File_set_view++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_set_view.html#MPI_File_set_view
man:+MPI_File_write_at_all_begin++MPI_File_write_at_all_begin++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_write_at_all_begin.html#MPI_File_write_at_all_begin
man:+MPI_File_write_at_all_end++MPI_File_write_at_all_end++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_write_at_all_end.html#MPI_File_write_at_all_end
man:+MPI_File_write++MPI_File_write++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_write.html#MPI_File_write
man:+MPI_File_write_all++MPI_File_write_all++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_write_all.html#MPI_File_write_all
man:+MPI_File_write_all_begin++MPI_File_write_all_begin++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_write_all_begin.html#MPI_File_write_all_begin
man:+MPI_File_write_all_end++MPI_File_write_all_end++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_write_all_end.html#MPI_File_write_all_end
man:+MPI_File_write_at++MPI_File_write_at++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_write_at.html#MPI_File_write_at
man:+MPI_File_write_at_all++MPI_File_write_at_all++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_write_at_all.html#MPI_File_write_at_all
man:+MPI_File_write_ordered++MPI_File_write_ordered++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_write_ordered.html#MPI_File_write_ordered
man:+MPI_File_write_ordered_begin++MPI_File_write_ordered_begin++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_write_ordered_begin.html#MPI_File_write_ordered_begin
man:+MPI_File_write_ordered_end++MPI_File_write_ordered_end++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_write_ordered_end.html#MPI_File_write_ordered_end
man:+MPI_File_write_shared++MPI_File_write_shared++++man+http://www.mpich.org/static/docs/latest/www3/MPI_File_write_shared.html#MPI_File_write_shared
|