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 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797
|
man:+AO++AO++++man+https://petsc.org/release/manualpages/AO/AO.html#AO
man:+AOType++AOType++++man+https://petsc.org/release/manualpages/AO/AOType.html#AOType
man:+PetscBag++PetscBag++++man+https://petsc.org/release/manualpages/Bag/PetscBag.html#PetscBag
man:+PetscCallBLAS++PetscCallBLAS++++man+https://petsc.org/release/manualpages/Sys/PetscCallBLAS.html#PetscCallBLAS
man:+PetscBench++PetscBench++++man+https://petsc.org/release/manualpages/BM/PetscBench.html#PetscBench
man:+PetscBenchType++PetscBenchType++++man+https://petsc.org/release/manualpages/BM/PetscBenchType.html#PetscBenchType
man:+Characteristic++Characteristic++++man+https://petsc.org/release/manualpages/Characteristic/Characteristic.html#Characteristic
man:+CharacteristicType++CharacteristicType++++man+https://petsc.org/release/manualpages/Characteristic/CharacteristicType.html#CharacteristicType
man:+PetscConvEst++PetscConvEst++++man+https://petsc.org/release/manualpages/SNES/PetscConvEst.html#PetscConvEst
man:+PetscDeviceMalloc++PetscDeviceMalloc++++man+https://petsc.org/release/manualpages/Device/PetscDeviceMalloc.html#PetscDeviceMalloc
man:+PetscDeviceCalloc++PetscDeviceCalloc++++man+https://petsc.org/release/manualpages/Device/PetscDeviceCalloc.html#PetscDeviceCalloc
man:+PetscDeviceFree++PetscDeviceFree++++man+https://petsc.org/release/manualpages/Device/PetscDeviceFree.html#PetscDeviceFree
man:+PetscDeviceArrayCopy++PetscDeviceArrayCopy++++man+https://petsc.org/release/manualpages/Device/PetscDeviceArrayCopy.html#PetscDeviceArrayCopy
man:+PetscDeviceArrayZero++PetscDeviceArrayZero++++man+https://petsc.org/release/manualpages/Device/PetscDeviceArrayZero.html#PetscDeviceArrayZero
man:+PetscMemType++PetscMemType++++man+https://petsc.org/release/manualpages/Sys/PetscMemType.html#PetscMemType
man:+PETSC_MEMTYPE_HOST++PETSC_MEMTYPE_HOST++++man+https://petsc.org/release/manualpages/Sys/PetscMemType.html#PetscMemType
man:+PETSC_MEMTYPE_DEVICE++PETSC_MEMTYPE_DEVICE++++man+https://petsc.org/release/manualpages/Sys/PetscMemType.html#PetscMemType
man:+PETSC_MEMTYPE_CUDA++PETSC_MEMTYPE_CUDA++++man+https://petsc.org/release/manualpages/Sys/PetscMemType.html#PetscMemType
man:+PETSC_MEMTYPE_NVSHMEM++PETSC_MEMTYPE_NVSHMEM++++man+https://petsc.org/release/manualpages/Sys/PetscMemType.html#PetscMemType
man:+PETSC_MEMTYPE_HIP++PETSC_MEMTYPE_HIP++++man+https://petsc.org/release/manualpages/Sys/PetscMemType.html#PetscMemType
man:+PETSC_MEMTYPE_SYCL++PETSC_MEMTYPE_SYCL++++man+https://petsc.org/release/manualpages/Sys/PetscMemType.html#PetscMemType
man:+PetscOffloadMask++PetscOffloadMask++++man+https://petsc.org/release/manualpages/Sys/PetscOffloadMask.html#PetscOffloadMask
man:+PETSC_OFFLOAD_UNALLOCATED++PETSC_OFFLOAD_UNALLOCATED++++man+https://petsc.org/release/manualpages/Sys/PetscOffloadMask.html#PetscOffloadMask
man:+PETSC_OFFLOAD_CPU++PETSC_OFFLOAD_CPU++++man+https://petsc.org/release/manualpages/Sys/PetscOffloadMask.html#PetscOffloadMask
man:+PETSC_OFFLOAD_GPU++PETSC_OFFLOAD_GPU++++man+https://petsc.org/release/manualpages/Sys/PetscOffloadMask.html#PetscOffloadMask
man:+PETSC_OFFLOAD_BOTH++PETSC_OFFLOAD_BOTH++++man+https://petsc.org/release/manualpages/Sys/PetscOffloadMask.html#PetscOffloadMask
man:+PETSC_OFFLOAD_VECKOKKOS_DEPRECATED++PETSC_OFFLOAD_VECKOKKOS_DEPRECATED++++man+https://petsc.org/release/manualpages/Sys/PetscOffloadMask.html#PetscOffloadMask
man:+PETSC_OFFLOAD_KOKKOS++PETSC_OFFLOAD_KOKKOS++++man+https://petsc.org/release/manualpages/Sys/PetscOffloadMask.html#PetscOffloadMask
man:+PetscDeviceInitType++PetscDeviceInitType++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceInitType.html#PetscDeviceInitType
man:+PETSC_DEVICE_INIT_NONE++PETSC_DEVICE_INIT_NONE++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceInitType.html#PetscDeviceInitType
man:+PETSC_DEVICE_INIT_LAZY++PETSC_DEVICE_INIT_LAZY++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceInitType.html#PetscDeviceInitType
man:+PETSC_DEVICE_INIT_EAGER++PETSC_DEVICE_INIT_EAGER++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceInitType.html#PetscDeviceInitType
man:+PetscDeviceType++PetscDeviceType++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceType.html#PetscDeviceType
man:+PETSC_DEVICE_HOST++PETSC_DEVICE_HOST++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceType.html#PetscDeviceType
man:+PETSC_DEVICE_CUDA++PETSC_DEVICE_CUDA++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceType.html#PetscDeviceType
man:+PETSC_DEVICE_HIP++PETSC_DEVICE_HIP++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceType.html#PetscDeviceType
man:+PETSC_DEVICE_SYCL++PETSC_DEVICE_SYCL++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceType.html#PetscDeviceType
man:+PETSC_DEVICE_MAX++PETSC_DEVICE_MAX++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceType.html#PetscDeviceType
man:+PetscDeviceAttribute++PetscDeviceAttribute++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceAttribute.html#PetscDeviceAttribute
man:+PETSC_DEVICE_ATTR_SIZE_T_SHARED_MEM_PER_BLOCK++PETSC_DEVICE_ATTR_SIZE_T_SHARED_MEM_PER_BLOCK++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceAttribute.html#PetscDeviceAttribute
man:+PETSC_DEVICE_ATTR_MAX++PETSC_DEVICE_ATTR_MAX++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceAttribute.html#PetscDeviceAttribute
man:+PetscDevice++PetscDevice++++man+https://petsc.org/release/manualpages/Sys/PetscDevice.html#PetscDevice
man:+PetscStreamType++PetscStreamType++++man+https://petsc.org/release/manualpages/Sys/PetscStreamType.html#PetscStreamType
man:+PETSC_STREAM_DEFAULT++PETSC_STREAM_DEFAULT++++man+https://petsc.org/release/manualpages/Sys/PetscStreamType.html#PetscStreamType
man:+PETSC_STREAM_NONBLOCKING++PETSC_STREAM_NONBLOCKING++++man+https://petsc.org/release/manualpages/Sys/PetscStreamType.html#PetscStreamType
man:+PETSC_STREAM_DEFAULT_WITH_BARRIER++PETSC_STREAM_DEFAULT_WITH_BARRIER++++man+https://petsc.org/release/manualpages/Sys/PetscStreamType.html#PetscStreamType
man:+PETSC_STREAM_NONBLOCKING_WITH_BARRIER++PETSC_STREAM_NONBLOCKING_WITH_BARRIER++++man+https://petsc.org/release/manualpages/Sys/PetscStreamType.html#PetscStreamType
man:+PETSC_STREAM_MAX++PETSC_STREAM_MAX++++man+https://petsc.org/release/manualpages/Sys/PetscStreamType.html#PetscStreamType
man:+PetscDeviceContextJoinMode++PetscDeviceContextJoinMode++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceContextJoinMode.html#PetscDeviceContextJoinMode
man:+PETSC_DEVICE_CONTEXT_JOIN_DESTROY++PETSC_DEVICE_CONTEXT_JOIN_DESTROY++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceContextJoinMode.html#PetscDeviceContextJoinMode
man:+PETSC_DEVICE_CONTEXT_JOIN_SYNC++PETSC_DEVICE_CONTEXT_JOIN_SYNC++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceContextJoinMode.html#PetscDeviceContextJoinMode
man:+PETSC_DEVICE_CONTEXT_JOIN_NO_SYNC++PETSC_DEVICE_CONTEXT_JOIN_NO_SYNC++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceContextJoinMode.html#PetscDeviceContextJoinMode
man:+PetscDeviceContext++PetscDeviceContext++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceContext.html#PetscDeviceContext
man:+PetscDeviceCopyMode++PetscDeviceCopyMode++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceCopyMode.html#PetscDeviceCopyMode
man:+PETSC_DEVICE_COPY_HTOH++PETSC_DEVICE_COPY_HTOH++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceCopyMode.html#PetscDeviceCopyMode
man:+PETSC_DEVICE_COPY_DTOH++PETSC_DEVICE_COPY_DTOH++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceCopyMode.html#PetscDeviceCopyMode
man:+PETSC_DEVICE_COPY_HTOD++PETSC_DEVICE_COPY_HTOD++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceCopyMode.html#PetscDeviceCopyMode
man:+PETSC_DEVICE_COPY_DTOD++PETSC_DEVICE_COPY_DTOD++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceCopyMode.html#PetscDeviceCopyMode
man:+PETSC_DEVICE_COPY_AUTO++PETSC_DEVICE_COPY_AUTO++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceCopyMode.html#PetscDeviceCopyMode
man:+PetscMemoryAccessMode++PetscMemoryAccessMode++++man+https://petsc.org/release/manualpages/Sys/PetscMemoryAccessMode.html#PetscMemoryAccessMode
man:+PETSC_MEMORY_ACCESS_READ++PETSC_MEMORY_ACCESS_READ++++man+https://petsc.org/release/manualpages/Sys/PetscMemoryAccessMode.html#PetscMemoryAccessMode
man:+PETSC_MEMORY_ACCESS_WRITE++PETSC_MEMORY_ACCESS_WRITE++++man+https://petsc.org/release/manualpages/Sys/PetscMemoryAccessMode.html#PetscMemoryAccessMode
man:+PETSC_MEMORY_ACCESS_READ_WRITE++PETSC_MEMORY_ACCESS_READ_WRITE++++man+https://petsc.org/release/manualpages/Sys/PetscMemoryAccessMode.html#PetscMemoryAccessMode
man:+DMType++DMType++++man+https://petsc.org/release/manualpages/DM/DMType.html#DMType
man:+DMInterpolationInfo++DMInterpolationInfo++++man+https://petsc.org/release/manualpages/DM/DMInterpolationInfo.html#DMInterpolationInfo
man:+DMCopyLabelsMode++DMCopyLabelsMode++++man+https://petsc.org/release/manualpages/DM/DMCopyLabelsMode.html#DMCopyLabelsMode
man:+DM_COPY_LABELS_REPLACE++DM_COPY_LABELS_REPLACE++++man+https://petsc.org/release/manualpages/DM/DMCopyLabelsMode.html#DMCopyLabelsMode
man:+DM_COPY_LABELS_KEEP++DM_COPY_LABELS_KEEP++++man+https://petsc.org/release/manualpages/DM/DMCopyLabelsMode.html#DMCopyLabelsMode
man:+DM_COPY_LABELS_FAIL++DM_COPY_LABELS_FAIL++++man+https://petsc.org/release/manualpages/DM/DMCopyLabelsMode.html#DMCopyLabelsMode
man:+DMAdaptorType++DMAdaptorType++++man+https://petsc.org/release/manualpages/DM/DMAdaptorType.html#DMAdaptorType
man:+DMAdaptor++DMAdaptor++++man+https://petsc.org/release/manualpages/DM/DMAdaptor.html#DMAdaptor
man:+DMDA_STENCIL_STAR++DMDA_STENCIL_STAR++++man+https://petsc.org/release/manualpages/DMDA/DMDA_STENCIL_STAR.html#DMDA_STENCIL_STAR
man:+DMDA_STENCIL_BOX++DMDA_STENCIL_BOX++++man+https://petsc.org/release/manualpages/DMDA/DMDA_STENCIL_BOX.html#DMDA_STENCIL_BOX
man:+DMDACoor2d++DMDACoor2d++++man+https://petsc.org/release/manualpages/DMDA/DMDACoor2d.html#DMDACoor2d
man:+DMDACoor3d++DMDACoor3d++++man+https://petsc.org/release/manualpages/DMDA/DMDACoor3d.html#DMDACoor3d
man:+DMDAStencilType++DMDAStencilType++++man+https://petsc.org/release/manualpages/DMDA/DMDAStencilType.html#DMDAStencilType
man:+DMDA_STENCIL_STAR++DMDA_STENCIL_STAR++++man+https://petsc.org/release/manualpages/DMDA/DMDAStencilType.html#DMDAStencilType
man:+DMDA_STENCIL_BOX++DMDA_STENCIL_BOX++++man+https://petsc.org/release/manualpages/DMDA/DMDAStencilType.html#DMDAStencilType
man:+DMDAInterpolationType++DMDAInterpolationType++++man+https://petsc.org/release/manualpages/DMDA/DMDAInterpolationType.html#DMDAInterpolationType
man:+DMDA_Q0++DMDA_Q0++++man+https://petsc.org/release/manualpages/DMDA/DMDAInterpolationType.html#DMDAInterpolationType
man:+DMDA_Q1++DMDA_Q1++++man+https://petsc.org/release/manualpages/DMDA/DMDAInterpolationType.html#DMDAInterpolationType
man:+DMDAElementType++DMDAElementType++++man+https://petsc.org/release/manualpages/DMDA/DMDAElementType.html#DMDAElementType
man:+DMDA_ELEMENT_P1++DMDA_ELEMENT_P1++++man+https://petsc.org/release/manualpages/DMDA/DMDAElementType.html#DMDAElementType
man:+DMDA_ELEMENT_Q1++DMDA_ELEMENT_Q1++++man+https://petsc.org/release/manualpages/DMDA/DMDAElementType.html#DMDAElementType
man:+DMDALocalInfo++DMDALocalInfo++++man+https://petsc.org/release/manualpages/DMDA/DMDALocalInfo.html#DMDALocalInfo
man:+DMFieldType++DMFieldType++++man+https://petsc.org/release/manualpages/DM/DMFieldType.html#DMFieldType
man:+DMForestTopology++DMForestTopology++++man+https://petsc.org/release/manualpages/DMForest/DMForestTopology.html#DMForestTopology
man:+DMForestAdaptivityStrategy++DMForestAdaptivityStrategy++++man+https://petsc.org/release/manualpages/DMForest/DMForestAdaptivityStrategy.html#DMForestAdaptivityStrategy
man:+DMLabel++DMLabel++++man+https://petsc.org/release/manualpages/DM/DMLabel.html#DMLabel
man:+DMPATCH++DMPATCH++++man+https://petsc.org/release/manualpages/DMPatch/DMPATCH.html#DMPATCH
man:+DMPlexInterpolatedFlag++DMPlexInterpolatedFlag++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInterpolatedFlag.html#DMPlexInterpolatedFlag
man:+DMPLEX_INTERPOLATED_INVALID++DMPLEX_INTERPOLATED_INVALID++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInterpolatedFlag.html#DMPlexInterpolatedFlag
man:+DMPLEX_INTERPOLATED_NONE++DMPLEX_INTERPOLATED_NONE++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInterpolatedFlag.html#DMPlexInterpolatedFlag
man:+DMPLEX_INTERPOLATED_PARTIAL++DMPLEX_INTERPOLATED_PARTIAL++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInterpolatedFlag.html#DMPlexInterpolatedFlag
man:+DMPLEX_INTERPOLATED_MIXED++DMPLEX_INTERPOLATED_MIXED++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInterpolatedFlag.html#DMPlexInterpolatedFlag
man:+DMPLEX_INTERPOLATED_FULL++DMPLEX_INTERPOLATED_FULL++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInterpolatedFlag.html#DMPlexInterpolatedFlag
man:+DMPlexTPSType++DMPlexTPSType++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTPSType.html#DMPlexTPSType
man:+DMPLEX_TPS_SCHWARZ_P++DMPLEX_TPS_SCHWARZ_P++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTPSType.html#DMPlexTPSType
man:+DMPLEX_TPS_GYROID++DMPLEX_TPS_GYROID++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTPSType.html#DMPlexTPSType
man:+DMPlexTransformType++DMPlexTransformType++++man+https://petsc.org/release/manualpages/DM/DMPlexTransformType.html#DMPlexTransformType
man:+DMPlexTransform++DMPlexTransform++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransform.html#DMPlexTransform
man:+DMPlexShape++DMPlexShape++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexShape.html#DMPlexShape
man:+DM_SHAPE_BOX++DM_SHAPE_BOX++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexShape.html#DMPlexShape
man:+DM_SHAPE_BOX_SURFACE++DM_SHAPE_BOX_SURFACE++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexShape.html#DMPlexShape
man:+DM_SHAPE_BALL++DM_SHAPE_BALL++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexShape.html#DMPlexShape
man:+DM_SHAPE_SPHERE++DM_SHAPE_SPHERE++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexShape.html#DMPlexShape
man:+DM_SHAPE_CYLINDER++DM_SHAPE_CYLINDER++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexShape.html#DMPlexShape
man:+DM_SHAPE_SCHWARZ_P++DM_SHAPE_SCHWARZ_P++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexShape.html#DMPlexShape
man:+DM_SHAPE_GYROID++DM_SHAPE_GYROID++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexShape.html#DMPlexShape
man:+DM_SHAPE_DOUBLET++DM_SHAPE_DOUBLET++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexShape.html#DMPlexShape
man:+DM_SHAPE_ANNULUS++DM_SHAPE_ANNULUS++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexShape.html#DMPlexShape
man:+DM_SHAPE_HYPERCUBIC++DM_SHAPE_HYPERCUBIC++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexShape.html#DMPlexShape
man:+DM_SHAPE_ZBOX++DM_SHAPE_ZBOX++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexShape.html#DMPlexShape
man:+DM_SHAPE_UNKNOWN++DM_SHAPE_UNKNOWN++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexShape.html#DMPlexShape
man:+DMPlexCoordMap++DMPlexCoordMap++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCoordMap.html#DMPlexCoordMap
man:+DM_COORD_MAP_NONE++DM_COORD_MAP_NONE++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCoordMap.html#DMPlexCoordMap
man:+DM_COORD_MAP_SHEAR++DM_COORD_MAP_SHEAR++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCoordMap.html#DMPlexCoordMap
man:+DM_COORD_MAP_FLARE++DM_COORD_MAP_FLARE++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCoordMap.html#DMPlexCoordMap
man:+DM_COORD_MAP_ANNULUS++DM_COORD_MAP_ANNULUS++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCoordMap.html#DMPlexCoordMap
man:+DM_COORD_MAP_SHELL++DM_COORD_MAP_SHELL++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCoordMap.html#DMPlexCoordMap
man:+DM_COORD_MAP_SINUSOID++DM_COORD_MAP_SINUSOID++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCoordMap.html#DMPlexCoordMap
man:+DM_COORD_MAP_UNKNOWN++DM_COORD_MAP_UNKNOWN++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCoordMap.html#DMPlexCoordMap
man:+DMPlexCSRAlgorithm++DMPlexCSRAlgorithm++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCSRAlgorithm.html#DMPlexCSRAlgorithm
man:+DM_PLEX_CSR_MAT++DM_PLEX_CSR_MAT++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCSRAlgorithm.html#DMPlexCSRAlgorithm
man:+DM_PLEX_CSR_GRAPH++DM_PLEX_CSR_GRAPH++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCSRAlgorithm.html#DMPlexCSRAlgorithm
man:+DM_PLEX_CSR_OVERLAP++DM_PLEX_CSR_OVERLAP++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCSRAlgorithm.html#DMPlexCSRAlgorithm
man:+DMStagStencilLocation++DMStagStencilLocation++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_NULL_LOCATION++DMSTAG_NULL_LOCATION++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_BACK_DOWN_LEFT++DMSTAG_BACK_DOWN_LEFT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_BACK_DOWN++DMSTAG_BACK_DOWN++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_BACK_DOWN_RIGHT++DMSTAG_BACK_DOWN_RIGHT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_BACK_LEFT++DMSTAG_BACK_LEFT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_BACK++DMSTAG_BACK++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_BACK_RIGHT++DMSTAG_BACK_RIGHT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_BACK_UP_LEFT++DMSTAG_BACK_UP_LEFT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_BACK_UP++DMSTAG_BACK_UP++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_BACK_UP_RIGHT++DMSTAG_BACK_UP_RIGHT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_DOWN_LEFT++DMSTAG_DOWN_LEFT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_DOWN++DMSTAG_DOWN++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_DOWN_RIGHT++DMSTAG_DOWN_RIGHT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_LEFT++DMSTAG_LEFT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_ELEMENT++DMSTAG_ELEMENT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_RIGHT++DMSTAG_RIGHT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_UP_LEFT++DMSTAG_UP_LEFT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_UP++DMSTAG_UP++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_UP_RIGHT++DMSTAG_UP_RIGHT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_FRONT_DOWN_LEFT++DMSTAG_FRONT_DOWN_LEFT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_FRONT_DOWN++DMSTAG_FRONT_DOWN++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_FRONT_DOWN_RIGHT++DMSTAG_FRONT_DOWN_RIGHT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_FRONT_LEFT++DMSTAG_FRONT_LEFT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_FRONT++DMSTAG_FRONT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_FRONT_RIGHT++DMSTAG_FRONT_RIGHT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_FRONT_UP_LEFT++DMSTAG_FRONT_UP_LEFT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_FRONT_UP++DMSTAG_FRONT_UP++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMSTAG_FRONT_UP_RIGHT++DMSTAG_FRONT_UP_RIGHT++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilLocation.html#DMStagStencilLocation
man:+DMStagStencil++DMStagStencil++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencil.html#DMStagStencil
man:+DMStagStencilType++DMStagStencilType++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilType.html#DMStagStencilType
man:+DMSTAG_STENCIL_NONE++DMSTAG_STENCIL_NONE++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilType.html#DMStagStencilType
man:+DMSTAG_STENCIL_STAR++DMSTAG_STENCIL_STAR++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilType.html#DMStagStencilType
man:+DMSTAG_STENCIL_BOX++DMSTAG_STENCIL_BOX++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilType.html#DMStagStencilType
man:+DMSwarmType++DMSwarmType++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmType.html#DMSwarmType
man:+DMSWARM_BASIC++DMSWARM_BASIC++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmType.html#DMSwarmType
man:+DMSWARM_PIC++DMSWARM_PIC++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmType.html#DMSwarmType
man:+DMSwarmPICLayoutType++DMSwarmPICLayoutType++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmPICLayoutType.html#DMSwarmPICLayoutType
man:+DMSWARMPIC_LAYOUT_REGULAR++DMSWARMPIC_LAYOUT_REGULAR++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmPICLayoutType.html#DMSwarmPICLayoutType
man:+DMSWARMPIC_LAYOUT_GAUSS++DMSWARMPIC_LAYOUT_GAUSS++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmPICLayoutType.html#DMSwarmPICLayoutType
man:+DMSWARMPIC_LAYOUT_SUBDIVISION++DMSWARMPIC_LAYOUT_SUBDIVISION++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmPICLayoutType.html#DMSwarmPICLayoutType
man:+DMSwarmCellDM++DMSwarmCellDM++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCellDM.html#DMSwarmCellDM
man:+DM++DM++++man+https://petsc.org/release/manualpages/DM/DM.html#DM
man:+DMBoundaryType++DMBoundaryType++++man+https://petsc.org/release/manualpages/DM/DMBoundaryType.html#DMBoundaryType
man:+DM_BOUNDARY_NONE++DM_BOUNDARY_NONE++++man+https://petsc.org/release/manualpages/DM/DMBoundaryType.html#DMBoundaryType
man:+DM_BOUNDARY_GHOSTED++DM_BOUNDARY_GHOSTED++++man+https://petsc.org/release/manualpages/DM/DMBoundaryType.html#DMBoundaryType
man:+DM_BOUNDARY_MIRROR++DM_BOUNDARY_MIRROR++++man+https://petsc.org/release/manualpages/DM/DMBoundaryType.html#DMBoundaryType
man:+DM_BOUNDARY_PERIODIC++DM_BOUNDARY_PERIODIC++++man+https://petsc.org/release/manualpages/DM/DMBoundaryType.html#DMBoundaryType
man:+DM_BOUNDARY_TWIST++DM_BOUNDARY_TWIST++++man+https://petsc.org/release/manualpages/DM/DMBoundaryType.html#DMBoundaryType
man:+DMBoundaryConditionType++DMBoundaryConditionType++++man+https://petsc.org/release/manualpages/DM/DMBoundaryConditionType.html#DMBoundaryConditionType
man:+DM_BC_ESSENTIAL++DM_BC_ESSENTIAL++++man+https://petsc.org/release/manualpages/DM/DMBoundaryConditionType.html#DMBoundaryConditionType
man:+DM_BC_ESSENTIAL_FIELD++DM_BC_ESSENTIAL_FIELD++++man+https://petsc.org/release/manualpages/DM/DMBoundaryConditionType.html#DMBoundaryConditionType
man:+DM_BC_NATURAL++DM_BC_NATURAL++++man+https://petsc.org/release/manualpages/DM/DMBoundaryConditionType.html#DMBoundaryConditionType
man:+DM_BC_NATURAL_FIELD++DM_BC_NATURAL_FIELD++++man+https://petsc.org/release/manualpages/DM/DMBoundaryConditionType.html#DMBoundaryConditionType
man:+DM_BC_ESSENTIAL_BD_FIELD++DM_BC_ESSENTIAL_BD_FIELD++++man+https://petsc.org/release/manualpages/DM/DMBoundaryConditionType.html#DMBoundaryConditionType
man:+DM_BC_NATURAL_RIEMANN++DM_BC_NATURAL_RIEMANN++++man+https://petsc.org/release/manualpages/DM/DMBoundaryConditionType.html#DMBoundaryConditionType
man:+DMPointLocationType++DMPointLocationType++++man+https://petsc.org/release/manualpages/DM/DMPointLocationType.html#DMPointLocationType
man:+DM_POINTLOCATION_NONE++DM_POINTLOCATION_NONE++++man+https://petsc.org/release/manualpages/DM/DMPointLocationType.html#DMPointLocationType
man:+DM_POINTLOCATION_NEAREST++DM_POINTLOCATION_NEAREST++++man+https://petsc.org/release/manualpages/DM/DMPointLocationType.html#DMPointLocationType
man:+DM_POINTLOCATION_REMOVE++DM_POINTLOCATION_REMOVE++++man+https://petsc.org/release/manualpages/DM/DMPointLocationType.html#DMPointLocationType
man:+DMBlockingType++DMBlockingType++++man+https://petsc.org/release/manualpages/DM/DMBlockingType.html#DMBlockingType
man:+DM_BLOCKING_TOPOLOGICAL_POINT++DM_BLOCKING_TOPOLOGICAL_POINT++++man+https://petsc.org/release/manualpages/DM/DMBlockingType.html#DMBlockingType
man:+DM_BLOCKING_FIELD_NODE++DM_BLOCKING_FIELD_NODE++++man+https://petsc.org/release/manualpages/DM/DMBlockingType.html#DMBlockingType
man:+DMAdaptationStrategy++DMAdaptationStrategy++++man+https://petsc.org/release/manualpages/DM/DMAdaptationStrategy.html#DMAdaptationStrategy
man:+DM_ADAPTATION_INITIAL++DM_ADAPTATION_INITIAL++++man+https://petsc.org/release/manualpages/DM/DMAdaptationStrategy.html#DMAdaptationStrategy
man:+DM_ADAPTATION_SEQUENTIAL++DM_ADAPTATION_SEQUENTIAL++++man+https://petsc.org/release/manualpages/DM/DMAdaptationStrategy.html#DMAdaptationStrategy
man:+DM_ADAPTATION_MULTILEVEL++DM_ADAPTATION_MULTILEVEL++++man+https://petsc.org/release/manualpages/DM/DMAdaptationStrategy.html#DMAdaptationStrategy
man:+DMAdaptationCriterion++DMAdaptationCriterion++++man+https://petsc.org/release/manualpages/DM/DMAdaptationCriterion.html#DMAdaptationCriterion
man:+DM_ADAPTATION_NONE++DM_ADAPTATION_NONE++++man+https://petsc.org/release/manualpages/DM/DMAdaptationCriterion.html#DMAdaptationCriterion
man:+DM_ADAPTATION_REFINE++DM_ADAPTATION_REFINE++++man+https://petsc.org/release/manualpages/DM/DMAdaptationCriterion.html#DMAdaptationCriterion
man:+DM_ADAPTATION_LABEL++DM_ADAPTATION_LABEL++++man+https://petsc.org/release/manualpages/DM/DMAdaptationCriterion.html#DMAdaptationCriterion
man:+DM_ADAPTATION_METRIC++DM_ADAPTATION_METRIC++++man+https://petsc.org/release/manualpages/DM/DMAdaptationCriterion.html#DMAdaptationCriterion
man:+DMAdaptFlag++DMAdaptFlag++++man+https://petsc.org/release/manualpages/DM/DMAdaptFlag.html#DMAdaptFlag
man:+DM_ADAPT_DETERMINE++DM_ADAPT_DETERMINE++++man+https://petsc.org/release/manualpages/DM/DMAdaptFlag.html#DMAdaptFlag
man:+DM_ADAPT_KEEP++DM_ADAPT_KEEP++++man+https://petsc.org/release/manualpages/DM/DMAdaptFlag.html#DMAdaptFlag
man:+DM_ADAPT_REFINE++DM_ADAPT_REFINE++++man+https://petsc.org/release/manualpages/DM/DMAdaptFlag.html#DMAdaptFlag
man:+DM_ADAPT_COARSEN++DM_ADAPT_COARSEN++++man+https://petsc.org/release/manualpages/DM/DMAdaptFlag.html#DMAdaptFlag
man:+DM_ADAPT_COARSEN_LAST++DM_ADAPT_COARSEN_LAST++++man+https://petsc.org/release/manualpages/DM/DMAdaptFlag.html#DMAdaptFlag
man:+DM_ADAPT_RESERVED_COUNT++DM_ADAPT_RESERVED_COUNT++++man+https://petsc.org/release/manualpages/DM/DMAdaptFlag.html#DMAdaptFlag
man:+DMDirection++DMDirection++++man+https://petsc.org/release/manualpages/DM/DMDirection.html#DMDirection
man:+DM_X++DM_X++++man+https://petsc.org/release/manualpages/DM/DMDirection.html#DMDirection
man:+DM_Y++DM_Y++++man+https://petsc.org/release/manualpages/DM/DMDirection.html#DMDirection
man:+DM_Z++DM_Z++++man+https://petsc.org/release/manualpages/DM/DMDirection.html#DMDirection
man:+DMEnclosureType++DMEnclosureType++++man+https://petsc.org/release/manualpages/DM/DMEnclosureType.html#DMEnclosureType
man:+DM_ENC_EQUALITY++DM_ENC_EQUALITY++++man+https://petsc.org/release/manualpages/DM/DMEnclosureType.html#DMEnclosureType
man:+DM_ENC_SUPERMESH++DM_ENC_SUPERMESH++++man+https://petsc.org/release/manualpages/DM/DMEnclosureType.html#DMEnclosureType
man:+DM_ENC_SUBMESH++DM_ENC_SUBMESH++++man+https://petsc.org/release/manualpages/DM/DMEnclosureType.html#DMEnclosureType
man:+DM_ENC_NONE++DM_ENC_NONE++++man+https://petsc.org/release/manualpages/DM/DMEnclosureType.html#DMEnclosureType
man:+DM_ENC_UNKNOWN++DM_ENC_UNKNOWN++++man+https://petsc.org/release/manualpages/DM/DMEnclosureType.html#DMEnclosureType
man:+DMPolytopeType++DMPolytopeType++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_POINT++DM_POLYTOPE_POINT++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_SEGMENT++DM_POLYTOPE_SEGMENT++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_POINT_PRISM_TENSOR++DM_POLYTOPE_POINT_PRISM_TENSOR++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_TRIANGLE++DM_POLYTOPE_TRIANGLE++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_QUADRILATERAL++DM_POLYTOPE_QUADRILATERAL++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_SEG_PRISM_TENSOR++DM_POLYTOPE_SEG_PRISM_TENSOR++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_TETRAHEDRON++DM_POLYTOPE_TETRAHEDRON++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_HEXAHEDRON++DM_POLYTOPE_HEXAHEDRON++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_TRI_PRISM++DM_POLYTOPE_TRI_PRISM++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_TRI_PRISM_TENSOR++DM_POLYTOPE_TRI_PRISM_TENSOR++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_QUAD_PRISM_TENSOR++DM_POLYTOPE_QUAD_PRISM_TENSOR++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_PYRAMID++DM_POLYTOPE_PYRAMID++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_FV_GHOST++DM_POLYTOPE_FV_GHOST++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_INTERIOR_GHOST++DM_POLYTOPE_INTERIOR_GHOST++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_UNKNOWN++DM_POLYTOPE_UNKNOWN++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_UNKNOWN_CELL++DM_POLYTOPE_UNKNOWN_CELL++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_POLYTOPE_UNKNOWN_FACE++DM_POLYTOPE_UNKNOWN_FACE++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+DM_NUM_POLYTOPES++DM_NUM_POLYTOPES++++man+https://petsc.org/release/manualpages/DM/DMPolytopeType.html#DMPolytopeType
man:+PetscUnit++PetscUnit++++man+https://petsc.org/release/manualpages/DM/PetscUnit.html#PetscUnit
man:+PETSC_UNIT_LENGTH++PETSC_UNIT_LENGTH++++man+https://petsc.org/release/manualpages/DM/PetscUnit.html#PetscUnit
man:+PETSC_UNIT_MASS++PETSC_UNIT_MASS++++man+https://petsc.org/release/manualpages/DM/PetscUnit.html#PetscUnit
man:+PETSC_UNIT_TIME++PETSC_UNIT_TIME++++man+https://petsc.org/release/manualpages/DM/PetscUnit.html#PetscUnit
man:+PETSC_UNIT_CURRENT++PETSC_UNIT_CURRENT++++man+https://petsc.org/release/manualpages/DM/PetscUnit.html#PetscUnit
man:+PETSC_UNIT_TEMPERATURE++PETSC_UNIT_TEMPERATURE++++man+https://petsc.org/release/manualpages/DM/PetscUnit.html#PetscUnit
man:+PETSC_UNIT_AMOUNT++PETSC_UNIT_AMOUNT++++man+https://petsc.org/release/manualpages/DM/PetscUnit.html#PetscUnit
man:+PETSC_UNIT_LUMINOSITY++PETSC_UNIT_LUMINOSITY++++man+https://petsc.org/release/manualpages/DM/PetscUnit.html#PetscUnit
man:+NUM_PETSC_UNITS++NUM_PETSC_UNITS++++man+https://petsc.org/release/manualpages/DM/PetscUnit.html#PetscUnit
man:+DMReorderDefaultFlag++DMReorderDefaultFlag++++man+https://petsc.org/release/manualpages/DM/DMReorderDefaultFlag.html#DMReorderDefaultFlag
man:+DM_REORDER_DEFAULT_NOTSET++DM_REORDER_DEFAULT_NOTSET++++man+https://petsc.org/release/manualpages/DM/DMReorderDefaultFlag.html#DMReorderDefaultFlag
man:+DM_REORDER_DEFAULT_FALSE++DM_REORDER_DEFAULT_FALSE++++man+https://petsc.org/release/manualpages/DM/DMReorderDefaultFlag.html#DMReorderDefaultFlag
man:+DM_REORDER_DEFAULT_TRUE++DM_REORDER_DEFAULT_TRUE++++man+https://petsc.org/release/manualpages/DM/DMReorderDefaultFlag.html#DMReorderDefaultFlag
man:+DMField++DMField++++man+https://petsc.org/release/manualpages/DM/DMField.html#DMField
man:+DMUniversalLabel++DMUniversalLabel++++man+https://petsc.org/release/manualpages/DM/DMUniversalLabel.html#DMUniversalLabel
man:+PetscDrawRealToColor++PetscDrawRealToColor++++man+https://petsc.org/release/manualpages/Draw/PetscDrawRealToColor.html#PetscDrawRealToColor
man:+PetscDrawMarkerType++PetscDrawMarkerType++++man+https://petsc.org/release/manualpages/Draw/PetscDrawMarkerType.html#PetscDrawMarkerType
man:+PETSC_DRAW_MARKER_CROSS++PETSC_DRAW_MARKER_CROSS++++man+https://petsc.org/release/manualpages/Draw/PetscDrawMarkerType.html#PetscDrawMarkerType
man:+PETSC_DRAW_MARKER_POINT++PETSC_DRAW_MARKER_POINT++++man+https://petsc.org/release/manualpages/Draw/PetscDrawMarkerType.html#PetscDrawMarkerType
man:+PETSC_DRAW_MARKER_PLUS++PETSC_DRAW_MARKER_PLUS++++man+https://petsc.org/release/manualpages/Draw/PetscDrawMarkerType.html#PetscDrawMarkerType
man:+PETSC_DRAW_MARKER_CIRCLE++PETSC_DRAW_MARKER_CIRCLE++++man+https://petsc.org/release/manualpages/Draw/PetscDrawMarkerType.html#PetscDrawMarkerType
man:+PetscDrawButton++PetscDrawButton++++man+https://petsc.org/release/manualpages/Draw/PetscDrawButton.html#PetscDrawButton
man:+PETSC_BUTTON_NONE++PETSC_BUTTON_NONE++++man+https://petsc.org/release/manualpages/Draw/PetscDrawButton.html#PetscDrawButton
man:+PETSC_BUTTON_LEFT++PETSC_BUTTON_LEFT++++man+https://petsc.org/release/manualpages/Draw/PetscDrawButton.html#PetscDrawButton
man:+PETSC_BUTTON_CENTER++PETSC_BUTTON_CENTER++++man+https://petsc.org/release/manualpages/Draw/PetscDrawButton.html#PetscDrawButton
man:+PETSC_BUTTON_RIGHT++PETSC_BUTTON_RIGHT++++man+https://petsc.org/release/manualpages/Draw/PetscDrawButton.html#PetscDrawButton
man:+PETSC_BUTTON_WHEEL_UP++PETSC_BUTTON_WHEEL_UP++++man+https://petsc.org/release/manualpages/Draw/PetscDrawButton.html#PetscDrawButton
man:+PETSC_BUTTON_WHEEL_DOWN++PETSC_BUTTON_WHEEL_DOWN++++man+https://petsc.org/release/manualpages/Draw/PetscDrawButton.html#PetscDrawButton
man:+PETSC_BUTTON_LEFT_SHIFT++PETSC_BUTTON_LEFT_SHIFT++++man+https://petsc.org/release/manualpages/Draw/PetscDrawButton.html#PetscDrawButton
man:+PETSC_BUTTON_CENTER_SHIFT++PETSC_BUTTON_CENTER_SHIFT++++man+https://petsc.org/release/manualpages/Draw/PetscDrawButton.html#PetscDrawButton
man:+PETSC_BUTTON_RIGHT_SHIFT++PETSC_BUTTON_RIGHT_SHIFT++++man+https://petsc.org/release/manualpages/Draw/PetscDrawButton.html#PetscDrawButton
man:+PetscDrawViewPorts++PetscDrawViewPorts++++man+https://petsc.org/release/manualpages/Draw/PetscDrawViewPorts.html#PetscDrawViewPorts
man:+PetscDrawCollectiveBegin++PetscDrawCollectiveBegin++++man+https://petsc.org/release/manualpages/Draw/PetscDrawCollectiveBegin.html#PetscDrawCollectiveBegin
man:+PetscDrawCollectiveEnd++PetscDrawCollectiveEnd++++man+https://petsc.org/release/manualpages/Draw/PetscDrawCollectiveEnd.html#PetscDrawCollectiveEnd
man:+PetscDrawType++PetscDrawType++++man+https://petsc.org/release/manualpages/Draw/PetscDrawType.html#PetscDrawType
man:+PetscDraw++PetscDraw++++man+https://petsc.org/release/manualpages/Draw/PetscDraw.html#PetscDraw
man:+PetscDrawAxis++PetscDrawAxis++++man+https://petsc.org/release/manualpages/Draw/PetscDrawAxis.html#PetscDrawAxis
man:+PetscDrawLG++PetscDrawLG++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLG.html#PetscDrawLG
man:+PetscDrawSP++PetscDrawSP++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSP.html#PetscDrawSP
man:+PetscDrawHG++PetscDrawHG++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHG.html#PetscDrawHG
man:+PetscDrawBar++PetscDrawBar++++man+https://petsc.org/release/manualpages/Draw/PetscDrawBar.html#PetscDrawBar
man:+PetscDSType++PetscDSType++++man+https://petsc.org/release/manualpages/DT/PetscDSType.html#PetscDSType
man:+PetscSimplePointFn++PetscSimplePointFn++++man+https://petsc.org/release/manualpages/DT/PetscSimplePointFn.html#PetscSimplePointFn
man:+PetscDS++PetscDS++++man+https://petsc.org/release/manualpages/DT/PetscDS.html#PetscDS
man:+PetscWeakForm++PetscWeakForm++++man+https://petsc.org/release/manualpages/DT/PetscWeakForm.html#PetscWeakForm
man:+PetscFormKey++PetscFormKey++++man+https://petsc.org/release/manualpages/DT/PetscFormKey.html#PetscFormKey
man:+PetscWeakFormKind++PetscWeakFormKind++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_OBJECTIVE++PETSC_WF_OBJECTIVE++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_F0++PETSC_WF_F0++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_F1++PETSC_WF_F1++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_G0++PETSC_WF_G0++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_G1++PETSC_WF_G1++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_G2++PETSC_WF_G2++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_G3++PETSC_WF_G3++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_GP0++PETSC_WF_GP0++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_GP1++PETSC_WF_GP1++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_GP2++PETSC_WF_GP2++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_GP3++PETSC_WF_GP3++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_GT0++PETSC_WF_GT0++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_GT1++PETSC_WF_GT1++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_GT2++PETSC_WF_GT2++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_GT3++PETSC_WF_GT3++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_BDF0++PETSC_WF_BDF0++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_BDF1++PETSC_WF_BDF1++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_BDG0++PETSC_WF_BDG0++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_BDG1++PETSC_WF_BDG1++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_BDG2++PETSC_WF_BDG2++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_BDG3++PETSC_WF_BDG3++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_BDGP0++PETSC_WF_BDGP0++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_BDGP1++PETSC_WF_BDGP1++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_BDGP2++PETSC_WF_BDGP2++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_BDGP3++PETSC_WF_BDGP3++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_R++PETSC_WF_R++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_WF_CEED++PETSC_WF_CEED++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PETSC_NUM_WF++PETSC_NUM_WF++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormKind.html#PetscWeakFormKind
man:+PetscQuadrature++PetscQuadrature++++man+https://petsc.org/release/manualpages/DT/PetscQuadrature.html#PetscQuadrature
man:+PetscGaussLobattoLegendreCreateType++PetscGaussLobattoLegendreCreateType++++man+https://petsc.org/release/manualpages/DT/PetscGaussLobattoLegendreCreateType.html#PetscGaussLobattoLegendreCreateType
man:+PETSCGAUSSLOBATTOLEGENDRE_VIA_LINEAR_ALGEBRA++PETSCGAUSSLOBATTOLEGENDRE_VIA_LINEAR_ALGEBRA++++man+https://petsc.org/release/manualpages/DT/PetscGaussLobattoLegendreCreateType.html#PetscGaussLobattoLegendreCreateType
man:+PETSCGAUSSLOBATTOLEGENDRE_VIA_NEWTON++PETSCGAUSSLOBATTOLEGENDRE_VIA_NEWTON++++man+https://petsc.org/release/manualpages/DT/PetscGaussLobattoLegendreCreateType.html#PetscGaussLobattoLegendreCreateType
man:+PetscDTNodeType++PetscDTNodeType++++man+https://petsc.org/release/manualpages/DT/PetscDTNodeType.html#PetscDTNodeType
man:+PETSCDTNODES_DEFAULT++PETSCDTNODES_DEFAULT++++man+https://petsc.org/release/manualpages/DT/PetscDTNodeType.html#PetscDTNodeType
man:+PETSCDTNODES_GAUSSJACOBI++PETSCDTNODES_GAUSSJACOBI++++man+https://petsc.org/release/manualpages/DT/PetscDTNodeType.html#PetscDTNodeType
man:+PETSCDTNODES_EQUISPACED++PETSCDTNODES_EQUISPACED++++man+https://petsc.org/release/manualpages/DT/PetscDTNodeType.html#PetscDTNodeType
man:+PETSCDTNODES_TANHSINH++PETSCDTNODES_TANHSINH++++man+https://petsc.org/release/manualpages/DT/PetscDTNodeType.html#PetscDTNodeType
man:+PetscDTSimplexQuadratureType++PetscDTSimplexQuadratureType++++man+https://petsc.org/release/manualpages/DT/PetscDTSimplexQuadratureType.html#PetscDTSimplexQuadratureType
man:+PETSCDTSIMPLEXQUAD_DEFAULT++PETSCDTSIMPLEXQUAD_DEFAULT++++man+https://petsc.org/release/manualpages/DT/PetscDTSimplexQuadratureType.html#PetscDTSimplexQuadratureType
man:+PETSCDTSIMPLEXQUAD_CONIC++PETSCDTSIMPLEXQUAD_CONIC++++man+https://petsc.org/release/manualpages/DT/PetscDTSimplexQuadratureType.html#PetscDTSimplexQuadratureType
man:+PETSCDTSIMPLEXQUAD_MINSYM++PETSCDTSIMPLEXQUAD_MINSYM++++man+https://petsc.org/release/manualpages/DT/PetscDTSimplexQuadratureType.html#PetscDTSimplexQuadratureType
man:+PETSC_FORM_DEGREE_UNDEFINED++PETSC_FORM_DEGREE_UNDEFINED++++man+https://petsc.org/release/manualpages/DT/PETSC_FORM_DEGREE_UNDEFINED.html#PETSC_FORM_DEGREE_UNDEFINED
man:+PetscDTFactorial++PetscDTFactorial++++man+https://petsc.org/release/manualpages/DT/PetscDTFactorial.html#PetscDTFactorial
man:+PetscDTFactorialInt++PetscDTFactorialInt++++man+https://petsc.org/release/manualpages/DT/PetscDTFactorialInt.html#PetscDTFactorialInt
man:+PetscDTBinomial++PetscDTBinomial++++man+https://petsc.org/release/manualpages/DT/PetscDTBinomial.html#PetscDTBinomial
man:+PetscDTBinomialInt++PetscDTBinomialInt++++man+https://petsc.org/release/manualpages/DT/PetscDTBinomialInt.html#PetscDTBinomialInt
man:+PetscDTEnumPerm++PetscDTEnumPerm++++man+https://petsc.org/release/manualpages/DT/PetscDTEnumPerm.html#PetscDTEnumPerm
man:+PetscDTPermIndex++PetscDTPermIndex++++man+https://petsc.org/release/manualpages/DT/PetscDTPermIndex.html#PetscDTPermIndex
man:+PetscDTEnumSubset++PetscDTEnumSubset++++man+https://petsc.org/release/manualpages/DT/PetscDTEnumSubset.html#PetscDTEnumSubset
man:+PetscDTSubsetIndex++PetscDTSubsetIndex++++man+https://petsc.org/release/manualpages/DT/PetscDTSubsetIndex.html#PetscDTSubsetIndex
man:+PetscDTEnumSplit++PetscDTEnumSplit++++man+https://petsc.org/release/manualpages/DT/PetscDTEnumSplit.html#PetscDTEnumSplit
man:+PetscTabulation++PetscTabulation++++man+https://petsc.org/release/manualpages/DT/PetscTabulation.html#PetscTabulation
man:+PetscDualSpace++PetscDualSpace++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpace.html#PetscDualSpace
man:+PetscDualSpaceReferenceCell++PetscDualSpaceReferenceCell++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceReferenceCell.html#PetscDualSpaceReferenceCell
man:+PetscDualSpaceTransformType++PetscDualSpaceTransformType++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceTransformType.html#PetscDualSpaceTransformType
man:+PetscDualSpaceType++PetscDualSpaceType++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceType.html#PetscDualSpaceType
man:+PETSCDUALSPACEBDM++PETSCDUALSPACEBDM++++man+https://petsc.org/release/manualpages/DUALSPACE/PETSCDUALSPACEBDM.html#PETSCDUALSPACEBDM
man:+SETERRQ++SETERRQ++++man+https://petsc.org/release/manualpages/Sys/SETERRQ.html#SETERRQ
man:+SETERRMPI++SETERRMPI++++man+https://petsc.org/release/manualpages/Sys/SETERRMPI.html#SETERRMPI
man:+SETERRA++SETERRA++++man+https://petsc.org/release/manualpages/Sys/SETERRA.html#SETERRA
man:+SETERRABORT++SETERRABORT++++man+https://petsc.org/release/manualpages/Sys/SETERRABORT.html#SETERRABORT
man:+PetscCheck++PetscCheck++++man+https://petsc.org/release/manualpages/Sys/PetscCheck.html#PetscCheck
man:+PetscCheckReturnMPI++PetscCheckReturnMPI++++man+https://petsc.org/release/manualpages/Sys/PetscCheckReturnMPI.html#PetscCheckReturnMPI
man:+PetscCheckAbort++PetscCheckAbort++++man+https://petsc.org/release/manualpages/Sys/PetscCheckAbort.html#PetscCheckAbort
man:+PetscAssert++PetscAssert++++man+https://petsc.org/release/manualpages/Sys/PetscAssert.html#PetscAssert
man:+PetscAssertAbort++PetscAssertAbort++++man+https://petsc.org/release/manualpages/Sys/PetscAssertAbort.html#PetscAssertAbort
man:+PetscCall++PetscCall++++man+https://petsc.org/release/manualpages/Sys/PetscCall.html#PetscCall
man:+PetscCallNull++PetscCallNull++++man+https://petsc.org/release/manualpages/Sys/PetscCallNull.html#PetscCallNull
man:+PetscCallA++PetscCallA++++man+https://petsc.org/release/manualpages/Sys/PetscCallA.html#PetscCallA
man:+PetscCallBack++PetscCallBack++++man+https://petsc.org/release/manualpages/Sys/PetscCallBack.html#PetscCallBack
man:+PetscCallVoid++PetscCallVoid++++man+https://petsc.org/release/manualpages/Sys/PetscCallVoid.html#PetscCallVoid
man:+PetscCallReturnMPI++PetscCallReturnMPI++++man+https://petsc.org/release/manualpages/Sys/PetscCallReturnMPI.html#PetscCallReturnMPI
man:+CHKERRQ++CHKERRQ++++man+https://petsc.org/release/manualpages/Sys/CHKERRQ.html#CHKERRQ
man:+PetscCallMPI++PetscCallMPI++++man+https://petsc.org/release/manualpages/Sys/PetscCallMPI.html#PetscCallMPI
man:+PetscCallMPIReturnMPI++PetscCallMPIReturnMPI++++man+https://petsc.org/release/manualpages/Sys/PetscCallMPIReturnMPI.html#PetscCallMPIReturnMPI
man:+PetscCallMPINull++PetscCallMPINull++++man+https://petsc.org/release/manualpages/Sys/PetscCallMPINull.html#PetscCallMPINull
man:+PetscCallMPIAbort++PetscCallMPIAbort++++man+https://petsc.org/release/manualpages/Sys/PetscCallMPIAbort.html#PetscCallMPIAbort
man:+CHKERRMPI++CHKERRMPI++++man+https://petsc.org/release/manualpages/Sys/CHKERRMPI.html#CHKERRMPI
man:+PetscCallAbort++PetscCallAbort++++man+https://petsc.org/release/manualpages/Sys/PetscCallAbort.html#PetscCallAbort
man:+CHKERRABORT++CHKERRABORT++++man+https://petsc.org/release/manualpages/Sys/CHKERRABORT.html#CHKERRABORT
man:+CHKERRA++CHKERRA++++man+https://petsc.org/release/manualpages/Sys/CHKERRA.html#CHKERRA
man:+PETSCABORT++PETSCABORT++++man+https://petsc.org/release/manualpages/Sys/PETSCABORT.html#PETSCABORT
man:+PetscCallThrow++PetscCallThrow++++man+https://petsc.org/release/manualpages/Sys/PetscCallThrow.html#PetscCallThrow
man:+CHKERRXX++CHKERRXX++++man+https://petsc.org/release/manualpages/Sys/CHKERRXX.html#CHKERRXX
man:+PetscCallCXX++PetscCallCXX++++man+https://petsc.org/release/manualpages/Sys/PetscCallCXX.html#PetscCallCXX
man:+PetscCallCXXAbort++PetscCallCXXAbort++++man+https://petsc.org/release/manualpages/Sys/PetscCallCXXAbort.html#PetscCallCXXAbort
man:+CHKERRCXX++CHKERRCXX++++man+https://petsc.org/release/manualpages/Sys/CHKERRCXX.html#CHKERRCXX
man:+CHKMEMQ++CHKMEMQ++++man+https://petsc.org/release/manualpages/Sys/CHKMEMQ.html#CHKMEMQ
man:+PetscErrorType++PetscErrorType++++man+https://petsc.org/release/manualpages/Sys/PetscErrorType.html#PetscErrorType
man:+PETSC_ERROR_INITIAL++PETSC_ERROR_INITIAL++++man+https://petsc.org/release/manualpages/Sys/PetscErrorType.html#PetscErrorType
man:+PETSC_ERROR_REPEAT++PETSC_ERROR_REPEAT++++man+https://petsc.org/release/manualpages/Sys/PetscErrorType.html#PetscErrorType
man:+PETSC_ERROR_IN_CXX++PETSC_ERROR_IN_CXX++++man+https://petsc.org/release/manualpages/Sys/PetscErrorType.html#PetscErrorType
man:+PetscErrorPrintf++PetscErrorPrintf++++man+https://petsc.org/release/manualpages/Sys/PetscErrorPrintf.html#PetscErrorPrintf
man:+PetscFPTrap++PetscFPTrap++++man+https://petsc.org/release/manualpages/Sys/PetscFPTrap.html#PetscFPTrap
man:+PETSC_FP_TRAP_OFF++PETSC_FP_TRAP_OFF++++man+https://petsc.org/release/manualpages/Sys/PetscFPTrap.html#PetscFPTrap
man:+PETSC_FP_TRAP_INDIV++PETSC_FP_TRAP_INDIV++++man+https://petsc.org/release/manualpages/Sys/PetscFPTrap.html#PetscFPTrap
man:+PETSC_FP_TRAP_FLTOPERR++PETSC_FP_TRAP_FLTOPERR++++man+https://petsc.org/release/manualpages/Sys/PetscFPTrap.html#PetscFPTrap
man:+PETSC_FP_TRAP_FLTOVF++PETSC_FP_TRAP_FLTOVF++++man+https://petsc.org/release/manualpages/Sys/PetscFPTrap.html#PetscFPTrap
man:+PETSC_FP_TRAP_FLTUND++PETSC_FP_TRAP_FLTUND++++man+https://petsc.org/release/manualpages/Sys/PetscFPTrap.html#PetscFPTrap
man:+PETSC_FP_TRAP_FLTDIV++PETSC_FP_TRAP_FLTDIV++++man+https://petsc.org/release/manualpages/Sys/PetscFPTrap.html#PetscFPTrap
man:+PETSC_FP_TRAP_FLTINEX++PETSC_FP_TRAP_FLTINEX++++man+https://petsc.org/release/manualpages/Sys/PetscFPTrap.html#PetscFPTrap
man:+PETSC_FP_TRAP_ON++PETSC_FP_TRAP_ON++++man+https://petsc.org/release/manualpages/Sys/PetscFPTrap.html#PetscFPTrap
man:+PetscStackPushNoCheck++PetscStackPushNoCheck++++man+https://petsc.org/release/manualpages/Sys/PetscStackPushNoCheck.html#PetscStackPushNoCheck
man:+PetscStackUpdateLine++PetscStackUpdateLine++++man+https://petsc.org/release/manualpages/Sys/PetscStackUpdateLine.html#PetscStackUpdateLine
man:+PetscStackPushExternal++PetscStackPushExternal++++man+https://petsc.org/release/manualpages/Sys/PetscStackPushExternal.html#PetscStackPushExternal
man:+PetscStackPopNoCheck++PetscStackPopNoCheck++++man+https://petsc.org/release/manualpages/Sys/PetscStackPopNoCheck.html#PetscStackPopNoCheck
man:+PetscFunctionBegin++PetscFunctionBegin++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionBegin.html#PetscFunctionBegin
man:+PetscFunctionBeginHot++PetscFunctionBeginHot++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionBeginHot.html#PetscFunctionBeginHot
man:+PetscFunctionBeginUser++PetscFunctionBeginUser++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionBeginUser.html#PetscFunctionBeginUser
man:+PetscStackPush++PetscStackPush++++man+https://petsc.org/release/manualpages/Sys/PetscStackPush.html#PetscStackPush
man:+PetscStackPop++PetscStackPop++++man+https://petsc.org/release/manualpages/Sys/PetscStackPop.html#PetscStackPop
man:+PetscFunctionReturn++PetscFunctionReturn++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionReturn.html#PetscFunctionReturn
man:+PetscFunctionReturnVoid++PetscFunctionReturnVoid++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionReturnVoid.html#PetscFunctionReturnVoid
man:+PetscStackCallExternalVoid++PetscStackCallExternalVoid++++man+https://petsc.org/release/manualpages/Sys/PetscStackCallExternalVoid.html#PetscStackCallExternalVoid
man:+PetscCallExternalAbort++PetscCallExternalAbort++++man+https://petsc.org/release/manualpages/Sys/PetscCallExternalAbort.html#PetscCallExternalAbort
man:+PetscFEGeom++PetscFEGeom++++man+https://petsc.org/release/manualpages/FE/PetscFEGeom.html#PetscFEGeom
man:+PetscFEType++PetscFEType++++man+https://petsc.org/release/manualpages/FE/PetscFEType.html#PetscFEType
man:+PetscFE++PetscFE++++man+https://petsc.org/release/manualpages/FE/PetscFE.html#PetscFE
man:+PetscFEJacobianType++PetscFEJacobianType++++man+https://petsc.org/release/manualpages/FE/PetscFEJacobianType.html#PetscFEJacobianType
man:+PetscFEGeomMode++PetscFEGeomMode++++man+https://petsc.org/release/manualpages/FE/PetscFEGeomMode.html#PetscFEGeomMode
man:+PETSC_FEGEOM_BASIC++PETSC_FEGEOM_BASIC++++man+https://petsc.org/release/manualpages/FE/PetscFEGeomMode.html#PetscFEGeomMode
man:+PETSC_FEGEOM_EMBEDDED++PETSC_FEGEOM_EMBEDDED++++man+https://petsc.org/release/manualpages/FE/PetscFEGeomMode.html#PetscFEGeomMode
man:+PETSC_FEGEOM_BOUNDARY++PETSC_FEGEOM_BOUNDARY++++man+https://petsc.org/release/manualpages/FE/PetscFEGeomMode.html#PetscFEGeomMode
man:+PETSC_FEGEOM_COHESIVE++PETSC_FEGEOM_COHESIVE++++man+https://petsc.org/release/manualpages/FE/PetscFEGeomMode.html#PetscFEGeomMode
man:+PetscLimiterType++PetscLimiterType++++man+https://petsc.org/release/manualpages/FV/PetscLimiterType.html#PetscLimiterType
man:+PetscFVType++PetscFVType++++man+https://petsc.org/release/manualpages/FV/PetscFVType.html#PetscFVType
man:+PetscLimiter++PetscLimiter++++man+https://petsc.org/release/manualpages/FV/PetscLimiter.html#PetscLimiter
man:+PetscFV++PetscFV++++man+https://petsc.org/release/manualpages/FV/PetscFV.html#PetscFV
man:+PetscFVFaceGeom++PetscFVFaceGeom++++man+https://petsc.org/release/manualpages/FV/PetscFVFaceGeom.html#PetscFVFaceGeom
man:+PetscFVCellGeom++PetscFVCellGeom++++man+https://petsc.org/release/manualpages/FV/PetscFVCellGeom.html#PetscFVCellGeom
man:+ISType++ISType++++man+https://petsc.org/release/manualpages/IS/ISType.html#ISType
man:+ISInfo++ISInfo++++man+https://petsc.org/release/manualpages/IS/ISInfo.html#ISInfo
man:+IS_INFO_MIN++IS_INFO_MIN++++man+https://petsc.org/release/manualpages/IS/ISInfo.html#ISInfo
man:+IS_SORTED++IS_SORTED++++man+https://petsc.org/release/manualpages/IS/ISInfo.html#ISInfo
man:+IS_UNIQUE++IS_UNIQUE++++man+https://petsc.org/release/manualpages/IS/ISInfo.html#ISInfo
man:+IS_PERMUTATION++IS_PERMUTATION++++man+https://petsc.org/release/manualpages/IS/ISInfo.html#ISInfo
man:+IS_INTERVAL++IS_INTERVAL++++man+https://petsc.org/release/manualpages/IS/ISInfo.html#ISInfo
man:+IS_IDENTITY++IS_IDENTITY++++man+https://petsc.org/release/manualpages/IS/ISInfo.html#ISInfo
man:+IS_INFO_MAX++IS_INFO_MAX++++man+https://petsc.org/release/manualpages/IS/ISInfo.html#ISInfo
man:+ISGlobalToLocalMappingMode++ISGlobalToLocalMappingMode++++man+https://petsc.org/release/manualpages/IS/ISGlobalToLocalMappingMode.html#ISGlobalToLocalMappingMode
man:+IS_GTOLM_MASK++IS_GTOLM_MASK++++man+https://petsc.org/release/manualpages/IS/ISGlobalToLocalMappingMode.html#ISGlobalToLocalMappingMode
man:+IS_GTOLM_DROP++IS_GTOLM_DROP++++man+https://petsc.org/release/manualpages/IS/ISGlobalToLocalMappingMode.html#ISGlobalToLocalMappingMode
man:+ISLocalToGlobalMappingType++ISLocalToGlobalMappingType++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingType.html#ISLocalToGlobalMappingType
man:+ISColoringType++ISColoringType++++man+https://petsc.org/release/manualpages/IS/ISColoringType.html#ISColoringType
man:+IS_COLORING_GLOBAL++IS_COLORING_GLOBAL++++man+https://petsc.org/release/manualpages/IS/ISColoringType.html#ISColoringType
man:+IS_COLORING_LOCAL++IS_COLORING_LOCAL++++man+https://petsc.org/release/manualpages/IS/ISColoringType.html#ISColoringType
man:+ISColoringValueCast++ISColoringValueCast++++man+https://petsc.org/release/manualpages/IS/ISColoringValueCast.html#ISColoringValueCast
man:+PetscKDTree++PetscKDTree++++man+https://petsc.org/release/manualpages/IS/PetscKDTree.html#PetscKDTree
man:+IS++IS++++man+https://petsc.org/release/manualpages/IS/IS.html#IS
man:+ISLocalToGlobalMapping++ISLocalToGlobalMapping++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMapping.html#ISLocalToGlobalMapping
man:+ISColoring++ISColoring++++man+https://petsc.org/release/manualpages/IS/ISColoring.html#ISColoring
man:+PetscLayout++PetscLayout++++man+https://petsc.org/release/manualpages/IS/PetscLayout.html#PetscLayout
man:+KSP++KSP++++man+https://petsc.org/release/manualpages/KSP/KSP.html#KSP
man:+KSPType++KSPType++++man+https://petsc.org/release/manualpages/KSP/KSPType.html#KSPType
man:+KSPChebyshevKind++KSPChebyshevKind++++man+https://petsc.org/release/manualpages/KSP/KSPChebyshevKind.html#KSPChebyshevKind
man:+KSP_CHEBYSHEV_FIRST++KSP_CHEBYSHEV_FIRST++++man+https://petsc.org/release/manualpages/KSP/KSPChebyshevKind.html#KSPChebyshevKind
man:+KSP_CHEBYSHEV_FOURTH++KSP_CHEBYSHEV_FOURTH++++man+https://petsc.org/release/manualpages/KSP/KSPChebyshevKind.html#KSPChebyshevKind
man:+KSP_CHEBYSHEV_OPT_FOURTH++KSP_CHEBYSHEV_OPT_FOURTH++++man+https://petsc.org/release/manualpages/KSP/KSPChebyshevKind.html#KSPChebyshevKind
man:+KSPFCDTruncationType++KSPFCDTruncationType++++man+https://petsc.org/release/manualpages/KSP/KSPFCDTruncationType.html#KSPFCDTruncationType
man:+KSP_FCD_TRUNC_TYPE_STANDARD++KSP_FCD_TRUNC_TYPE_STANDARD++++man+https://petsc.org/release/manualpages/KSP/KSPFCDTruncationType.html#KSPFCDTruncationType
man:+KSP_FCD_TRUNC_TYPE_NOTAY++KSP_FCD_TRUNC_TYPE_NOTAY++++man+https://petsc.org/release/manualpages/KSP/KSPFCDTruncationType.html#KSPFCDTruncationType
man:+KSPHPDDMType++KSPHPDDMType++++man+https://petsc.org/release/manualpages/KSP/KSPHPDDMType.html#KSPHPDDMType
man:+KSP_HPDDM_TYPE_GMRES++KSP_HPDDM_TYPE_GMRES++++man+https://petsc.org/release/manualpages/KSP/KSPHPDDMType.html#KSPHPDDMType
man:+KSP_HPDDM_TYPE_BGMRES++KSP_HPDDM_TYPE_BGMRES++++man+https://petsc.org/release/manualpages/KSP/KSPHPDDMType.html#KSPHPDDMType
man:+KSP_HPDDM_TYPE_CG++KSP_HPDDM_TYPE_CG++++man+https://petsc.org/release/manualpages/KSP/KSPHPDDMType.html#KSPHPDDMType
man:+KSP_HPDDM_TYPE_BCG++KSP_HPDDM_TYPE_BCG++++man+https://petsc.org/release/manualpages/KSP/KSPHPDDMType.html#KSPHPDDMType
man:+KSP_HPDDM_TYPE_GCRODR++KSP_HPDDM_TYPE_GCRODR++++man+https://petsc.org/release/manualpages/KSP/KSPHPDDMType.html#KSPHPDDMType
man:+KSP_HPDDM_TYPE_BGCRODR++KSP_HPDDM_TYPE_BGCRODR++++man+https://petsc.org/release/manualpages/KSP/KSPHPDDMType.html#KSPHPDDMType
man:+KSP_HPDDM_TYPE_BFBCG++KSP_HPDDM_TYPE_BFBCG++++man+https://petsc.org/release/manualpages/KSP/KSPHPDDMType.html#KSPHPDDMType
man:+KSP_HPDDM_TYPE_PREONLY++KSP_HPDDM_TYPE_PREONLY++++man+https://petsc.org/release/manualpages/KSP/KSPHPDDMType.html#KSPHPDDMType
man:+KSPHPDDMPrecision++KSPHPDDMPrecision++++man+https://petsc.org/release/manualpages/KSP/KSPHPDDMPrecision.html#KSPHPDDMPrecision
man:+KSP_HPDDM_PRECISION_HALF++KSP_HPDDM_PRECISION_HALF++++man+https://petsc.org/release/manualpages/KSP/KSPHPDDMPrecision.html#KSPHPDDMPrecision
man:+KSP_HPDDM_PRECISION_SINGLE++KSP_HPDDM_PRECISION_SINGLE++++man+https://petsc.org/release/manualpages/KSP/KSPHPDDMPrecision.html#KSPHPDDMPrecision
man:+KSP_HPDDM_PRECISION_DOUBLE++KSP_HPDDM_PRECISION_DOUBLE++++man+https://petsc.org/release/manualpages/KSP/KSPHPDDMPrecision.html#KSPHPDDMPrecision
man:+KSP_HPDDM_PRECISION_QUADRUPLE++KSP_HPDDM_PRECISION_QUADRUPLE++++man+https://petsc.org/release/manualpages/KSP/KSPHPDDMPrecision.html#KSPHPDDMPrecision
man:+KSPGMRESCGSRefinementType++KSPGMRESCGSRefinementType++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESCGSRefinementType.html#KSPGMRESCGSRefinementType
man:+KSP_GMRES_CGS_REFINE_NEVER++KSP_GMRES_CGS_REFINE_NEVER++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESCGSRefinementType.html#KSPGMRESCGSRefinementType
man:+KSP_GMRES_CGS_REFINE_IFNEEDED++KSP_GMRES_CGS_REFINE_IFNEEDED++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESCGSRefinementType.html#KSPGMRESCGSRefinementType
man:+KSP_GMRES_CGS_REFINE_ALWAYS++KSP_GMRES_CGS_REFINE_ALWAYS++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESCGSRefinementType.html#KSPGMRESCGSRefinementType
man:+KSP_GMRES_CGS_REFINE_NEVER++KSP_GMRES_CGS_REFINE_NEVER++++man+https://petsc.org/release/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+https://petsc.org/release/manualpages/KSP/KSP_GMRES_CGS_REFINE_IFNEEDED.html#KSP_GMRES_CGS_REFINE_IFNEEDED
man:+KSP_GMRES_CGS_REFINE_ALWAYS++KSP_GMRES_CGS_REFINE_ALWAYS++++man+https://petsc.org/release/manualpages/KSP/KSP_GMRES_CGS_REFINE_ALWAYS.html#KSP_GMRES_CGS_REFINE_ALWAYS
man:+KSPNormType++KSPNormType++++man+https://petsc.org/release/manualpages/KSP/KSPNormType.html#KSPNormType
man:+KSP_NORM_DEFAULT++KSP_NORM_DEFAULT++++man+https://petsc.org/release/manualpages/KSP/KSPNormType.html#KSPNormType
man:+KSP_NORM_NONE++KSP_NORM_NONE++++man+https://petsc.org/release/manualpages/KSP/KSPNormType.html#KSPNormType
man:+KSP_NORM_PRECONDITIONED++KSP_NORM_PRECONDITIONED++++man+https://petsc.org/release/manualpages/KSP/KSPNormType.html#KSPNormType
man:+KSP_NORM_UNPRECONDITIONED++KSP_NORM_UNPRECONDITIONED++++man+https://petsc.org/release/manualpages/KSP/KSPNormType.html#KSPNormType
man:+KSP_NORM_NATURAL++KSP_NORM_NATURAL++++man+https://petsc.org/release/manualpages/KSP/KSPNormType.html#KSPNormType
man:+KSP_NORM_NONE++KSP_NORM_NONE++++man+https://petsc.org/release/manualpages/KSP/KSP_NORM_NONE.html#KSP_NORM_NONE
man:+KSP_NORM_PRECONDITIONED++KSP_NORM_PRECONDITIONED++++man+https://petsc.org/release/manualpages/KSP/KSP_NORM_PRECONDITIONED.html#KSP_NORM_PRECONDITIONED
man:+KSP_NORM_UNPRECONDITIONED++KSP_NORM_UNPRECONDITIONED++++man+https://petsc.org/release/manualpages/KSP/KSP_NORM_UNPRECONDITIONED.html#KSP_NORM_UNPRECONDITIONED
man:+KSP_NORM_NATURAL++KSP_NORM_NATURAL++++man+https://petsc.org/release/manualpages/KSP/KSP_NORM_NATURAL.html#KSP_NORM_NATURAL
man:+KSPConvergedReason++KSPConvergedReason++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_CONVERGED_RTOL_NORMAL++KSP_CONVERGED_RTOL_NORMAL++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_CONVERGED_ATOL_NORMAL++KSP_CONVERGED_ATOL_NORMAL++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_CONVERGED_RTOL++KSP_CONVERGED_RTOL++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_CONVERGED_ATOL++KSP_CONVERGED_ATOL++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_CONVERGED_ITS++KSP_CONVERGED_ITS++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_CONVERGED_NEG_CURVE++KSP_CONVERGED_NEG_CURVE++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_CONVERGED_CG_NEG_CURVE_DEPRECATED++KSP_CONVERGED_CG_NEG_CURVE_DEPRECATED++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_CONVERGED_CG_CONSTRAINED_DEPRECATED++KSP_CONVERGED_CG_CONSTRAINED_DEPRECATED++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_CONVERGED_STEP_LENGTH++KSP_CONVERGED_STEP_LENGTH++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_CONVERGED_HAPPY_BREAKDOWN++KSP_CONVERGED_HAPPY_BREAKDOWN++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_DIVERGED_NULL++KSP_DIVERGED_NULL++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_DIVERGED_ITS++KSP_DIVERGED_ITS++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_DIVERGED_DTOL++KSP_DIVERGED_DTOL++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_DIVERGED_BREAKDOWN++KSP_DIVERGED_BREAKDOWN++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_DIVERGED_BREAKDOWN_BICG++KSP_DIVERGED_BREAKDOWN_BICG++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_DIVERGED_NONSYMMETRIC++KSP_DIVERGED_NONSYMMETRIC++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_DIVERGED_INDEFINITE_PC++KSP_DIVERGED_INDEFINITE_PC++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_DIVERGED_NANORINF++KSP_DIVERGED_NANORINF++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_DIVERGED_INDEFINITE_MAT++KSP_DIVERGED_INDEFINITE_MAT++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_DIVERGED_PC_FAILED++KSP_DIVERGED_PC_FAILED++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_DIVERGED_PCSETUP_FAILED_DEPRECATED++KSP_DIVERGED_PCSETUP_FAILED_DEPRECATED++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_CONVERGED_ITERATING++KSP_CONVERGED_ITERATING++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReason.html#KSPConvergedReason
man:+KSP_CONVERGED_RTOL++KSP_CONVERGED_RTOL++++man+https://petsc.org/release/manualpages/KSP/KSP_CONVERGED_RTOL.html#KSP_CONVERGED_RTOL
man:+KSP_CONVERGED_ATOL++KSP_CONVERGED_ATOL++++man+https://petsc.org/release/manualpages/KSP/KSP_CONVERGED_ATOL.html#KSP_CONVERGED_ATOL
man:+KSP_DIVERGED_DTOL++KSP_DIVERGED_DTOL++++man+https://petsc.org/release/manualpages/KSP/KSP_DIVERGED_DTOL.html#KSP_DIVERGED_DTOL
man:+KSP_DIVERGED_ITS++KSP_DIVERGED_ITS++++man+https://petsc.org/release/manualpages/KSP/KSP_DIVERGED_ITS.html#KSP_DIVERGED_ITS
man:+KSP_CONVERGED_ITS++KSP_CONVERGED_ITS++++man+https://petsc.org/release/manualpages/KSP/KSP_CONVERGED_ITS.html#KSP_CONVERGED_ITS
man:+KSP_DIVERGED_BREAKDOWN++KSP_DIVERGED_BREAKDOWN++++man+https://petsc.org/release/manualpages/KSP/KSP_DIVERGED_BREAKDOWN.html#KSP_DIVERGED_BREAKDOWN
man:+KSP_DIVERGED_BREAKDOWN_BICG++KSP_DIVERGED_BREAKDOWN_BICG++++man+https://petsc.org/release/manualpages/KSP/KSP_DIVERGED_BREAKDOWN_BICG.html#KSP_DIVERGED_BREAKDOWN_BICG
man:+KSP_DIVERGED_NONSYMMETRIC++KSP_DIVERGED_NONSYMMETRIC++++man+https://petsc.org/release/manualpages/KSP/KSP_DIVERGED_NONSYMMETRIC.html#KSP_DIVERGED_NONSYMMETRIC
man:+KSP_DIVERGED_INDEFINITE_PC++KSP_DIVERGED_INDEFINITE_PC++++man+https://petsc.org/release/manualpages/KSP/KSP_DIVERGED_INDEFINITE_PC.html#KSP_DIVERGED_INDEFINITE_PC
man:+KSP_DIVERGED_PC_FAILED++KSP_DIVERGED_PC_FAILED++++man+https://petsc.org/release/manualpages/KSP/KSP_DIVERGED_PC_FAILED.html#KSP_DIVERGED_PC_FAILED
man:+KSP_CONVERGED_ITERATING++KSP_CONVERGED_ITERATING++++man+https://petsc.org/release/manualpages/KSP/KSP_CONVERGED_ITERATING.html#KSP_CONVERGED_ITERATING
man:+KSPCGType++KSPCGType++++man+https://petsc.org/release/manualpages/KSP/KSPCGType.html#KSPCGType
man:+KSP_CG_SYMMETRIC++KSP_CG_SYMMETRIC++++man+https://petsc.org/release/manualpages/KSP/KSPCGType.html#KSPCGType
man:+KSP_CG_HERMITIAN++KSP_CG_HERMITIAN++++man+https://petsc.org/release/manualpages/KSP/KSPCGType.html#KSPCGType
man:+KSPGuess++KSPGuess++++man+https://petsc.org/release/manualpages/KSP/KSPGuess.html#KSPGuess
man:+KSPGuessType++KSPGuessType++++man+https://petsc.org/release/manualpages/KSP/KSPGuessType.html#KSPGuessType
man:+MatSchurComplementAinvType++MatSchurComplementAinvType++++man+https://petsc.org/release/manualpages/KSP/MatSchurComplementAinvType.html#MatSchurComplementAinvType
man:+MAT_SCHUR_COMPLEMENT_AINV_DIAG++MAT_SCHUR_COMPLEMENT_AINV_DIAG++++man+https://petsc.org/release/manualpages/KSP/MatSchurComplementAinvType.html#MatSchurComplementAinvType
man:+MAT_SCHUR_COMPLEMENT_AINV_LUMP++MAT_SCHUR_COMPLEMENT_AINV_LUMP++++man+https://petsc.org/release/manualpages/KSP/MatSchurComplementAinvType.html#MatSchurComplementAinvType
man:+MAT_SCHUR_COMPLEMENT_AINV_BLOCK_DIAG++MAT_SCHUR_COMPLEMENT_AINV_BLOCK_DIAG++++man+https://petsc.org/release/manualpages/KSP/MatSchurComplementAinvType.html#MatSchurComplementAinvType
man:+MAT_SCHUR_COMPLEMENT_AINV_FULL++MAT_SCHUR_COMPLEMENT_AINV_FULL++++man+https://petsc.org/release/manualpages/KSP/MatSchurComplementAinvType.html#MatSchurComplementAinvType
man:+MatLMVMSymBroydenScaleType++MatLMVMSymBroydenScaleType++++man+https://petsc.org/release/manualpages/KSP/MatLMVMSymBroydenScaleType.html#MatLMVMSymBroydenScaleType
man:+MAT_LMVM_SYMBROYDEN_SCALE_NONE++MAT_LMVM_SYMBROYDEN_SCALE_NONE++++man+https://petsc.org/release/manualpages/KSP/MatLMVMSymBroydenScaleType.html#MatLMVMSymBroydenScaleType
man:+MAT_LMVM_SYMBROYDEN_SCALE_SCALAR++MAT_LMVM_SYMBROYDEN_SCALE_SCALAR++++man+https://petsc.org/release/manualpages/KSP/MatLMVMSymBroydenScaleType.html#MatLMVMSymBroydenScaleType
man:+MAT_LMVM_SYMBROYDEN_SCALE_DIAGONAL++MAT_LMVM_SYMBROYDEN_SCALE_DIAGONAL++++man+https://petsc.org/release/manualpages/KSP/MatLMVMSymBroydenScaleType.html#MatLMVMSymBroydenScaleType
man:+MAT_LMVM_SYMBROYDEN_SCALE_USER++MAT_LMVM_SYMBROYDEN_SCALE_USER++++man+https://petsc.org/release/manualpages/KSP/MatLMVMSymBroydenScaleType.html#MatLMVMSymBroydenScaleType
man:+MatLMVMDenseType++MatLMVMDenseType++++man+https://petsc.org/release/manualpages/KSP/MatLMVMDenseType.html#MatLMVMDenseType
man:+MAT_LMVM_DENSE_REORDER++MAT_LMVM_DENSE_REORDER++++man+https://petsc.org/release/manualpages/KSP/MatLMVMDenseType.html#MatLMVMDenseType
man:+MAT_LMVM_DENSE_INPLACE++MAT_LMVM_DENSE_INPLACE++++man+https://petsc.org/release/manualpages/KSP/MatLMVMDenseType.html#MatLMVMDenseType
man:+KSPComputeRHSFn++KSPComputeRHSFn++++man+https://petsc.org/release/manualpages/KSP/KSPComputeRHSFn.html#KSPComputeRHSFn
man:+KSPComputeOperatorsFn++KSPComputeOperatorsFn++++man+https://petsc.org/release/manualpages/KSP/KSPComputeOperatorsFn.html#KSPComputeOperatorsFn
man:+KSPComputeInitialGuessFn++KSPComputeInitialGuessFn++++man+https://petsc.org/release/manualpages/KSP/KSPComputeInitialGuessFn.html#KSPComputeInitialGuessFn
man:+PetscInfoCommFlag++PetscInfoCommFlag++++man+https://petsc.org/release/manualpages/Log/PetscInfoCommFlag.html#PetscInfoCommFlag
man:+PETSC_INFO_COMM_ALL++PETSC_INFO_COMM_ALL++++man+https://petsc.org/release/manualpages/Log/PetscInfoCommFlag.html#PetscInfoCommFlag
man:+PETSC_INFO_COMM_NO_SELF++PETSC_INFO_COMM_NO_SELF++++man+https://petsc.org/release/manualpages/Log/PetscInfoCommFlag.html#PetscInfoCommFlag
man:+PETSC_INFO_COMM_ONLY_SELF++PETSC_INFO_COMM_ONLY_SELF++++man+https://petsc.org/release/manualpages/Log/PetscInfoCommFlag.html#PetscInfoCommFlag
man:+PetscLogFlops++PetscLogFlops++++man+https://petsc.org/release/manualpages/Log/PetscLogFlops.html#PetscLogFlops
man:+PetscLogGpuFlops++PetscLogGpuFlops++++man+https://petsc.org/release/manualpages/Log/PetscLogGpuFlops.html#PetscLogGpuFlops
man:+PetscLogGetStageLog++PetscLogGetStageLog++++man+https://petsc.org/release/manualpages/Log/PetscLogGetStageLog.html#PetscLogGetStageLog
man:+PetscStageLogGetCurrent++PetscStageLogGetCurrent++++man+https://petsc.org/release/manualpages/Log/PetscStageLogGetCurrent.html#PetscStageLogGetCurrent
man:+PetscStageLogGetEventPerfLog++PetscStageLogGetEventPerfLog++++man+https://petsc.org/release/manualpages/Log/PetscStageLogGetEventPerfLog.html#PetscStageLogGetEventPerfLog
man:+PetscLogAllBegin++PetscLogAllBegin++++man+https://petsc.org/release/manualpages/Log/PetscLogAllBegin.html#PetscLogAllBegin
man:+PetscLogSet++PetscLogSet++++man+https://petsc.org/release/manualpages/Log/PetscLogSet.html#PetscLogSet
man:+PetscEventPerfInfo++PetscEventPerfInfo++++man+https://petsc.org/release/manualpages/Log/PetscEventPerfInfo.html#PetscEventPerfInfo
man:+PetscLogEvent++PetscLogEvent++++man+https://petsc.org/release/manualpages/Log/PetscLogEvent.html#PetscLogEvent
man:+PetscLogStage++PetscLogStage++++man+https://petsc.org/release/manualpages/Log/PetscLogStage.html#PetscLogStage
man:+PetscLogClass++PetscLogClass++++man+https://petsc.org/release/manualpages/Log/PetscLogClass.html#PetscLogClass
man:+PetscLogHandler++PetscLogHandler++++man+https://petsc.org/release/manualpages/Log/PetscLogHandler.html#PetscLogHandler
man:+PetscLogHandlerType++PetscLogHandlerType++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerType.html#PetscLogHandlerType
man:+PetscLogState++PetscLogState++++man+https://petsc.org/release/manualpages/Log/PetscLogState.html#PetscLogState
man:+PetscLogEventInfo++PetscLogEventInfo++++man+https://petsc.org/release/manualpages/Log/PetscLogEventInfo.html#PetscLogEventInfo
man:+PetscLogClassInfo++PetscLogClassInfo++++man+https://petsc.org/release/manualpages/Log/PetscLogClassInfo.html#PetscLogClassInfo
man:+PetscLogStageInfo++PetscLogStageInfo++++man+https://petsc.org/release/manualpages/Log/PetscLogStageInfo.html#PetscLogStageInfo
man:+PetscHasAttribute++PetscHasAttribute++++man+https://petsc.org/release/manualpages/Sys/PetscHasAttribute.html#PetscHasAttribute
man:+PetscHasBuiltin++PetscHasBuiltin++++man+https://petsc.org/release/manualpages/Sys/PetscHasBuiltin.html#PetscHasBuiltin
man:+PETSC_ATTRIBUTE_FORMAT++PETSC_ATTRIBUTE_FORMAT++++man+https://petsc.org/release/manualpages/Sys/PETSC_ATTRIBUTE_FORMAT.html#PETSC_ATTRIBUTE_FORMAT
man:+PETSC_ATTRIBUTE_COLD++PETSC_ATTRIBUTE_COLD++++man+https://petsc.org/release/manualpages/Sys/PETSC_ATTRIBUTE_COLD.html#PETSC_ATTRIBUTE_COLD
man:+PETSC_ATTRIBUTE_MAY_ALIAS++PETSC_ATTRIBUTE_MAY_ALIAS++++man+https://petsc.org/release/manualpages/Sys/PETSC_ATTRIBUTE_MAY_ALIAS.html#PETSC_ATTRIBUTE_MAY_ALIAS
man:+PETSC_NULLPTR++PETSC_NULLPTR++++man+https://petsc.org/release/manualpages/Sys/PETSC_NULLPTR.html#PETSC_NULLPTR
man:+PETSC_CONSTEXPR_14++PETSC_CONSTEXPR_14++++man+https://petsc.org/release/manualpages/Sys/PETSC_CONSTEXPR_14.html#PETSC_CONSTEXPR_14
man:+PETSC_NODISCARD++PETSC_NODISCARD++++man+https://petsc.org/release/manualpages/Sys/PETSC_NODISCARD.html#PETSC_NODISCARD
man:+PetscUnlikely++PetscUnlikely++++man+https://petsc.org/release/manualpages/Sys/PetscUnlikely.html#PetscUnlikely
man:+PetscLikely++PetscLikely++++man+https://petsc.org/release/manualpages/Sys/PetscLikely.html#PetscLikely
man:+PetscUnreachable++PetscUnreachable++++man+https://petsc.org/release/manualpages/Sys/PetscUnreachable.html#PetscUnreachable
man:+PetscAssume++PetscAssume++++man+https://petsc.org/release/manualpages/Sys/PetscAssume.html#PetscAssume
man:+PetscExpand++PetscExpand++++man+https://petsc.org/release/manualpages/Sys/PetscExpand.html#PetscExpand
man:+PetscStringize++PetscStringize++++man+https://petsc.org/release/manualpages/Sys/PetscStringize.html#PetscStringize
man:+PetscConcat++PetscConcat++++man+https://petsc.org/release/manualpages/Sys/PetscConcat.html#PetscConcat
man:+PetscCompl++PetscCompl++++man+https://petsc.org/release/manualpages/Sys/PetscCompl.html#PetscCompl
man:+PetscDefined++PetscDefined++++man+https://petsc.org/release/manualpages/Sys/PetscDefined.html#PetscDefined
man:+PetscUnlikelyDebug++PetscUnlikelyDebug++++man+https://petsc.org/release/manualpages/Sys/PetscUnlikelyDebug.html#PetscUnlikelyDebug
man:+PetscExpandToNothing++PetscExpandToNothing++++man+https://petsc.org/release/manualpages/Sys/PetscExpandToNothing.html#PetscExpandToNothing
man:+PetscMacroReturns++PetscMacroReturns++++man+https://petsc.org/release/manualpages/Sys/PetscMacroReturns.html#PetscMacroReturns
man:+PETSC_STATIC_ARRAY_LENGTH++PETSC_STATIC_ARRAY_LENGTH++++man+https://petsc.org/release/manualpages/Sys/PETSC_STATIC_ARRAY_LENGTH.html#PETSC_STATIC_ARRAY_LENGTH
man:+PetscPragmaOMP++PetscPragmaOMP++++man+https://petsc.org/release/manualpages/Sys/PetscPragmaOMP.html#PetscPragmaOMP
man:+PetscPragmaUseOMPKernels++PetscPragmaUseOMPKernels++++man+https://petsc.org/release/manualpages/Sys/PetscPragmaUseOMPKernels.html#PetscPragmaUseOMPKernels
man:+Mat++Mat++++man+https://petsc.org/release/manualpages/Mat/Mat.html#Mat
man:+MatType++MatType++++man+https://petsc.org/release/manualpages/Mat/MatType.html#MatType
man:+MatSolverType++MatSolverType++++man+https://petsc.org/release/manualpages/Mat/MatSolverType.html#MatSolverType
man:+MatFactorType++MatFactorType++++man+https://petsc.org/release/manualpages/Mat/MatFactorType.html#MatFactorType
man:+MAT_FACTOR_NONE++MAT_FACTOR_NONE++++man+https://petsc.org/release/manualpages/Mat/MatFactorType.html#MatFactorType
man:+MAT_FACTOR_LU++MAT_FACTOR_LU++++man+https://petsc.org/release/manualpages/Mat/MatFactorType.html#MatFactorType
man:+MAT_FACTOR_CHOLESKY++MAT_FACTOR_CHOLESKY++++man+https://petsc.org/release/manualpages/Mat/MatFactorType.html#MatFactorType
man:+MAT_FACTOR_ILU++MAT_FACTOR_ILU++++man+https://petsc.org/release/manualpages/Mat/MatFactorType.html#MatFactorType
man:+MAT_FACTOR_ICC++MAT_FACTOR_ICC++++man+https://petsc.org/release/manualpages/Mat/MatFactorType.html#MatFactorType
man:+MAT_FACTOR_ILUDT++MAT_FACTOR_ILUDT++++man+https://petsc.org/release/manualpages/Mat/MatFactorType.html#MatFactorType
man:+MAT_FACTOR_QR++MAT_FACTOR_QR++++man+https://petsc.org/release/manualpages/Mat/MatFactorType.html#MatFactorType
man:+MAT_FACTOR_NUM_TYPES++MAT_FACTOR_NUM_TYPES++++man+https://petsc.org/release/manualpages/Mat/MatFactorType.html#MatFactorType
man:+MatProductType++MatProductType++++man+https://petsc.org/release/manualpages/Mat/MatProductType.html#MatProductType
man:+MATPRODUCT_UNSPECIFIED++MATPRODUCT_UNSPECIFIED++++man+https://petsc.org/release/manualpages/Mat/MatProductType.html#MatProductType
man:+MATPRODUCT_AB++MATPRODUCT_AB++++man+https://petsc.org/release/manualpages/Mat/MatProductType.html#MatProductType
man:+MATPRODUCT_AtB++MATPRODUCT_AtB++++man+https://petsc.org/release/manualpages/Mat/MatProductType.html#MatProductType
man:+MATPRODUCT_ABt++MATPRODUCT_ABt++++man+https://petsc.org/release/manualpages/Mat/MatProductType.html#MatProductType
man:+MATPRODUCT_PtAP++MATPRODUCT_PtAP++++man+https://petsc.org/release/manualpages/Mat/MatProductType.html#MatProductType
man:+MATPRODUCT_RARt++MATPRODUCT_RARt++++man+https://petsc.org/release/manualpages/Mat/MatProductType.html#MatProductType
man:+MATPRODUCT_ABC++MATPRODUCT_ABC++++man+https://petsc.org/release/manualpages/Mat/MatProductType.html#MatProductType
man:+MatProductAlgorithm++MatProductAlgorithm++++man+https://petsc.org/release/manualpages/Mat/MatProductAlgorithm.html#MatProductAlgorithm
man:+MatReuse++MatReuse++++man+https://petsc.org/release/manualpages/Mat/MatReuse.html#MatReuse
man:+MAT_INITIAL_MATRIX++MAT_INITIAL_MATRIX++++man+https://petsc.org/release/manualpages/Mat/MatReuse.html#MatReuse
man:+MAT_REUSE_MATRIX++MAT_REUSE_MATRIX++++man+https://petsc.org/release/manualpages/Mat/MatReuse.html#MatReuse
man:+MAT_IGNORE_MATRIX++MAT_IGNORE_MATRIX++++man+https://petsc.org/release/manualpages/Mat/MatReuse.html#MatReuse
man:+MAT_INPLACE_MATRIX++MAT_INPLACE_MATRIX++++man+https://petsc.org/release/manualpages/Mat/MatReuse.html#MatReuse
man:+MatCreateSubMatrixOption++MatCreateSubMatrixOption++++man+https://petsc.org/release/manualpages/Mat/MatCreateSubMatrixOption.html#MatCreateSubMatrixOption
man:+MAT_DO_NOT_GET_VALUES++MAT_DO_NOT_GET_VALUES++++man+https://petsc.org/release/manualpages/Mat/MatCreateSubMatrixOption.html#MatCreateSubMatrixOption
man:+MAT_GET_VALUES++MAT_GET_VALUES++++man+https://petsc.org/release/manualpages/Mat/MatCreateSubMatrixOption.html#MatCreateSubMatrixOption
man:+MatStructure++MatStructure++++man+https://petsc.org/release/manualpages/Mat/MatStructure.html#MatStructure
man:+DIFFERENT_NONZERO_PATTERN++DIFFERENT_NONZERO_PATTERN++++man+https://petsc.org/release/manualpages/Mat/MatStructure.html#MatStructure
man:+SUBSET_NONZERO_PATTERN++SUBSET_NONZERO_PATTERN++++man+https://petsc.org/release/manualpages/Mat/MatStructure.html#MatStructure
man:+SAME_NONZERO_PATTERN++SAME_NONZERO_PATTERN++++man+https://petsc.org/release/manualpages/Mat/MatStructure.html#MatStructure
man:+UNKNOWN_NONZERO_PATTERN++UNKNOWN_NONZERO_PATTERN++++man+https://petsc.org/release/manualpages/Mat/MatStructure.html#MatStructure
man:+MatCompositeType++MatCompositeType++++man+https://petsc.org/release/manualpages/Mat/MatCompositeType.html#MatCompositeType
man:+MAT_COMPOSITE_ADDITIVE++MAT_COMPOSITE_ADDITIVE++++man+https://petsc.org/release/manualpages/Mat/MatCompositeType.html#MatCompositeType
man:+MAT_COMPOSITE_MULTIPLICATIVE++MAT_COMPOSITE_MULTIPLICATIVE++++man+https://petsc.org/release/manualpages/Mat/MatCompositeType.html#MatCompositeType
man:+MatStencil++MatStencil++++man+https://petsc.org/release/manualpages/Mat/MatStencil.html#MatStencil
man:+MatAssemblyType++MatAssemblyType++++man+https://petsc.org/release/manualpages/Mat/MatAssemblyType.html#MatAssemblyType
man:+MAT_FLUSH_ASSEMBLY++MAT_FLUSH_ASSEMBLY++++man+https://petsc.org/release/manualpages/Mat/MatAssemblyType.html#MatAssemblyType
man:+MAT_FINAL_ASSEMBLY++MAT_FINAL_ASSEMBLY++++man+https://petsc.org/release/manualpages/Mat/MatAssemblyType.html#MatAssemblyType
man:+MatOption++MatOption++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_OPTION_MIN++MAT_OPTION_MIN++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_UNUSED_NONZERO_LOCATION_ERR++MAT_UNUSED_NONZERO_LOCATION_ERR++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_ROW_ORIENTED++MAT_ROW_ORIENTED++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_SYMMETRIC++MAT_SYMMETRIC++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_STRUCTURALLY_SYMMETRIC++MAT_STRUCTURALLY_SYMMETRIC++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_FORCE_DIAGONAL_ENTRIES++MAT_FORCE_DIAGONAL_ENTRIES++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_IGNORE_OFF_PROC_ENTRIES++MAT_IGNORE_OFF_PROC_ENTRIES++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_USE_HASH_TABLE++MAT_USE_HASH_TABLE++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_KEEP_NONZERO_PATTERN++MAT_KEEP_NONZERO_PATTERN++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_IGNORE_ZERO_ENTRIES++MAT_IGNORE_ZERO_ENTRIES++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_USE_INODES++MAT_USE_INODES++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_HERMITIAN++MAT_HERMITIAN++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_SYMMETRY_ETERNAL++MAT_SYMMETRY_ETERNAL++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_NEW_NONZERO_LOCATION_ERR++MAT_NEW_NONZERO_LOCATION_ERR++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_IGNORE_LOWER_TRIANGULAR++MAT_IGNORE_LOWER_TRIANGULAR++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_ERROR_LOWER_TRIANGULAR++MAT_ERROR_LOWER_TRIANGULAR++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_GETROW_UPPERTRIANGULAR++MAT_GETROW_UPPERTRIANGULAR++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_SPD++MAT_SPD++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_NO_OFF_PROC_ZERO_ROWS++MAT_NO_OFF_PROC_ZERO_ROWS++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_NO_OFF_PROC_ENTRIES++MAT_NO_OFF_PROC_ENTRIES++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_NEW_NONZERO_LOCATIONS++MAT_NEW_NONZERO_LOCATIONS++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_NEW_NONZERO_ALLOCATION_ERR++MAT_NEW_NONZERO_ALLOCATION_ERR++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_SUBSET_OFF_PROC_ENTRIES++MAT_SUBSET_OFF_PROC_ENTRIES++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_SUBMAT_SINGLEIS++MAT_SUBMAT_SINGLEIS++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_STRUCTURE_ONLY++MAT_STRUCTURE_ONLY++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_SORTED_FULL++MAT_SORTED_FULL++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_FORM_EXPLICIT_TRANSPOSE++MAT_FORM_EXPLICIT_TRANSPOSE++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_STRUCTURAL_SYMMETRY_ETERNAL++MAT_STRUCTURAL_SYMMETRY_ETERNAL++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_SPD_ETERNAL++MAT_SPD_ETERNAL++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MAT_OPTION_MAX++MAT_OPTION_MAX++++man+https://petsc.org/release/manualpages/Mat/MatOption.html#MatOption
man:+MatDuplicateOption++MatDuplicateOption++++man+https://petsc.org/release/manualpages/Mat/MatDuplicateOption.html#MatDuplicateOption
man:+MAT_DO_NOT_COPY_VALUES++MAT_DO_NOT_COPY_VALUES++++man+https://petsc.org/release/manualpages/Mat/MatDuplicateOption.html#MatDuplicateOption
man:+MAT_COPY_VALUES++MAT_COPY_VALUES++++man+https://petsc.org/release/manualpages/Mat/MatDuplicateOption.html#MatDuplicateOption
man:+MAT_SHARE_NONZERO_PATTERN++MAT_SHARE_NONZERO_PATTERN++++man+https://petsc.org/release/manualpages/Mat/MatDuplicateOption.html#MatDuplicateOption
man:+MatInfo++MatInfo++++man+https://petsc.org/release/manualpages/Mat/MatInfo.html#MatInfo
man:+MatInfoType++MatInfoType++++man+https://petsc.org/release/manualpages/Mat/MatInfoType.html#MatInfoType
man:+MAT_LOCAL++MAT_LOCAL++++man+https://petsc.org/release/manualpages/Mat/MatInfoType.html#MatInfoType
man:+MAT_GLOBAL_MAX++MAT_GLOBAL_MAX++++man+https://petsc.org/release/manualpages/Mat/MatInfoType.html#MatInfoType
man:+MAT_GLOBAL_SUM++MAT_GLOBAL_SUM++++man+https://petsc.org/release/manualpages/Mat/MatInfoType.html#MatInfoType
man:+MatSetValue++MatSetValue++++man+https://petsc.org/release/manualpages/Mat/MatSetValue.html#MatSetValue
man:+MatGetValue++MatGetValue++++man+https://petsc.org/release/manualpages/Mat/MatGetValue.html#MatGetValue
man:+MatSetValueLocal++MatSetValueLocal++++man+https://petsc.org/release/manualpages/Mat/MatSetValueLocal.html#MatSetValueLocal
man:+MatPreallocateBegin++MatPreallocateBegin++++man+https://petsc.org/release/manualpages/Mat/MatPreallocateBegin.html#MatPreallocateBegin
man:+MatPreallocateSetLocal++MatPreallocateSetLocal++++man+https://petsc.org/release/manualpages/Mat/MatPreallocateSetLocal.html#MatPreallocateSetLocal
man:+MatPreallocateSetLocalRemoveDups++MatPreallocateSetLocalRemoveDups++++man+https://petsc.org/release/manualpages/Mat/MatPreallocateSetLocalRemoveDups.html#MatPreallocateSetLocalRemoveDups
man:+MatPreallocateSetLocalBlock++MatPreallocateSetLocalBlock++++man+https://petsc.org/release/manualpages/Mat/MatPreallocateSetLocalBlock.html#MatPreallocateSetLocalBlock
man:+MatPreallocateSymmetricSetLocalBlock++MatPreallocateSymmetricSetLocalBlock++++man+https://petsc.org/release/manualpages/Mat/MatPreallocateSymmetricSetLocalBlock.html#MatPreallocateSymmetricSetLocalBlock
man:+MatPreallocateSet++MatPreallocateSet++++man+https://petsc.org/release/manualpages/Mat/MatPreallocateSet.html#MatPreallocateSet
man:+MatPreallocateSymmetricSetBlock++MatPreallocateSymmetricSetBlock++++man+https://petsc.org/release/manualpages/Mat/MatPreallocateSymmetricSetBlock.html#MatPreallocateSymmetricSetBlock
man:+MatPreallocateLocation++MatPreallocateLocation++++man+https://petsc.org/release/manualpages/Mat/MatPreallocateLocation.html#MatPreallocateLocation
man:+MatPreallocateEnd++MatPreallocateEnd++++man+https://petsc.org/release/manualpages/Mat/MatPreallocateEnd.html#MatPreallocateEnd
man:+MatOrderingType++MatOrderingType++++man+https://petsc.org/release/manualpages/Mat/MatOrderingType.html#MatOrderingType
man:+MatFactorShiftType++MatFactorShiftType++++man+https://petsc.org/release/manualpages/Mat/MatFactorShiftType.html#MatFactorShiftType
man:+MatFactorError++MatFactorError++++man+https://petsc.org/release/manualpages/Mat/MatFactorError.html#MatFactorError
man:+MatFactorInfo++MatFactorInfo++++man+https://petsc.org/release/manualpages/Mat/MatFactorInfo.html#MatFactorInfo
man:+MatSORType++MatSORType++++man+https://petsc.org/release/manualpages/Mat/MatSORType.html#MatSORType
man:+SOR_FORWARD_SWEEP++SOR_FORWARD_SWEEP++++man+https://petsc.org/release/manualpages/Mat/MatSORType.html#MatSORType
man:+SOR_BACKWARD_SWEEP++SOR_BACKWARD_SWEEP++++man+https://petsc.org/release/manualpages/Mat/MatSORType.html#MatSORType
man:+SOR_SYMMETRIC_SWEEP++SOR_SYMMETRIC_SWEEP++++man+https://petsc.org/release/manualpages/Mat/MatSORType.html#MatSORType
man:+SOR_LOCAL_FORWARD_SWEEP++SOR_LOCAL_FORWARD_SWEEP++++man+https://petsc.org/release/manualpages/Mat/MatSORType.html#MatSORType
man:+SOR_LOCAL_BACKWARD_SWEEP++SOR_LOCAL_BACKWARD_SWEEP++++man+https://petsc.org/release/manualpages/Mat/MatSORType.html#MatSORType
man:+SOR_LOCAL_SYMMETRIC_SWEEP++SOR_LOCAL_SYMMETRIC_SWEEP++++man+https://petsc.org/release/manualpages/Mat/MatSORType.html#MatSORType
man:+SOR_ZERO_INITIAL_GUESS++SOR_ZERO_INITIAL_GUESS++++man+https://petsc.org/release/manualpages/Mat/MatSORType.html#MatSORType
man:+SOR_EISENSTAT++SOR_EISENSTAT++++man+https://petsc.org/release/manualpages/Mat/MatSORType.html#MatSORType
man:+SOR_APPLY_UPPER++SOR_APPLY_UPPER++++man+https://petsc.org/release/manualpages/Mat/MatSORType.html#MatSORType
man:+SOR_APPLY_LOWER++SOR_APPLY_LOWER++++man+https://petsc.org/release/manualpages/Mat/MatSORType.html#MatSORType
man:+MatColoring++MatColoring++++man+https://petsc.org/release/manualpages/Mat/MatColoring.html#MatColoring
man:+MatColoringType++MatColoringType++++man+https://petsc.org/release/manualpages/Mat/MatColoringType.html#MatColoringType
man:+MatColoringWeightType++MatColoringWeightType++++man+https://petsc.org/release/manualpages/Mat/MatColoringWeightType.html#MatColoringWeightType
man:+MAT_COLORING_WEIGHT_RANDOM++MAT_COLORING_WEIGHT_RANDOM++++man+https://petsc.org/release/manualpages/Mat/MatColoringWeightType.html#MatColoringWeightType
man:+MAT_COLORING_WEIGHT_LEXICAL++MAT_COLORING_WEIGHT_LEXICAL++++man+https://petsc.org/release/manualpages/Mat/MatColoringWeightType.html#MatColoringWeightType
man:+MAT_COLORING_WEIGHT_LF++MAT_COLORING_WEIGHT_LF++++man+https://petsc.org/release/manualpages/Mat/MatColoringWeightType.html#MatColoringWeightType
man:+MAT_COLORING_WEIGHT_SL++MAT_COLORING_WEIGHT_SL++++man+https://petsc.org/release/manualpages/Mat/MatColoringWeightType.html#MatColoringWeightType
man:+MatFDColoring++MatFDColoring++++man+https://petsc.org/release/manualpages/Mat/MatFDColoring.html#MatFDColoring
man:+MatTransposeColoring++MatTransposeColoring++++man+https://petsc.org/release/manualpages/Mat/MatTransposeColoring.html#MatTransposeColoring
man:+MatPartitioning++MatPartitioning++++man+https://petsc.org/release/manualpages/Mat/MatPartitioning.html#MatPartitioning
man:+MatPartitioningType++MatPartitioningType++++man+https://petsc.org/release/manualpages/Mat/MatPartitioningType.html#MatPartitioningType
man:+MatNullSpace++MatNullSpace++++man+https://petsc.org/release/manualpages/Mat/MatNullSpace.html#MatNullSpace
man:+MatMFFD++MatMFFD++++man+https://petsc.org/release/manualpages/Mat/MatMFFD.html#MatMFFD
man:+MatMFFDType++MatMFFDType++++man+https://petsc.org/release/manualpages/Mat/MatMFFDType.html#MatMFFDType
man:+MatHtoolCompressorType++MatHtoolCompressorType++++man+https://petsc.org/release/manualpages/Mat/MatHtoolCompressorType.html#MatHtoolCompressorType
man:+MAT_HTOOL_COMPRESSOR_SYMPARTIAL_ACA++MAT_HTOOL_COMPRESSOR_SYMPARTIAL_ACA++++man+https://petsc.org/release/manualpages/Mat/MatHtoolCompressorType.html#MatHtoolCompressorType
man:+MAT_HTOOL_COMPRESSOR_FULL_ACA++MAT_HTOOL_COMPRESSOR_FULL_ACA++++man+https://petsc.org/release/manualpages/Mat/MatHtoolCompressorType.html#MatHtoolCompressorType
man:+MAT_HTOOL_COMPRESSOR_SVD++MAT_HTOOL_COMPRESSOR_SVD++++man+https://petsc.org/release/manualpages/Mat/MatHtoolCompressorType.html#MatHtoolCompressorType
man:+MatHtoolClusteringType++MatHtoolClusteringType++++man+https://petsc.org/release/manualpages/Mat/MatHtoolClusteringType.html#MatHtoolClusteringType
man:+MAT_HTOOL_CLUSTERING_PCA_REGULAR++MAT_HTOOL_CLUSTERING_PCA_REGULAR++++man+https://petsc.org/release/manualpages/Mat/MatHtoolClusteringType.html#MatHtoolClusteringType
man:+MAT_HTOOL_CLUSTERING_PCA_GEOMETRIC++MAT_HTOOL_CLUSTERING_PCA_GEOMETRIC++++man+https://petsc.org/release/manualpages/Mat/MatHtoolClusteringType.html#MatHtoolClusteringType
man:+MAT_HTOOL_CLUSTERING_BOUNDING_BOX_1_REGULAR++MAT_HTOOL_CLUSTERING_BOUNDING_BOX_1_REGULAR++++man+https://petsc.org/release/manualpages/Mat/MatHtoolClusteringType.html#MatHtoolClusteringType
man:+MAT_HTOOL_CLUSTERING_BOUNDING_BOX_1_GEOMETRIC++MAT_HTOOL_CLUSTERING_BOUNDING_BOX_1_GEOMETRIC++++man+https://petsc.org/release/manualpages/Mat/MatHtoolClusteringType.html#MatHtoolClusteringType
man:+MatSTRUMPACKReordering++MatSTRUMPACKReordering++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKReordering.html#MatSTRUMPACKReordering
man:+MAT_STRUMPACK_NATURAL++MAT_STRUMPACK_NATURAL++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKReordering.html#MatSTRUMPACKReordering
man:+MAT_STRUMPACK_METIS++MAT_STRUMPACK_METIS++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKReordering.html#MatSTRUMPACKReordering
man:+MAT_STRUMPACK_PARMETIS++MAT_STRUMPACK_PARMETIS++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKReordering.html#MatSTRUMPACKReordering
man:+MAT_STRUMPACK_SCOTCH++MAT_STRUMPACK_SCOTCH++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKReordering.html#MatSTRUMPACKReordering
man:+MAT_STRUMPACK_PTSCOTCH++MAT_STRUMPACK_PTSCOTCH++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKReordering.html#MatSTRUMPACKReordering
man:+MAT_STRUMPACK_RCM++MAT_STRUMPACK_RCM++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKReordering.html#MatSTRUMPACKReordering
man:+MAT_STRUMPACK_GEOMETRIC++MAT_STRUMPACK_GEOMETRIC++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKReordering.html#MatSTRUMPACKReordering
man:+MAT_STRUMPACK_AMD++MAT_STRUMPACK_AMD++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKReordering.html#MatSTRUMPACKReordering
man:+MAT_STRUMPACK_MMD++MAT_STRUMPACK_MMD++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKReordering.html#MatSTRUMPACKReordering
man:+MAT_STRUMPACK_AND++MAT_STRUMPACK_AND++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKReordering.html#MatSTRUMPACKReordering
man:+MAT_STRUMPACK_MLF++MAT_STRUMPACK_MLF++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKReordering.html#MatSTRUMPACKReordering
man:+MAT_STRUMPACK_SPECTRAL++MAT_STRUMPACK_SPECTRAL++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKReordering.html#MatSTRUMPACKReordering
man:+MatSTRUMPACKCompressionType++MatSTRUMPACKCompressionType++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKCompressionType.html#MatSTRUMPACKCompressionType
man:+MAT_STRUMPACK_COMPRESSION_TYPE_NONE++MAT_STRUMPACK_COMPRESSION_TYPE_NONE++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKCompressionType.html#MatSTRUMPACKCompressionType
man:+MAT_STRUMPACK_COMPRESSION_TYPE_HSS++MAT_STRUMPACK_COMPRESSION_TYPE_HSS++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKCompressionType.html#MatSTRUMPACKCompressionType
man:+MAT_STRUMPACK_COMPRESSION_TYPE_BLR++MAT_STRUMPACK_COMPRESSION_TYPE_BLR++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKCompressionType.html#MatSTRUMPACKCompressionType
man:+MAT_STRUMPACK_COMPRESSION_TYPE_HODLR++MAT_STRUMPACK_COMPRESSION_TYPE_HODLR++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKCompressionType.html#MatSTRUMPACKCompressionType
man:+MAT_STRUMPACK_COMPRESSION_TYPE_BLR_HODLR++MAT_STRUMPACK_COMPRESSION_TYPE_BLR_HODLR++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKCompressionType.html#MatSTRUMPACKCompressionType
man:+MAT_STRUMPACK_COMPRESSION_TYPE_ZFP_BLR_HODLR++MAT_STRUMPACK_COMPRESSION_TYPE_ZFP_BLR_HODLR++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKCompressionType.html#MatSTRUMPACKCompressionType
man:+MAT_STRUMPACK_COMPRESSION_TYPE_LOSSLESS++MAT_STRUMPACK_COMPRESSION_TYPE_LOSSLESS++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKCompressionType.html#MatSTRUMPACKCompressionType
man:+MAT_STRUMPACK_COMPRESSION_TYPE_LOSSY++MAT_STRUMPACK_COMPRESSION_TYPE_LOSSY++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKCompressionType.html#MatSTRUMPACKCompressionType
man:+MatCUSPARSEStorageFormat++MatCUSPARSEStorageFormat++++man+https://petsc.org/release/manualpages/Mat/MatCUSPARSEStorageFormat.html#MatCUSPARSEStorageFormat
man:+MAT_CUSPARSE_CSR++MAT_CUSPARSE_CSR++++man+https://petsc.org/release/manualpages/Mat/MatCUSPARSEStorageFormat.html#MatCUSPARSEStorageFormat
man:+MAT_CUSPARSE_ELL++MAT_CUSPARSE_ELL++++man+https://petsc.org/release/manualpages/Mat/MatCUSPARSEStorageFormat.html#MatCUSPARSEStorageFormat
man:+MAT_CUSPARSE_HYB++MAT_CUSPARSE_HYB++++man+https://petsc.org/release/manualpages/Mat/MatCUSPARSEStorageFormat.html#MatCUSPARSEStorageFormat
man:+MatCUSPARSEFormatOperation++MatCUSPARSEFormatOperation++++man+https://petsc.org/release/manualpages/Mat/MatCUSPARSEFormatOperation.html#MatCUSPARSEFormatOperation
man:+MAT_CUSPARSE_MULT_DIAG++MAT_CUSPARSE_MULT_DIAG++++man+https://petsc.org/release/manualpages/Mat/MatCUSPARSEFormatOperation.html#MatCUSPARSEFormatOperation
man:+MAT_CUSPARSE_MULT_OFFDIAG++MAT_CUSPARSE_MULT_OFFDIAG++++man+https://petsc.org/release/manualpages/Mat/MatCUSPARSEFormatOperation.html#MatCUSPARSEFormatOperation
man:+MAT_CUSPARSE_MULT++MAT_CUSPARSE_MULT++++man+https://petsc.org/release/manualpages/Mat/MatCUSPARSEFormatOperation.html#MatCUSPARSEFormatOperation
man:+MAT_CUSPARSE_ALL++MAT_CUSPARSE_ALL++++man+https://petsc.org/release/manualpages/Mat/MatCUSPARSEFormatOperation.html#MatCUSPARSEFormatOperation
man:+MatHIPSPARSEStorageFormat++MatHIPSPARSEStorageFormat++++man+https://petsc.org/release/manualpages/Mat/MatHIPSPARSEStorageFormat.html#MatHIPSPARSEStorageFormat
man:+MAT_HIPSPARSE_CSR++MAT_HIPSPARSE_CSR++++man+https://petsc.org/release/manualpages/Mat/MatHIPSPARSEStorageFormat.html#MatHIPSPARSEStorageFormat
man:+MAT_HIPSPARSE_ELL++MAT_HIPSPARSE_ELL++++man+https://petsc.org/release/manualpages/Mat/MatHIPSPARSEStorageFormat.html#MatHIPSPARSEStorageFormat
man:+MAT_HIPSPARSE_HYB++MAT_HIPSPARSE_HYB++++man+https://petsc.org/release/manualpages/Mat/MatHIPSPARSEStorageFormat.html#MatHIPSPARSEStorageFormat
man:+MatHIPSPARSEFormatOperation++MatHIPSPARSEFormatOperation++++man+https://petsc.org/release/manualpages/Mat/MatHIPSPARSEFormatOperation.html#MatHIPSPARSEFormatOperation
man:+MAT_HIPSPARSE_MULT_DIAG++MAT_HIPSPARSE_MULT_DIAG++++man+https://petsc.org/release/manualpages/Mat/MatHIPSPARSEFormatOperation.html#MatHIPSPARSEFormatOperation
man:+MAT_HIPSPARSE_MULT_OFFDIAG++MAT_HIPSPARSE_MULT_OFFDIAG++++man+https://petsc.org/release/manualpages/Mat/MatHIPSPARSEFormatOperation.html#MatHIPSPARSEFormatOperation
man:+MAT_HIPSPARSE_MULT++MAT_HIPSPARSE_MULT++++man+https://petsc.org/release/manualpages/Mat/MatHIPSPARSEFormatOperation.html#MatHIPSPARSEFormatOperation
man:+MAT_HIPSPARSE_ALL++MAT_HIPSPARSE_ALL++++man+https://petsc.org/release/manualpages/Mat/MatHIPSPARSEFormatOperation.html#MatHIPSPARSEFormatOperation
man:+MatCoarsen++MatCoarsen++++man+https://petsc.org/release/manualpages/Mat/MatCoarsen.html#MatCoarsen
man:+MatCoarsenType++MatCoarsenType++++man+https://petsc.org/release/manualpages/Mat/MatCoarsenType.html#MatCoarsenType
man:+MPIU_REAL++MPIU_REAL++++man+https://petsc.org/release/manualpages/Sys/MPIU_REAL.html#MPIU_REAL
man:+PETSC_i++PETSC_i++++man+https://petsc.org/release/manualpages/Sys/PETSC_i.html#PETSC_i
man:+MPIU_COMPLEX++MPIU_COMPLEX++++man+https://petsc.org/release/manualpages/Sys/MPIU_COMPLEX.html#MPIU_COMPLEX
man:+MPIU_SCALAR++MPIU_SCALAR++++man+https://petsc.org/release/manualpages/Sys/MPIU_SCALAR.html#MPIU_SCALAR
man:+PetscRealPart++PetscRealPart++++man+https://petsc.org/release/manualpages/Sys/PetscRealPart.html#PetscRealPart
man:+PetscImaginaryPart++PetscImaginaryPart++++man+https://petsc.org/release/manualpages/Sys/PetscImaginaryPart.html#PetscImaginaryPart
man:+PetscAbs++PetscAbs++++man+https://petsc.org/release/manualpages/Sys/PetscAbs.html#PetscAbs
man:+PetscSign++PetscSign++++man+https://petsc.org/release/manualpages/Sys/PetscSign.html#PetscSign
man:+PetscMin++PetscMin++++man+https://petsc.org/release/manualpages/Sys/PetscMin.html#PetscMin
man:+PetscMax++PetscMax++++man+https://petsc.org/release/manualpages/Sys/PetscMax.html#PetscMax
man:+PetscClipInterval++PetscClipInterval++++man+https://petsc.org/release/manualpages/Sys/PetscClipInterval.html#PetscClipInterval
man:+PetscAbsInt++PetscAbsInt++++man+https://petsc.org/release/manualpages/Sys/PetscAbsInt.html#PetscAbsInt
man:+PetscAbsReal++PetscAbsReal++++man+https://petsc.org/release/manualpages/Sys/PetscAbsReal.html#PetscAbsReal
man:+PetscSqr++PetscSqr++++man+https://petsc.org/release/manualpages/Sys/PetscSqr.html#PetscSqr
man:+PetscRealConstant++PetscRealConstant++++man+https://petsc.org/release/manualpages/Sys/PetscRealConstant.html#PetscRealConstant
man:+PETSC_PI++PETSC_PI++++man+https://petsc.org/release/manualpages/Sys/PETSC_PI.html#PETSC_PI
man:+PETSC_PHI++PETSC_PHI++++man+https://petsc.org/release/manualpages/Sys/PETSC_PHI.html#PETSC_PHI
man:+PETSC_SQRT2++PETSC_SQRT2++++man+https://petsc.org/release/manualpages/Sys/PETSC_SQRT2.html#PETSC_SQRT2
man:+PETSC_MAX_REAL++PETSC_MAX_REAL++++man+https://petsc.org/release/manualpages/Sys/PETSC_MAX_REAL.html#PETSC_MAX_REAL
man:+PETSC_MIN_REAL++PETSC_MIN_REAL++++man+https://petsc.org/release/manualpages/Sys/PETSC_MIN_REAL.html#PETSC_MIN_REAL
man:+PETSC_REAL_MIN++PETSC_REAL_MIN++++man+https://petsc.org/release/manualpages/Sys/PETSC_REAL_MIN.html#PETSC_REAL_MIN
man:+PETSC_MACHINE_EPSILON++PETSC_MACHINE_EPSILON++++man+https://petsc.org/release/manualpages/Sys/PETSC_MACHINE_EPSILON.html#PETSC_MACHINE_EPSILON
man:+PETSC_SQRT_MACHINE_EPSILON++PETSC_SQRT_MACHINE_EPSILON++++man+https://petsc.org/release/manualpages/Sys/PETSC_SQRT_MACHINE_EPSILON.html#PETSC_SQRT_MACHINE_EPSILON
man:+PETSC_SMALL++PETSC_SMALL++++man+https://petsc.org/release/manualpages/Sys/PETSC_SMALL.html#PETSC_SMALL
man:+PETSC_INFINITY++PETSC_INFINITY++++man+https://petsc.org/release/manualpages/Sys/PETSC_INFINITY.html#PETSC_INFINITY
man:+PETSC_NINFINITY++PETSC_NINFINITY++++man+https://petsc.org/release/manualpages/Sys/PETSC_NINFINITY.html#PETSC_NINFINITY
man:+PetscIsCloseAtTolScalar++PetscIsCloseAtTolScalar++++man+https://petsc.org/release/manualpages/Sys/PetscIsCloseAtTolScalar.html#PetscIsCloseAtTolScalar
man:+PetscApproximateLTE++PetscApproximateLTE++++man+https://petsc.org/release/manualpages/Sys/PetscApproximateLTE.html#PetscApproximateLTE
man:+PetscApproximateGTE++PetscApproximateGTE++++man+https://petsc.org/release/manualpages/Sys/PetscApproximateGTE.html#PetscApproximateGTE
man:+PetscCeilInt++PetscCeilInt++++man+https://petsc.org/release/manualpages/Sys/PetscCeilInt.html#PetscCeilInt
man:+PetscCeilInt64++PetscCeilInt64++++man+https://petsc.org/release/manualpages/Sys/PetscCeilInt64.html#PetscCeilInt64
man:+PetscMatlabEngine++PetscMatlabEngine++++man+https://petsc.org/release/manualpages/Matlab/PetscMatlabEngine.html#PetscMatlabEngine
man:+PETSC_MATLAB_ENGINE_WORLD++PETSC_MATLAB_ENGINE_WORLD++++man+https://petsc.org/release/manualpages/Matlab/PETSC_MATLAB_ENGINE_WORLD.html#PETSC_MATLAB_ENGINE_WORLD
man:+PETSC_MATLAB_ENGINE_SELF++PETSC_MATLAB_ENGINE_SELF++++man+https://petsc.org/release/manualpages/Matlab/PETSC_MATLAB_ENGINE_SELF.html#PETSC_MATLAB_ENGINE_SELF
man:+PetscOptionsBegin++PetscOptionsBegin++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsBegin.html#PetscOptionsBegin
man:+PetscObjectOptionsBegin++PetscObjectOptionsBegin++++man+https://petsc.org/release/manualpages/Sys/PetscObjectOptionsBegin.html#PetscObjectOptionsBegin
man:+PetscOptionsEnd++PetscOptionsEnd++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsEnd.html#PetscOptionsEnd
man:+PetscOptionsHeadBegin++PetscOptionsHeadBegin++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsHeadBegin.html#PetscOptionsHeadBegin
man:+PetscOptionsHeadEnd++PetscOptionsHeadEnd++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsHeadEnd.html#PetscOptionsHeadEnd
man:+PetscOptionsEnum++PetscOptionsEnum++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsEnum.html#PetscOptionsEnum
man:+PetscOptionsInt++PetscOptionsInt++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsInt.html#PetscOptionsInt
man:+PetscOptionsMPIInt++PetscOptionsMPIInt++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsMPIInt.html#PetscOptionsMPIInt
man:+PetscOptionsBoundedInt++PetscOptionsBoundedInt++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsBoundedInt.html#PetscOptionsBoundedInt
man:+PetscOptionsRangeInt++PetscOptionsRangeInt++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsRangeInt.html#PetscOptionsRangeInt
man:+PetscOptionsReal++PetscOptionsReal++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsReal.html#PetscOptionsReal
man:+PetscOptionsBoundedReal++PetscOptionsBoundedReal++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsBoundedReal.html#PetscOptionsBoundedReal
man:+PetscOptionsRangeReal++PetscOptionsRangeReal++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsRangeReal.html#PetscOptionsRangeReal
man:+PetscOptionsScalar++PetscOptionsScalar++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsScalar.html#PetscOptionsScalar
man:+PetscOptionsName++PetscOptionsName++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsName.html#PetscOptionsName
man:+PetscOptionsString++PetscOptionsString++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsString.html#PetscOptionsString
man:+PetscOptionsBool++PetscOptionsBool++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsBool.html#PetscOptionsBool
man:+PetscOptionsBoolGroupBegin++PetscOptionsBoolGroupBegin++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsBoolGroupBegin.html#PetscOptionsBoolGroupBegin
man:+PetscOptionsBoolGroup++PetscOptionsBoolGroup++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsBoolGroup.html#PetscOptionsBoolGroup
man:+PetscOptionsBoolGroupEnd++PetscOptionsBoolGroupEnd++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsBoolGroupEnd.html#PetscOptionsBoolGroupEnd
man:+PetscOptionsFList++PetscOptionsFList++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsFList.html#PetscOptionsFList
man:+PetscOptionsEList++PetscOptionsEList++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsEList.html#PetscOptionsEList
man:+PetscOptionsRealArray++PetscOptionsRealArray++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsRealArray.html#PetscOptionsRealArray
man:+PetscOptionsScalarArray++PetscOptionsScalarArray++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsScalarArray.html#PetscOptionsScalarArray
man:+PetscOptionsIntArray++PetscOptionsIntArray++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsIntArray.html#PetscOptionsIntArray
man:+PetscOptionsStringArray++PetscOptionsStringArray++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsStringArray.html#PetscOptionsStringArray
man:+PetscOptionsBoolArray++PetscOptionsBoolArray++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsBoolArray.html#PetscOptionsBoolArray
man:+PetscOptionsEnumArray++PetscOptionsEnumArray++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsEnumArray.html#PetscOptionsEnumArray
man:+PetscOptionsDeprecated++PetscOptionsDeprecated++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsDeprecated.html#PetscOptionsDeprecated
man:+PetscOptionsDeprecatedMoObject++PetscOptionsDeprecatedMoObject++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsDeprecatedMoObject.html#PetscOptionsDeprecatedMoObject
man:+PetscPartitioner++PetscPartitioner++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitioner.html#PetscPartitioner
man:+PetscPartitionerType++PetscPartitionerType++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerType.html#PetscPartitionerType
man:+PC++PC++++man+https://petsc.org/release/manualpages/PC/PC.html#PC
man:+PCType++PCType++++man+https://petsc.org/release/manualpages/PC/PCType.html#PCType
man:+PCSide++PCSide++++man+https://petsc.org/release/manualpages/PC/PCSide.html#PCSide
man:+PC_SIDE_DEFAULT++PC_SIDE_DEFAULT++++man+https://petsc.org/release/manualpages/PC/PCSide.html#PCSide
man:+PC_LEFT++PC_LEFT++++man+https://petsc.org/release/manualpages/PC/PCSide.html#PCSide
man:+PC_RIGHT++PC_RIGHT++++man+https://petsc.org/release/manualpages/PC/PCSide.html#PCSide
man:+PC_SYMMETRIC++PC_SYMMETRIC++++man+https://petsc.org/release/manualpages/PC/PCSide.html#PCSide
man:+PCRichardsonConvergedReason++PCRichardsonConvergedReason++++man+https://petsc.org/release/manualpages/PC/PCRichardsonConvergedReason.html#PCRichardsonConvergedReason
man:+PCRICHARDSON_NOT_SET++PCRICHARDSON_NOT_SET++++man+https://petsc.org/release/manualpages/PC/PCRichardsonConvergedReason.html#PCRichardsonConvergedReason
man:+PCRICHARDSON_CONVERGED_RTOL++PCRICHARDSON_CONVERGED_RTOL++++man+https://petsc.org/release/manualpages/PC/PCRichardsonConvergedReason.html#PCRichardsonConvergedReason
man:+PCRICHARDSON_CONVERGED_ATOL++PCRICHARDSON_CONVERGED_ATOL++++man+https://petsc.org/release/manualpages/PC/PCRichardsonConvergedReason.html#PCRichardsonConvergedReason
man:+PCRICHARDSON_CONVERGED_ITS++PCRICHARDSON_CONVERGED_ITS++++man+https://petsc.org/release/manualpages/PC/PCRichardsonConvergedReason.html#PCRichardsonConvergedReason
man:+PCRICHARDSON_DIVERGED_DTOL++PCRICHARDSON_DIVERGED_DTOL++++man+https://petsc.org/release/manualpages/PC/PCRichardsonConvergedReason.html#PCRichardsonConvergedReason
man:+PCJacobiType++PCJacobiType++++man+https://petsc.org/release/manualpages/PC/PCJacobiType.html#PCJacobiType
man:+PC_JACOBI_DIAGONAL++PC_JACOBI_DIAGONAL++++man+https://petsc.org/release/manualpages/PC/PCJacobiType.html#PCJacobiType
man:+PC_JACOBI_ROWL1++PC_JACOBI_ROWL1++++man+https://petsc.org/release/manualpages/PC/PCJacobiType.html#PCJacobiType
man:+PC_JACOBI_ROWMAX++PC_JACOBI_ROWMAX++++man+https://petsc.org/release/manualpages/PC/PCJacobiType.html#PCJacobiType
man:+PC_JACOBI_ROWSUM++PC_JACOBI_ROWSUM++++man+https://petsc.org/release/manualpages/PC/PCJacobiType.html#PCJacobiType
man:+PCASMType++PCASMType++++man+https://petsc.org/release/manualpages/PC/PCASMType.html#PCASMType
man:+PC_ASM_BASIC++PC_ASM_BASIC++++man+https://petsc.org/release/manualpages/PC/PCASMType.html#PCASMType
man:+PC_ASM_RESTRICT++PC_ASM_RESTRICT++++man+https://petsc.org/release/manualpages/PC/PCASMType.html#PCASMType
man:+PC_ASM_INTERPOLATE++PC_ASM_INTERPOLATE++++man+https://petsc.org/release/manualpages/PC/PCASMType.html#PCASMType
man:+PC_ASM_NONE++PC_ASM_NONE++++man+https://petsc.org/release/manualpages/PC/PCASMType.html#PCASMType
man:+PCGASMType++PCGASMType++++man+https://petsc.org/release/manualpages/PC/PCGASMType.html#PCGASMType
man:+PC_GASM_BASIC++PC_GASM_BASIC++++man+https://petsc.org/release/manualpages/PC/PCGASMType.html#PCGASMType
man:+PC_GASM_RESTRICT++PC_GASM_RESTRICT++++man+https://petsc.org/release/manualpages/PC/PCGASMType.html#PCGASMType
man:+PC_GASM_INTERPOLATE++PC_GASM_INTERPOLATE++++man+https://petsc.org/release/manualpages/PC/PCGASMType.html#PCGASMType
man:+PC_GASM_NONE++PC_GASM_NONE++++man+https://petsc.org/release/manualpages/PC/PCGASMType.html#PCGASMType
man:+PCCompositeType++PCCompositeType++++man+https://petsc.org/release/manualpages/PC/PCCompositeType.html#PCCompositeType
man:+PC_COMPOSITE_ADDITIVE++PC_COMPOSITE_ADDITIVE++++man+https://petsc.org/release/manualpages/PC/PCCompositeType.html#PCCompositeType
man:+PC_COMPOSITE_MULTIPLICATIVE++PC_COMPOSITE_MULTIPLICATIVE++++man+https://petsc.org/release/manualpages/PC/PCCompositeType.html#PCCompositeType
man:+PC_COMPOSITE_SYMMETRIC_MULTIPLICATIVE++PC_COMPOSITE_SYMMETRIC_MULTIPLICATIVE++++man+https://petsc.org/release/manualpages/PC/PCCompositeType.html#PCCompositeType
man:+PC_COMPOSITE_SPECIAL++PC_COMPOSITE_SPECIAL++++man+https://petsc.org/release/manualpages/PC/PCCompositeType.html#PCCompositeType
man:+PC_COMPOSITE_SCHUR++PC_COMPOSITE_SCHUR++++man+https://petsc.org/release/manualpages/PC/PCCompositeType.html#PCCompositeType
man:+PC_COMPOSITE_GKB++PC_COMPOSITE_GKB++++man+https://petsc.org/release/manualpages/PC/PCCompositeType.html#PCCompositeType
man:+PCFieldSplitSchurPreType++PCFieldSplitSchurPreType++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSchurPreType.html#PCFieldSplitSchurPreType
man:+PC_FIELDSPLIT_SCHUR_PRE_SELF++PC_FIELDSPLIT_SCHUR_PRE_SELF++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSchurPreType.html#PCFieldSplitSchurPreType
man:+PC_FIELDSPLIT_SCHUR_PRE_SELFP++PC_FIELDSPLIT_SCHUR_PRE_SELFP++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSchurPreType.html#PCFieldSplitSchurPreType
man:+PC_FIELDSPLIT_SCHUR_PRE_A11++PC_FIELDSPLIT_SCHUR_PRE_A11++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSchurPreType.html#PCFieldSplitSchurPreType
man:+PC_FIELDSPLIT_SCHUR_PRE_USER++PC_FIELDSPLIT_SCHUR_PRE_USER++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSchurPreType.html#PCFieldSplitSchurPreType
man:+PC_FIELDSPLIT_SCHUR_PRE_FULL++PC_FIELDSPLIT_SCHUR_PRE_FULL++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSchurPreType.html#PCFieldSplitSchurPreType
man:+PCFieldSplitSchurFactType++PCFieldSplitSchurFactType++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSchurFactType.html#PCFieldSplitSchurFactType
man:+PC_FIELDSPLIT_SCHUR_FACT_DIAG++PC_FIELDSPLIT_SCHUR_FACT_DIAG++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSchurFactType.html#PCFieldSplitSchurFactType
man:+PC_FIELDSPLIT_SCHUR_FACT_LOWER++PC_FIELDSPLIT_SCHUR_FACT_LOWER++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSchurFactType.html#PCFieldSplitSchurFactType
man:+PC_FIELDSPLIT_SCHUR_FACT_UPPER++PC_FIELDSPLIT_SCHUR_FACT_UPPER++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSchurFactType.html#PCFieldSplitSchurFactType
man:+PC_FIELDSPLIT_SCHUR_FACT_FULL++PC_FIELDSPLIT_SCHUR_FACT_FULL++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSchurFactType.html#PCFieldSplitSchurFactType
man:+PCPARMSGlobalType++PCPARMSGlobalType++++man+https://petsc.org/release/manualpages/PC/PCPARMSGlobalType.html#PCPARMSGlobalType
man:+PC_PARMS_GLOBAL_RAS++PC_PARMS_GLOBAL_RAS++++man+https://petsc.org/release/manualpages/PC/PCPARMSGlobalType.html#PCPARMSGlobalType
man:+PC_PARMS_GLOBAL_SCHUR++PC_PARMS_GLOBAL_SCHUR++++man+https://petsc.org/release/manualpages/PC/PCPARMSGlobalType.html#PCPARMSGlobalType
man:+PC_PARMS_GLOBAL_BJ++PC_PARMS_GLOBAL_BJ++++man+https://petsc.org/release/manualpages/PC/PCPARMSGlobalType.html#PCPARMSGlobalType
man:+PCPARMSLocalType++PCPARMSLocalType++++man+https://petsc.org/release/manualpages/PC/PCPARMSLocalType.html#PCPARMSLocalType
man:+PC_PARMS_LOCAL_ILU0++PC_PARMS_LOCAL_ILU0++++man+https://petsc.org/release/manualpages/PC/PCPARMSLocalType.html#PCPARMSLocalType
man:+PC_PARMS_LOCAL_ILUK++PC_PARMS_LOCAL_ILUK++++man+https://petsc.org/release/manualpages/PC/PCPARMSLocalType.html#PCPARMSLocalType
man:+PC_PARMS_LOCAL_ILUT++PC_PARMS_LOCAL_ILUT++++man+https://petsc.org/release/manualpages/PC/PCPARMSLocalType.html#PCPARMSLocalType
man:+PC_PARMS_LOCAL_ARMS++PC_PARMS_LOCAL_ARMS++++man+https://petsc.org/release/manualpages/PC/PCPARMSLocalType.html#PCPARMSLocalType
man:+PCGAMGType++PCGAMGType++++man+https://petsc.org/release/manualpages/PC/PCGAMGType.html#PCGAMGType
man:+PCMGType++PCMGType++++man+https://petsc.org/release/manualpages/PC/PCMGType.html#PCMGType
man:+PC_MG_MULTIPLICATIVE++PC_MG_MULTIPLICATIVE++++man+https://petsc.org/release/manualpages/PC/PCMGType.html#PCMGType
man:+PC_MG_ADDITIVE++PC_MG_ADDITIVE++++man+https://petsc.org/release/manualpages/PC/PCMGType.html#PCMGType
man:+PC_MG_FULL++PC_MG_FULL++++man+https://petsc.org/release/manualpages/PC/PCMGType.html#PCMGType
man:+PC_MG_KASKADE++PC_MG_KASKADE++++man+https://petsc.org/release/manualpages/PC/PCMGType.html#PCMGType
man:+PCMGCycleType++PCMGCycleType++++man+https://petsc.org/release/manualpages/PC/PCMGCycleType.html#PCMGCycleType
man:+PC_MG_CYCLE_V++PC_MG_CYCLE_V++++man+https://petsc.org/release/manualpages/PC/PCMGCycleType.html#PCMGCycleType
man:+PC_MG_CYCLE_W++PC_MG_CYCLE_W++++man+https://petsc.org/release/manualpages/PC/PCMGCycleType.html#PCMGCycleType
man:+PCMGalerkinType++PCMGalerkinType++++man+https://petsc.org/release/manualpages/PC/PCMGalerkinType.html#PCMGalerkinType
man:+PC_MG_GALERKIN_BOTH++PC_MG_GALERKIN_BOTH++++man+https://petsc.org/release/manualpages/PC/PCMGalerkinType.html#PCMGalerkinType
man:+PC_MG_GALERKIN_PMAT++PC_MG_GALERKIN_PMAT++++man+https://petsc.org/release/manualpages/PC/PCMGalerkinType.html#PCMGalerkinType
man:+PC_MG_GALERKIN_MAT++PC_MG_GALERKIN_MAT++++man+https://petsc.org/release/manualpages/PC/PCMGalerkinType.html#PCMGalerkinType
man:+PC_MG_GALERKIN_NONE++PC_MG_GALERKIN_NONE++++man+https://petsc.org/release/manualpages/PC/PCMGalerkinType.html#PCMGalerkinType
man:+PC_MG_GALERKIN_EXTERNAL++PC_MG_GALERKIN_EXTERNAL++++man+https://petsc.org/release/manualpages/PC/PCMGalerkinType.html#PCMGalerkinType
man:+PCExoticType++PCExoticType++++man+https://petsc.org/release/manualpages/PC/PCExoticType.html#PCExoticType
man:+PC_EXOTIC_FACE++PC_EXOTIC_FACE++++man+https://petsc.org/release/manualpages/PC/PCExoticType.html#PCExoticType
man:+PC_EXOTIC_WIREBASKET++PC_EXOTIC_WIREBASKET++++man+https://petsc.org/release/manualpages/PC/PCExoticType.html#PCExoticType
man:+PCBDDCInterfaceExtType++PCBDDCInterfaceExtType++++man+https://petsc.org/release/manualpages/PC/PCBDDCInterfaceExtType.html#PCBDDCInterfaceExtType
man:+PC_BDDC_INTERFACE_EXT_DIRICHLET++PC_BDDC_INTERFACE_EXT_DIRICHLET++++man+https://petsc.org/release/manualpages/PC/PCBDDCInterfaceExtType.html#PCBDDCInterfaceExtType
man:+PC_BDDC_INTERFACE_EXT_LUMP++PC_BDDC_INTERFACE_EXT_LUMP++++man+https://petsc.org/release/manualpages/PC/PCBDDCInterfaceExtType.html#PCBDDCInterfaceExtType
man:+PCMGCoarseSpaceType++PCMGCoarseSpaceType++++man+https://petsc.org/release/manualpages/PC/PCMGCoarseSpaceType.html#PCMGCoarseSpaceType
man:+PCMG_ADAPT_NONE++PCMG_ADAPT_NONE++++man+https://petsc.org/release/manualpages/PC/PCMGCoarseSpaceType.html#PCMGCoarseSpaceType
man:+PCMG_ADAPT_POLYNOMIAL++PCMG_ADAPT_POLYNOMIAL++++man+https://petsc.org/release/manualpages/PC/PCMGCoarseSpaceType.html#PCMGCoarseSpaceType
man:+PCMG_ADAPT_HARMONIC++PCMG_ADAPT_HARMONIC++++man+https://petsc.org/release/manualpages/PC/PCMGCoarseSpaceType.html#PCMGCoarseSpaceType
man:+PCMG_ADAPT_EIGENVECTOR++PCMG_ADAPT_EIGENVECTOR++++man+https://petsc.org/release/manualpages/PC/PCMGCoarseSpaceType.html#PCMGCoarseSpaceType
man:+PCMG_ADAPT_GENERALIZED_EIGENVECTOR++PCMG_ADAPT_GENERALIZED_EIGENVECTOR++++man+https://petsc.org/release/manualpages/PC/PCMGCoarseSpaceType.html#PCMGCoarseSpaceType
man:+PCMG_ADAPT_GDSW++PCMG_ADAPT_GDSW++++man+https://petsc.org/release/manualpages/PC/PCMGCoarseSpaceType.html#PCMGCoarseSpaceType
man:+PCPatchConstructType++PCPatchConstructType++++man+https://petsc.org/release/manualpages/PC/PCPatchConstructType.html#PCPatchConstructType
man:+PC_PATCH_STAR++PC_PATCH_STAR++++man+https://petsc.org/release/manualpages/PC/PCPatchConstructType.html#PCPatchConstructType
man:+PC_PATCH_VANKA++PC_PATCH_VANKA++++man+https://petsc.org/release/manualpages/PC/PCPatchConstructType.html#PCPatchConstructType
man:+PC_PATCH_PARDECOMP++PC_PATCH_PARDECOMP++++man+https://petsc.org/release/manualpages/PC/PCPatchConstructType.html#PCPatchConstructType
man:+PC_PATCH_USER++PC_PATCH_USER++++man+https://petsc.org/release/manualpages/PC/PCPatchConstructType.html#PCPatchConstructType
man:+PC_PATCH_PYTHON++PC_PATCH_PYTHON++++man+https://petsc.org/release/manualpages/PC/PCPatchConstructType.html#PCPatchConstructType
man:+PCDeflationSpaceType++PCDeflationSpaceType++++man+https://petsc.org/release/manualpages/PC/PCDeflationSpaceType.html#PCDeflationSpaceType
man:+PC_DEFLATION_SPACE_HAAR++PC_DEFLATION_SPACE_HAAR++++man+https://petsc.org/release/manualpages/PC/PCDeflationSpaceType.html#PCDeflationSpaceType
man:+PC_DEFLATION_SPACE_DB2++PC_DEFLATION_SPACE_DB2++++man+https://petsc.org/release/manualpages/PC/PCDeflationSpaceType.html#PCDeflationSpaceType
man:+PC_DEFLATION_SPACE_DB4++PC_DEFLATION_SPACE_DB4++++man+https://petsc.org/release/manualpages/PC/PCDeflationSpaceType.html#PCDeflationSpaceType
man:+PC_DEFLATION_SPACE_DB8++PC_DEFLATION_SPACE_DB8++++man+https://petsc.org/release/manualpages/PC/PCDeflationSpaceType.html#PCDeflationSpaceType
man:+PC_DEFLATION_SPACE_DB16++PC_DEFLATION_SPACE_DB16++++man+https://petsc.org/release/manualpages/PC/PCDeflationSpaceType.html#PCDeflationSpaceType
man:+PC_DEFLATION_SPACE_BIORTH22++PC_DEFLATION_SPACE_BIORTH22++++man+https://petsc.org/release/manualpages/PC/PCDeflationSpaceType.html#PCDeflationSpaceType
man:+PC_DEFLATION_SPACE_MEYER++PC_DEFLATION_SPACE_MEYER++++man+https://petsc.org/release/manualpages/PC/PCDeflationSpaceType.html#PCDeflationSpaceType
man:+PC_DEFLATION_SPACE_AGGREGATION++PC_DEFLATION_SPACE_AGGREGATION++++man+https://petsc.org/release/manualpages/PC/PCDeflationSpaceType.html#PCDeflationSpaceType
man:+PC_DEFLATION_SPACE_USER++PC_DEFLATION_SPACE_USER++++man+https://petsc.org/release/manualpages/PC/PCDeflationSpaceType.html#PCDeflationSpaceType
man:+PCHPDDMCoarseCorrectionType++PCHPDDMCoarseCorrectionType++++man+https://petsc.org/release/manualpages/PC/PCHPDDMCoarseCorrectionType.html#PCHPDDMCoarseCorrectionType
man:+PC_HPDDM_COARSE_CORRECTION_DEFLATED++PC_HPDDM_COARSE_CORRECTION_DEFLATED++++man+https://petsc.org/release/manualpages/PC/PCHPDDMCoarseCorrectionType.html#PCHPDDMCoarseCorrectionType
man:+PC_HPDDM_COARSE_CORRECTION_ADDITIVE++PC_HPDDM_COARSE_CORRECTION_ADDITIVE++++man+https://petsc.org/release/manualpages/PC/PCHPDDMCoarseCorrectionType.html#PCHPDDMCoarseCorrectionType
man:+PC_HPDDM_COARSE_CORRECTION_BALANCED++PC_HPDDM_COARSE_CORRECTION_BALANCED++++man+https://petsc.org/release/manualpages/PC/PCHPDDMCoarseCorrectionType.html#PCHPDDMCoarseCorrectionType
man:+PC_HPDDM_COARSE_CORRECTION_NONE++PC_HPDDM_COARSE_CORRECTION_NONE++++man+https://petsc.org/release/manualpages/PC/PCHPDDMCoarseCorrectionType.html#PCHPDDMCoarseCorrectionType
man:+PCHPDDMSchurPreType++PCHPDDMSchurPreType++++man+https://petsc.org/release/manualpages/PC/PCHPDDMSchurPreType.html#PCHPDDMSchurPreType
man:+PC_HPDDM_SCHUR_PRE_LEAST_SQUARES++PC_HPDDM_SCHUR_PRE_LEAST_SQUARES++++man+https://petsc.org/release/manualpages/PC/PCHPDDMSchurPreType.html#PCHPDDMSchurPreType
man:+PC_HPDDM_SCHUR_PRE_GENEO++PC_HPDDM_SCHUR_PRE_GENEO++++man+https://petsc.org/release/manualpages/PC/PCHPDDMSchurPreType.html#PCHPDDMSchurPreType
man:+PCFailedReason++PCFailedReason++++man+https://petsc.org/release/manualpages/PC/PCFailedReason.html#PCFailedReason
man:+PC_SETUP_ERROR++PC_SETUP_ERROR++++man+https://petsc.org/release/manualpages/PC/PCFailedReason.html#PCFailedReason
man:+PC_NOERROR++PC_NOERROR++++man+https://petsc.org/release/manualpages/PC/PCFailedReason.html#PCFailedReason
man:+PC_FACTOR_STRUCT_ZEROPIVOT++PC_FACTOR_STRUCT_ZEROPIVOT++++man+https://petsc.org/release/manualpages/PC/PCFailedReason.html#PCFailedReason
man:+PC_FACTOR_NUMERIC_ZEROPIVOT++PC_FACTOR_NUMERIC_ZEROPIVOT++++man+https://petsc.org/release/manualpages/PC/PCFailedReason.html#PCFailedReason
man:+PC_FACTOR_OUTMEMORY++PC_FACTOR_OUTMEMORY++++man+https://petsc.org/release/manualpages/PC/PCFailedReason.html#PCFailedReason
man:+PC_FACTOR_OTHER++PC_FACTOR_OTHER++++man+https://petsc.org/release/manualpages/PC/PCFailedReason.html#PCFailedReason
man:+PC_INCONSISTENT_RHS++PC_INCONSISTENT_RHS++++man+https://petsc.org/release/manualpages/PC/PCFailedReason.html#PCFailedReason
man:+PC_SUBPC_ERROR++PC_SUBPC_ERROR++++man+https://petsc.org/release/manualpages/PC/PCFailedReason.html#PCFailedReason
man:+PCGAMGLayoutType++PCGAMGLayoutType++++man+https://petsc.org/release/manualpages/PC/PCGAMGLayoutType.html#PCGAMGLayoutType
man:+PCGAMG_LAYOUT_COMPACT++PCGAMG_LAYOUT_COMPACT++++man+https://petsc.org/release/manualpages/PC/PCGAMGLayoutType.html#PCGAMGLayoutType
man:+PCGAMG_LAYOUT_SPREAD++PCGAMG_LAYOUT_SPREAD++++man+https://petsc.org/release/manualpages/PC/PCGAMGLayoutType.html#PCGAMGLayoutType
man:+PFType++PFType++++man+https://petsc.org/release/manualpages/PF/PFType.html#PFType
man:+PF++PF++++man+https://petsc.org/release/manualpages/PF/PF.html#PF
man:+PetscSection++PetscSection++++man+https://petsc.org/release/manualpages/PetscSection/PetscSection.html#PetscSection
man:+PetscSectionSym++PetscSectionSym++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSym.html#PetscSectionSym
man:+PetscSectionSymType++PetscSectionSymType++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSymType.html#PetscSectionSymType
man:+PetscSFPattern++PetscSFPattern++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFPattern.html#PetscSFPattern
man:+PETSCSF_PATTERN_GENERAL++PETSCSF_PATTERN_GENERAL++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFPattern.html#PetscSFPattern
man:+PETSCSF_PATTERN_ALLGATHER++PETSCSF_PATTERN_ALLGATHER++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFPattern.html#PetscSFPattern
man:+PETSCSF_PATTERN_GATHER++PETSCSF_PATTERN_GATHER++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFPattern.html#PetscSFPattern
man:+PETSCSF_PATTERN_ALLTOALL++PETSCSF_PATTERN_ALLTOALL++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFPattern.html#PetscSFPattern
man:+PetscSFWindowSyncType++PetscSFWindowSyncType++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowSyncType.html#PetscSFWindowSyncType
man:+PETSCSF_WINDOW_SYNC_FENCE++PETSCSF_WINDOW_SYNC_FENCE++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowSyncType.html#PetscSFWindowSyncType
man:+PETSCSF_WINDOW_SYNC_LOCK++PETSCSF_WINDOW_SYNC_LOCK++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowSyncType.html#PetscSFWindowSyncType
man:+PETSCSF_WINDOW_SYNC_ACTIVE++PETSCSF_WINDOW_SYNC_ACTIVE++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowSyncType.html#PetscSFWindowSyncType
man:+PetscSFWindowFlavorType++PetscSFWindowFlavorType++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowFlavorType.html#PetscSFWindowFlavorType
man:+PETSCSF_WINDOW_FLAVOR_CREATE++PETSCSF_WINDOW_FLAVOR_CREATE++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowFlavorType.html#PetscSFWindowFlavorType
man:+PETSCSF_WINDOW_FLAVOR_DYNAMIC++PETSCSF_WINDOW_FLAVOR_DYNAMIC++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowFlavorType.html#PetscSFWindowFlavorType
man:+PETSCSF_WINDOW_FLAVOR_ALLOCATE++PETSCSF_WINDOW_FLAVOR_ALLOCATE++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowFlavorType.html#PetscSFWindowFlavorType
man:+PETSCSF_WINDOW_FLAVOR_SHARED++PETSCSF_WINDOW_FLAVOR_SHARED++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowFlavorType.html#PetscSFWindowFlavorType
man:+PetscSFDuplicateOption++PetscSFDuplicateOption++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFDuplicateOption.html#PetscSFDuplicateOption
man:+PETSCSF_DUPLICATE_CONFONLY++PETSCSF_DUPLICATE_CONFONLY++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFDuplicateOption.html#PetscSFDuplicateOption
man:+PETSCSF_DUPLICATE_RANKS++PETSCSF_DUPLICATE_RANKS++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFDuplicateOption.html#PetscSFDuplicateOption
man:+PETSCSF_DUPLICATE_GRAPH++PETSCSF_DUPLICATE_GRAPH++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFDuplicateOption.html#PetscSFDuplicateOption
man:+PetscSFConcatenateRootMode++PetscSFConcatenateRootMode++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFConcatenateRootMode.html#PetscSFConcatenateRootMode
man:+PETSCSF_CONCATENATE_ROOTMODE_LOCAL++PETSCSF_CONCATENATE_ROOTMODE_LOCAL++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFConcatenateRootMode.html#PetscSFConcatenateRootMode
man:+PETSCSF_CONCATENATE_ROOTMODE_SHARED++PETSCSF_CONCATENATE_ROOTMODE_SHARED++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFConcatenateRootMode.html#PetscSFConcatenateRootMode
man:+PETSCSF_CONCATENATE_ROOTMODE_GLOBAL++PETSCSF_CONCATENATE_ROOTMODE_GLOBAL++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFConcatenateRootMode.html#PetscSFConcatenateRootMode
man:+PetscSF++PetscSF++++man+https://petsc.org/release/manualpages/PetscSF/PetscSF.html#PetscSF
man:+PetscSFType++PetscSFType++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFType.html#PetscSFType
man:+PetscSFNode++PetscSFNode++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFNode.html#PetscSFNode
man:+VecScatter++VecScatter++++man+https://petsc.org/release/manualpages/PetscSF/VecScatter.html#VecScatter
man:+VecScatterType++VecScatterType++++man+https://petsc.org/release/manualpages/PetscSF/VecScatterType.html#VecScatterType
man:+SNESType++SNESType++++man+https://petsc.org/release/manualpages/SNES/SNESType.html#SNESType
man:+SNESNewtonTRFallbackType++SNESNewtonTRFallbackType++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRFallbackType.html#SNESNewtonTRFallbackType
man:+SNES_TR_FALLBACK_NEWTON++SNES_TR_FALLBACK_NEWTON++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRFallbackType.html#SNESNewtonTRFallbackType
man:+SNES_TR_FALLBACK_CAUCHY++SNES_TR_FALLBACK_CAUCHY++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRFallbackType.html#SNESNewtonTRFallbackType
man:+SNES_TR_FALLBACK_DOGLEG++SNES_TR_FALLBACK_DOGLEG++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRFallbackType.html#SNESNewtonTRFallbackType
man:+SNESNewtonTRQNType++SNESNewtonTRQNType++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRQNType.html#SNESNewtonTRQNType
man:+SNES_TR_QN_NONE++SNES_TR_QN_NONE++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRQNType.html#SNESNewtonTRQNType
man:+SNES_TR_QN_SAME++SNES_TR_QN_SAME++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRQNType.html#SNESNewtonTRQNType
man:+SNES_TR_QN_DIFFERENT++SNES_TR_QN_DIFFERENT++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRQNType.html#SNESNewtonTRQNType
man:+SNESConvergedReason++SNESConvergedReason++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_CONVERGED_FNORM_ABS++SNES_CONVERGED_FNORM_ABS++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_CONVERGED_FNORM_RELATIVE++SNES_CONVERGED_FNORM_RELATIVE++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_CONVERGED_SNORM_RELATIVE++SNES_CONVERGED_SNORM_RELATIVE++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_CONVERGED_ITS++SNES_CONVERGED_ITS++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_BREAKOUT_INNER_ITER++SNES_BREAKOUT_INNER_ITER++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_CONVERGED_USER++SNES_CONVERGED_USER++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_DIVERGED_FUNCTION_DOMAIN++SNES_DIVERGED_FUNCTION_DOMAIN++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_DIVERGED_FUNCTION_COUNT++SNES_DIVERGED_FUNCTION_COUNT++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_DIVERGED_LINEAR_SOLVE++SNES_DIVERGED_LINEAR_SOLVE++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_DIVERGED_FNORM_NAN++SNES_DIVERGED_FNORM_NAN++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_DIVERGED_MAX_IT++SNES_DIVERGED_MAX_IT++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_DIVERGED_LINE_SEARCH++SNES_DIVERGED_LINE_SEARCH++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_DIVERGED_INNER++SNES_DIVERGED_INNER++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_DIVERGED_LOCAL_MIN++SNES_DIVERGED_LOCAL_MIN++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_DIVERGED_DTOL++SNES_DIVERGED_DTOL++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_DIVERGED_JACOBIAN_DOMAIN++SNES_DIVERGED_JACOBIAN_DOMAIN++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_DIVERGED_TR_DELTA++SNES_DIVERGED_TR_DELTA++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_CONVERGED_TR_DELTA_DEPRECATED++SNES_CONVERGED_TR_DELTA_DEPRECATED++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_DIVERGED_USER++SNES_DIVERGED_USER++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_CONVERGED_ITERATING++SNES_CONVERGED_ITERATING++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReason.html#SNESConvergedReason
man:+SNES_CONVERGED_FNORM_ABS++SNES_CONVERGED_FNORM_ABS++++man+https://petsc.org/release/manualpages/SNES/SNES_CONVERGED_FNORM_ABS.html#SNES_CONVERGED_FNORM_ABS
man:+SNES_CONVERGED_FNORM_RELATIVE++SNES_CONVERGED_FNORM_RELATIVE++++man+https://petsc.org/release/manualpages/SNES/SNES_CONVERGED_FNORM_RELATIVE.html#SNES_CONVERGED_FNORM_RELATIVE
man:+SNES_CONVERGED_SNORM_RELATIVE++SNES_CONVERGED_SNORM_RELATIVE++++man+https://petsc.org/release/manualpages/SNES/SNES_CONVERGED_SNORM_RELATIVE.html#SNES_CONVERGED_SNORM_RELATIVE
man:+SNES_DIVERGED_FUNCTION_COUNT++SNES_DIVERGED_FUNCTION_COUNT++++man+https://petsc.org/release/manualpages/SNES/SNES_DIVERGED_FUNCTION_COUNT.html#SNES_DIVERGED_FUNCTION_COUNT
man:+SNES_DIVERGED_DTOL++SNES_DIVERGED_DTOL++++man+https://petsc.org/release/manualpages/SNES/SNES_DIVERGED_DTOL.html#SNES_DIVERGED_DTOL
man:+SNES_DIVERGED_FNORM_NAN++SNES_DIVERGED_FNORM_NAN++++man+https://petsc.org/release/manualpages/SNES/SNES_DIVERGED_FNORM_NAN.html#SNES_DIVERGED_FNORM_NAN
man:+SNES_DIVERGED_MAX_IT++SNES_DIVERGED_MAX_IT++++man+https://petsc.org/release/manualpages/SNES/SNES_DIVERGED_MAX_IT.html#SNES_DIVERGED_MAX_IT
man:+SNES_DIVERGED_LINE_SEARCH++SNES_DIVERGED_LINE_SEARCH++++man+https://petsc.org/release/manualpages/SNES/SNES_DIVERGED_LINE_SEARCH.html#SNES_DIVERGED_LINE_SEARCH
man:+SNES_DIVERGED_LOCAL_MIN++SNES_DIVERGED_LOCAL_MIN++++man+https://petsc.org/release/manualpages/SNES/SNES_DIVERGED_LOCAL_MIN.html#SNES_DIVERGED_LOCAL_MIN
man:+SNES_CONERGED_ITERATING++SNES_CONERGED_ITERATING++++man+https://petsc.org/release/manualpages/SNES/SNES_CONERGED_ITERATING.html#SNES_CONERGED_ITERATING
man:+SNESInitialGuessFn++SNESInitialGuessFn++++man+https://petsc.org/release/manualpages/SNES/SNESInitialGuessFn.html#SNESInitialGuessFn
man:+SNESFunctionFn++SNESFunctionFn++++man+https://petsc.org/release/manualpages/SNES/SNESFunctionFn.html#SNESFunctionFn
man:+SNESObjectiveFn++SNESObjectiveFn++++man+https://petsc.org/release/manualpages/SNES/SNESObjectiveFn.html#SNESObjectiveFn
man:+SNESJacobianFn++SNESJacobianFn++++man+https://petsc.org/release/manualpages/SNES/SNESJacobianFn.html#SNESJacobianFn
man:+SNESNGSFn++SNESNGSFn++++man+https://petsc.org/release/manualpages/SNES/SNESNGSFn.html#SNESNGSFn
man:+SNESUpdateFn++SNESUpdateFn++++man+https://petsc.org/release/manualpages/SNES/SNESUpdateFn.html#SNESUpdateFn
man:+SNESNormSchedule++SNESNormSchedule++++man+https://petsc.org/release/manualpages/SNES/SNESNormSchedule.html#SNESNormSchedule
man:+SNES_NORM_DEFAULT++SNES_NORM_DEFAULT++++man+https://petsc.org/release/manualpages/SNES/SNESNormSchedule.html#SNESNormSchedule
man:+SNES_NORM_NONE++SNES_NORM_NONE++++man+https://petsc.org/release/manualpages/SNES/SNESNormSchedule.html#SNESNormSchedule
man:+SNES_NORM_ALWAYS++SNES_NORM_ALWAYS++++man+https://petsc.org/release/manualpages/SNES/SNESNormSchedule.html#SNESNormSchedule
man:+SNES_NORM_INITIAL_ONLY++SNES_NORM_INITIAL_ONLY++++man+https://petsc.org/release/manualpages/SNES/SNESNormSchedule.html#SNESNormSchedule
man:+SNES_NORM_FINAL_ONLY++SNES_NORM_FINAL_ONLY++++man+https://petsc.org/release/manualpages/SNES/SNESNormSchedule.html#SNESNormSchedule
man:+SNES_NORM_INITIAL_FINAL_ONLY++SNES_NORM_INITIAL_FINAL_ONLY++++man+https://petsc.org/release/manualpages/SNES/SNESNormSchedule.html#SNESNormSchedule
man:+SNES_NORM_NONE++SNES_NORM_NONE++++man+https://petsc.org/release/manualpages/SNES/SNES_NORM_NONE.html#SNES_NORM_NONE
man:+SNES_NORM_ALWAYS++SNES_NORM_ALWAYS++++man+https://petsc.org/release/manualpages/SNES/SNES_NORM_ALWAYS.html#SNES_NORM_ALWAYS
man:+SNES_NORM_INITIAL_ONLY++SNES_NORM_INITIAL_ONLY++++man+https://petsc.org/release/manualpages/SNES/SNES_NORM_INITIAL_ONLY.html#SNES_NORM_INITIAL_ONLY
man:+SNES_NORM_FINAL_ONLY++SNES_NORM_FINAL_ONLY++++man+https://petsc.org/release/manualpages/SNES/SNES_NORM_FINAL_ONLY.html#SNES_NORM_FINAL_ONLY
man:+SNES_NORM_INITIAL_FINAL_ONLY++SNES_NORM_INITIAL_FINAL_ONLY++++man+https://petsc.org/release/manualpages/SNES/SNES_NORM_INITIAL_FINAL_ONLY.html#SNES_NORM_INITIAL_FINAL_ONLY
man:+SNESFunctionType++SNESFunctionType++++man+https://petsc.org/release/manualpages/SNES/SNESFunctionType.html#SNESFunctionType
man:+SNES_FUNCTION_DEFAULT++SNES_FUNCTION_DEFAULT++++man+https://petsc.org/release/manualpages/SNES/SNESFunctionType.html#SNESFunctionType
man:+SNES_FUNCTION_UNPRECONDITIONED++SNES_FUNCTION_UNPRECONDITIONED++++man+https://petsc.org/release/manualpages/SNES/SNESFunctionType.html#SNESFunctionType
man:+SNES_FUNCTION_PRECONDITIONED++SNES_FUNCTION_PRECONDITIONED++++man+https://petsc.org/release/manualpages/SNES/SNESFunctionType.html#SNESFunctionType
man:+SNESLineSearch++SNESLineSearch++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearch.html#SNESLineSearch
man:+SNESLineSearchType++SNESLineSearchType++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchType.html#SNESLineSearchType
man:+SNESLineSearchVIProjectFn++SNESLineSearchVIProjectFn++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchVIProjectFn.html#SNESLineSearchVIProjectFn
man:+SNESLineSearchVIProjectFn++SNESLineSearchVIProjectFn++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchVIProjectFn.html#SNESLineSearchVIProjectFn
man:+SNESLineSearchVIDirDerivFn++SNESLineSearchVIDirDerivFn++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchVIDirDerivFn.html#SNESLineSearchVIDirDerivFn
man:+SNESLineSearchReason++SNESLineSearchReason++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchReason.html#SNESLineSearchReason
man:+SNES_LINESEARCH_SUCCEEDED++SNES_LINESEARCH_SUCCEEDED++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchReason.html#SNESLineSearchReason
man:+SNES_LINESEARCH_FAILED_NANORINF++SNES_LINESEARCH_FAILED_NANORINF++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchReason.html#SNESLineSearchReason
man:+SNES_LINESEARCH_FAILED_DOMAIN++SNES_LINESEARCH_FAILED_DOMAIN++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchReason.html#SNESLineSearchReason
man:+SNES_LINESEARCH_FAILED_REDUCT++SNES_LINESEARCH_FAILED_REDUCT++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchReason.html#SNESLineSearchReason
man:+SNES_LINESEARCH_FAILED_USER++SNES_LINESEARCH_FAILED_USER++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchReason.html#SNESLineSearchReason
man:+SNES_LINESEARCH_FAILED_FUNCTION++SNES_LINESEARCH_FAILED_FUNCTION++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchReason.html#SNESLineSearchReason
man:+SNESMSType++SNESMSType++++man+https://petsc.org/release/manualpages/SNES/SNESMSType.html#SNESMSType
man:+SNESNGMRESRestartType++SNESNGMRESRestartType++++man+https://petsc.org/release/manualpages/SNES/SNESNGMRESRestartType.html#SNESNGMRESRestartType
man:+SNESNGMRESSelectType++SNESNGMRESSelectType++++man+https://petsc.org/release/manualpages/SNES/SNESNGMRESSelectType.html#SNESNGMRESSelectType
man:+SNESNCGType++SNESNCGType++++man+https://petsc.org/release/manualpages/SNES/SNESNCGType.html#SNESNCGType
man:+SNESQNScaleType++SNESQNScaleType++++man+https://petsc.org/release/manualpages/SNES/SNESQNScaleType.html#SNESQNScaleType
man:+SNESQNRestartType++SNESQNRestartType++++man+https://petsc.org/release/manualpages/SNES/SNESQNRestartType.html#SNESQNRestartType
man:+SNESQNType++SNESQNType++++man+https://petsc.org/release/manualpages/SNES/SNESQNType.html#SNESQNType
man:+SNESCompositeType++SNESCompositeType++++man+https://petsc.org/release/manualpages/SNES/SNESCompositeType.html#SNESCompositeType
man:+SNES_COMPOSITE_ADDITIVE++SNES_COMPOSITE_ADDITIVE++++man+https://petsc.org/release/manualpages/SNES/SNESCompositeType.html#SNESCompositeType
man:+SNES_COMPOSITE_MULTIPLICATIVE++SNES_COMPOSITE_MULTIPLICATIVE++++man+https://petsc.org/release/manualpages/SNES/SNESCompositeType.html#SNESCompositeType
man:+SNES_COMPOSITE_ADDITIVEOPTIMAL++SNES_COMPOSITE_ADDITIVEOPTIMAL++++man+https://petsc.org/release/manualpages/SNES/SNESCompositeType.html#SNESCompositeType
man:+SNESFASType++SNESFASType++++man+https://petsc.org/release/manualpages/SNES/SNESFASType.html#SNESFASType
man:+SNES_FAS_MULTIPLICATIVE++SNES_FAS_MULTIPLICATIVE++++man+https://petsc.org/release/manualpages/SNES/SNESFASType.html#SNESFASType
man:+SNES_FAS_ADDITIVE++SNES_FAS_ADDITIVE++++man+https://petsc.org/release/manualpages/SNES/SNESFASType.html#SNESFASType
man:+SNES_FAS_FULL++SNES_FAS_FULL++++man+https://petsc.org/release/manualpages/SNES/SNESFASType.html#SNESFASType
man:+SNES_FAS_KASKADE++SNES_FAS_KASKADE++++man+https://petsc.org/release/manualpages/SNES/SNESFASType.html#SNESFASType
man:+SNESNewtonALCorrectionType++SNESNewtonALCorrectionType++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonALCorrectionType.html#SNESNewtonALCorrectionType
man:+SNES++SNES++++man+https://petsc.org/release/manualpages/SNES/SNES.html#SNES
man:+PetscSpace++PetscSpace++++man+https://petsc.org/release/manualpages/SPACE/PetscSpace.html#PetscSpace
man:+PetscSpaceType++PetscSpaceType++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceType.html#PetscSpaceType
man:+PetscStrtolower++PetscStrtolower++++man+https://petsc.org/release/manualpages/Sys/PetscStrtolower.html#PetscStrtolower
man:+PetscStrtoupper++PetscStrtoupper++++man+https://petsc.org/release/manualpages/Sys/PetscStrtoupper.html#PetscStrtoupper
man:+PetscStrlen++PetscStrlen++++man+https://petsc.org/release/manualpages/Sys/PetscStrlen.html#PetscStrlen
man:+PetscStrallocpy++PetscStrallocpy++++man+https://petsc.org/release/manualpages/Sys/PetscStrallocpy.html#PetscStrallocpy
man:+PetscStrcmp++PetscStrcmp++++man+https://petsc.org/release/manualpages/Sys/PetscStrcmp.html#PetscStrcmp
man:+PetscStrncpy++PetscStrncpy++++man+https://petsc.org/release/manualpages/Sys/PetscStrncpy.html#PetscStrncpy
man:+PetscStrlcat++PetscStrlcat++++man+https://petsc.org/release/manualpages/Sys/PetscStrlcat.html#PetscStrlcat
man:+PetscStrncmp++PetscStrncmp++++man+https://petsc.org/release/manualpages/Sys/PetscStrncmp.html#PetscStrncmp
man:+PetscStrrstr++PetscStrrstr++++man+https://petsc.org/release/manualpages/Sys/PetscStrrstr.html#PetscStrrstr
man:+PetscStrstr++PetscStrstr++++man+https://petsc.org/release/manualpages/Sys/PetscStrstr.html#PetscStrstr
man:+PetscStrgrt++PetscStrgrt++++man+https://petsc.org/release/manualpages/Sys/PetscStrgrt.html#PetscStrgrt
man:+PetscStrchr++PetscStrchr++++man+https://petsc.org/release/manualpages/Sys/PetscStrchr.html#PetscStrchr
man:+PetscStrrchr++PetscStrrchr++++man+https://petsc.org/release/manualpages/Sys/PetscStrrchr.html#PetscStrrchr
man:+PetscStrendswith++PetscStrendswith++++man+https://petsc.org/release/manualpages/Sys/PetscStrendswith.html#PetscStrendswith
man:+PetscStrbeginswith++PetscStrbeginswith++++man+https://petsc.org/release/manualpages/Sys/PetscStrbeginswith.html#PetscStrbeginswith
man:+PetscMemmove++PetscMemmove++++man+https://petsc.org/release/manualpages/Sys/PetscMemmove.html#PetscMemmove
man:+PetscMemcpy++PetscMemcpy++++man+https://petsc.org/release/manualpages/Sys/PetscMemcpy.html#PetscMemcpy
man:+PetscMemzero++PetscMemzero++++man+https://petsc.org/release/manualpages/Sys/PetscMemzero.html#PetscMemzero
man:+PetscArraycmp++PetscArraycmp++++man+https://petsc.org/release/manualpages/Sys/PetscArraycmp.html#PetscArraycmp
man:+PetscArraymove++PetscArraymove++++man+https://petsc.org/release/manualpages/Sys/PetscArraymove.html#PetscArraymove
man:+PetscArraycpy++PetscArraycpy++++man+https://petsc.org/release/manualpages/Sys/PetscArraycpy.html#PetscArraycpy
man:+PetscArrayzero++PetscArrayzero++++man+https://petsc.org/release/manualpages/Sys/PetscArrayzero.html#PetscArrayzero
man:+MPIU_INT++MPIU_INT++++man+https://petsc.org/release/manualpages/Sys/MPIU_INT.html#MPIU_INT
man:+MPIU_COUNT++MPIU_COUNT++++man+https://petsc.org/release/manualpages/Sys/MPIU_COUNT.html#MPIU_COUNT
man:+PETSC_IGNORE++PETSC_IGNORE++++man+https://petsc.org/release/manualpages/Sys/PETSC_IGNORE.html#PETSC_IGNORE
man:+PETSC_UNLIMITED++PETSC_UNLIMITED++++man+https://petsc.org/release/manualpages/Sys/PETSC_UNLIMITED.html#PETSC_UNLIMITED
man:+PETSC_DECIDE++PETSC_DECIDE++++man+https://petsc.org/release/manualpages/Sys/PETSC_DECIDE.html#PETSC_DECIDE
man:+PETSC_DETERMINE++PETSC_DETERMINE++++man+https://petsc.org/release/manualpages/Sys/PETSC_DETERMINE.html#PETSC_DETERMINE
man:+PETSC_CURRENT++PETSC_CURRENT++++man+https://petsc.org/release/manualpages/Sys/PETSC_CURRENT.html#PETSC_CURRENT
man:+PETSC_DEFAULT++PETSC_DEFAULT++++man+https://petsc.org/release/manualpages/Sys/PETSC_DEFAULT.html#PETSC_DEFAULT
man:+PETSC_COMM_WORLD++PETSC_COMM_WORLD++++man+https://petsc.org/release/manualpages/Sys/PETSC_COMM_WORLD.html#PETSC_COMM_WORLD
man:+PETSC_COMM_SELF++PETSC_COMM_SELF++++man+https://petsc.org/release/manualpages/Sys/PETSC_COMM_SELF.html#PETSC_COMM_SELF
man:+PETSC_MPI_THREAD_REQUIRED++PETSC_MPI_THREAD_REQUIRED++++man+https://petsc.org/release/manualpages/Sys/PETSC_MPI_THREAD_REQUIRED.html#PETSC_MPI_THREAD_REQUIRED
man:+PetscBeganMPI++PetscBeganMPI++++man+https://petsc.org/release/manualpages/Sys/PetscBeganMPI.html#PetscBeganMPI
man:+PetscMalloc++PetscMalloc++++man+https://petsc.org/release/manualpages/Sys/PetscMalloc.html#PetscMalloc
man:+PetscRealloc++PetscRealloc++++man+https://petsc.org/release/manualpages/Sys/PetscRealloc.html#PetscRealloc
man:+PetscAddrAlign++PetscAddrAlign++++man+https://petsc.org/release/manualpages/Sys/PetscAddrAlign.html#PetscAddrAlign
man:+PetscCalloc++PetscCalloc++++man+https://petsc.org/release/manualpages/Sys/PetscCalloc.html#PetscCalloc
man:+PetscMalloc1++PetscMalloc1++++man+https://petsc.org/release/manualpages/Sys/PetscMalloc1.html#PetscMalloc1
man:+PetscCalloc1++PetscCalloc1++++man+https://petsc.org/release/manualpages/Sys/PetscCalloc1.html#PetscCalloc1
man:+PetscMalloc2++PetscMalloc2++++man+https://petsc.org/release/manualpages/Sys/PetscMalloc2.html#PetscMalloc2
man:+PetscCalloc2++PetscCalloc2++++man+https://petsc.org/release/manualpages/Sys/PetscCalloc2.html#PetscCalloc2
man:+PetscMalloc3++PetscMalloc3++++man+https://petsc.org/release/manualpages/Sys/PetscMalloc3.html#PetscMalloc3
man:+PetscCalloc3++PetscCalloc3++++man+https://petsc.org/release/manualpages/Sys/PetscCalloc3.html#PetscCalloc3
man:+PetscMalloc4++PetscMalloc4++++man+https://petsc.org/release/manualpages/Sys/PetscMalloc4.html#PetscMalloc4
man:+PetscCalloc4++PetscCalloc4++++man+https://petsc.org/release/manualpages/Sys/PetscCalloc4.html#PetscCalloc4
man:+PetscMalloc5++PetscMalloc5++++man+https://petsc.org/release/manualpages/Sys/PetscMalloc5.html#PetscMalloc5
man:+PetscCalloc5++PetscCalloc5++++man+https://petsc.org/release/manualpages/Sys/PetscCalloc5.html#PetscCalloc5
man:+PetscMalloc6++PetscMalloc6++++man+https://petsc.org/release/manualpages/Sys/PetscMalloc6.html#PetscMalloc6
man:+PetscCalloc6++PetscCalloc6++++man+https://petsc.org/release/manualpages/Sys/PetscCalloc6.html#PetscCalloc6
man:+PetscMalloc7++PetscMalloc7++++man+https://petsc.org/release/manualpages/Sys/PetscMalloc7.html#PetscMalloc7
man:+PetscCalloc7++PetscCalloc7++++man+https://petsc.org/release/manualpages/Sys/PetscCalloc7.html#PetscCalloc7
man:+PetscNew++PetscNew++++man+https://petsc.org/release/manualpages/Sys/PetscNew.html#PetscNew
man:+PetscFree++PetscFree++++man+https://petsc.org/release/manualpages/Sys/PetscFree.html#PetscFree
man:+PetscFree2++PetscFree2++++man+https://petsc.org/release/manualpages/Sys/PetscFree2.html#PetscFree2
man:+PetscFree3++PetscFree3++++man+https://petsc.org/release/manualpages/Sys/PetscFree3.html#PetscFree3
man:+PetscFree4++PetscFree4++++man+https://petsc.org/release/manualpages/Sys/PetscFree4.html#PetscFree4
man:+PetscFree5++PetscFree5++++man+https://petsc.org/release/manualpages/Sys/PetscFree5.html#PetscFree5
man:+PetscFree6++PetscFree6++++man+https://petsc.org/release/manualpages/Sys/PetscFree6.html#PetscFree6
man:+PetscFree7++PetscFree7++++man+https://petsc.org/release/manualpages/Sys/PetscFree7.html#PetscFree7
man:+MPIU_SUM___FP16___FLOAT128++MPIU_SUM___FP16___FLOAT128++++man+https://petsc.org/release/manualpages/Sys/MPIU_SUM___FP16___FLOAT128.html#MPIU_SUM___FP16___FLOAT128
man:+PetscVoidFn++PetscVoidFn++++man+https://petsc.org/release/manualpages/Sys/PetscVoidFn.html#PetscVoidFn
man:+PetscErrorCodeFn++PetscErrorCodeFn++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCodeFn.html#PetscErrorCodeFn
man:+PetscCtxDestroyFn++PetscCtxDestroyFn++++man+https://petsc.org/release/manualpages/Sys/PetscCtxDestroyFn.html#PetscCtxDestroyFn
man:+PetscObjectParameterSetDefault++PetscObjectParameterSetDefault++++man+https://petsc.org/release/manualpages/Sys/PetscObjectParameterSetDefault.html#PetscObjectParameterSetDefault
man:+PetscObjectParameterDeclare++PetscObjectParameterDeclare++++man+https://petsc.org/release/manualpages/Sys/PetscObjectParameterDeclare.html#PetscObjectParameterDeclare
man:+PetscNot++PetscNot++++man+https://petsc.org/release/manualpages/Sys/PetscNot.html#PetscNot
man:+PetscHelpPrintf++PetscHelpPrintf++++man+https://petsc.org/release/manualpages/Sys/PetscHelpPrintf.html#PetscHelpPrintf
man:+PeCtx++PeCtx++++man+https://petsc.org/release/manualpages/Sys/PeCtx.html#PeCtx
man:+PetscPrefetchBlock++PetscPrefetchBlock++++man+https://petsc.org/release/manualpages/Sys/PetscPrefetchBlock.html#PetscPrefetchBlock
man:+MPI_Comm++MPI_Comm++++man+https://petsc.org/release/manualpages/Sys/MPI_Comm.html#MPI_Comm
man:+PetscIntCast++PetscIntCast++++man+https://petsc.org/release/manualpages/Sys/PetscIntCast.html#PetscIntCast
man:+PetscBLASIntCast++PetscBLASIntCast++++man+https://petsc.org/release/manualpages/Sys/PetscBLASIntCast.html#PetscBLASIntCast
man:+PetscCuBLASIntCast++PetscCuBLASIntCast++++man+https://petsc.org/release/manualpages/Sys/PetscCuBLASIntCast.html#PetscCuBLASIntCast
man:+PetscHipBLASIntCast++PetscHipBLASIntCast++++man+https://petsc.org/release/manualpages/Sys/PetscHipBLASIntCast.html#PetscHipBLASIntCast
man:+PetscMPIIntCast++PetscMPIIntCast++++man+https://petsc.org/release/manualpages/Sys/PetscMPIIntCast.html#PetscMPIIntCast
man:+PetscCIntCast++PetscCIntCast++++man+https://petsc.org/release/manualpages/Sys/PetscCIntCast.html#PetscCIntCast
man:+PetscInt64Mult++PetscInt64Mult++++man+https://petsc.org/release/manualpages/Sys/PetscInt64Mult.html#PetscInt64Mult
man:+PetscRealIntMultTruncate++PetscRealIntMultTruncate++++man+https://petsc.org/release/manualpages/Sys/PetscRealIntMultTruncate.html#PetscRealIntMultTruncate
man:+PetscIntMultTruncate++PetscIntMultTruncate++++man+https://petsc.org/release/manualpages/Sys/PetscIntMultTruncate.html#PetscIntMultTruncate
man:+PetscIntSumTruncate++PetscIntSumTruncate++++man+https://petsc.org/release/manualpages/Sys/PetscIntSumTruncate.html#PetscIntSumTruncate
man:+PetscIntMultError++PetscIntMultError++++man+https://petsc.org/release/manualpages/Sys/PetscIntMultError.html#PetscIntMultError
man:+PetscIntSumError++PetscIntSumError++++man+https://petsc.org/release/manualpages/Sys/PetscIntSumError.html#PetscIntSumError
man:+PETSC_VERSION++PETSC_VERSION++++man+https://petsc.org/release/manualpages/Sys/PETSC_VERSION.html#PETSC_VERSION
man:+PetscRandomType++PetscRandomType++++man+https://petsc.org/release/manualpages/Sys/PetscRandomType.html#PetscRandomType
man:+PetscBinaryBigEndian++PetscBinaryBigEndian++++man+https://petsc.org/release/manualpages/Sys/PetscBinaryBigEndian.html#PetscBinaryBigEndian
man:+PetscSegBufferGetInts++PetscSegBufferGetInts++++man+https://petsc.org/release/manualpages/Sys/PetscSegBufferGetInts.html#PetscSegBufferGetInts
man:+PetscCitationsRegister++PetscCitationsRegister++++man+https://petsc.org/release/manualpages/Sys/PetscCitationsRegister.html#PetscCitationsRegister
man:+MPIU_Scatterv++MPIU_Scatterv++++man+https://petsc.org/release/manualpages/Sys/MPIU_Scatterv.html#MPIU_Scatterv
man:+MPIU_Allreduce++MPIU_Allreduce++++man+https://petsc.org/release/manualpages/Sys/MPIU_Allreduce.html#MPIU_Allreduce
man:+PetscSafePointerPlusOffset++PetscSafePointerPlusOffset++++man+https://petsc.org/release/manualpages/Sys/PetscSafePointerPlusOffset.html#PetscSafePointerPlusOffset
man:+PetscErrorCode++PetscErrorCode++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_SUCCESS++PETSC_SUCCESS++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_BOOLEAN_MACRO_FAILURE++PETSC_ERR_BOOLEAN_MACRO_FAILURE++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_MIN_VALUE++PETSC_ERR_MIN_VALUE++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_MEM++PETSC_ERR_MEM++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_SUP++PETSC_ERR_SUP++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_SUP_SYS++PETSC_ERR_SUP_SYS++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_ORDER++PETSC_ERR_ORDER++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_SIG++PETSC_ERR_SIG++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_FP++PETSC_ERR_FP++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_COR++PETSC_ERR_COR++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_LIB++PETSC_ERR_LIB++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_PLIB++PETSC_ERR_PLIB++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_MEMC++PETSC_ERR_MEMC++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_CONV_FAILED++PETSC_ERR_CONV_FAILED++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_USER++PETSC_ERR_USER++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_SYS++PETSC_ERR_SYS++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_POINTER++PETSC_ERR_POINTER++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_MPI_LIB_INCOMP++PETSC_ERR_MPI_LIB_INCOMP++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_ARG_SIZ++PETSC_ERR_ARG_SIZ++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_ARG_IDN++PETSC_ERR_ARG_IDN++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_ARG_WRONG++PETSC_ERR_ARG_WRONG++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_ARG_CORRUPT++PETSC_ERR_ARG_CORRUPT++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_ARG_OUTOFRANGE++PETSC_ERR_ARG_OUTOFRANGE++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_ARG_BADPTR++PETSC_ERR_ARG_BADPTR++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_ARG_NOTSAMETYPE++PETSC_ERR_ARG_NOTSAMETYPE++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_ARG_NOTSAMECOMM++PETSC_ERR_ARG_NOTSAMECOMM++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_ARG_WRONGSTATE++PETSC_ERR_ARG_WRONGSTATE++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_ARG_TYPENOTSET++PETSC_ERR_ARG_TYPENOTSET++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_ARG_INCOMP++PETSC_ERR_ARG_INCOMP++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_ARG_NULL++PETSC_ERR_ARG_NULL++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_ARG_UNKNOWN_TYPE++PETSC_ERR_ARG_UNKNOWN_TYPE++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_FILE_OPEN++PETSC_ERR_FILE_OPEN++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_FILE_READ++PETSC_ERR_FILE_READ++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_FILE_WRITE++PETSC_ERR_FILE_WRITE++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_FILE_UNEXPECTED++PETSC_ERR_FILE_UNEXPECTED++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_MAT_LU_ZRPVT++PETSC_ERR_MAT_LU_ZRPVT++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_MAT_CH_ZRPVT++PETSC_ERR_MAT_CH_ZRPVT++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_INT_OVERFLOW++PETSC_ERR_INT_OVERFLOW++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_FLOP_COUNT++PETSC_ERR_FLOP_COUNT++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_NOT_CONVERGED++PETSC_ERR_NOT_CONVERGED++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_MISSING_FACTOR++PETSC_ERR_MISSING_FACTOR++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_OPT_OVERWRITE++PETSC_ERR_OPT_OVERWRITE++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_WRONG_MPI_SIZE++PETSC_ERR_WRONG_MPI_SIZE++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_USER_INPUT++PETSC_ERR_USER_INPUT++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_GPU_RESOURCE++PETSC_ERR_GPU_RESOURCE++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_GPU++PETSC_ERR_GPU++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_MPI++PETSC_ERR_MPI++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_RETURN++PETSC_ERR_RETURN++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_MEM_LEAK++PETSC_ERR_MEM_LEAK++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_PYTHON++PETSC_ERR_PYTHON++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_MAX_VALUE++PETSC_ERR_MAX_VALUE++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_MIN_SIGNED_BOUND_DO_NOT_USE++PETSC_ERR_MIN_SIGNED_BOUND_DO_NOT_USE++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PETSC_ERR_MAX_SIGNED_BOUND_DO_NOT_USE++PETSC_ERR_MAX_SIGNED_BOUND_DO_NOT_USE++++man+https://petsc.org/release/manualpages/Sys/PetscErrorCode.html#PetscErrorCode
man:+PetscClassId++PetscClassId++++man+https://petsc.org/release/manualpages/Sys/PetscClassId.html#PetscClassId
man:+PetscMPIInt++PetscMPIInt++++man+https://petsc.org/release/manualpages/Sys/PetscMPIInt.html#PetscMPIInt
man:+PetscSizeT++PetscSizeT++++man+https://petsc.org/release/manualpages/Sys/PetscSizeT.html#PetscSizeT
man:+PetscCount++PetscCount++++man+https://petsc.org/release/manualpages/Sys/PetscCount.html#PetscCount
man:+PetscEnum++PetscEnum++++man+https://petsc.org/release/manualpages/Sys/PetscEnum.html#PetscEnum
man:+PetscInt++PetscInt++++man+https://petsc.org/release/manualpages/Sys/PetscInt.html#PetscInt
man:+PetscBLASInt++PetscBLASInt++++man+https://petsc.org/release/manualpages/Sys/PetscBLASInt.html#PetscBLASInt
man:+PetscCuBLASInt++PetscCuBLASInt++++man+https://petsc.org/release/manualpages/Sys/PetscCuBLASInt.html#PetscCuBLASInt
man:+PetscHipBLASInt++PetscHipBLASInt++++man+https://petsc.org/release/manualpages/Sys/PetscHipBLASInt.html#PetscHipBLASInt
man:+PetscExodusIIInt++PetscExodusIIInt++++man+https://petsc.org/release/manualpages/Sys/PetscExodusIIInt.html#PetscExodusIIInt
man:+PetscExodusIIFloat++PetscExodusIIFloat++++man+https://petsc.org/release/manualpages/Sys/PetscExodusIIFloat.html#PetscExodusIIFloat
man:+PetscBool++PetscBool++++man+https://petsc.org/release/manualpages/Sys/PetscBool.html#PetscBool
man:+PETSC_FALSE++PETSC_FALSE++++man+https://petsc.org/release/manualpages/Sys/PetscBool.html#PetscBool
man:+PETSC_TRUE++PETSC_TRUE++++man+https://petsc.org/release/manualpages/Sys/PetscBool.html#PetscBool
man:+PetscBool3++PetscBool3++++man+https://petsc.org/release/manualpages/Sys/PetscBool3.html#PetscBool3
man:+PETSC_BOOL3_FALSE++PETSC_BOOL3_FALSE++++man+https://petsc.org/release/manualpages/Sys/PetscBool3.html#PetscBool3
man:+PETSC_BOOL3_TRUE++PETSC_BOOL3_TRUE++++man+https://petsc.org/release/manualpages/Sys/PetscBool3.html#PetscBool3
man:+PETSC_BOOL3_UNKNOWN++PETSC_BOOL3_UNKNOWN++++man+https://petsc.org/release/manualpages/Sys/PetscBool3.html#PetscBool3
man:+PetscReal++PetscReal++++man+https://petsc.org/release/manualpages/Sys/PetscReal.html#PetscReal
man:+PetscComplex++PetscComplex++++man+https://petsc.org/release/manualpages/Sys/PetscComplex.html#PetscComplex
man:+PetscScalar++PetscScalar++++man+https://petsc.org/release/manualpages/Sys/PetscScalar.html#PetscScalar
man:+PetscCopyMode++PetscCopyMode++++man+https://petsc.org/release/manualpages/Sys/PetscCopyMode.html#PetscCopyMode
man:+PETSC_COPY_VALUES++PETSC_COPY_VALUES++++man+https://petsc.org/release/manualpages/Sys/PetscCopyMode.html#PetscCopyMode
man:+PETSC_OWN_POINTER++PETSC_OWN_POINTER++++man+https://petsc.org/release/manualpages/Sys/PetscCopyMode.html#PetscCopyMode
man:+PETSC_USE_POINTER++PETSC_USE_POINTER++++man+https://petsc.org/release/manualpages/Sys/PetscCopyMode.html#PetscCopyMode
man:+PETSC_FALSE++PETSC_FALSE++++man+https://petsc.org/release/manualpages/Sys/PETSC_FALSE.html#PETSC_FALSE
man:+PETSC_TRUE++PETSC_TRUE++++man+https://petsc.org/release/manualpages/Sys/PETSC_TRUE.html#PETSC_TRUE
man:+PetscLogDouble++PetscLogDouble++++man+https://petsc.org/release/manualpages/Sys/PetscLogDouble.html#PetscLogDouble
man:+PetscDataType++PetscDataType++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_DATATYPE_UNKNOWN++PETSC_DATATYPE_UNKNOWN++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_DOUBLE++PETSC_DOUBLE++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_COMPLEX++PETSC_COMPLEX++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_LONG++PETSC_LONG++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_SHORT++PETSC_SHORT++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_FLOAT++PETSC_FLOAT++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_CHAR++PETSC_CHAR++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_BIT_LOGICAL++PETSC_BIT_LOGICAL++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_ENUM++PETSC_ENUM++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_BOOL++PETSC_BOOL++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC___FLOAT128++PETSC___FLOAT128++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_OBJECT++PETSC_OBJECT++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_FUNCTION++PETSC_FUNCTION++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_STRING++PETSC_STRING++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC___FP16++PETSC___FP16++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_STRUCT++PETSC_STRUCT++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_INT++PETSC_INT++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_INT64++PETSC_INT64++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_COUNT++PETSC_COUNT++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PETSC_INT32++PETSC_INT32++++man+https://petsc.org/release/manualpages/Sys/PetscDataType.html#PetscDataType
man:+PetscToken++PetscToken++++man+https://petsc.org/release/manualpages/Sys/PetscToken.html#PetscToken
man:+PetscObject++PetscObject++++man+https://petsc.org/release/manualpages/Sys/PetscObject.html#PetscObject
man:+PetscObjectId++PetscObjectId++++man+https://petsc.org/release/manualpages/Sys/PetscObjectId.html#PetscObjectId
man:+PetscObjectState++PetscObjectState++++man+https://petsc.org/release/manualpages/Sys/PetscObjectState.html#PetscObjectState
man:+PetscFunctionList++PetscFunctionList++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionList.html#PetscFunctionList
man:+PetscFileMode++PetscFileMode++++man+https://petsc.org/release/manualpages/Sys/PetscFileMode.html#PetscFileMode
man:+FILE_MODE_UNDEFINED++FILE_MODE_UNDEFINED++++man+https://petsc.org/release/manualpages/Sys/PetscFileMode.html#PetscFileMode
man:+FILE_MODE_READ++FILE_MODE_READ++++man+https://petsc.org/release/manualpages/Sys/PetscFileMode.html#PetscFileMode
man:+FILE_MODE_WRITE++FILE_MODE_WRITE++++man+https://petsc.org/release/manualpages/Sys/PetscFileMode.html#PetscFileMode
man:+FILE_MODE_APPEND++FILE_MODE_APPEND++++man+https://petsc.org/release/manualpages/Sys/PetscFileMode.html#PetscFileMode
man:+FILE_MODE_UPDATE++FILE_MODE_UPDATE++++man+https://petsc.org/release/manualpages/Sys/PetscFileMode.html#PetscFileMode
man:+FILE_MODE_APPEND_UPDATE++FILE_MODE_APPEND_UPDATE++++man+https://petsc.org/release/manualpages/Sys/PetscFileMode.html#PetscFileMode
man:+PetscObjectList++PetscObjectList++++man+https://petsc.org/release/manualpages/Sys/PetscObjectList.html#PetscObjectList
man:+PetscDLLibrary++PetscDLLibrary++++man+https://petsc.org/release/manualpages/Sys/PetscDLLibrary.html#PetscDLLibrary
man:+PetscContainer++PetscContainer++++man+https://petsc.org/release/manualpages/Sys/PetscContainer.html#PetscContainer
man:+PetscRandom++PetscRandom++++man+https://petsc.org/release/manualpages/Sys/PetscRandom.html#PetscRandom
man:+PetscBinarySeekType++PetscBinarySeekType++++man+https://petsc.org/release/manualpages/Sys/PetscBinarySeekType.html#PetscBinarySeekType
man:+PETSC_BINARY_SEEK_SET++PETSC_BINARY_SEEK_SET++++man+https://petsc.org/release/manualpages/Sys/PetscBinarySeekType.html#PetscBinarySeekType
man:+PETSC_BINARY_SEEK_CUR++PETSC_BINARY_SEEK_CUR++++man+https://petsc.org/release/manualpages/Sys/PetscBinarySeekType.html#PetscBinarySeekType
man:+PETSC_BINARY_SEEK_END++PETSC_BINARY_SEEK_END++++man+https://petsc.org/release/manualpages/Sys/PetscBinarySeekType.html#PetscBinarySeekType
man:+PetscBuildTwoSidedType++PetscBuildTwoSidedType++++man+https://petsc.org/release/manualpages/Sys/PetscBuildTwoSidedType.html#PetscBuildTwoSidedType
man:+PETSC_BUILDTWOSIDED_NOTSET++PETSC_BUILDTWOSIDED_NOTSET++++man+https://petsc.org/release/manualpages/Sys/PetscBuildTwoSidedType.html#PetscBuildTwoSidedType
man:+PETSC_BUILDTWOSIDED_ALLREDUCE++PETSC_BUILDTWOSIDED_ALLREDUCE++++man+https://petsc.org/release/manualpages/Sys/PetscBuildTwoSidedType.html#PetscBuildTwoSidedType
man:+PETSC_BUILDTWOSIDED_IBARRIER++PETSC_BUILDTWOSIDED_IBARRIER++++man+https://petsc.org/release/manualpages/Sys/PetscBuildTwoSidedType.html#PetscBuildTwoSidedType
man:+PETSC_BUILDTWOSIDED_REDSCATTER++PETSC_BUILDTWOSIDED_REDSCATTER++++man+https://petsc.org/release/manualpages/Sys/PetscBuildTwoSidedType.html#PetscBuildTwoSidedType
man:+InsertMode++InsertMode++++man+https://petsc.org/release/manualpages/Sys/InsertMode.html#InsertMode
man:+NOT_SET_VALUES++NOT_SET_VALUES++++man+https://petsc.org/release/manualpages/Sys/InsertMode.html#InsertMode
man:+INSERT_VALUES++INSERT_VALUES++++man+https://petsc.org/release/manualpages/Sys/InsertMode.html#InsertMode
man:+ADD_VALUES++ADD_VALUES++++man+https://petsc.org/release/manualpages/Sys/InsertMode.html#InsertMode
man:+MAX_VALUES++MAX_VALUES++++man+https://petsc.org/release/manualpages/Sys/InsertMode.html#InsertMode
man:+MIN_VALUES++MIN_VALUES++++man+https://petsc.org/release/manualpages/Sys/InsertMode.html#InsertMode
man:+INSERT_ALL_VALUES++INSERT_ALL_VALUES++++man+https://petsc.org/release/manualpages/Sys/InsertMode.html#InsertMode
man:+ADD_ALL_VALUES++ADD_ALL_VALUES++++man+https://petsc.org/release/manualpages/Sys/InsertMode.html#InsertMode
man:+INSERT_BC_VALUES++INSERT_BC_VALUES++++man+https://petsc.org/release/manualpages/Sys/InsertMode.html#InsertMode
man:+ADD_BC_VALUES++ADD_BC_VALUES++++man+https://petsc.org/release/manualpages/Sys/InsertMode.html#InsertMode
man:+INSERT_VALUES++INSERT_VALUES++++man+https://petsc.org/release/manualpages/Sys/INSERT_VALUES.html#INSERT_VALUES
man:+ADD_VALUES++ADD_VALUES++++man+https://petsc.org/release/manualpages/Sys/ADD_VALUES.html#ADD_VALUES
man:+MAX_VALUES++MAX_VALUES++++man+https://petsc.org/release/manualpages/Sys/MAX_VALUES.html#MAX_VALUES
man:+MIN_VALUES++MIN_VALUES++++man+https://petsc.org/release/manualpages/Sys/MIN_VALUES.html#MIN_VALUES
man:+PetscSubcomm++PetscSubcomm++++man+https://petsc.org/release/manualpages/Sys/PetscSubcomm.html#PetscSubcomm
man:+PetscHeap++PetscHeap++++man+https://petsc.org/release/manualpages/Sys/PetscHeap.html#PetscHeap
man:+PetscSegBuffer++PetscSegBuffer++++man+https://petsc.org/release/manualpages/Sys/PetscSegBuffer.html#PetscSegBuffer
man:+PetscBT++PetscBT++++man+https://petsc.org/release/manualpages/Sys/PetscBT.html#PetscBT
man:+TaoSubsetType++TaoSubsetType++++man+https://petsc.org/release/manualpages/Tao/TaoSubsetType.html#TaoSubsetType
man:+TAO_SUBSET_SUBVEC++TAO_SUBSET_SUBVEC++++man+https://petsc.org/release/manualpages/Tao/TaoSubsetType.html#TaoSubsetType
man:+TAO_SUBSET_MASK++TAO_SUBSET_MASK++++man+https://petsc.org/release/manualpages/Tao/TaoSubsetType.html#TaoSubsetType
man:+TAO_SUBSET_MATRIXFREE++TAO_SUBSET_MATRIXFREE++++man+https://petsc.org/release/manualpages/Tao/TaoSubsetType.html#TaoSubsetType
man:+Tao++Tao++++man+https://petsc.org/release/manualpages/Tao/Tao.html#Tao
man:+TaoADMMUpdateType++TaoADMMUpdateType++++man+https://petsc.org/release/manualpages/Tao/TaoADMMUpdateType.html#TaoADMMUpdateType
man:+TAO_ADMM_UPDATE_BASIC++TAO_ADMM_UPDATE_BASIC++++man+https://petsc.org/release/manualpages/Tao/TaoADMMUpdateType.html#TaoADMMUpdateType
man:+TAO_ADMM_UPDATE_ADAPTIVE++TAO_ADMM_UPDATE_ADAPTIVE++++man+https://petsc.org/release/manualpages/Tao/TaoADMMUpdateType.html#TaoADMMUpdateType
man:+TAO_ADMM_UPDATE_ADAPTIVE_RELAXED++TAO_ADMM_UPDATE_ADAPTIVE_RELAXED++++man+https://petsc.org/release/manualpages/Tao/TaoADMMUpdateType.html#TaoADMMUpdateType
man:+TAO_ADMM_UPDATE_BASIC++TAO_ADMM_UPDATE_BASIC++++man+https://petsc.org/release/manualpages/Tao/TAO_ADMM_UPDATE_BASIC.html#TAO_ADMM_UPDATE_BASIC
man:+TAO_ADMM_UPDATE_ADAPTIVE++TAO_ADMM_UPDATE_ADAPTIVE++++man+https://petsc.org/release/manualpages/Tao/TAO_ADMM_UPDATE_ADAPTIVE.html#TAO_ADMM_UPDATE_ADAPTIVE
man:+ADMM_UPDATE_ADAPTIVE_RELAXED++ADMM_UPDATE_ADAPTIVE_RELAXED++++man+https://petsc.org/release/manualpages/Tao/ADMM_UPDATE_ADAPTIVE_RELAXED.html#ADMM_UPDATE_ADAPTIVE_RELAXED
man:+TaoADMMRegularizerType++TaoADMMRegularizerType++++man+https://petsc.org/release/manualpages/Tao/TaoADMMRegularizerType.html#TaoADMMRegularizerType
man:+TAO_ADMM_REGULARIZER_USER++TAO_ADMM_REGULARIZER_USER++++man+https://petsc.org/release/manualpages/Tao/TaoADMMRegularizerType.html#TaoADMMRegularizerType
man:+TAO_ADMM_REGULARIZER_SOFT_THRESH++TAO_ADMM_REGULARIZER_SOFT_THRESH++++man+https://petsc.org/release/manualpages/Tao/TaoADMMRegularizerType.html#TaoADMMRegularizerType
man:+TAO_ADMM_REGULARIZER_USER++TAO_ADMM_REGULARIZER_USER++++man+https://petsc.org/release/manualpages/Tao/TAO_ADMM_REGULARIZER_USER.html#TAO_ADMM_REGULARIZER_USER
man:+TAO_ADMM_REGULARIZER_SOFT_THRESH++TAO_ADMM_REGULARIZER_SOFT_THRESH++++man+https://petsc.org/release/manualpages/Tao/TAO_ADMM_REGULARIZER_SOFT_THRESH.html#TAO_ADMM_REGULARIZER_SOFT_THRESH
man:+TaoALMMType++TaoALMMType++++man+https://petsc.org/release/manualpages/Tao/TaoALMMType.html#TaoALMMType
man:+TAO_ALMM_CLASSIC++TAO_ALMM_CLASSIC++++man+https://petsc.org/release/manualpages/Tao/TaoALMMType.html#TaoALMMType
man:+TAO_ALMM_PHR++TAO_ALMM_PHR++++man+https://petsc.org/release/manualpages/Tao/TaoALMMType.html#TaoALMMType
man:+TaoBNCGType++TaoBNCGType++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGType.html#TaoBNCGType
man:+TAO_BNCG_GD++TAO_BNCG_GD++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGType.html#TaoBNCGType
man:+TAO_BNCG_PCGD++TAO_BNCG_PCGD++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGType.html#TaoBNCGType
man:+TAO_BNCG_HS++TAO_BNCG_HS++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGType.html#TaoBNCGType
man:+TAO_BNCG_FR++TAO_BNCG_FR++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGType.html#TaoBNCGType
man:+TAO_BNCG_PRP++TAO_BNCG_PRP++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGType.html#TaoBNCGType
man:+TAO_BNCG_PRP_PLUS++TAO_BNCG_PRP_PLUS++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGType.html#TaoBNCGType
man:+TAO_BNCG_DY++TAO_BNCG_DY++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGType.html#TaoBNCGType
man:+TAO_BNCG_HZ++TAO_BNCG_HZ++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGType.html#TaoBNCGType
man:+TAO_BNCG_DK++TAO_BNCG_DK++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGType.html#TaoBNCGType
man:+TAO_BNCG_KD++TAO_BNCG_KD++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGType.html#TaoBNCGType
man:+TAO_BNCG_SSML_BFGS++TAO_BNCG_SSML_BFGS++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGType.html#TaoBNCGType
man:+TAO_BNCG_SSML_DFP++TAO_BNCG_SSML_DFP++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGType.html#TaoBNCGType
man:+TAO_BNCG_SSML_BRDN++TAO_BNCG_SSML_BRDN++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGType.html#TaoBNCGType
man:+TaoType++TaoType++++man+https://petsc.org/release/manualpages/Tao/TaoType.html#TaoType
man:+TaoConvergedReason++TaoConvergedReason++++man+https://petsc.org/release/manualpages/Tao/TaoConvergedReason.html#TaoConvergedReason
man:+TAO_CONVERGED_GATOL++TAO_CONVERGED_GATOL++++man+https://petsc.org/release/manualpages/Tao/TaoConvergedReason.html#TaoConvergedReason
man:+TAO_CONVERGED_GRTOL++TAO_CONVERGED_GRTOL++++man+https://petsc.org/release/manualpages/Tao/TaoConvergedReason.html#TaoConvergedReason
man:+TAO_CONVERGED_GTTOL++TAO_CONVERGED_GTTOL++++man+https://petsc.org/release/manualpages/Tao/TaoConvergedReason.html#TaoConvergedReason
man:+TAO_CONVERGED_STEPTOL++TAO_CONVERGED_STEPTOL++++man+https://petsc.org/release/manualpages/Tao/TaoConvergedReason.html#TaoConvergedReason
man:+TAO_CONVERGED_MINF++TAO_CONVERGED_MINF++++man+https://petsc.org/release/manualpages/Tao/TaoConvergedReason.html#TaoConvergedReason
man:+TAO_CONVERGED_USER++TAO_CONVERGED_USER++++man+https://petsc.org/release/manualpages/Tao/TaoConvergedReason.html#TaoConvergedReason
man:+TAO_DIVERGED_MAXITS++TAO_DIVERGED_MAXITS++++man+https://petsc.org/release/manualpages/Tao/TaoConvergedReason.html#TaoConvergedReason
man:+TAO_DIVERGED_NAN++TAO_DIVERGED_NAN++++man+https://petsc.org/release/manualpages/Tao/TaoConvergedReason.html#TaoConvergedReason
man:+TAO_DIVERGED_MAXFCN++TAO_DIVERGED_MAXFCN++++man+https://petsc.org/release/manualpages/Tao/TaoConvergedReason.html#TaoConvergedReason
man:+TAO_DIVERGED_LS_FAILURE++TAO_DIVERGED_LS_FAILURE++++man+https://petsc.org/release/manualpages/Tao/TaoConvergedReason.html#TaoConvergedReason
man:+TAO_DIVERGED_TR_REDUCTION++TAO_DIVERGED_TR_REDUCTION++++man+https://petsc.org/release/manualpages/Tao/TaoConvergedReason.html#TaoConvergedReason
man:+TAO_DIVERGED_USER++TAO_DIVERGED_USER++++man+https://petsc.org/release/manualpages/Tao/TaoConvergedReason.html#TaoConvergedReason
man:+TAO_CONTINUE_ITERATING++TAO_CONTINUE_ITERATING++++man+https://petsc.org/release/manualpages/Tao/TaoConvergedReason.html#TaoConvergedReason
man:+TaoLineSearch++TaoLineSearch++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearch.html#TaoLineSearch
man:+TaoLineSearchConvergedReason++TaoLineSearchConvergedReason++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearchConvergedReason.html#TaoLineSearchConvergedReason
man:+TAOLINESEARCH_FAILED_INFORNAN++TAOLINESEARCH_FAILED_INFORNAN++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearchConvergedReason.html#TaoLineSearchConvergedReason
man:+TAOLINESEARCH_FAILED_BADPARAMETER++TAOLINESEARCH_FAILED_BADPARAMETER++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearchConvergedReason.html#TaoLineSearchConvergedReason
man:+TAOLINESEARCH_FAILED_ASCENT++TAOLINESEARCH_FAILED_ASCENT++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearchConvergedReason.html#TaoLineSearchConvergedReason
man:+TAOLINESEARCH_CONTINUE_ITERATING++TAOLINESEARCH_CONTINUE_ITERATING++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearchConvergedReason.html#TaoLineSearchConvergedReason
man:+TAOLINESEARCH_SUCCESS++TAOLINESEARCH_SUCCESS++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearchConvergedReason.html#TaoLineSearchConvergedReason
man:+TAOLINESEARCH_SUCCESS_USER++TAOLINESEARCH_SUCCESS_USER++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearchConvergedReason.html#TaoLineSearchConvergedReason
man:+TAOLINESEARCH_HALTED_OTHER++TAOLINESEARCH_HALTED_OTHER++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearchConvergedReason.html#TaoLineSearchConvergedReason
man:+TAOLINESEARCH_HALTED_MAXFCN++TAOLINESEARCH_HALTED_MAXFCN++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearchConvergedReason.html#TaoLineSearchConvergedReason
man:+TAOLINESEARCH_HALTED_UPPERBOUND++TAOLINESEARCH_HALTED_UPPERBOUND++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearchConvergedReason.html#TaoLineSearchConvergedReason
man:+TAOLINESEARCH_HALTED_LOWERBOUND++TAOLINESEARCH_HALTED_LOWERBOUND++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearchConvergedReason.html#TaoLineSearchConvergedReason
man:+TAOLINESEARCH_HALTED_RTOL++TAOLINESEARCH_HALTED_RTOL++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearchConvergedReason.html#TaoLineSearchConvergedReason
man:+TAOLINESEARCH_HALTED_USER++TAOLINESEARCH_HALTED_USER++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearchConvergedReason.html#TaoLineSearchConvergedReason
man:+TaoLineSearchType++TaoLineSearchType++++man+https://petsc.org/release/manualpages/Tao/TaoLineSearchType.html#TaoLineSearchType
man:+PetscTime++PetscTime++++man+https://petsc.org/release/manualpages/Sys/PetscTime.html#PetscTime
man:+PetscTimeSubtract++PetscTimeSubtract++++man+https://petsc.org/release/manualpages/Sys/PetscTimeSubtract.html#PetscTimeSubtract
man:+PetscTimeAdd++PetscTimeAdd++++man+https://petsc.org/release/manualpages/Sys/PetscTimeAdd.html#PetscTimeAdd
man:+TS++TS++++man+https://petsc.org/release/manualpages/TS/TS.html#TS
man:+TSType++TSType++++man+https://petsc.org/release/manualpages/TS/TSType.html#TSType
man:+TSProblemType++TSProblemType++++man+https://petsc.org/release/manualpages/TS/TSProblemType.html#TSProblemType
man:+TS_LINEAR++TS_LINEAR++++man+https://petsc.org/release/manualpages/TS/TSProblemType.html#TSProblemType
man:+TS_NONLINEAR++TS_NONLINEAR++++man+https://petsc.org/release/manualpages/TS/TSProblemType.html#TSProblemType
man:+TSEquationType++TSEquationType++++man+https://petsc.org/release/manualpages/TS/TSEquationType.html#TSEquationType
man:+TS_EQ_UNSPECIFIED++TS_EQ_UNSPECIFIED++++man+https://petsc.org/release/manualpages/TS/TSEquationType.html#TSEquationType
man:+TS_EQ_EXPLICIT++TS_EQ_EXPLICIT++++man+https://petsc.org/release/manualpages/TS/TSEquationType.html#TSEquationType
man:+TS_EQ_ODE_EXPLICIT++TS_EQ_ODE_EXPLICIT++++man+https://petsc.org/release/manualpages/TS/TSEquationType.html#TSEquationType
man:+TS_EQ_DAE_SEMI_EXPLICIT_INDEX1++TS_EQ_DAE_SEMI_EXPLICIT_INDEX1++++man+https://petsc.org/release/manualpages/TS/TSEquationType.html#TSEquationType
man:+TS_EQ_DAE_SEMI_EXPLICIT_INDEX2++TS_EQ_DAE_SEMI_EXPLICIT_INDEX2++++man+https://petsc.org/release/manualpages/TS/TSEquationType.html#TSEquationType
man:+TS_EQ_DAE_SEMI_EXPLICIT_INDEX3++TS_EQ_DAE_SEMI_EXPLICIT_INDEX3++++man+https://petsc.org/release/manualpages/TS/TSEquationType.html#TSEquationType
man:+TS_EQ_DAE_SEMI_EXPLICIT_INDEXHI++TS_EQ_DAE_SEMI_EXPLICIT_INDEXHI++++man+https://petsc.org/release/manualpages/TS/TSEquationType.html#TSEquationType
man:+TS_EQ_IMPLICIT++TS_EQ_IMPLICIT++++man+https://petsc.org/release/manualpages/TS/TSEquationType.html#TSEquationType
man:+TS_EQ_ODE_IMPLICIT++TS_EQ_ODE_IMPLICIT++++man+https://petsc.org/release/manualpages/TS/TSEquationType.html#TSEquationType
man:+TS_EQ_DAE_IMPLICIT_INDEX1++TS_EQ_DAE_IMPLICIT_INDEX1++++man+https://petsc.org/release/manualpages/TS/TSEquationType.html#TSEquationType
man:+TS_EQ_DAE_IMPLICIT_INDEX2++TS_EQ_DAE_IMPLICIT_INDEX2++++man+https://petsc.org/release/manualpages/TS/TSEquationType.html#TSEquationType
man:+TS_EQ_DAE_IMPLICIT_INDEX3++TS_EQ_DAE_IMPLICIT_INDEX3++++man+https://petsc.org/release/manualpages/TS/TSEquationType.html#TSEquationType
man:+TS_EQ_DAE_IMPLICIT_INDEXHI++TS_EQ_DAE_IMPLICIT_INDEXHI++++man+https://petsc.org/release/manualpages/TS/TSEquationType.html#TSEquationType
man:+TSConvergedReason++TSConvergedReason++++man+https://petsc.org/release/manualpages/TS/TSConvergedReason.html#TSConvergedReason
man:+TS_CONVERGED_ITERATING++TS_CONVERGED_ITERATING++++man+https://petsc.org/release/manualpages/TS/TSConvergedReason.html#TSConvergedReason
man:+TS_CONVERGED_TIME++TS_CONVERGED_TIME++++man+https://petsc.org/release/manualpages/TS/TSConvergedReason.html#TSConvergedReason
man:+TS_CONVERGED_ITS++TS_CONVERGED_ITS++++man+https://petsc.org/release/manualpages/TS/TSConvergedReason.html#TSConvergedReason
man:+TS_CONVERGED_USER++TS_CONVERGED_USER++++man+https://petsc.org/release/manualpages/TS/TSConvergedReason.html#TSConvergedReason
man:+TS_CONVERGED_EVENT++TS_CONVERGED_EVENT++++man+https://petsc.org/release/manualpages/TS/TSConvergedReason.html#TSConvergedReason
man:+TS_CONVERGED_PSEUDO_FATOL++TS_CONVERGED_PSEUDO_FATOL++++man+https://petsc.org/release/manualpages/TS/TSConvergedReason.html#TSConvergedReason
man:+TS_CONVERGED_PSEUDO_FRTOL++TS_CONVERGED_PSEUDO_FRTOL++++man+https://petsc.org/release/manualpages/TS/TSConvergedReason.html#TSConvergedReason
man:+TS_DIVERGED_NONLINEAR_SOLVE++TS_DIVERGED_NONLINEAR_SOLVE++++man+https://petsc.org/release/manualpages/TS/TSConvergedReason.html#TSConvergedReason
man:+TS_DIVERGED_STEP_REJECTED++TS_DIVERGED_STEP_REJECTED++++man+https://petsc.org/release/manualpages/TS/TSConvergedReason.html#TSConvergedReason
man:+TSFORWARD_DIVERGED_LINEAR_SOLVE++TSFORWARD_DIVERGED_LINEAR_SOLVE++++man+https://petsc.org/release/manualpages/TS/TSConvergedReason.html#TSConvergedReason
man:+TSADJOINT_DIVERGED_LINEAR_SOLVE++TSADJOINT_DIVERGED_LINEAR_SOLVE++++man+https://petsc.org/release/manualpages/TS/TSConvergedReason.html#TSConvergedReason
man:+TS_CONVERGED_ITERATING++TS_CONVERGED_ITERATING++++man+https://petsc.org/release/manualpages/TS/TS_CONVERGED_ITERATING.html#TS_CONVERGED_ITERATING
man:+TS_CONVERGED_TIME++TS_CONVERGED_TIME++++man+https://petsc.org/release/manualpages/TS/TS_CONVERGED_TIME.html#TS_CONVERGED_TIME
man:+TS_CONVERGED_ITS++TS_CONVERGED_ITS++++man+https://petsc.org/release/manualpages/TS/TS_CONVERGED_ITS.html#TS_CONVERGED_ITS
man:+TS_CONVERGED_USER++TS_CONVERGED_USER++++man+https://petsc.org/release/manualpages/TS/TS_CONVERGED_USER.html#TS_CONVERGED_USER
man:+TS_CONVERGED_EVENT++TS_CONVERGED_EVENT++++man+https://petsc.org/release/manualpages/TS/TS_CONVERGED_EVENT.html#TS_CONVERGED_EVENT
man:+TS_CONVERGED_PSEUDO_FRTOL++TS_CONVERGED_PSEUDO_FRTOL++++man+https://petsc.org/release/manualpages/TS/TS_CONVERGED_PSEUDO_FRTOL.html#TS_CONVERGED_PSEUDO_FRTOL
man:+TS_CONVERGED_PSEUDO_FATOL++TS_CONVERGED_PSEUDO_FATOL++++man+https://petsc.org/release/manualpages/TS/TS_CONVERGED_PSEUDO_FATOL.html#TS_CONVERGED_PSEUDO_FATOL
man:+TS_DIVERGED_NONLINEAR_SOLVE++TS_DIVERGED_NONLINEAR_SOLVE++++man+https://petsc.org/release/manualpages/TS/TS_DIVERGED_NONLINEAR_SOLVE.html#TS_DIVERGED_NONLINEAR_SOLVE
man:+TS_DIVERGED_STEP_REJECTED++TS_DIVERGED_STEP_REJECTED++++man+https://petsc.org/release/manualpages/TS/TS_DIVERGED_STEP_REJECTED.html#TS_DIVERGED_STEP_REJECTED
man:+TSExactFinalTimeOption++TSExactFinalTimeOption++++man+https://petsc.org/release/manualpages/TS/TSExactFinalTimeOption.html#TSExactFinalTimeOption
man:+TS_EXACTFINALTIME_UNSPECIFIED++TS_EXACTFINALTIME_UNSPECIFIED++++man+https://petsc.org/release/manualpages/TS/TSExactFinalTimeOption.html#TSExactFinalTimeOption
man:+TS_EXACTFINALTIME_STEPOVER++TS_EXACTFINALTIME_STEPOVER++++man+https://petsc.org/release/manualpages/TS/TSExactFinalTimeOption.html#TSExactFinalTimeOption
man:+TS_EXACTFINALTIME_INTERPOLATE++TS_EXACTFINALTIME_INTERPOLATE++++man+https://petsc.org/release/manualpages/TS/TSExactFinalTimeOption.html#TSExactFinalTimeOption
man:+TS_EXACTFINALTIME_MATCHSTEP++TS_EXACTFINALTIME_MATCHSTEP++++man+https://petsc.org/release/manualpages/TS/TSExactFinalTimeOption.html#TSExactFinalTimeOption
man:+TSTrajectory++TSTrajectory++++man+https://petsc.org/release/manualpages/TS/TSTrajectory.html#TSTrajectory
man:+TSTrajectoryType++TSTrajectoryType++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryType.html#TSTrajectoryType
man:+TSGetTimeSpan++TSGetTimeSpan++++man+https://petsc.org/release/manualpages/TS/TSGetTimeSpan.html#TSGetTimeSpan
man:+TSGetTimeSpanSolutions++TSGetTimeSpanSolutions++++man+https://petsc.org/release/manualpages/TS/TSGetTimeSpanSolutions.html#TSGetTimeSpanSolutions
man:+TSRHSFunctionFn++TSRHSFunctionFn++++man+https://petsc.org/release/manualpages/TS/TSRHSFunctionFn.html#TSRHSFunctionFn
man:+TSRHSJacobianFn++TSRHSJacobianFn++++man+https://petsc.org/release/manualpages/TS/TSRHSJacobianFn.html#TSRHSJacobianFn
man:+TSRHSJacobianPFn++TSRHSJacobianPFn++++man+https://petsc.org/release/manualpages/TS/TSRHSJacobianPFn.html#TSRHSJacobianPFn
man:+TSSolutionFn++TSSolutionFn++++man+https://petsc.org/release/manualpages/TS/TSSolutionFn.html#TSSolutionFn
man:+TSForcingFn++TSForcingFn++++man+https://petsc.org/release/manualpages/TS/TSForcingFn.html#TSForcingFn
man:+TSIFunctionFn++TSIFunctionFn++++man+https://petsc.org/release/manualpages/TS/TSIFunctionFn.html#TSIFunctionFn
man:+TSIJacobianFn++TSIJacobianFn++++man+https://petsc.org/release/manualpages/TS/TSIJacobianFn.html#TSIJacobianFn
man:+TSI2FunctionFn++TSI2FunctionFn++++man+https://petsc.org/release/manualpages/TS/TSI2FunctionFn.html#TSI2FunctionFn
man:+TSI2JacobianFn++TSI2JacobianFn++++man+https://petsc.org/release/manualpages/TS/TSI2JacobianFn.html#TSI2JacobianFn
man:+TSTransientVariableFn++TSTransientVariableFn++++man+https://petsc.org/release/manualpages/TS/TSTransientVariableFn.html#TSTransientVariableFn
man:+DMDATSRHSFunctionLocalFn++DMDATSRHSFunctionLocalFn++++man+https://petsc.org/release/manualpages/TS/DMDATSRHSFunctionLocalFn.html#DMDATSRHSFunctionLocalFn
man:+DMDATSRHSJacobianLocalFn++DMDATSRHSJacobianLocalFn++++man+https://petsc.org/release/manualpages/TS/DMDATSRHSJacobianLocalFn.html#DMDATSRHSJacobianLocalFn
man:+DMDATSIFunctionLocalFn++DMDATSIFunctionLocalFn++++man+https://petsc.org/release/manualpages/TS/DMDATSIFunctionLocalFn.html#DMDATSIFunctionLocalFn
man:+DMDATSIJacobianLocalFn++DMDATSIJacobianLocalFn++++man+https://petsc.org/release/manualpages/TS/DMDATSIJacobianLocalFn.html#DMDATSIJacobianLocalFn
man:+TSSSPType++TSSSPType++++man+https://petsc.org/release/manualpages/TS/TSSSPType.html#TSSSPType
man:+TSAdapt++TSAdapt++++man+https://petsc.org/release/manualpages/TS/TSAdapt.html#TSAdapt
man:+TSAdaptType++TSAdaptType++++man+https://petsc.org/release/manualpages/TS/TSAdaptType.html#TSAdaptType
man:+TSGLLEAdapt++TSGLLEAdapt++++man+https://petsc.org/release/manualpages/TS/TSGLLEAdapt.html#TSGLLEAdapt
man:+TSGLLEAdaptType++TSGLLEAdaptType++++man+https://petsc.org/release/manualpages/TS/TSGLLEAdaptType.html#TSGLLEAdaptType
man:+TSGLLEAcceptType++TSGLLEAcceptType++++man+https://petsc.org/release/manualpages/TS/TSGLLEAcceptType.html#TSGLLEAcceptType
man:+TSGLLEAcceptFn++TSGLLEAcceptFn++++man+https://petsc.org/release/manualpages/TS/TSGLLEAcceptFn.html#TSGLLEAcceptFn
man:+TSGLLEType++TSGLLEType++++man+https://petsc.org/release/manualpages/TS/TSGLLEType.html#TSGLLEType
man:+TSEIMEXType++TSEIMEXType++++man+https://petsc.org/release/manualpages/TS/TSEIMEXType.html#TSEIMEXType
man:+TSRKType++TSRKType++++man+https://petsc.org/release/manualpages/TS/TSRKType.html#TSRKType
man:+TSMPRKType++TSMPRKType++++man+https://petsc.org/release/manualpages/TS/TSMPRKType.html#TSMPRKType
man:+TSIRKType++TSIRKType++++man+https://petsc.org/release/manualpages/TS/TSIRKType.html#TSIRKType
man:+TSGLEEType++TSGLEEType++++man+https://petsc.org/release/manualpages/TS/TSGLEEType.html#TSGLEEType
man:+TSGLEEMode++TSGLEEMode++++man+https://petsc.org/release/manualpages/TS/TSGLEEMode.html#TSGLEEMode
man:+TSARKIMEXType++TSARKIMEXType++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXType.html#TSARKIMEXType
man:+TSDIRKType++TSDIRKType++++man+https://petsc.org/release/manualpages/TS/TSDIRKType.html#TSDIRKType
man:+TSRosWType++TSRosWType++++man+https://petsc.org/release/manualpages/TS/TSRosWType.html#TSRosWType
man:+TSBasicSymplecticType++TSBasicSymplecticType++++man+https://petsc.org/release/manualpages/TS/TSBasicSymplecticType.html#TSBasicSymplecticType
man:+TSDISCGRAD++TSDISCGRAD++++man+https://petsc.org/release/manualpages/TS/TSDISCGRAD.html#TSDISCGRAD
man:+TSAlpha2PredictorFn++TSAlpha2PredictorFn++++man+https://petsc.org/release/manualpages/TS/TSAlpha2PredictorFn.html#TSAlpha2PredictorFn
man:+Vec++Vec++++man+https://petsc.org/release/manualpages/Vec/Vec.html#Vec
man:+ScatterMode++ScatterMode++++man+https://petsc.org/release/manualpages/Vec/ScatterMode.html#ScatterMode
man:+SCATTER_FORWARD++SCATTER_FORWARD++++man+https://petsc.org/release/manualpages/Vec/ScatterMode.html#ScatterMode
man:+SCATTER_REVERSE++SCATTER_REVERSE++++man+https://petsc.org/release/manualpages/Vec/ScatterMode.html#ScatterMode
man:+SCATTER_FORWARD_LOCAL++SCATTER_FORWARD_LOCAL++++man+https://petsc.org/release/manualpages/Vec/ScatterMode.html#ScatterMode
man:+SCATTER_REVERSE_LOCAL++SCATTER_REVERSE_LOCAL++++man+https://petsc.org/release/manualpages/Vec/ScatterMode.html#ScatterMode
man:+SCATTER_FORWARD++SCATTER_FORWARD++++man+https://petsc.org/release/manualpages/Vec/SCATTER_FORWARD.html#SCATTER_FORWARD
man:+SCATTER_REVERSE++SCATTER_REVERSE++++man+https://petsc.org/release/manualpages/Vec/SCATTER_REVERSE.html#SCATTER_REVERSE
man:+SCATTER_FORWARD_LOCAL++SCATTER_FORWARD_LOCAL++++man+https://petsc.org/release/manualpages/Vec/SCATTER_FORWARD_LOCAL.html#SCATTER_FORWARD_LOCAL
man:+SCATTER_REVERSE_LOCAL++SCATTER_REVERSE_LOCAL++++man+https://petsc.org/release/manualpages/Vec/SCATTER_REVERSE_LOCAL.html#SCATTER_REVERSE_LOCAL
man:+VecType++VecType++++man+https://petsc.org/release/manualpages/Vec/VecType.html#VecType
man:+NormType++NormType++++man+https://petsc.org/release/manualpages/Vec/NormType.html#NormType
man:+NORM_1++NORM_1++++man+https://petsc.org/release/manualpages/Vec/NormType.html#NormType
man:+NORM_2++NORM_2++++man+https://petsc.org/release/manualpages/Vec/NormType.html#NormType
man:+NORM_FROBENIUS++NORM_FROBENIUS++++man+https://petsc.org/release/manualpages/Vec/NormType.html#NormType
man:+NORM_INFINITY++NORM_INFINITY++++man+https://petsc.org/release/manualpages/Vec/NormType.html#NormType
man:+NORM_1_AND_2++NORM_1_AND_2++++man+https://petsc.org/release/manualpages/Vec/NormType.html#NormType
man:+NORM_1++NORM_1++++man+https://petsc.org/release/manualpages/Vec/NORM_1.html#NORM_1
man:+NORM_2++NORM_2++++man+https://petsc.org/release/manualpages/Vec/NORM_2.html#NORM_2
man:+NORM_FROBENIUS++NORM_FROBENIUS++++man+https://petsc.org/release/manualpages/Vec/NORM_FROBENIUS.html#NORM_FROBENIUS
man:+NORM_INFINITY++NORM_INFINITY++++man+https://petsc.org/release/manualpages/Vec/NORM_INFINITY.html#NORM_INFINITY
man:+NORM_1_AND_2++NORM_1_AND_2++++man+https://petsc.org/release/manualpages/Vec/NORM_1_AND_2.html#NORM_1_AND_2
man:+NORM_MAX++NORM_MAX++++man+https://petsc.org/release/manualpages/Vec/NORM_MAX.html#NORM_MAX
man:+ReductionType++ReductionType++++man+https://petsc.org/release/manualpages/Vec/ReductionType.html#ReductionType
man:+REDUCTION_SUM_REALPART++REDUCTION_SUM_REALPART++++man+https://petsc.org/release/manualpages/Vec/ReductionType.html#ReductionType
man:+REDUCTION_MEAN_REALPART++REDUCTION_MEAN_REALPART++++man+https://petsc.org/release/manualpages/Vec/ReductionType.html#ReductionType
man:+REDUCTION_SUM_IMAGINARYPART++REDUCTION_SUM_IMAGINARYPART++++man+https://petsc.org/release/manualpages/Vec/ReductionType.html#ReductionType
man:+REDUCTION_MEAN_IMAGINARYPART++REDUCTION_MEAN_IMAGINARYPART++++man+https://petsc.org/release/manualpages/Vec/ReductionType.html#ReductionType
man:+REDUCTION_SUM_REALPART++REDUCTION_SUM_REALPART++++man+https://petsc.org/release/manualpages/Vec/REDUCTION_SUM_REALPART.html#REDUCTION_SUM_REALPART
man:+REDUCTION_SUM_IMAGINARYPART++REDUCTION_SUM_IMAGINARYPART++++man+https://petsc.org/release/manualpages/Vec/REDUCTION_SUM_IMAGINARYPART.html#REDUCTION_SUM_IMAGINARYPART
man:+REDUCTION_MEAN_REALPART++REDUCTION_MEAN_REALPART++++man+https://petsc.org/release/manualpages/Vec/REDUCTION_MEAN_REALPART.html#REDUCTION_MEAN_REALPART
man:+REDUCTION_MEAN_IMAGINARYPART++REDUCTION_MEAN_IMAGINARYPART++++man+https://petsc.org/release/manualpages/Vec/REDUCTION_MEAN_IMAGINARYPART.html#REDUCTION_MEAN_IMAGINARYPART
man:+VecSetValue++VecSetValue++++man+https://petsc.org/release/manualpages/Vec/VecSetValue.html#VecSetValue
man:+VecSetValueLocal++VecSetValueLocal++++man+https://petsc.org/release/manualpages/Vec/VecSetValueLocal.html#VecSetValueLocal
man:+VecCheckAssembled++VecCheckAssembled++++man+https://petsc.org/release/manualpages/Vec/VecCheckAssembled.html#VecCheckAssembled
man:+VecGetArrayPair++VecGetArrayPair++++man+https://petsc.org/release/manualpages/Vec/VecGetArrayPair.html#VecGetArrayPair
man:+VecRestoreArrayPair++VecRestoreArrayPair++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArrayPair.html#VecRestoreArrayPair
man:+VecOperation++VecOperation++++man+https://petsc.org/release/manualpages/Vec/VecOperation.html#VecOperation
man:+VECOP_DUPLICATE++VECOP_DUPLICATE++++man+https://petsc.org/release/manualpages/Vec/VecOperation.html#VecOperation
man:+VECOP_SET++VECOP_SET++++man+https://petsc.org/release/manualpages/Vec/VecOperation.html#VecOperation
man:+VECOP_VIEW++VECOP_VIEW++++man+https://petsc.org/release/manualpages/Vec/VecOperation.html#VecOperation
man:+VECOP_LOAD++VECOP_LOAD++++man+https://petsc.org/release/manualpages/Vec/VecOperation.html#VecOperation
man:+VECOP_VIEWNATIVE++VECOP_VIEWNATIVE++++man+https://petsc.org/release/manualpages/Vec/VecOperation.html#VecOperation
man:+VECOP_LOADNATIVE++VECOP_LOADNATIVE++++man+https://petsc.org/release/manualpages/Vec/VecOperation.html#VecOperation
man:+Vecs++Vecs++++man+https://petsc.org/release/manualpages/Vec/Vecs.html#Vecs
man:+VecTagger++VecTagger++++man+https://petsc.org/release/manualpages/Vec/VecTagger.html#VecTagger
man:+VecTaggerType++VecTaggerType++++man+https://petsc.org/release/manualpages/Vec/VecTaggerType.html#VecTaggerType
man:+VecTaggerBox++VecTaggerBox++++man+https://petsc.org/release/manualpages/Vec/VecTaggerBox.html#VecTaggerBox
man:+VecTaggerCDFMethod++VecTaggerCDFMethod++++man+https://petsc.org/release/manualpages/Vec/VecTaggerCDFMethod.html#VecTaggerCDFMethod
man:+VECTAGGER_CDF_GATHER++VECTAGGER_CDF_GATHER++++man+https://petsc.org/release/manualpages/Vec/VecTaggerCDFMethod.html#VecTaggerCDFMethod
man:+VECTAGGER_CDF_ITERATIVE++VECTAGGER_CDF_ITERATIVE++++man+https://petsc.org/release/manualpages/Vec/VecTaggerCDFMethod.html#VecTaggerCDFMethod
man:+VECTAGGER_CDF_NUM_METHODS++VECTAGGER_CDF_NUM_METHODS++++man+https://petsc.org/release/manualpages/Vec/VecTaggerCDFMethod.html#VecTaggerCDFMethod
man:+PetscViewerType++PetscViewerType++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerType.html#PetscViewerType
man:+PetscViewerGLVisType++PetscViewerGLVisType++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerGLVisType.html#PetscViewerGLVisType
man:+PETSC_VIEWER_GLVIS_DUMP++PETSC_VIEWER_GLVIS_DUMP++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerGLVisType.html#PetscViewerGLVisType
man:+PETSC_VIEWER_GLVIS_SOCKET++PETSC_VIEWER_GLVIS_SOCKET++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerGLVisType.html#PetscViewerGLVisType
man:+PetscViewerFormat++PetscViewerFormat++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_DEFAULT++PETSC_VIEWER_DEFAULT++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_MATLAB++PETSC_VIEWER_ASCII_MATLAB++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_MATHEMATICA++PETSC_VIEWER_ASCII_MATHEMATICA++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_IMPL++PETSC_VIEWER_ASCII_IMPL++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_INFO++PETSC_VIEWER_ASCII_INFO++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_INFO_DETAIL++PETSC_VIEWER_ASCII_INFO_DETAIL++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_COMMON++PETSC_VIEWER_ASCII_COMMON++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_SYMMODU++PETSC_VIEWER_ASCII_SYMMODU++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_INDEX++PETSC_VIEWER_ASCII_INDEX++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_DENSE++PETSC_VIEWER_ASCII_DENSE++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_MATRIXMARKET++PETSC_VIEWER_ASCII_MATRIXMARKET++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_PCICE++PETSC_VIEWER_ASCII_PCICE++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_PYTHON++PETSC_VIEWER_ASCII_PYTHON++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_FACTOR_INFO++PETSC_VIEWER_ASCII_FACTOR_INFO++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_LATEX++PETSC_VIEWER_ASCII_LATEX++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_XML++PETSC_VIEWER_ASCII_XML++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_FLAMEGRAPH++PETSC_VIEWER_ASCII_FLAMEGRAPH++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_GLVIS++PETSC_VIEWER_ASCII_GLVIS++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ASCII_CSV++PETSC_VIEWER_ASCII_CSV++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_DRAW_BASIC++PETSC_VIEWER_DRAW_BASIC++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_DRAW_LG++PETSC_VIEWER_DRAW_LG++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_DRAW_LG_XRANGE++PETSC_VIEWER_DRAW_LG_XRANGE++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_DRAW_CONTOUR++PETSC_VIEWER_DRAW_CONTOUR++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_DRAW_PORTS++PETSC_VIEWER_DRAW_PORTS++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_VTK_VTS++PETSC_VIEWER_VTK_VTS++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_VTK_VTR++PETSC_VIEWER_VTK_VTR++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_VTK_VTU++PETSC_VIEWER_VTK_VTU++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_BINARY_MATLAB++PETSC_VIEWER_BINARY_MATLAB++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_NATIVE++PETSC_VIEWER_NATIVE++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_HDF5_PETSC++PETSC_VIEWER_HDF5_PETSC++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_HDF5_VIZ++PETSC_VIEWER_HDF5_VIZ++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_HDF5_XDMF++PETSC_VIEWER_HDF5_XDMF++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_HDF5_MAT++PETSC_VIEWER_HDF5_MAT++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_NOFORMAT++PETSC_VIEWER_NOFORMAT++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_LOAD_BALANCE++PETSC_VIEWER_LOAD_BALANCE++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_FAILED++PETSC_VIEWER_FAILED++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PETSC_VIEWER_ALL++PETSC_VIEWER_ALL++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat
man:+PetscViewerVUSetMode++PetscViewerVUSetMode++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerVUSetMode.html#PetscViewerVUSetMode
man:+PETSC_VIEWER_STDERR_SELF++PETSC_VIEWER_STDERR_SELF++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_STDERR_SELF.html#PETSC_VIEWER_STDERR_SELF
man:+PETSC_VIEWER_STDERR_WORLD++PETSC_VIEWER_STDERR_WORLD++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_STDERR_WORLD.html#PETSC_VIEWER_STDERR_WORLD
man:+PETSC_VIEWER_STDOUT_WORLD++PETSC_VIEWER_STDOUT_WORLD++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_STDOUT_WORLD.html#PETSC_VIEWER_STDOUT_WORLD
man:+PETSC_VIEWER_STDOUT_SELF++PETSC_VIEWER_STDOUT_SELF++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_STDOUT_SELF.html#PETSC_VIEWER_STDOUT_SELF
man:+PETSC_VIEWER_DRAW_WORLD++PETSC_VIEWER_DRAW_WORLD++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_DRAW_WORLD.html#PETSC_VIEWER_DRAW_WORLD
man:+PETSC_VIEWER_DRAW_SELF++PETSC_VIEWER_DRAW_SELF++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_DRAW_SELF.html#PETSC_VIEWER_DRAW_SELF
man:+PETSC_VIEWER_SOCKET_WORLD++PETSC_VIEWER_SOCKET_WORLD++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_SOCKET_WORLD.html#PETSC_VIEWER_SOCKET_WORLD
man:+PETSC_VIEWER_SOCKET_SELF++PETSC_VIEWER_SOCKET_SELF++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_SOCKET_SELF.html#PETSC_VIEWER_SOCKET_SELF
man:+PETSC_VIEWER_BINARY_WORLD++PETSC_VIEWER_BINARY_WORLD++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_BINARY_WORLD.html#PETSC_VIEWER_BINARY_WORLD
man:+PETSC_VIEWER_BINARY_SELF++PETSC_VIEWER_BINARY_SELF++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_BINARY_SELF.html#PETSC_VIEWER_BINARY_SELF
man:+PETSC_VIEWER_MATLAB_WORLD++PETSC_VIEWER_MATLAB_WORLD++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_MATLAB_WORLD.html#PETSC_VIEWER_MATLAB_WORLD
man:+PETSC_VIEWER_MATLAB_SELF++PETSC_VIEWER_MATLAB_SELF++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_MATLAB_SELF.html#PETSC_VIEWER_MATLAB_SELF
man:+PetscViewers++PetscViewers++++man+https://petsc.org/release/manualpages/Viewer/PetscViewers.html#PetscViewers
man:+PetscViewer++PetscViewer++++man+https://petsc.org/release/manualpages/Viewer/PetscViewer.html#PetscViewer
man:+MatSetType++MatSetType++++man+https://petsc.org/release/manualpages/Mat/MatSetType.html#MatSetType
man:+MatGetType++MatGetType++++man+https://petsc.org/release/manualpages/Mat/MatGetType.html#MatGetType
man:+MatGetVecType++MatGetVecType++++man+https://petsc.org/release/manualpages/Mat/MatGetVecType.html#MatGetVecType
man:+MatSetVecType++MatSetVecType++++man+https://petsc.org/release/manualpages/Mat/MatSetVecType.html#MatSetVecType
man:+MatRegister++MatRegister++++man+https://petsc.org/release/manualpages/Mat/MatRegister.html#MatRegister
man:+MatRegisterRootName++MatRegisterRootName++++man+https://petsc.org/release/manualpages/Mat/MatRegisterRootName.html#MatRegisterRootName
man:+MatProductReplaceMats++MatProductReplaceMats++++man+https://petsc.org/release/manualpages/Mat/MatProductReplaceMats.html#MatProductReplaceMats
man:+MatProductSetFromOptions++MatProductSetFromOptions++++man+https://petsc.org/release/manualpages/Mat/MatProductSetFromOptions.html#MatProductSetFromOptions
man:+MatProductView++MatProductView++++man+https://petsc.org/release/manualpages/Mat/MatProductView.html#MatProductView
man:+MatProductNumeric++MatProductNumeric++++man+https://petsc.org/release/manualpages/Mat/MatProductNumeric.html#MatProductNumeric
man:+MatProductSymbolic++MatProductSymbolic++++man+https://petsc.org/release/manualpages/Mat/MatProductSymbolic.html#MatProductSymbolic
man:+MatProductSetFill++MatProductSetFill++++man+https://petsc.org/release/manualpages/Mat/MatProductSetFill.html#MatProductSetFill
man:+MatProductSetAlgorithm++MatProductSetAlgorithm++++man+https://petsc.org/release/manualpages/Mat/MatProductSetAlgorithm.html#MatProductSetAlgorithm
man:+MatProductGetAlgorithm++MatProductGetAlgorithm++++man+https://petsc.org/release/manualpages/Mat/MatProductGetAlgorithm.html#MatProductGetAlgorithm
man:+MatProductSetType++MatProductSetType++++man+https://petsc.org/release/manualpages/Mat/MatProductSetType.html#MatProductSetType
man:+MatProductClear++MatProductClear++++man+https://petsc.org/release/manualpages/Mat/MatProductClear.html#MatProductClear
man:+MatProductCreateWithMat++MatProductCreateWithMat++++man+https://petsc.org/release/manualpages/Mat/MatProductCreateWithMat.html#MatProductCreateWithMat
man:+MatProductCreate++MatProductCreate++++man+https://petsc.org/release/manualpages/Mat/MatProductCreate.html#MatProductCreate
man:+MatProductGetType++MatProductGetType++++man+https://petsc.org/release/manualpages/Mat/MatProductGetType.html#MatProductGetType
man:+MatProductGetMats++MatProductGetMats++++man+https://petsc.org/release/manualpages/Mat/MatProductGetMats.html#MatProductGetMats
man:+MatNullSpaceSetFunction++MatNullSpaceSetFunction++++man+https://petsc.org/release/manualpages/Mat/MatNullSpaceSetFunction.html#MatNullSpaceSetFunction
man:+MatNullSpaceGetVecs++MatNullSpaceGetVecs++++man+https://petsc.org/release/manualpages/Mat/MatNullSpaceGetVecs.html#MatNullSpaceGetVecs
man:+MatNullSpaceCreateRigidBody++MatNullSpaceCreateRigidBody++++man+https://petsc.org/release/manualpages/Mat/MatNullSpaceCreateRigidBody.html#MatNullSpaceCreateRigidBody
man:+MatNullSpaceView++MatNullSpaceView++++man+https://petsc.org/release/manualpages/Mat/MatNullSpaceView.html#MatNullSpaceView
man:+MatNullSpaceCreate++MatNullSpaceCreate++++man+https://petsc.org/release/manualpages/Mat/MatNullSpaceCreate.html#MatNullSpaceCreate
man:+MatNullSpaceDestroy++MatNullSpaceDestroy++++man+https://petsc.org/release/manualpages/Mat/MatNullSpaceDestroy.html#MatNullSpaceDestroy
man:+MatNullSpaceRemove++MatNullSpaceRemove++++man+https://petsc.org/release/manualpages/Mat/MatNullSpaceRemove.html#MatNullSpaceRemove
man:+MatNullSpaceTest++MatNullSpaceTest++++man+https://petsc.org/release/manualpages/Mat/MatNullSpaceTest.html#MatNullSpaceTest
man:+MatFinalizePackage++MatFinalizePackage++++man+https://petsc.org/release/manualpages/Mat/MatFinalizePackage.html#MatFinalizePackage
man:+MatInitializePackage++MatInitializePackage++++man+https://petsc.org/release/manualpages/Mat/MatInitializePackage.html#MatInitializePackage
man:+MatSetRandom++MatSetRandom++++man+https://petsc.org/release/manualpages/Mat/MatSetRandom.html#MatSetRandom
man:+MatCopyHashToXAIJ++MatCopyHashToXAIJ++++man+https://petsc.org/release/manualpages/Mat/MatCopyHashToXAIJ.html#MatCopyHashToXAIJ
man:+MatFactorGetErrorZeroPivot++MatFactorGetErrorZeroPivot++++man+https://petsc.org/release/manualpages/Mat/MatFactorGetErrorZeroPivot.html#MatFactorGetErrorZeroPivot
man:+MatFactorGetError++MatFactorGetError++++man+https://petsc.org/release/manualpages/Mat/MatFactorGetError.html#MatFactorGetError
man:+MatFactorClearError++MatFactorClearError++++man+https://petsc.org/release/manualpages/Mat/MatFactorClearError.html#MatFactorClearError
man:+MatFindNonzeroRows++MatFindNonzeroRows++++man+https://petsc.org/release/manualpages/Mat/MatFindNonzeroRows.html#MatFindNonzeroRows
man:+MatFindZeroRows++MatFindZeroRows++++man+https://petsc.org/release/manualpages/Mat/MatFindZeroRows.html#MatFindZeroRows
man:+MatGetDiagonalBlock++MatGetDiagonalBlock++++man+https://petsc.org/release/manualpages/Mat/MatGetDiagonalBlock.html#MatGetDiagonalBlock
man:+MatGetTrace++MatGetTrace++++man+https://petsc.org/release/manualpages/Mat/MatGetTrace.html#MatGetTrace
man:+MatRealPart++MatRealPart++++man+https://petsc.org/release/manualpages/Mat/MatRealPart.html#MatRealPart
man:+MatGetGhosts++MatGetGhosts++++man+https://petsc.org/release/manualpages/Mat/MatGetGhosts.html#MatGetGhosts
man:+MatImaginaryPart++MatImaginaryPart++++man+https://petsc.org/release/manualpages/Mat/MatImaginaryPart.html#MatImaginaryPart
man:+MatMissingDiagonal++MatMissingDiagonal++++man+https://petsc.org/release/manualpages/Mat/MatMissingDiagonal.html#MatMissingDiagonal
man:+MatGetRow++MatGetRow++++man+https://petsc.org/release/manualpages/Mat/MatGetRow.html#MatGetRow
man:+MatConjugate++MatConjugate++++man+https://petsc.org/release/manualpages/Mat/MatConjugate.html#MatConjugate
man:+MatRestoreRow++MatRestoreRow++++man+https://petsc.org/release/manualpages/Mat/MatRestoreRow.html#MatRestoreRow
man:+MatGetRowUpperTriangular++MatGetRowUpperTriangular++++man+https://petsc.org/release/manualpages/Mat/MatGetRowUpperTriangular.html#MatGetRowUpperTriangular
man:+MatRestoreRowUpperTriangular++MatRestoreRowUpperTriangular++++man+https://petsc.org/release/manualpages/Mat/MatRestoreRowUpperTriangular.html#MatRestoreRowUpperTriangular
man:+MatSetOptionsPrefix++MatSetOptionsPrefix++++man+https://petsc.org/release/manualpages/Mat/MatSetOptionsPrefix.html#MatSetOptionsPrefix
man:+MatSetOptionsPrefixFactor++MatSetOptionsPrefixFactor++++man+https://petsc.org/release/manualpages/Mat/MatSetOptionsPrefixFactor.html#MatSetOptionsPrefixFactor
man:+MatAppendOptionsPrefixFactor++MatAppendOptionsPrefixFactor++++man+https://petsc.org/release/manualpages/Mat/MatAppendOptionsPrefixFactor.html#MatAppendOptionsPrefixFactor
man:+MatAppendOptionsPrefix++MatAppendOptionsPrefix++++man+https://petsc.org/release/manualpages/Mat/MatAppendOptionsPrefix.html#MatAppendOptionsPrefix
man:+MatGetOptionsPrefix++MatGetOptionsPrefix++++man+https://petsc.org/release/manualpages/Mat/MatGetOptionsPrefix.html#MatGetOptionsPrefix
man:+MatGetState++MatGetState++++man+https://petsc.org/release/manualpages/Mat/MatGetState.html#MatGetState
man:+MatResetPreallocation++MatResetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatResetPreallocation.html#MatResetPreallocation
man:+MatResetHash++MatResetHash++++man+https://petsc.org/release/manualpages/Mat/MatResetHash.html#MatResetHash
man:+MatSetUp++MatSetUp++++man+https://petsc.org/release/manualpages/Mat/MatSetUp.html#MatSetUp
man:+MatViewFromOptions++MatViewFromOptions++++man+https://petsc.org/release/manualpages/Mat/MatViewFromOptions.html#MatViewFromOptions
man:+MatView++MatView++++man+https://petsc.org/release/manualpages/Mat/MatView.html#MatView
man:+MatLoad++MatLoad++++man+https://petsc.org/release/manualpages/Mat/MatLoad.html#MatLoad
man:+MatDestroy++MatDestroy++++man+https://petsc.org/release/manualpages/Mat/MatDestroy.html#MatDestroy
man:+MatSetValues++MatSetValues++++man+https://petsc.org/release/manualpages/Mat/MatSetValues.html#MatSetValues
man:+MatSetValuesIS++MatSetValuesIS++++man+https://petsc.org/release/manualpages/Mat/MatSetValuesIS.html#MatSetValuesIS
man:+MatSetValuesRowLocal++MatSetValuesRowLocal++++man+https://petsc.org/release/manualpages/Mat/MatSetValuesRowLocal.html#MatSetValuesRowLocal
man:+MatSetValuesRow++MatSetValuesRow++++man+https://petsc.org/release/manualpages/Mat/MatSetValuesRow.html#MatSetValuesRow
man:+MatSetValuesStencil++MatSetValuesStencil++++man+https://petsc.org/release/manualpages/Mat/MatSetValuesStencil.html#MatSetValuesStencil
man:+MatSetValuesBlockedStencil++MatSetValuesBlockedStencil++++man+https://petsc.org/release/manualpages/Mat/MatSetValuesBlockedStencil.html#MatSetValuesBlockedStencil
man:+MatSetStencil++MatSetStencil++++man+https://petsc.org/release/manualpages/Mat/MatSetStencil.html#MatSetStencil
man:+MatSetValuesBlocked++MatSetValuesBlocked++++man+https://petsc.org/release/manualpages/Mat/MatSetValuesBlocked.html#MatSetValuesBlocked
man:+MatGetValues++MatGetValues++++man+https://petsc.org/release/manualpages/Mat/MatGetValues.html#MatGetValues
man:+MatGetValuesLocal++MatGetValuesLocal++++man+https://petsc.org/release/manualpages/Mat/MatGetValuesLocal.html#MatGetValuesLocal
man:+MatSetValuesBatch++MatSetValuesBatch++++man+https://petsc.org/release/manualpages/Mat/MatSetValuesBatch.html#MatSetValuesBatch
man:+MatSetLocalToGlobalMapping++MatSetLocalToGlobalMapping++++man+https://petsc.org/release/manualpages/Mat/MatSetLocalToGlobalMapping.html#MatSetLocalToGlobalMapping
man:+MatGetLocalToGlobalMapping++MatGetLocalToGlobalMapping++++man+https://petsc.org/release/manualpages/Mat/MatGetLocalToGlobalMapping.html#MatGetLocalToGlobalMapping
man:+MatSetLayouts++MatSetLayouts++++man+https://petsc.org/release/manualpages/Mat/MatSetLayouts.html#MatSetLayouts
man:+MatGetLayouts++MatGetLayouts++++man+https://petsc.org/release/manualpages/Mat/MatGetLayouts.html#MatGetLayouts
man:+MatSetValuesLocal++MatSetValuesLocal++++man+https://petsc.org/release/manualpages/Mat/MatSetValuesLocal.html#MatSetValuesLocal
man:+MatSetValuesBlockedLocal++MatSetValuesBlockedLocal++++man+https://petsc.org/release/manualpages/Mat/MatSetValuesBlockedLocal.html#MatSetValuesBlockedLocal
man:+MatMultDiagonalBlock++MatMultDiagonalBlock++++man+https://petsc.org/release/manualpages/Mat/MatMultDiagonalBlock.html#MatMultDiagonalBlock
man:+MatMult++MatMult++++man+https://petsc.org/release/manualpages/Mat/MatMult.html#MatMult
man:+MatMultTranspose++MatMultTranspose++++man+https://petsc.org/release/manualpages/Mat/MatMultTranspose.html#MatMultTranspose
man:+MatMultHermitianTranspose++MatMultHermitianTranspose++++man+https://petsc.org/release/manualpages/Mat/MatMultHermitianTranspose.html#MatMultHermitianTranspose
man:+MatMultAdd++MatMultAdd++++man+https://petsc.org/release/manualpages/Mat/MatMultAdd.html#MatMultAdd
man:+MatMultTransposeAdd++MatMultTransposeAdd++++man+https://petsc.org/release/manualpages/Mat/MatMultTransposeAdd.html#MatMultTransposeAdd
man:+MatMultHermitianTransposeAdd++MatMultHermitianTransposeAdd++++man+https://petsc.org/release/manualpages/Mat/MatMultHermitianTransposeAdd.html#MatMultHermitianTransposeAdd
man:+MatGetFactorType++MatGetFactorType++++man+https://petsc.org/release/manualpages/Mat/MatGetFactorType.html#MatGetFactorType
man:+MatSetFactorType++MatSetFactorType++++man+https://petsc.org/release/manualpages/Mat/MatSetFactorType.html#MatSetFactorType
man:+MatGetInfo++MatGetInfo++++man+https://petsc.org/release/manualpages/Mat/MatGetInfo.html#MatGetInfo
man:+MatLUFactor++MatLUFactor++++man+https://petsc.org/release/manualpages/Mat/MatLUFactor.html#MatLUFactor
man:+MatILUFactor++MatILUFactor++++man+https://petsc.org/release/manualpages/Mat/MatILUFactor.html#MatILUFactor
man:+MatLUFactorSymbolic++MatLUFactorSymbolic++++man+https://petsc.org/release/manualpages/Mat/MatLUFactorSymbolic.html#MatLUFactorSymbolic
man:+MatLUFactorNumeric++MatLUFactorNumeric++++man+https://petsc.org/release/manualpages/Mat/MatLUFactorNumeric.html#MatLUFactorNumeric
man:+MatCholeskyFactor++MatCholeskyFactor++++man+https://petsc.org/release/manualpages/Mat/MatCholeskyFactor.html#MatCholeskyFactor
man:+MatCholeskyFactorSymbolic++MatCholeskyFactorSymbolic++++man+https://petsc.org/release/manualpages/Mat/MatCholeskyFactorSymbolic.html#MatCholeskyFactorSymbolic
man:+MatCholeskyFactorNumeric++MatCholeskyFactorNumeric++++man+https://petsc.org/release/manualpages/Mat/MatCholeskyFactorNumeric.html#MatCholeskyFactorNumeric
man:+MatQRFactor++MatQRFactor++++man+https://petsc.org/release/manualpages/Mat/MatQRFactor.html#MatQRFactor
man:+MatQRFactorSymbolic++MatQRFactorSymbolic++++man+https://petsc.org/release/manualpages/Mat/MatQRFactorSymbolic.html#MatQRFactorSymbolic
man:+MatQRFactorNumeric++MatQRFactorNumeric++++man+https://petsc.org/release/manualpages/Mat/MatQRFactorNumeric.html#MatQRFactorNumeric
man:+MatSolve++MatSolve++++man+https://petsc.org/release/manualpages/Mat/MatSolve.html#MatSolve
man:+MatMatSolve++MatMatSolve++++man+https://petsc.org/release/manualpages/Mat/MatMatSolve.html#MatMatSolve
man:+MatMatSolveTranspose++MatMatSolveTranspose++++man+https://petsc.org/release/manualpages/Mat/MatMatSolveTranspose.html#MatMatSolveTranspose
man:+MatMatTransposeSolve++MatMatTransposeSolve++++man+https://petsc.org/release/manualpages/Mat/MatMatTransposeSolve.html#MatMatTransposeSolve
man:+MatForwardSolve++MatForwardSolve++++man+https://petsc.org/release/manualpages/Mat/MatForwardSolve.html#MatForwardSolve
man:+MatBackwardSolve++MatBackwardSolve++++man+https://petsc.org/release/manualpages/Mat/MatBackwardSolve.html#MatBackwardSolve
man:+MatSolveAdd++MatSolveAdd++++man+https://petsc.org/release/manualpages/Mat/MatSolveAdd.html#MatSolveAdd
man:+MatSolveTranspose++MatSolveTranspose++++man+https://petsc.org/release/manualpages/Mat/MatSolveTranspose.html#MatSolveTranspose
man:+MatSolveTransposeAdd++MatSolveTransposeAdd++++man+https://petsc.org/release/manualpages/Mat/MatSolveTransposeAdd.html#MatSolveTransposeAdd
man:+MatSOR++MatSOR++++man+https://petsc.org/release/manualpages/Mat/MatSOR.html#MatSOR
man:+MatCopy++MatCopy++++man+https://petsc.org/release/manualpages/Mat/MatCopy.html#MatCopy
man:+MatConvert++MatConvert++++man+https://petsc.org/release/manualpages/Mat/MatConvert.html#MatConvert
man:+MatFactorGetSolverType++MatFactorGetSolverType++++man+https://petsc.org/release/manualpages/Mat/MatFactorGetSolverType.html#MatFactorGetSolverType
man:+MatSolverTypeRegister++MatSolverTypeRegister++++man+https://petsc.org/release/manualpages/Mat/MatSolverTypeRegister.html#MatSolverTypeRegister
man:+MatSolverTypeGet++MatSolverTypeGet++++man+https://petsc.org/release/manualpages/Mat/MatSolverTypeGet.html#MatSolverTypeGet
man:+MatFactorGetCanUseOrdering++MatFactorGetCanUseOrdering++++man+https://petsc.org/release/manualpages/Mat/MatFactorGetCanUseOrdering.html#MatFactorGetCanUseOrdering
man:+MatFactorGetPreferredOrdering++MatFactorGetPreferredOrdering++++man+https://petsc.org/release/manualpages/Mat/MatFactorGetPreferredOrdering.html#MatFactorGetPreferredOrdering
man:+MatGetFactor++MatGetFactor++++man+https://petsc.org/release/manualpages/Mat/MatGetFactor.html#MatGetFactor
man:+MatGetFactorAvailable++MatGetFactorAvailable++++man+https://petsc.org/release/manualpages/Mat/MatGetFactorAvailable.html#MatGetFactorAvailable
man:+MatDuplicate++MatDuplicate++++man+https://petsc.org/release/manualpages/Mat/MatDuplicate.html#MatDuplicate
man:+MatGetDiagonal++MatGetDiagonal++++man+https://petsc.org/release/manualpages/Mat/MatGetDiagonal.html#MatGetDiagonal
man:+MatGetRowMin++MatGetRowMin++++man+https://petsc.org/release/manualpages/Mat/MatGetRowMin.html#MatGetRowMin
man:+MatGetRowMinAbs++MatGetRowMinAbs++++man+https://petsc.org/release/manualpages/Mat/MatGetRowMinAbs.html#MatGetRowMinAbs
man:+MatGetRowMax++MatGetRowMax++++man+https://petsc.org/release/manualpages/Mat/MatGetRowMax.html#MatGetRowMax
man:+MatGetRowMaxAbs++MatGetRowMaxAbs++++man+https://petsc.org/release/manualpages/Mat/MatGetRowMaxAbs.html#MatGetRowMaxAbs
man:+MatGetRowSumAbs++MatGetRowSumAbs++++man+https://petsc.org/release/manualpages/Mat/MatGetRowSumAbs.html#MatGetRowSumAbs
man:+MatGetRowSum++MatGetRowSum++++man+https://petsc.org/release/manualpages/Mat/MatGetRowSum.html#MatGetRowSum
man:+MatTransposeSetPrecursor++MatTransposeSetPrecursor++++man+https://petsc.org/release/manualpages/Mat/MatTransposeSetPrecursor.html#MatTransposeSetPrecursor
man:+MatTranspose++MatTranspose++++man+https://petsc.org/release/manualpages/Mat/MatTranspose.html#MatTranspose
man:+MatTransposeSymbolic++MatTransposeSymbolic++++man+https://petsc.org/release/manualpages/Mat/MatTransposeSymbolic.html#MatTransposeSymbolic
man:+MatIsTranspose++MatIsTranspose++++man+https://petsc.org/release/manualpages/Mat/MatIsTranspose.html#MatIsTranspose
man:+MatHermitianTranspose++MatHermitianTranspose++++man+https://petsc.org/release/manualpages/Mat/MatHermitianTranspose.html#MatHermitianTranspose
man:+MatIsHermitianTranspose++MatIsHermitianTranspose++++man+https://petsc.org/release/manualpages/Mat/MatIsHermitianTranspose.html#MatIsHermitianTranspose
man:+MatPermute++MatPermute++++man+https://petsc.org/release/manualpages/Mat/MatPermute.html#MatPermute
man:+MatEqual++MatEqual++++man+https://petsc.org/release/manualpages/Mat/MatEqual.html#MatEqual
man:+MatDiagonalScale++MatDiagonalScale++++man+https://petsc.org/release/manualpages/Mat/MatDiagonalScale.html#MatDiagonalScale
man:+MatScale++MatScale++++man+https://petsc.org/release/manualpages/Mat/MatScale.html#MatScale
man:+MatNorm++MatNorm++++man+https://petsc.org/release/manualpages/Mat/MatNorm.html#MatNorm
man:+MatAssemblyBegin++MatAssemblyBegin++++man+https://petsc.org/release/manualpages/Mat/MatAssemblyBegin.html#MatAssemblyBegin
man:+MatAssembled++MatAssembled++++man+https://petsc.org/release/manualpages/Mat/MatAssembled.html#MatAssembled
man:+MatAssemblyEnd++MatAssemblyEnd++++man+https://petsc.org/release/manualpages/Mat/MatAssemblyEnd.html#MatAssemblyEnd
man:+MatSetOption++MatSetOption++++man+https://petsc.org/release/manualpages/Mat/MatSetOption.html#MatSetOption
man:+MatGetOption++MatGetOption++++man+https://petsc.org/release/manualpages/Mat/MatGetOption.html#MatGetOption
man:+MatZeroEntries++MatZeroEntries++++man+https://petsc.org/release/manualpages/Mat/MatZeroEntries.html#MatZeroEntries
man:+MatZeroRowsColumns++MatZeroRowsColumns++++man+https://petsc.org/release/manualpages/Mat/MatZeroRowsColumns.html#MatZeroRowsColumns
man:+MatZeroRowsColumnsIS++MatZeroRowsColumnsIS++++man+https://petsc.org/release/manualpages/Mat/MatZeroRowsColumnsIS.html#MatZeroRowsColumnsIS
man:+MatZeroRows++MatZeroRows++++man+https://petsc.org/release/manualpages/Mat/MatZeroRows.html#MatZeroRows
man:+MatZeroRowsIS++MatZeroRowsIS++++man+https://petsc.org/release/manualpages/Mat/MatZeroRowsIS.html#MatZeroRowsIS
man:+MatZeroRowsStencil++MatZeroRowsStencil++++man+https://petsc.org/release/manualpages/Mat/MatZeroRowsStencil.html#MatZeroRowsStencil
man:+MatZeroRowsColumnsStencil++MatZeroRowsColumnsStencil++++man+https://petsc.org/release/manualpages/Mat/MatZeroRowsColumnsStencil.html#MatZeroRowsColumnsStencil
man:+MatZeroRowsLocal++MatZeroRowsLocal++++man+https://petsc.org/release/manualpages/Mat/MatZeroRowsLocal.html#MatZeroRowsLocal
man:+MatZeroRowsLocalIS++MatZeroRowsLocalIS++++man+https://petsc.org/release/manualpages/Mat/MatZeroRowsLocalIS.html#MatZeroRowsLocalIS
man:+MatZeroRowsColumnsLocal++MatZeroRowsColumnsLocal++++man+https://petsc.org/release/manualpages/Mat/MatZeroRowsColumnsLocal.html#MatZeroRowsColumnsLocal
man:+MatZeroRowsColumnsLocalIS++MatZeroRowsColumnsLocalIS++++man+https://petsc.org/release/manualpages/Mat/MatZeroRowsColumnsLocalIS.html#MatZeroRowsColumnsLocalIS
man:+MatGetSize++MatGetSize++++man+https://petsc.org/release/manualpages/Mat/MatGetSize.html#MatGetSize
man:+MatGetLocalSize++MatGetLocalSize++++man+https://petsc.org/release/manualpages/Mat/MatGetLocalSize.html#MatGetLocalSize
man:+MatGetOwnershipRangeColumn++MatGetOwnershipRangeColumn++++man+https://petsc.org/release/manualpages/Mat/MatGetOwnershipRangeColumn.html#MatGetOwnershipRangeColumn
man:+MatGetOwnershipRange++MatGetOwnershipRange++++man+https://petsc.org/release/manualpages/Mat/MatGetOwnershipRange.html#MatGetOwnershipRange
man:+MatGetOwnershipRanges++MatGetOwnershipRanges++++man+https://petsc.org/release/manualpages/Mat/MatGetOwnershipRanges.html#MatGetOwnershipRanges
man:+MatGetOwnershipRangesColumn++MatGetOwnershipRangesColumn++++man+https://petsc.org/release/manualpages/Mat/MatGetOwnershipRangesColumn.html#MatGetOwnershipRangesColumn
man:+MatGetOwnershipIS++MatGetOwnershipIS++++man+https://petsc.org/release/manualpages/Mat/MatGetOwnershipIS.html#MatGetOwnershipIS
man:+MatILUFactorSymbolic++MatILUFactorSymbolic++++man+https://petsc.org/release/manualpages/Mat/MatILUFactorSymbolic.html#MatILUFactorSymbolic
man:+MatICCFactorSymbolic++MatICCFactorSymbolic++++man+https://petsc.org/release/manualpages/Mat/MatICCFactorSymbolic.html#MatICCFactorSymbolic
man:+MatCreateSubMatrices++MatCreateSubMatrices++++man+https://petsc.org/release/manualpages/Mat/MatCreateSubMatrices.html#MatCreateSubMatrices
man:+MatCreateSubMatricesMPI++MatCreateSubMatricesMPI++++man+https://petsc.org/release/manualpages/Mat/MatCreateSubMatricesMPI.html#MatCreateSubMatricesMPI
man:+MatDestroyMatrices++MatDestroyMatrices++++man+https://petsc.org/release/manualpages/Mat/MatDestroyMatrices.html#MatDestroyMatrices
man:+MatDestroySubMatrices++MatDestroySubMatrices++++man+https://petsc.org/release/manualpages/Mat/MatDestroySubMatrices.html#MatDestroySubMatrices
man:+MatGetSeqNonzeroStructure++MatGetSeqNonzeroStructure++++man+https://petsc.org/release/manualpages/Mat/MatGetSeqNonzeroStructure.html#MatGetSeqNonzeroStructure
man:+MatDestroySeqNonzeroStructure++MatDestroySeqNonzeroStructure++++man+https://petsc.org/release/manualpages/Mat/MatDestroySeqNonzeroStructure.html#MatDestroySeqNonzeroStructure
man:+MatIncreaseOverlap++MatIncreaseOverlap++++man+https://petsc.org/release/manualpages/Mat/MatIncreaseOverlap.html#MatIncreaseOverlap
man:+MatIncreaseOverlapSplit++MatIncreaseOverlapSplit++++man+https://petsc.org/release/manualpages/Mat/MatIncreaseOverlapSplit.html#MatIncreaseOverlapSplit
man:+MatGetBlockSize++MatGetBlockSize++++man+https://petsc.org/release/manualpages/Mat/MatGetBlockSize.html#MatGetBlockSize
man:+MatGetBlockSizes++MatGetBlockSizes++++man+https://petsc.org/release/manualpages/Mat/MatGetBlockSizes.html#MatGetBlockSizes
man:+MatSetBlockSize++MatSetBlockSize++++man+https://petsc.org/release/manualpages/Mat/MatSetBlockSize.html#MatSetBlockSize
man:+MatComputeVariableBlockEnvelope++MatComputeVariableBlockEnvelope++++man+https://petsc.org/release/manualpages/Mat/MatComputeVariableBlockEnvelope.html#MatComputeVariableBlockEnvelope
man:+MatInvertVariableBlockEnvelope++MatInvertVariableBlockEnvelope++++man+https://petsc.org/release/manualpages/Mat/MatInvertVariableBlockEnvelope.html#MatInvertVariableBlockEnvelope
man:+MatSetVariableBlockSizes++MatSetVariableBlockSizes++++man+https://petsc.org/release/manualpages/Mat/MatSetVariableBlockSizes.html#MatSetVariableBlockSizes
man:+MatGetVariableBlockSizes++MatGetVariableBlockSizes++++man+https://petsc.org/release/manualpages/Mat/MatGetVariableBlockSizes.html#MatGetVariableBlockSizes
man:+MatSetBlockSizes++MatSetBlockSizes++++man+https://petsc.org/release/manualpages/Mat/MatSetBlockSizes.html#MatSetBlockSizes
man:+MatSetBlockSizesFromMats++MatSetBlockSizesFromMats++++man+https://petsc.org/release/manualpages/Mat/MatSetBlockSizesFromMats.html#MatSetBlockSizesFromMats
man:+MatResidual++MatResidual++++man+https://petsc.org/release/manualpages/Mat/MatResidual.html#MatResidual
man:+MatGetRowIJ++MatGetRowIJ++++man+https://petsc.org/release/manualpages/Mat/MatGetRowIJ.html#MatGetRowIJ
man:+MatGetColumnIJ++MatGetColumnIJ++++man+https://petsc.org/release/manualpages/Mat/MatGetColumnIJ.html#MatGetColumnIJ
man:+MatRestoreRowIJ++MatRestoreRowIJ++++man+https://petsc.org/release/manualpages/Mat/MatRestoreRowIJ.html#MatRestoreRowIJ
man:+MatRestoreColumnIJ++MatRestoreColumnIJ++++man+https://petsc.org/release/manualpages/Mat/MatRestoreColumnIJ.html#MatRestoreColumnIJ
man:+MatColoringPatch++MatColoringPatch++++man+https://petsc.org/release/manualpages/Mat/MatColoringPatch.html#MatColoringPatch
man:+MatSetUnfactored++MatSetUnfactored++++man+https://petsc.org/release/manualpages/Mat/MatSetUnfactored.html#MatSetUnfactored
man:+MatCreateSubMatrix++MatCreateSubMatrix++++man+https://petsc.org/release/manualpages/Mat/MatCreateSubMatrix.html#MatCreateSubMatrix
man:+MatPropagateSymmetryOptions++MatPropagateSymmetryOptions++++man+https://petsc.org/release/manualpages/Mat/MatPropagateSymmetryOptions.html#MatPropagateSymmetryOptions
man:+MatStashSetInitialSize++MatStashSetInitialSize++++man+https://petsc.org/release/manualpages/Mat/MatStashSetInitialSize.html#MatStashSetInitialSize
man:+MatInterpolateAdd++MatInterpolateAdd++++man+https://petsc.org/release/manualpages/Mat/MatInterpolateAdd.html#MatInterpolateAdd
man:+MatInterpolate++MatInterpolate++++man+https://petsc.org/release/manualpages/Mat/MatInterpolate.html#MatInterpolate
man:+MatRestrict++MatRestrict++++man+https://petsc.org/release/manualpages/Mat/MatRestrict.html#MatRestrict
man:+MatMatInterpolateAdd++MatMatInterpolateAdd++++man+https://petsc.org/release/manualpages/Mat/MatMatInterpolateAdd.html#MatMatInterpolateAdd
man:+MatMatInterpolate++MatMatInterpolate++++man+https://petsc.org/release/manualpages/Mat/MatMatInterpolate.html#MatMatInterpolate
man:+MatMatRestrict++MatMatRestrict++++man+https://petsc.org/release/manualpages/Mat/MatMatRestrict.html#MatMatRestrict
man:+MatGetNullSpace++MatGetNullSpace++++man+https://petsc.org/release/manualpages/Mat/MatGetNullSpace.html#MatGetNullSpace
man:+MatGetNullSpaces++MatGetNullSpaces++++man+https://petsc.org/release/manualpages/Mat/MatGetNullSpaces.html#MatGetNullSpaces
man:+MatRestoreNullSpaces++MatRestoreNullSpaces++++man+https://petsc.org/release/manualpages/Mat/MatRestoreNullSpaces.html#MatRestoreNullSpaces
man:+MatSetNullSpace++MatSetNullSpace++++man+https://petsc.org/release/manualpages/Mat/MatSetNullSpace.html#MatSetNullSpace
man:+MatGetTransposeNullSpace++MatGetTransposeNullSpace++++man+https://petsc.org/release/manualpages/Mat/MatGetTransposeNullSpace.html#MatGetTransposeNullSpace
man:+MatSetTransposeNullSpace++MatSetTransposeNullSpace++++man+https://petsc.org/release/manualpages/Mat/MatSetTransposeNullSpace.html#MatSetTransposeNullSpace
man:+MatSetNearNullSpace++MatSetNearNullSpace++++man+https://petsc.org/release/manualpages/Mat/MatSetNearNullSpace.html#MatSetNearNullSpace
man:+MatGetNearNullSpace++MatGetNearNullSpace++++man+https://petsc.org/release/manualpages/Mat/MatGetNearNullSpace.html#MatGetNearNullSpace
man:+MatICCFactor++MatICCFactor++++man+https://petsc.org/release/manualpages/Mat/MatICCFactor.html#MatICCFactor
man:+MatDiagonalScaleLocal++MatDiagonalScaleLocal++++man+https://petsc.org/release/manualpages/Mat/MatDiagonalScaleLocal.html#MatDiagonalScaleLocal
man:+MatGetInertia++MatGetInertia++++man+https://petsc.org/release/manualpages/Mat/MatGetInertia.html#MatGetInertia
man:+MatSolves++MatSolves++++man+https://petsc.org/release/manualpages/Mat/MatSolves.html#MatSolves
man:+MatIsSymmetric++MatIsSymmetric++++man+https://petsc.org/release/manualpages/Mat/MatIsSymmetric.html#MatIsSymmetric
man:+MatIsHermitian++MatIsHermitian++++man+https://petsc.org/release/manualpages/Mat/MatIsHermitian.html#MatIsHermitian
man:+MatIsSymmetricKnown++MatIsSymmetricKnown++++man+https://petsc.org/release/manualpages/Mat/MatIsSymmetricKnown.html#MatIsSymmetricKnown
man:+MatIsSPDKnown++MatIsSPDKnown++++man+https://petsc.org/release/manualpages/Mat/MatIsSPDKnown.html#MatIsSPDKnown
man:+MatIsHermitianKnown++MatIsHermitianKnown++++man+https://petsc.org/release/manualpages/Mat/MatIsHermitianKnown.html#MatIsHermitianKnown
man:+MatIsStructurallySymmetric++MatIsStructurallySymmetric++++man+https://petsc.org/release/manualpages/Mat/MatIsStructurallySymmetric.html#MatIsStructurallySymmetric
man:+MatIsStructurallySymmetricKnown++MatIsStructurallySymmetricKnown++++man+https://petsc.org/release/manualpages/Mat/MatIsStructurallySymmetricKnown.html#MatIsStructurallySymmetricKnown
man:+MatStashGetInfo++MatStashGetInfo++++man+https://petsc.org/release/manualpages/Mat/MatStashGetInfo.html#MatStashGetInfo
man:+MatCreateVecs++MatCreateVecs++++man+https://petsc.org/release/manualpages/Mat/MatCreateVecs.html#MatCreateVecs
man:+MatFactorInfoInitialize++MatFactorInfoInitialize++++man+https://petsc.org/release/manualpages/Mat/MatFactorInfoInitialize.html#MatFactorInfoInitialize
man:+MatFactorSetSchurIS++MatFactorSetSchurIS++++man+https://petsc.org/release/manualpages/Mat/MatFactorSetSchurIS.html#MatFactorSetSchurIS
man:+MatFactorCreateSchurComplement++MatFactorCreateSchurComplement++++man+https://petsc.org/release/manualpages/Mat/MatFactorCreateSchurComplement.html#MatFactorCreateSchurComplement
man:+MatFactorGetSchurComplement++MatFactorGetSchurComplement++++man+https://petsc.org/release/manualpages/Mat/MatFactorGetSchurComplement.html#MatFactorGetSchurComplement
man:+MatFactorRestoreSchurComplement++MatFactorRestoreSchurComplement++++man+https://petsc.org/release/manualpages/Mat/MatFactorRestoreSchurComplement.html#MatFactorRestoreSchurComplement
man:+MatFactorSolveSchurComplementTranspose++MatFactorSolveSchurComplementTranspose++++man+https://petsc.org/release/manualpages/Mat/MatFactorSolveSchurComplementTranspose.html#MatFactorSolveSchurComplementTranspose
man:+MatFactorSolveSchurComplement++MatFactorSolveSchurComplement++++man+https://petsc.org/release/manualpages/Mat/MatFactorSolveSchurComplement.html#MatFactorSolveSchurComplement
man:+MatFactorInvertSchurComplement++MatFactorInvertSchurComplement++++man+https://petsc.org/release/manualpages/Mat/MatFactorInvertSchurComplement.html#MatFactorInvertSchurComplement
man:+MatFactorFactorizeSchurComplement++MatFactorFactorizeSchurComplement++++man+https://petsc.org/release/manualpages/Mat/MatFactorFactorizeSchurComplement.html#MatFactorFactorizeSchurComplement
man:+MatPtAP++MatPtAP++++man+https://petsc.org/release/manualpages/Mat/MatPtAP.html#MatPtAP
man:+MatRARt++MatRARt++++man+https://petsc.org/release/manualpages/Mat/MatRARt.html#MatRARt
man:+MatMatMult++MatMatMult++++man+https://petsc.org/release/manualpages/Mat/MatMatMult.html#MatMatMult
man:+MatMatTransposeMult++MatMatTransposeMult++++man+https://petsc.org/release/manualpages/Mat/MatMatTransposeMult.html#MatMatTransposeMult
man:+MatTransposeMatMult++MatTransposeMatMult++++man+https://petsc.org/release/manualpages/Mat/MatTransposeMatMult.html#MatTransposeMatMult
man:+MatMatMatMult++MatMatMatMult++++man+https://petsc.org/release/manualpages/Mat/MatMatMatMult.html#MatMatMatMult
man:+MatCreateRedundantMatrix++MatCreateRedundantMatrix++++man+https://petsc.org/release/manualpages/Mat/MatCreateRedundantMatrix.html#MatCreateRedundantMatrix
man:+MatGetMultiProcBlock++MatGetMultiProcBlock++++man+https://petsc.org/release/manualpages/Mat/MatGetMultiProcBlock.html#MatGetMultiProcBlock
man:+MatGetLocalSubMatrix++MatGetLocalSubMatrix++++man+https://petsc.org/release/manualpages/Mat/MatGetLocalSubMatrix.html#MatGetLocalSubMatrix
man:+MatRestoreLocalSubMatrix++MatRestoreLocalSubMatrix++++man+https://petsc.org/release/manualpages/Mat/MatRestoreLocalSubMatrix.html#MatRestoreLocalSubMatrix
man:+MatFindZeroDiagonals++MatFindZeroDiagonals++++man+https://petsc.org/release/manualpages/Mat/MatFindZeroDiagonals.html#MatFindZeroDiagonals
man:+MatFindOffBlockDiagonalEntries++MatFindOffBlockDiagonalEntries++++man+https://petsc.org/release/manualpages/Mat/MatFindOffBlockDiagonalEntries.html#MatFindOffBlockDiagonalEntries
man:+MatInvertBlockDiagonal++MatInvertBlockDiagonal++++man+https://petsc.org/release/manualpages/Mat/MatInvertBlockDiagonal.html#MatInvertBlockDiagonal
man:+MatInvertVariableBlockDiagonal++MatInvertVariableBlockDiagonal++++man+https://petsc.org/release/manualpages/Mat/MatInvertVariableBlockDiagonal.html#MatInvertVariableBlockDiagonal
man:+MatInvertBlockDiagonalMat++MatInvertBlockDiagonalMat++++man+https://petsc.org/release/manualpages/Mat/MatInvertBlockDiagonalMat.html#MatInvertBlockDiagonalMat
man:+MatTransposeColoringDestroy++MatTransposeColoringDestroy++++man+https://petsc.org/release/manualpages/Mat/MatTransposeColoringDestroy.html#MatTransposeColoringDestroy
man:+MatTransColoringApplySpToDen++MatTransColoringApplySpToDen++++man+https://petsc.org/release/manualpages/Mat/MatTransColoringApplySpToDen.html#MatTransColoringApplySpToDen
man:+MatTransColoringApplyDenToSp++MatTransColoringApplyDenToSp++++man+https://petsc.org/release/manualpages/Mat/MatTransColoringApplyDenToSp.html#MatTransColoringApplyDenToSp
man:+MatTransposeColoringCreate++MatTransposeColoringCreate++++man+https://petsc.org/release/manualpages/Mat/MatTransposeColoringCreate.html#MatTransposeColoringCreate
man:+MatGetNonzeroState++MatGetNonzeroState++++man+https://petsc.org/release/manualpages/Mat/MatGetNonzeroState.html#MatGetNonzeroState
man:+MatCreateMPIMatConcatenateSeqMat++MatCreateMPIMatConcatenateSeqMat++++man+https://petsc.org/release/manualpages/Mat/MatCreateMPIMatConcatenateSeqMat.html#MatCreateMPIMatConcatenateSeqMat
man:+MatSubdomainsCreateCoalesce++MatSubdomainsCreateCoalesce++++man+https://petsc.org/release/manualpages/Mat/MatSubdomainsCreateCoalesce.html#MatSubdomainsCreateCoalesce
man:+MatGalerkin++MatGalerkin++++man+https://petsc.org/release/manualpages/Mat/MatGalerkin.html#MatGalerkin
man:+MatSetOperation++MatSetOperation++++man+https://petsc.org/release/manualpages/Mat/MatSetOperation.html#MatSetOperation
man:+MatGetOperation++MatGetOperation++++man+https://petsc.org/release/manualpages/Mat/MatGetOperation.html#MatGetOperation
man:+MatHasOperation++MatHasOperation++++man+https://petsc.org/release/manualpages/Mat/MatHasOperation.html#MatHasOperation
man:+MatHasCongruentLayouts++MatHasCongruentLayouts++++man+https://petsc.org/release/manualpages/Mat/MatHasCongruentLayouts.html#MatHasCongruentLayouts
man:+MatCreateGraph++MatCreateGraph++++man+https://petsc.org/release/manualpages/Mat/MatCreateGraph.html#MatCreateGraph
man:+MatEliminateZeros++MatEliminateZeros++++man+https://petsc.org/release/manualpages/Mat/MatEliminateZeros.html#MatEliminateZeros
man:+MatRegisterAll++MatRegisterAll++++man+https://petsc.org/release/manualpages/Mat/MatRegisterAll.html#MatRegisterAll
man:+MatFDColoringView++MatFDColoringView++++man+https://petsc.org/release/manualpages/MatFD/MatFDColoringView.html#MatFDColoringView
man:+MatFDColoringSetParameters++MatFDColoringSetParameters++++man+https://petsc.org/release/manualpages/MatFD/MatFDColoringSetParameters.html#MatFDColoringSetParameters
man:+MatFDColoringSetBlockSize++MatFDColoringSetBlockSize++++man+https://petsc.org/release/manualpages/MatFD/MatFDColoringSetBlockSize.html#MatFDColoringSetBlockSize
man:+MatFDColoringSetUp++MatFDColoringSetUp++++man+https://petsc.org/release/manualpages/MatFD/MatFDColoringSetUp.html#MatFDColoringSetUp
man:+MatFDColoringGetFunction++MatFDColoringGetFunction++++man+https://petsc.org/release/manualpages/MatFD/MatFDColoringGetFunction.html#MatFDColoringGetFunction
man:+MatFDColoringSetFunction++MatFDColoringSetFunction++++man+https://petsc.org/release/manualpages/MatFD/MatFDColoringSetFunction.html#MatFDColoringSetFunction
man:+MatFDColoringSetFromOptions++MatFDColoringSetFromOptions++++man+https://petsc.org/release/manualpages/MatFD/MatFDColoringSetFromOptions.html#MatFDColoringSetFromOptions
man:+MatFDColoringSetType++MatFDColoringSetType++++man+https://petsc.org/release/manualpages/MatFD/MatFDColoringSetType.html#MatFDColoringSetType
man:+MatFDColoringCreate++MatFDColoringCreate++++man+https://petsc.org/release/manualpages/MatFD/MatFDColoringCreate.html#MatFDColoringCreate
man:+MatFDColoringDestroy++MatFDColoringDestroy++++man+https://petsc.org/release/manualpages/MatFD/MatFDColoringDestroy.html#MatFDColoringDestroy
man:+MatFDColoringGetPerturbedColumns++MatFDColoringGetPerturbedColumns++++man+https://petsc.org/release/manualpages/MatFD/MatFDColoringGetPerturbedColumns.html#MatFDColoringGetPerturbedColumns
man:+MatFDColoringApply++MatFDColoringApply++++man+https://petsc.org/release/manualpages/MatFD/MatFDColoringApply.html#MatFDColoringApply
man:+MatScaLAPACKSetBlockSizes++MatScaLAPACKSetBlockSizes++++man+https://petsc.org/release/manualpages/Mat/MatScaLAPACKSetBlockSizes.html#MatScaLAPACKSetBlockSizes
man:+MatScaLAPACKGetBlockSizes++MatScaLAPACKGetBlockSizes++++man+https://petsc.org/release/manualpages/Mat/MatScaLAPACKGetBlockSizes.html#MatScaLAPACKGetBlockSizes
man:+MATSCALAPACK++MATSCALAPACK++++man+https://petsc.org/release/manualpages/Mat/MATSCALAPACK.html#MATSCALAPACK
man:+MatCreateScaLAPACK++MatCreateScaLAPACK++++man+https://petsc.org/release/manualpages/Mat/MatCreateScaLAPACK.html#MatCreateScaLAPACK
man:+MATSELL++MATSELL++++man+https://petsc.org/release/manualpages/Mat/MATSELL.html#MATSELL
man:+MatMPISELLSetPreallocation++MatMPISELLSetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatMPISELLSetPreallocation.html#MatMPISELLSetPreallocation
man:+MATMPISELL++MATMPISELL++++man+https://petsc.org/release/manualpages/Mat/MATMPISELL.html#MATMPISELL
man:+MatCreateSELL++MatCreateSELL++++man+https://petsc.org/release/manualpages/Mat/MatCreateSELL.html#MatCreateSELL
man:+MatMPISELLGetSeqSELL++MatMPISELLGetSeqSELL++++man+https://petsc.org/release/manualpages/Mat/MatMPISELLGetSeqSELL.html#MatMPISELLGetSeqSELL
man:+MatMPISELLGetLocalMatCondensed++MatMPISELLGetLocalMatCondensed++++man+https://petsc.org/release/manualpages/Mat/MatMPISELLGetLocalMatCondensed.html#MatMPISELLGetLocalMatCondensed
man:+MATMPISELL++MATMPISELL++++man+https://petsc.org/release/manualpages/Mat/MATMPISELL.html#MATMPISELL
man:+MatSeqSELLSetPreallocation++MatSeqSELLSetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatSeqSELLSetPreallocation.html#MatSeqSELLSetPreallocation
man:+MatSeqSELLGetFillRatio++MatSeqSELLGetFillRatio++++man+https://petsc.org/release/manualpages/Mat/MatSeqSELLGetFillRatio.html#MatSeqSELLGetFillRatio
man:+MatSeqSELLGetMaxSliceWidth++MatSeqSELLGetMaxSliceWidth++++man+https://petsc.org/release/manualpages/Mat/MatSeqSELLGetMaxSliceWidth.html#MatSeqSELLGetMaxSliceWidth
man:+MatSeqSELLGetAvgSliceWidth++MatSeqSELLGetAvgSliceWidth++++man+https://petsc.org/release/manualpages/Mat/MatSeqSELLGetAvgSliceWidth.html#MatSeqSELLGetAvgSliceWidth
man:+MatSeqSELLSetSliceHeight++MatSeqSELLSetSliceHeight++++man+https://petsc.org/release/manualpages/Mat/MatSeqSELLSetSliceHeight.html#MatSeqSELLSetSliceHeight
man:+MatSeqSELLGetVarSliceSize++MatSeqSELLGetVarSliceSize++++man+https://petsc.org/release/manualpages/Mat/MatSeqSELLGetVarSliceSize.html#MatSeqSELLGetVarSliceSize
man:+MATSEQSELL++MATSEQSELL++++man+https://petsc.org/release/manualpages/Mat/MATSEQSELL.html#MATSEQSELL
man:+MATSELL++MATSELL++++man+https://petsc.org/release/manualpages/Mat/MATSELL.html#MATSELL
man:+MatCreateSeqSELL++MatCreateSeqSELL++++man+https://petsc.org/release/manualpages/Mat/MatCreateSeqSELL.html#MatCreateSeqSELL
man:+MatPreallocatorPreallocate++MatPreallocatorPreallocate++++man+https://petsc.org/release/manualpages/Mat/MatPreallocatorPreallocate.html#MatPreallocatorPreallocate
man:+MATPREALLOCATOR++MATPREALLOCATOR++++man+https://petsc.org/release/manualpages/Mat/MATPREALLOCATOR.html#MATPREALLOCATOR
man:+MATDUMMY++MATDUMMY++++man+https://petsc.org/release/manualpages/Mat/MATDUMMY.html#MATDUMMY
man:+MatCreateConstantDiagonal++MatCreateConstantDiagonal++++man+https://petsc.org/release/manualpages/Mat/MatCreateConstantDiagonal.html#MatCreateConstantDiagonal
man:+MATCONSTANTDIAGONAL++MATCONSTANTDIAGONAL++++man+https://petsc.org/release/manualpages/Mat/MATCONSTANTDIAGONAL.html#MATCONSTANTDIAGONAL
man:+MatMPIBAIJSetPreallocationCSR++MatMPIBAIJSetPreallocationCSR++++man+https://petsc.org/release/manualpages/Mat/MatMPIBAIJSetPreallocationCSR.html#MatMPIBAIJSetPreallocationCSR
man:+MATMPIBAIJ++MATMPIBAIJ++++man+https://petsc.org/release/manualpages/Mat/MATMPIBAIJ.html#MATMPIBAIJ
man:+MATBAIJ++MATBAIJ++++man+https://petsc.org/release/manualpages/Mat/MATBAIJ.html#MATBAIJ
man:+MatMPIBAIJSetPreallocation++MatMPIBAIJSetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatMPIBAIJSetPreallocation.html#MatMPIBAIJSetPreallocation
man:+MatCreateBAIJ++MatCreateBAIJ++++man+https://petsc.org/release/manualpages/Mat/MatCreateBAIJ.html#MatCreateBAIJ
man:+MatMPIBAIJSetHashTableFactor++MatMPIBAIJSetHashTableFactor++++man+https://petsc.org/release/manualpages/Mat/MatMPIBAIJSetHashTableFactor.html#MatMPIBAIJSetHashTableFactor
man:+MatMPIBAIJSetValuesBlocked++MatMPIBAIJSetValuesBlocked++++man+https://petsc.org/release/manualpages/Mat/MatMPIBAIJSetValuesBlocked.html#MatMPIBAIJSetValuesBlocked
man:+MatCreateMPIBAIJWithArrays++MatCreateMPIBAIJWithArrays++++man+https://petsc.org/release/manualpages/Mat/MatCreateMPIBAIJWithArrays.html#MatCreateMPIBAIJWithArrays
man:+MatCreateBAIJMKL++MatCreateBAIJMKL++++man+https://petsc.org/release/manualpages/Mat/MatCreateBAIJMKL.html#MatCreateBAIJMKL
man:+MATBAIJMKL++MATBAIJMKL++++man+https://petsc.org/release/manualpages/Mat/MATBAIJMKL.html#MATBAIJMKL
man:+MatSeqBAIJSetColumnIndices++MatSeqBAIJSetColumnIndices++++man+https://petsc.org/release/manualpages/Mat/MatSeqBAIJSetColumnIndices.html#MatSeqBAIJSetColumnIndices
man:+MatSeqBAIJGetArray++MatSeqBAIJGetArray++++man+https://petsc.org/release/manualpages/Mat/MatSeqBAIJGetArray.html#MatSeqBAIJGetArray
man:+MatSeqBAIJRestoreArray++MatSeqBAIJRestoreArray++++man+https://petsc.org/release/manualpages/Mat/MatSeqBAIJRestoreArray.html#MatSeqBAIJRestoreArray
man:+MATSEQBAIJ++MATSEQBAIJ++++man+https://petsc.org/release/manualpages/Mat/MATSEQBAIJ.html#MATSEQBAIJ
man:+MatCreateSeqBAIJ++MatCreateSeqBAIJ++++man+https://petsc.org/release/manualpages/Mat/MatCreateSeqBAIJ.html#MatCreateSeqBAIJ
man:+MatSeqBAIJSetPreallocation++MatSeqBAIJSetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatSeqBAIJSetPreallocation.html#MatSeqBAIJSetPreallocation
man:+MatSeqBAIJSetPreallocationCSR++MatSeqBAIJSetPreallocationCSR++++man+https://petsc.org/release/manualpages/Mat/MatSeqBAIJSetPreallocationCSR.html#MatSeqBAIJSetPreallocationCSR
man:+MatCreateSeqBAIJWithArrays++MatCreateSeqBAIJWithArrays++++man+https://petsc.org/release/manualpages/Mat/MatCreateSeqBAIJWithArrays.html#MatCreateSeqBAIJWithArrays
man:+MatCreateSeqBAIJMKL++MatCreateSeqBAIJMKL++++man+https://petsc.org/release/manualpages/Mat/MatCreateSeqBAIJMKL.html#MatCreateSeqBAIJMKL
man:+MatPythonSetType++MatPythonSetType++++man+https://petsc.org/release/manualpages/Mat/MatPythonSetType.html#MatPythonSetType
man:+MatPythonGetType++MatPythonGetType++++man+https://petsc.org/release/manualpages/Mat/MatPythonGetType.html#MatPythonGetType
man:+MatPythonCreate++MatPythonCreate++++man+https://petsc.org/release/manualpages/Mat/MatPythonCreate.html#MatPythonCreate
man:+MatCreateLocalRef++MatCreateLocalRef++++man+https://petsc.org/release/manualpages/Mat/MatCreateLocalRef.html#MatCreateLocalRef
man:+MatShellGetContext++MatShellGetContext++++man+https://petsc.org/release/manualpages/Mat/MatShellGetContext.html#MatShellGetContext
man:+MatShellSetMatProductOperation++MatShellSetMatProductOperation++++man+https://petsc.org/release/manualpages/Mat/MatShellSetMatProductOperation.html#MatShellSetMatProductOperation
man:+MATSHELL++MATSHELL++++man+https://petsc.org/release/manualpages/Mat/MATSHELL.html#MATSHELL
man:+MatCreateShell++MatCreateShell++++man+https://petsc.org/release/manualpages/Mat/MatCreateShell.html#MatCreateShell
man:+MatShellSetContext++MatShellSetContext++++man+https://petsc.org/release/manualpages/Mat/MatShellSetContext.html#MatShellSetContext
man:+MatShellSetContextDestroy++MatShellSetContextDestroy++++man+https://petsc.org/release/manualpages/Mat/MatShellSetContextDestroy.html#MatShellSetContextDestroy
man:+MatShellSetVecType++MatShellSetVecType++++man+https://petsc.org/release/manualpages/Mat/MatShellSetVecType.html#MatShellSetVecType
man:+MatShellSetManageScalingShifts++MatShellSetManageScalingShifts++++man+https://petsc.org/release/manualpages/Mat/MatShellSetManageScalingShifts.html#MatShellSetManageScalingShifts
man:+MatShellGetScalingShifts++MatShellGetScalingShifts++++man+https://petsc.org/release/manualpages/Mat/MatShellGetScalingShifts.html#MatShellGetScalingShifts
man:+MatShellTestMult++MatShellTestMult++++man+https://petsc.org/release/manualpages/Mat/MatShellTestMult.html#MatShellTestMult
man:+MatShellTestMultTranspose++MatShellTestMultTranspose++++man+https://petsc.org/release/manualpages/Mat/MatShellTestMultTranspose.html#MatShellTestMultTranspose
man:+MatShellSetOperation++MatShellSetOperation++++man+https://petsc.org/release/manualpages/Mat/MatShellSetOperation.html#MatShellSetOperation
man:+MatShellGetOperation++MatShellGetOperation++++man+https://petsc.org/release/manualpages/Mat/MatShellGetOperation.html#MatShellGetOperation
man:+MatIsShell++MatIsShell++++man+https://petsc.org/release/manualpages/Mat/MatIsShell.html#MatIsShell
man:+MatMAIJGetAIJ++MatMAIJGetAIJ++++man+https://petsc.org/release/manualpages/Mat/MatMAIJGetAIJ.html#MatMAIJGetAIJ
man:+MatMAIJRedimension++MatMAIJRedimension++++man+https://petsc.org/release/manualpages/Mat/MatMAIJRedimension.html#MatMAIJRedimension
man:+MATMAIJ++MATMAIJ++++man+https://petsc.org/release/manualpages/Mat/MATMAIJ.html#MATMAIJ
man:+MatCreateMAIJ++MatCreateMAIJ++++man+https://petsc.org/release/manualpages/Mat/MatCreateMAIJ.html#MatCreateMAIJ
man:+MatISGetAllowRepeated++MatISGetAllowRepeated++++man+https://petsc.org/release/manualpages/Mat/MatISGetAllowRepeated.html#MatISGetAllowRepeated
man:+MatISSetAllowRepeated++MatISSetAllowRepeated++++man+https://petsc.org/release/manualpages/Mat/MatISSetAllowRepeated.html#MatISSetAllowRepeated
man:+MatISStoreL2L++MatISStoreL2L++++man+https://petsc.org/release/manualpages/Mat/MatISStoreL2L.html#MatISStoreL2L
man:+MatISFixLocalEmpty++MatISFixLocalEmpty++++man+https://petsc.org/release/manualpages/Mat/MatISFixLocalEmpty.html#MatISFixLocalEmpty
man:+MatISSetPreallocation++MatISSetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatISSetPreallocation.html#MatISSetPreallocation
man:+MatISGetLocalMat++MatISGetLocalMat++++man+https://petsc.org/release/manualpages/Mat/MatISGetLocalMat.html#MatISGetLocalMat
man:+MatISRestoreLocalMat++MatISRestoreLocalMat++++man+https://petsc.org/release/manualpages/Mat/MatISRestoreLocalMat.html#MatISRestoreLocalMat
man:+MatISSetLocalMatType++MatISSetLocalMatType++++man+https://petsc.org/release/manualpages/Mat/MatISSetLocalMatType.html#MatISSetLocalMatType
man:+MatISSetLocalMat++MatISSetLocalMat++++man+https://petsc.org/release/manualpages/Mat/MatISSetLocalMat.html#MatISSetLocalMat
man:+MatCreateIS++MatCreateIS++++man+https://petsc.org/release/manualpages/Mat/MatCreateIS.html#MatCreateIS
man:+MatISGetLocalToGlobalMapping++MatISGetLocalToGlobalMapping++++man+https://petsc.org/release/manualpages/Mat/MatISGetLocalToGlobalMapping.html#MatISGetLocalToGlobalMapping
man:+MATIS++MATIS++++man+https://petsc.org/release/manualpages/Mat/MATIS.html#MATIS
man:+MatHermitianTransposeGetMat++MatHermitianTransposeGetMat++++man+https://petsc.org/release/manualpages/Mat/MatHermitianTransposeGetMat.html#MatHermitianTransposeGetMat
man:+MATHERMITIANTRANSPOSEVIRTUAL++MATHERMITIANTRANSPOSEVIRTUAL++++man+https://petsc.org/release/manualpages/Mat/MATHERMITIANTRANSPOSEVIRTUAL.html#MATHERMITIANTRANSPOSEVIRTUAL
man:+MatCreateHermitianTranspose++MatCreateHermitianTranspose++++man+https://petsc.org/release/manualpages/Mat/MatCreateHermitianTranspose.html#MatCreateHermitianTranspose
man:+MatTransposeGetMat++MatTransposeGetMat++++man+https://petsc.org/release/manualpages/Mat/MatTransposeGetMat.html#MatTransposeGetMat
man:+MATTRANSPOSEVIRTUAL++MATTRANSPOSEVIRTUAL++++man+https://petsc.org/release/manualpages/Mat/MATTRANSPOSEVIRTUAL.html#MATTRANSPOSEVIRTUAL
man:+MatCreateTranspose++MatCreateTranspose++++man+https://petsc.org/release/manualpages/Mat/MatCreateTranspose.html#MatCreateTranspose
man:+MatDenseGetLocalMatrix++MatDenseGetLocalMatrix++++man+https://petsc.org/release/manualpages/Mat/MatDenseGetLocalMatrix.html#MatDenseGetLocalMatrix
man:+MATMPIDENSE++MATMPIDENSE++++man+https://petsc.org/release/manualpages/Mat/MATMPIDENSE.html#MATMPIDENSE
man:+MATDENSE++MATDENSE++++man+https://petsc.org/release/manualpages/Mat/MATDENSE.html#MATDENSE
man:+MatMPIDenseSetPreallocation++MatMPIDenseSetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatMPIDenseSetPreallocation.html#MatMPIDenseSetPreallocation
man:+MatDensePlaceArray++MatDensePlaceArray++++man+https://petsc.org/release/manualpages/Mat/MatDensePlaceArray.html#MatDensePlaceArray
man:+MatDenseResetArray++MatDenseResetArray++++man+https://petsc.org/release/manualpages/Mat/MatDenseResetArray.html#MatDenseResetArray
man:+MatDenseReplaceArray++MatDenseReplaceArray++++man+https://petsc.org/release/manualpages/Mat/MatDenseReplaceArray.html#MatDenseReplaceArray
man:+MatCreateDense++MatCreateDense++++man+https://petsc.org/release/manualpages/Mat/MatCreateDense.html#MatCreateDense
man:+MatDenseGetLDA++MatDenseGetLDA++++man+https://petsc.org/release/manualpages/Mat/MatDenseGetLDA.html#MatDenseGetLDA
man:+MatDenseSetLDA++MatDenseSetLDA++++man+https://petsc.org/release/manualpages/Mat/MatDenseSetLDA.html#MatDenseSetLDA
man:+MatDenseGetArray++MatDenseGetArray++++man+https://petsc.org/release/manualpages/Mat/MatDenseGetArray.html#MatDenseGetArray
man:+MatDenseRestoreArray++MatDenseRestoreArray++++man+https://petsc.org/release/manualpages/Mat/MatDenseRestoreArray.html#MatDenseRestoreArray
man:+MatDenseGetArrayRead++MatDenseGetArrayRead++++man+https://petsc.org/release/manualpages/Mat/MatDenseGetArrayRead.html#MatDenseGetArrayRead
man:+MatDenseRestoreArrayRead++MatDenseRestoreArrayRead++++man+https://petsc.org/release/manualpages/Mat/MatDenseRestoreArrayRead.html#MatDenseRestoreArrayRead
man:+MatDenseGetArrayWrite++MatDenseGetArrayWrite++++man+https://petsc.org/release/manualpages/Mat/MatDenseGetArrayWrite.html#MatDenseGetArrayWrite
man:+MatDenseRestoreArrayWrite++MatDenseRestoreArrayWrite++++man+https://petsc.org/release/manualpages/Mat/MatDenseRestoreArrayWrite.html#MatDenseRestoreArrayWrite
man:+MatDenseGetArrayAndMemType++MatDenseGetArrayAndMemType++++man+https://petsc.org/release/manualpages/Mat/MatDenseGetArrayAndMemType.html#MatDenseGetArrayAndMemType
man:+MatDenseRestoreArrayAndMemType++MatDenseRestoreArrayAndMemType++++man+https://petsc.org/release/manualpages/Mat/MatDenseRestoreArrayAndMemType.html#MatDenseRestoreArrayAndMemType
man:+MatDenseGetArrayReadAndMemType++MatDenseGetArrayReadAndMemType++++man+https://petsc.org/release/manualpages/Mat/MatDenseGetArrayReadAndMemType.html#MatDenseGetArrayReadAndMemType
man:+MatDenseRestoreArrayReadAndMemType++MatDenseRestoreArrayReadAndMemType++++man+https://petsc.org/release/manualpages/Mat/MatDenseRestoreArrayReadAndMemType.html#MatDenseRestoreArrayReadAndMemType
man:+MatDenseGetArrayWriteAndMemType++MatDenseGetArrayWriteAndMemType++++man+https://petsc.org/release/manualpages/Mat/MatDenseGetArrayWriteAndMemType.html#MatDenseGetArrayWriteAndMemType
man:+MatDenseRestoreArrayWriteAndMemType++MatDenseRestoreArrayWriteAndMemType++++man+https://petsc.org/release/manualpages/Mat/MatDenseRestoreArrayWriteAndMemType.html#MatDenseRestoreArrayWriteAndMemType
man:+MatCreateSeqDense++MatCreateSeqDense++++man+https://petsc.org/release/manualpages/Mat/MatCreateSeqDense.html#MatCreateSeqDense
man:+MatSeqDenseSetPreallocation++MatSeqDenseSetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatSeqDenseSetPreallocation.html#MatSeqDenseSetPreallocation
man:+MATSEQDENSE++MATSEQDENSE++++man+https://petsc.org/release/manualpages/Mat/MATSEQDENSE.html#MATSEQDENSE
man:+MatDenseGetColumn++MatDenseGetColumn++++man+https://petsc.org/release/manualpages/Mat/MatDenseGetColumn.html#MatDenseGetColumn
man:+MatDenseRestoreColumn++MatDenseRestoreColumn++++man+https://petsc.org/release/manualpages/Mat/MatDenseRestoreColumn.html#MatDenseRestoreColumn
man:+MatDenseGetColumnVec++MatDenseGetColumnVec++++man+https://petsc.org/release/manualpages/Mat/MatDenseGetColumnVec.html#MatDenseGetColumnVec
man:+MatDenseRestoreColumnVec++MatDenseRestoreColumnVec++++man+https://petsc.org/release/manualpages/Mat/MatDenseRestoreColumnVec.html#MatDenseRestoreColumnVec
man:+MatDenseGetColumnVecRead++MatDenseGetColumnVecRead++++man+https://petsc.org/release/manualpages/Mat/MatDenseGetColumnVecRead.html#MatDenseGetColumnVecRead
man:+MatDenseRestoreColumnVecRead++MatDenseRestoreColumnVecRead++++man+https://petsc.org/release/manualpages/Mat/MatDenseRestoreColumnVecRead.html#MatDenseRestoreColumnVecRead
man:+MatDenseGetColumnVecWrite++MatDenseGetColumnVecWrite++++man+https://petsc.org/release/manualpages/Mat/MatDenseGetColumnVecWrite.html#MatDenseGetColumnVecWrite
man:+MatDenseRestoreColumnVecWrite++MatDenseRestoreColumnVecWrite++++man+https://petsc.org/release/manualpages/Mat/MatDenseRestoreColumnVecWrite.html#MatDenseRestoreColumnVecWrite
man:+MatDenseGetSubMatrix++MatDenseGetSubMatrix++++man+https://petsc.org/release/manualpages/Mat/MatDenseGetSubMatrix.html#MatDenseGetSubMatrix
man:+MatDenseRestoreSubMatrix++MatDenseRestoreSubMatrix++++man+https://petsc.org/release/manualpages/Mat/MatDenseRestoreSubMatrix.html#MatDenseRestoreSubMatrix
man:+MatCreateComposite++MatCreateComposite++++man+https://petsc.org/release/manualpages/Mat/MatCreateComposite.html#MatCreateComposite
man:+MatCompositeAddMat++MatCompositeAddMat++++man+https://petsc.org/release/manualpages/Mat/MatCompositeAddMat.html#MatCompositeAddMat
man:+MatCompositeSetType++MatCompositeSetType++++man+https://petsc.org/release/manualpages/Mat/MatCompositeSetType.html#MatCompositeSetType
man:+MatCompositeGetType++MatCompositeGetType++++man+https://petsc.org/release/manualpages/Mat/MatCompositeGetType.html#MatCompositeGetType
man:+MatCompositeSetMatStructure++MatCompositeSetMatStructure++++man+https://petsc.org/release/manualpages/Mat/MatCompositeSetMatStructure.html#MatCompositeSetMatStructure
man:+MatCompositeGetMatStructure++MatCompositeGetMatStructure++++man+https://petsc.org/release/manualpages/Mat/MatCompositeGetMatStructure.html#MatCompositeGetMatStructure
man:+MatCompositeSetMergeType++MatCompositeSetMergeType++++man+https://petsc.org/release/manualpages/Mat/MatCompositeSetMergeType.html#MatCompositeSetMergeType
man:+MatCompositeMerge++MatCompositeMerge++++man+https://petsc.org/release/manualpages/Mat/MatCompositeMerge.html#MatCompositeMerge
man:+MatCompositeGetNumberMat++MatCompositeGetNumberMat++++man+https://petsc.org/release/manualpages/Mat/MatCompositeGetNumberMat.html#MatCompositeGetNumberMat
man:+MatCompositeGetMat++MatCompositeGetMat++++man+https://petsc.org/release/manualpages/Mat/MatCompositeGetMat.html#MatCompositeGetMat
man:+MatCompositeSetScalings++MatCompositeSetScalings++++man+https://petsc.org/release/manualpages/Mat/MatCompositeSetScalings.html#MatCompositeSetScalings
man:+MATCOMPOSITE++MATCOMPOSITE++++man+https://petsc.org/release/manualpages/Mat/MATCOMPOSITE.html#MATCOMPOSITE
man:+MatLRCGetMats++MatLRCGetMats++++man+https://petsc.org/release/manualpages/Mat/MatLRCGetMats.html#MatLRCGetMats
man:+MatLRCSetMats++MatLRCSetMats++++man+https://petsc.org/release/manualpages/Mat/MatLRCSetMats.html#MatLRCSetMats
man:+MATLRC++MATLRC++++man+https://petsc.org/release/manualpages/Mat/MATLRC.html#MATLRC
man:+MatCreateLRC++MatCreateLRC++++man+https://petsc.org/release/manualpages/Mat/MatCreateLRC.html#MatCreateLRC
man:+MATMFFD_WP++MATMFFD_WP++++man+https://petsc.org/release/manualpages/Mat/MATMFFD_WP.html#MATMFFD_WP
man:+MatMFFDWPSetComputeNormU++MatMFFDWPSetComputeNormU++++man+https://petsc.org/release/manualpages/Mat/MatMFFDWPSetComputeNormU.html#MatMFFDWPSetComputeNormU
man:+MatMFFDRegisterAll++MatMFFDRegisterAll++++man+https://petsc.org/release/manualpages/Mat/MatMFFDRegisterAll.html#MatMFFDRegisterAll
man:+MatMFFDFinalizePackage++MatMFFDFinalizePackage++++man+https://petsc.org/release/manualpages/Mat/MatMFFDFinalizePackage.html#MatMFFDFinalizePackage
man:+MatMFFDInitializePackage++MatMFFDInitializePackage++++man+https://petsc.org/release/manualpages/Mat/MatMFFDInitializePackage.html#MatMFFDInitializePackage
man:+MatMFFDSetType++MatMFFDSetType++++man+https://petsc.org/release/manualpages/Mat/MatMFFDSetType.html#MatMFFDSetType
man:+MatMFFDRegister++MatMFFDRegister++++man+https://petsc.org/release/manualpages/Mat/MatMFFDRegister.html#MatMFFDRegister
man:+MatMFFDSetOptionsPrefix++MatMFFDSetOptionsPrefix++++man+https://petsc.org/release/manualpages/Mat/MatMFFDSetOptionsPrefix.html#MatMFFDSetOptionsPrefix
man:+MATMFFD++MATMFFD++++man+https://petsc.org/release/manualpages/Mat/MATMFFD.html#MATMFFD
man:+MatCreateMFFD++MatCreateMFFD++++man+https://petsc.org/release/manualpages/Mat/MatCreateMFFD.html#MatCreateMFFD
man:+MatMFFDGetH++MatMFFDGetH++++man+https://petsc.org/release/manualpages/Mat/MatMFFDGetH.html#MatMFFDGetH
man:+MatMFFDSetFunction++MatMFFDSetFunction++++man+https://petsc.org/release/manualpages/Mat/MatMFFDSetFunction.html#MatMFFDSetFunction
man:+MatMFFDSetFunctioni++MatMFFDSetFunctioni++++man+https://petsc.org/release/manualpages/Mat/MatMFFDSetFunctioni.html#MatMFFDSetFunctioni
man:+MatMFFDSetFunctioniBase++MatMFFDSetFunctioniBase++++man+https://petsc.org/release/manualpages/Mat/MatMFFDSetFunctioniBase.html#MatMFFDSetFunctioniBase
man:+MatMFFDSetPeriod++MatMFFDSetPeriod++++man+https://petsc.org/release/manualpages/Mat/MatMFFDSetPeriod.html#MatMFFDSetPeriod
man:+MatMFFDSetFunctionError++MatMFFDSetFunctionError++++man+https://petsc.org/release/manualpages/Mat/MatMFFDSetFunctionError.html#MatMFFDSetFunctionError
man:+MatMFFDSetHHistory++MatMFFDSetHHistory++++man+https://petsc.org/release/manualpages/Mat/MatMFFDSetHHistory.html#MatMFFDSetHHistory
man:+MatMFFDResetHHistory++MatMFFDResetHHistory++++man+https://petsc.org/release/manualpages/Mat/MatMFFDResetHHistory.html#MatMFFDResetHHistory
man:+MatMFFDSetBase++MatMFFDSetBase++++man+https://petsc.org/release/manualpages/Mat/MatMFFDSetBase.html#MatMFFDSetBase
man:+MatMFFDSetCheckh++MatMFFDSetCheckh++++man+https://petsc.org/release/manualpages/Mat/MatMFFDSetCheckh.html#MatMFFDSetCheckh
man:+MatMFFDCheckPositivity++MatMFFDCheckPositivity++++man+https://petsc.org/release/manualpages/Mat/MatMFFDCheckPositivity.html#MatMFFDCheckPositivity
man:+MatMFFDDSSetUmin++MatMFFDDSSetUmin++++man+https://petsc.org/release/manualpages/Mat/MatMFFDDSSetUmin.html#MatMFFDDSSetUmin
man:+MATMFFD_DS++MATMFFD_DS++++man+https://petsc.org/release/manualpages/Mat/MATMFFD_DS.html#MATMFFD_DS
man:+MATMPISBAIJ++MATMPISBAIJ++++man+https://petsc.org/release/manualpages/Mat/MATMPISBAIJ.html#MATMPISBAIJ
man:+MATSBAIJ++MATSBAIJ++++man+https://petsc.org/release/manualpages/Mat/MATSBAIJ.html#MATSBAIJ
man:+MatMPISBAIJSetPreallocation++MatMPISBAIJSetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatMPISBAIJSetPreallocation.html#MatMPISBAIJSetPreallocation
man:+MatCreateSBAIJ++MatCreateSBAIJ++++man+https://petsc.org/release/manualpages/Mat/MatCreateSBAIJ.html#MatCreateSBAIJ
man:+MatCreateMPISBAIJWithArrays++MatCreateMPISBAIJWithArrays++++man+https://petsc.org/release/manualpages/Mat/MatCreateMPISBAIJWithArrays.html#MatCreateMPISBAIJWithArrays
man:+MatMPISBAIJSetPreallocationCSR++MatMPISBAIJSetPreallocationCSR++++man+https://petsc.org/release/manualpages/Mat/MatMPISBAIJSetPreallocationCSR.html#MatMPISBAIJSetPreallocationCSR
man:+MatSeqSBAIJSetColumnIndices++MatSeqSBAIJSetColumnIndices++++man+https://petsc.org/release/manualpages/Mat/MatSeqSBAIJSetColumnIndices.html#MatSeqSBAIJSetColumnIndices
man:+MatSeqSBAIJGetArray++MatSeqSBAIJGetArray++++man+https://petsc.org/release/manualpages/Mat/MatSeqSBAIJGetArray.html#MatSeqSBAIJGetArray
man:+MatSeqSBAIJRestoreArray++MatSeqSBAIJRestoreArray++++man+https://petsc.org/release/manualpages/Mat/MatSeqSBAIJRestoreArray.html#MatSeqSBAIJRestoreArray
man:+MATSEQSBAIJ++MATSEQSBAIJ++++man+https://petsc.org/release/manualpages/Mat/MATSEQSBAIJ.html#MATSEQSBAIJ
man:+MatSeqSBAIJSetPreallocation++MatSeqSBAIJSetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatSeqSBAIJSetPreallocation.html#MatSeqSBAIJSetPreallocation
man:+MatSeqSBAIJSetPreallocationCSR++MatSeqSBAIJSetPreallocationCSR++++man+https://petsc.org/release/manualpages/Mat/MatSeqSBAIJSetPreallocationCSR.html#MatSeqSBAIJSetPreallocationCSR
man:+MatCreateSeqSBAIJ++MatCreateSeqSBAIJ++++man+https://petsc.org/release/manualpages/Mat/MatCreateSeqSBAIJ.html#MatCreateSeqSBAIJ
man:+MatCreateSeqSBAIJWithArrays++MatCreateSeqSBAIJWithArrays++++man+https://petsc.org/release/manualpages/Mat/MatCreateSeqSBAIJWithArrays.html#MatCreateSeqSBAIJWithArrays
man:+MATSOLVERCHOLMOD++MATSOLVERCHOLMOD++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERCHOLMOD.html#MATSOLVERCHOLMOD
man:+MatKAIJGetAIJ++MatKAIJGetAIJ++++man+https://petsc.org/release/manualpages/Mat/MatKAIJGetAIJ.html#MatKAIJGetAIJ
man:+MatKAIJGetS++MatKAIJGetS++++man+https://petsc.org/release/manualpages/Mat/MatKAIJGetS.html#MatKAIJGetS
man:+MatKAIJGetSRead++MatKAIJGetSRead++++man+https://petsc.org/release/manualpages/Mat/MatKAIJGetSRead.html#MatKAIJGetSRead
man:+MatKAIJRestoreS++MatKAIJRestoreS++++man+https://petsc.org/release/manualpages/Mat/MatKAIJRestoreS.html#MatKAIJRestoreS
man:+MatKAIJRestoreSRead++MatKAIJRestoreSRead++++man+https://petsc.org/release/manualpages/Mat/MatKAIJRestoreSRead.html#MatKAIJRestoreSRead
man:+MatKAIJGetT++MatKAIJGetT++++man+https://petsc.org/release/manualpages/Mat/MatKAIJGetT.html#MatKAIJGetT
man:+MatKAIJGetTRead++MatKAIJGetTRead++++man+https://petsc.org/release/manualpages/Mat/MatKAIJGetTRead.html#MatKAIJGetTRead
man:+MatKAIJRestoreT++MatKAIJRestoreT++++man+https://petsc.org/release/manualpages/Mat/MatKAIJRestoreT.html#MatKAIJRestoreT
man:+MatKAIJRestoreTRead++MatKAIJRestoreTRead++++man+https://petsc.org/release/manualpages/Mat/MatKAIJRestoreTRead.html#MatKAIJRestoreTRead
man:+MatKAIJSetAIJ++MatKAIJSetAIJ++++man+https://petsc.org/release/manualpages/Mat/MatKAIJSetAIJ.html#MatKAIJSetAIJ
man:+MatKAIJSetS++MatKAIJSetS++++man+https://petsc.org/release/manualpages/Mat/MatKAIJSetS.html#MatKAIJSetS
man:+MatKAIJGetScaledIdentity++MatKAIJGetScaledIdentity++++man+https://petsc.org/release/manualpages/Mat/MatKAIJGetScaledIdentity.html#MatKAIJGetScaledIdentity
man:+MatKAIJSetT++MatKAIJSetT++++man+https://petsc.org/release/manualpages/Mat/MatKAIJSetT.html#MatKAIJSetT
man:+MatCreateKAIJ++MatCreateKAIJ++++man+https://petsc.org/release/manualpages/Mat/MatCreateKAIJ.html#MatCreateKAIJ
man:+MATKAIJ++MATKAIJ++++man+https://petsc.org/release/manualpages/Mat/MATKAIJ.html#MATKAIJ
man:+MatMPIAdjCreateNonemptySubcommMat++MatMPIAdjCreateNonemptySubcommMat++++man+https://petsc.org/release/manualpages/Mat/MatMPIAdjCreateNonemptySubcommMat.html#MatMPIAdjCreateNonemptySubcommMat
man:+MATMPIADJ++MATMPIADJ++++man+https://petsc.org/release/manualpages/Mat/MATMPIADJ.html#MATMPIADJ
man:+MatMPIAdjToSeq++MatMPIAdjToSeq++++man+https://petsc.org/release/manualpages/Mat/MatMPIAdjToSeq.html#MatMPIAdjToSeq
man:+MatMPIAdjToSeqRankZero++MatMPIAdjToSeqRankZero++++man+https://petsc.org/release/manualpages/Mat/MatMPIAdjToSeqRankZero.html#MatMPIAdjToSeqRankZero
man:+MatMPIAdjSetPreallocation++MatMPIAdjSetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatMPIAdjSetPreallocation.html#MatMPIAdjSetPreallocation
man:+MatCreateMPIAdj++MatCreateMPIAdj++++man+https://petsc.org/release/manualpages/Mat/MatCreateMPIAdj.html#MatCreateMPIAdj
man:+MatScatterGetVecScatter++MatScatterGetVecScatter++++man+https://petsc.org/release/manualpages/Mat/MatScatterGetVecScatter.html#MatScatterGetVecScatter
man:+MATSCATTER++MATSCATTER++++man+https://petsc.org/release/manualpages/Mat/MATSCATTER.html#MATSCATTER
man:+MatCreateScatter++MatCreateScatter++++man+https://petsc.org/release/manualpages/Mat/MatCreateScatter.html#MatCreateScatter
man:+MatScatterSetVecScatter++MatScatterSetVecScatter++++man+https://petsc.org/release/manualpages/Mat/MatScatterSetVecScatter.html#MatScatterSetVecScatter
man:+MATCENTERING++MATCENTERING++++man+https://petsc.org/release/manualpages/Mat/MATCENTERING.html#MATCENTERING
man:+MatCreateCentering++MatCreateCentering++++man+https://petsc.org/release/manualpages/Mat/MatCreateCentering.html#MatCreateCentering
man:+MatDiagonalGetDiagonal++MatDiagonalGetDiagonal++++man+https://petsc.org/release/manualpages/Mat/MatDiagonalGetDiagonal.html#MatDiagonalGetDiagonal
man:+MatDiagonalRestoreDiagonal++MatDiagonalRestoreDiagonal++++man+https://petsc.org/release/manualpages/Mat/MatDiagonalRestoreDiagonal.html#MatDiagonalRestoreDiagonal
man:+MatDiagonalGetInverseDiagonal++MatDiagonalGetInverseDiagonal++++man+https://petsc.org/release/manualpages/Mat/MatDiagonalGetInverseDiagonal.html#MatDiagonalGetInverseDiagonal
man:+MatDiagonalRestoreInverseDiagonal++MatDiagonalRestoreInverseDiagonal++++man+https://petsc.org/release/manualpages/Mat/MatDiagonalRestoreInverseDiagonal.html#MatDiagonalRestoreInverseDiagonal
man:+MatCreateDiagonal++MatCreateDiagonal++++man+https://petsc.org/release/manualpages/Mat/MatCreateDiagonal.html#MatCreateDiagonal
man:+MATDIAGONAL++MATDIAGONAL++++man+https://petsc.org/release/manualpages/Mat/MATDIAGONAL.html#MATDIAGONAL
man:+MatNormalGetMat++MatNormalGetMat++++man+https://petsc.org/release/manualpages/Mat/MatNormalGetMat.html#MatNormalGetMat
man:+MATNORMAL++MATNORMAL++++man+https://petsc.org/release/manualpages/Mat/MATNORMAL.html#MATNORMAL
man:+MatCreateNormal++MatCreateNormal++++man+https://petsc.org/release/manualpages/Mat/MatCreateNormal.html#MatCreateNormal
man:+MatNormalHermitianGetMat++MatNormalHermitianGetMat++++man+https://petsc.org/release/manualpages/Mat/MatNormalHermitianGetMat.html#MatNormalHermitianGetMat
man:+MATNORMALHERMITIAN++MATNORMALHERMITIAN++++man+https://petsc.org/release/manualpages/Mat/MATNORMALHERMITIAN.html#MATNORMALHERMITIAN
man:+MatCreateNormalHermitian++MatCreateNormalHermitian++++man+https://petsc.org/release/manualpages/Mat/MatCreateNormalHermitian.html#MatCreateNormalHermitian
man:+MatBlockMatSetPreallocation++MatBlockMatSetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatBlockMatSetPreallocation.html#MatBlockMatSetPreallocation
man:+MATBLOCKMAT++MATBLOCKMAT++++man+https://petsc.org/release/manualpages/Mat/MATBLOCKMAT.html#MATBLOCKMAT
man:+MatCreateBlockMat++MatCreateBlockMat++++man+https://petsc.org/release/manualpages/Mat/MatCreateBlockMat.html#MatCreateBlockMat
man:+MatCreateFFT++MatCreateFFT++++man+https://petsc.org/release/manualpages/Mat/MatCreateFFT.html#MatCreateFFT
man:+MatCreateVecsFFTW++MatCreateVecsFFTW++++man+https://petsc.org/release/manualpages/Mat/MatCreateVecsFFTW.html#MatCreateVecsFFTW
man:+VecScatterPetscToFFTW++VecScatterPetscToFFTW++++man+https://petsc.org/release/manualpages/Mat/VecScatterPetscToFFTW.html#VecScatterPetscToFFTW
man:+VecScatterFFTWToPetsc++VecScatterFFTWToPetsc++++man+https://petsc.org/release/manualpages/Mat/VecScatterFFTWToPetsc.html#VecScatterFFTWToPetsc
man:+MATFFTW++MATFFTW++++man+https://petsc.org/release/manualpages/Mat/MATFFTW.html#MATFFTW
man:+MatHYPRESetPreallocation++MatHYPRESetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatHYPRESetPreallocation.html#MatHYPRESetPreallocation
man:+MatCreateFromParCSR++MatCreateFromParCSR++++man+https://petsc.org/release/manualpages/Mat/MatCreateFromParCSR.html#MatCreateFromParCSR
man:+MatHYPREGetParCSR++MatHYPREGetParCSR++++man+https://petsc.org/release/manualpages/Mat/MatHYPREGetParCSR.html#MatHYPREGetParCSR
man:+MATHYPRE++MATHYPRE++++man+https://petsc.org/release/manualpages/Mat/MATHYPRE.html#MATHYPRE
man:+MatCreateSubMatrixVirtual++MatCreateSubMatrixVirtual++++man+https://petsc.org/release/manualpages/Mat/MatCreateSubMatrixVirtual.html#MatCreateSubMatrixVirtual
man:+MATSUBMATRIX++MATSUBMATRIX++++man+https://petsc.org/release/manualpages/Mat/MATSUBMATRIX.html#MATSUBMATRIX
man:+MatSubMatrixVirtualUpdate++MatSubMatrixVirtualUpdate++++man+https://petsc.org/release/manualpages/Mat/MatSubMatrixVirtualUpdate.html#MatSubMatrixVirtualUpdate
man:+MatNestGetSubMat++MatNestGetSubMat++++man+https://petsc.org/release/manualpages/Mat/MatNestGetSubMat.html#MatNestGetSubMat
man:+MatNestSetSubMat++MatNestSetSubMat++++man+https://petsc.org/release/manualpages/Mat/MatNestSetSubMat.html#MatNestSetSubMat
man:+MatNestGetSubMats++MatNestGetSubMats++++man+https://petsc.org/release/manualpages/Mat/MatNestGetSubMats.html#MatNestGetSubMats
man:+MatNestGetSize++MatNestGetSize++++man+https://petsc.org/release/manualpages/Mat/MatNestGetSize.html#MatNestGetSize
man:+MatNestGetISs++MatNestGetISs++++man+https://petsc.org/release/manualpages/Mat/MatNestGetISs.html#MatNestGetISs
man:+MatNestGetLocalISs++MatNestGetLocalISs++++man+https://petsc.org/release/manualpages/Mat/MatNestGetLocalISs.html#MatNestGetLocalISs
man:+MatNestSetVecType++MatNestSetVecType++++man+https://petsc.org/release/manualpages/Mat/MatNestSetVecType.html#MatNestSetVecType
man:+MatNestSetSubMats++MatNestSetSubMats++++man+https://petsc.org/release/manualpages/Mat/MatNestSetSubMats.html#MatNestSetSubMats
man:+MatCreateNest++MatCreateNest++++man+https://petsc.org/release/manualpages/Mat/MatCreateNest.html#MatCreateNest
man:+MATNEST++MATNEST++++man+https://petsc.org/release/manualpages/Mat/MATNEST.html#MATNEST
man:+MATSOLVERPASTIX++MATSOLVERPASTIX++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERPASTIX.html#MATSOLVERPASTIX
man:+MatMkl_CPardisoSetCntl++MatMkl_CPardisoSetCntl++++man+https://petsc.org/release/manualpages/Mat/MatMkl_CPardisoSetCntl.html#MatMkl_CPardisoSetCntl
man:+MATSOLVERMKL_CPARDISO++MATSOLVERMKL_CPARDISO++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERMKL_CPARDISO.html#MATSOLVERMKL_CPARDISO
man:+MatFDColoringSetValues++MatFDColoringSetValues++++man+https://petsc.org/release/manualpages/Mat/MatFDColoringSetValues.html#MatFDColoringSetValues
man:+MatCreateMPIAIJCRL++MatCreateMPIAIJCRL++++man+https://petsc.org/release/manualpages/Mat/MatCreateMPIAIJCRL.html#MatCreateMPIAIJCRL
man:+MatCreateMPIAIJMKL++MatCreateMPIAIJMKL++++man+https://petsc.org/release/manualpages/Mat/MatCreateMPIAIJMKL.html#MatCreateMPIAIJMKL
man:+MATAIJMKL++MATAIJMKL++++man+https://petsc.org/release/manualpages/Mat/MATAIJMKL.html#MATAIJMKL
man:+MatSTRUMPACKSetReordering++MatSTRUMPACKSetReordering++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKSetReordering.html#MatSTRUMPACKSetReordering
man:+MatSTRUMPACKGetReordering++MatSTRUMPACKGetReordering++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKGetReordering.html#MatSTRUMPACKGetReordering
man:+MatSTRUMPACKSetColPerm++MatSTRUMPACKSetColPerm++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKSetColPerm.html#MatSTRUMPACKSetColPerm
man:+MatSTRUMPACKGetColPerm++MatSTRUMPACKGetColPerm++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKGetColPerm.html#MatSTRUMPACKGetColPerm
man:+MatSTRUMPACKSetGPU++MatSTRUMPACKSetGPU++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKSetGPU.html#MatSTRUMPACKSetGPU
man:+MatSTRUMPACKGetGPU++MatSTRUMPACKGetGPU++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKGetGPU.html#MatSTRUMPACKGetGPU
man:+MatSTRUMPACKSetCompression++MatSTRUMPACKSetCompression++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKSetCompression.html#MatSTRUMPACKSetCompression
man:+MatSTRUMPACKGetCompression++MatSTRUMPACKGetCompression++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKGetCompression.html#MatSTRUMPACKGetCompression
man:+MatSTRUMPACKSetCompRelTol++MatSTRUMPACKSetCompRelTol++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKSetCompRelTol.html#MatSTRUMPACKSetCompRelTol
man:+MatSTRUMPACKGetCompRelTol++MatSTRUMPACKGetCompRelTol++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKGetCompRelTol.html#MatSTRUMPACKGetCompRelTol
man:+MatSTRUMPACKSetCompAbsTol++MatSTRUMPACKSetCompAbsTol++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKSetCompAbsTol.html#MatSTRUMPACKSetCompAbsTol
man:+MatSTRUMPACKGetCompAbsTol++MatSTRUMPACKGetCompAbsTol++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKGetCompAbsTol.html#MatSTRUMPACKGetCompAbsTol
man:+MatSTRUMPACKSetCompLeafSize++MatSTRUMPACKSetCompLeafSize++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKSetCompLeafSize.html#MatSTRUMPACKSetCompLeafSize
man:+MatSTRUMPACKGetCompLeafSize++MatSTRUMPACKGetCompLeafSize++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKGetCompLeafSize.html#MatSTRUMPACKGetCompLeafSize
man:+MatSTRUMPACKSetGeometricNxyz++MatSTRUMPACKSetGeometricNxyz++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKSetGeometricNxyz.html#MatSTRUMPACKSetGeometricNxyz
man:+MatSTRUMPACKSetGeometricComponents++MatSTRUMPACKSetGeometricComponents++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKSetGeometricComponents.html#MatSTRUMPACKSetGeometricComponents
man:+MatSTRUMPACKSetGeometricWidth++MatSTRUMPACKSetGeometricWidth++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKSetGeometricWidth.html#MatSTRUMPACKSetGeometricWidth
man:+MatSTRUMPACKSetCompMinSepSize++MatSTRUMPACKSetCompMinSepSize++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKSetCompMinSepSize.html#MatSTRUMPACKSetCompMinSepSize
man:+MatSTRUMPACKGetCompMinSepSize++MatSTRUMPACKGetCompMinSepSize++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKGetCompMinSepSize.html#MatSTRUMPACKGetCompMinSepSize
man:+MatSTRUMPACKSetCompLossyPrecision++MatSTRUMPACKSetCompLossyPrecision++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKSetCompLossyPrecision.html#MatSTRUMPACKSetCompLossyPrecision
man:+MatSTRUMPACKGetCompLossyPrecision++MatSTRUMPACKGetCompLossyPrecision++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKGetCompLossyPrecision.html#MatSTRUMPACKGetCompLossyPrecision
man:+MatSTRUMPACKSetCompButterflyLevels++MatSTRUMPACKSetCompButterflyLevels++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKSetCompButterflyLevels.html#MatSTRUMPACKSetCompButterflyLevels
man:+MatSTRUMPACKGetCompButterflyLevels++MatSTRUMPACKGetCompButterflyLevels++++man+https://petsc.org/release/manualpages/Mat/MatSTRUMPACKGetCompButterflyLevels.html#MatSTRUMPACKGetCompButterflyLevels
man:+MATSOLVERSTRUMPACK++MATSOLVERSTRUMPACK++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERSTRUMPACK.html#MATSOLVERSTRUMPACK
man:+MatCreateMPIAIJSELL++MatCreateMPIAIJSELL++++man+https://petsc.org/release/manualpages/Mat/MatCreateMPIAIJSELL.html#MatCreateMPIAIJSELL
man:+MATAIJSELL++MATAIJSELL++++man+https://petsc.org/release/manualpages/Mat/MATAIJSELL.html#MATAIJSELL
man:+MATAIJ++MATAIJ++++man+https://petsc.org/release/manualpages/Mat/MATAIJ.html#MATAIJ
man:+MATAIJCRL++MATAIJCRL++++man+https://petsc.org/release/manualpages/Mat/MATAIJCRL.html#MATAIJCRL
man:+MatMPIAIJGetNumberNonzeros++MatMPIAIJGetNumberNonzeros++++man+https://petsc.org/release/manualpages/Mat/MatMPIAIJGetNumberNonzeros.html#MatMPIAIJGetNumberNonzeros
man:+MatMPIAIJSetUseScalableIncreaseOverlap++MatMPIAIJSetUseScalableIncreaseOverlap++++man+https://petsc.org/release/manualpages/Mat/MatMPIAIJSetUseScalableIncreaseOverlap.html#MatMPIAIJSetUseScalableIncreaseOverlap
man:+MatCreateMPIAIJWithSeqAIJ++MatCreateMPIAIJWithSeqAIJ++++man+https://petsc.org/release/manualpages/Mat/MatCreateMPIAIJWithSeqAIJ.html#MatCreateMPIAIJWithSeqAIJ
man:+MatMPIAIJSetPreallocationCSR++MatMPIAIJSetPreallocationCSR++++man+https://petsc.org/release/manualpages/Mat/MatMPIAIJSetPreallocationCSR.html#MatMPIAIJSetPreallocationCSR
man:+MatMPIAIJSetPreallocation++MatMPIAIJSetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatMPIAIJSetPreallocation.html#MatMPIAIJSetPreallocation
man:+MatCreateMPIAIJWithArrays++MatCreateMPIAIJWithArrays++++man+https://petsc.org/release/manualpages/Mat/MatCreateMPIAIJWithArrays.html#MatCreateMPIAIJWithArrays
man:+MatUpdateMPIAIJWithArrays++MatUpdateMPIAIJWithArrays++++man+https://petsc.org/release/manualpages/Mat/MatUpdateMPIAIJWithArrays.html#MatUpdateMPIAIJWithArrays
man:+MatUpdateMPIAIJWithArray++MatUpdateMPIAIJWithArray++++man+https://petsc.org/release/manualpages/Mat/MatUpdateMPIAIJWithArray.html#MatUpdateMPIAIJWithArray
man:+MatCreateAIJ++MatCreateAIJ++++man+https://petsc.org/release/manualpages/Mat/MatCreateAIJ.html#MatCreateAIJ
man:+MatMPIAIJGetSeqAIJ++MatMPIAIJGetSeqAIJ++++man+https://petsc.org/release/manualpages/Mat/MatMPIAIJGetSeqAIJ.html#MatMPIAIJGetSeqAIJ
man:+MatCreateMPIAIJSumSeqAIJ++MatCreateMPIAIJSumSeqAIJ++++man+https://petsc.org/release/manualpages/Mat/MatCreateMPIAIJSumSeqAIJ.html#MatCreateMPIAIJSumSeqAIJ
man:+MatAIJGetLocalMat++MatAIJGetLocalMat++++man+https://petsc.org/release/manualpages/Mat/MatAIJGetLocalMat.html#MatAIJGetLocalMat
man:+MatMPIAIJGetLocalMat++MatMPIAIJGetLocalMat++++man+https://petsc.org/release/manualpages/Mat/MatMPIAIJGetLocalMat.html#MatMPIAIJGetLocalMat
man:+MatMPIAIJGetLocalMatMerge++MatMPIAIJGetLocalMatMerge++++man+https://petsc.org/release/manualpages/Mat/MatMPIAIJGetLocalMatMerge.html#MatMPIAIJGetLocalMatMerge
man:+MatMPIAIJGetLocalMatCondensed++MatMPIAIJGetLocalMatCondensed++++man+https://petsc.org/release/manualpages/Mat/MatMPIAIJGetLocalMatCondensed.html#MatMPIAIJGetLocalMatCondensed
man:+MatGetBrowsOfAcols++MatGetBrowsOfAcols++++man+https://petsc.org/release/manualpages/Mat/MatGetBrowsOfAcols.html#MatGetBrowsOfAcols
man:+MATMPIAIJ++MATMPIAIJ++++man+https://petsc.org/release/manualpages/Mat/MATMPIAIJ.html#MATMPIAIJ
man:+MatCreateMPIAIJWithSplitArrays++MatCreateMPIAIJWithSplitArrays++++man+https://petsc.org/release/manualpages/Mat/MatCreateMPIAIJWithSplitArrays.html#MatCreateMPIAIJWithSplitArrays
man:+MATSOLVERSUPERLU_DIST++MATSOLVERSUPERLU_DIST++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERSUPERLU_DIST.html#MATSOLVERSUPERLU_DIST
man:+MatCreateMPIAIJPERM++MatCreateMPIAIJPERM++++man+https://petsc.org/release/manualpages/Mat/MatCreateMPIAIJPERM.html#MatCreateMPIAIJPERM
man:+MATAIJPERM++MATAIJPERM++++man+https://petsc.org/release/manualpages/Mat/MATAIJPERM.html#MATAIJPERM
man:+MatMumpsSetIcntl++MatMumpsSetIcntl++++man+https://petsc.org/release/manualpages/Mat/MatMumpsSetIcntl.html#MatMumpsSetIcntl
man:+MatMumpsGetIcntl++MatMumpsGetIcntl++++man+https://petsc.org/release/manualpages/Mat/MatMumpsGetIcntl.html#MatMumpsGetIcntl
man:+MatMumpsSetCntl++MatMumpsSetCntl++++man+https://petsc.org/release/manualpages/Mat/MatMumpsSetCntl.html#MatMumpsSetCntl
man:+MatMumpsGetCntl++MatMumpsGetCntl++++man+https://petsc.org/release/manualpages/Mat/MatMumpsGetCntl.html#MatMumpsGetCntl
man:+MatMumpsGetInverse++MatMumpsGetInverse++++man+https://petsc.org/release/manualpages/Mat/MatMumpsGetInverse.html#MatMumpsGetInverse
man:+MatMumpsGetInverseTranspose++MatMumpsGetInverseTranspose++++man+https://petsc.org/release/manualpages/Mat/MatMumpsGetInverseTranspose.html#MatMumpsGetInverseTranspose
man:+MatMumpsGetInfo++MatMumpsGetInfo++++man+https://petsc.org/release/manualpages/Mat/MatMumpsGetInfo.html#MatMumpsGetInfo
man:+MatMumpsGetInfog++MatMumpsGetInfog++++man+https://petsc.org/release/manualpages/Mat/MatMumpsGetInfog.html#MatMumpsGetInfog
man:+MatMumpsGetRinfo++MatMumpsGetRinfo++++man+https://petsc.org/release/manualpages/Mat/MatMumpsGetRinfo.html#MatMumpsGetRinfo
man:+MatMumpsGetRinfog++MatMumpsGetRinfog++++man+https://petsc.org/release/manualpages/Mat/MatMumpsGetRinfog.html#MatMumpsGetRinfog
man:+MatMumpsGetNullPivots++MatMumpsGetNullPivots++++man+https://petsc.org/release/manualpages/Mat/MatMumpsGetNullPivots.html#MatMumpsGetNullPivots
man:+MATSOLVERMUMPS++MATSOLVERMUMPS++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERMUMPS.html#MATSOLVERMUMPS
man:+MATSOLVERUMFPACK++MATSOLVERUMFPACK++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERUMFPACK.html#MATSOLVERUMFPACK
man:+MATSOLVERESSL++MATSOLVERESSL++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERESSL.html#MATSOLVERESSL
man:+MatCreateSeqAIJCRL++MatCreateSeqAIJCRL++++man+https://petsc.org/release/manualpages/Mat/MatCreateSeqAIJCRL.html#MatCreateSeqAIJCRL
man:+MATSOLVERSPQR++MATSOLVERSPQR++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERSPQR.html#MATSOLVERSPQR
man:+MatSuperluSetILUDropTol++MatSuperluSetILUDropTol++++man+https://petsc.org/release/manualpages/Mat/MatSuperluSetILUDropTol.html#MatSuperluSetILUDropTol
man:+MATSOLVERSUPERLU++MATSOLVERSUPERLU++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERSUPERLU.html#MATSOLVERSUPERLU
man:+MatSeqAIJSetTotalPreallocation++MatSeqAIJSetTotalPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJSetTotalPreallocation.html#MatSeqAIJSetTotalPreallocation
man:+MatSeqAIJSetColumnIndices++MatSeqAIJSetColumnIndices++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJSetColumnIndices.html#MatSeqAIJSetColumnIndices
man:+MatStoreValues++MatStoreValues++++man+https://petsc.org/release/manualpages/Mat/MatStoreValues.html#MatStoreValues
man:+MatRetrieveValues++MatRetrieveValues++++man+https://petsc.org/release/manualpages/Mat/MatRetrieveValues.html#MatRetrieveValues
man:+MatCreateSeqAIJ++MatCreateSeqAIJ++++man+https://petsc.org/release/manualpages/Mat/MatCreateSeqAIJ.html#MatCreateSeqAIJ
man:+MatSeqAIJSetPreallocation++MatSeqAIJSetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJSetPreallocation.html#MatSeqAIJSetPreallocation
man:+MatSeqAIJSetPreallocationCSR++MatSeqAIJSetPreallocationCSR++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJSetPreallocationCSR.html#MatSeqAIJSetPreallocationCSR
man:+MatSeqAIJKron++MatSeqAIJKron++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJKron.html#MatSeqAIJKron
man:+MATSEQAIJ++MATSEQAIJ++++man+https://petsc.org/release/manualpages/Mat/MATSEQAIJ.html#MATSEQAIJ
man:+MATAIJ++MATAIJ++++man+https://petsc.org/release/manualpages/Mat/MATAIJ.html#MATAIJ
man:+MATAIJCRL++MATAIJCRL++++man+https://petsc.org/release/manualpages/Mat/MATAIJCRL.html#MATAIJCRL
man:+MatSeqAIJGetArray++MatSeqAIJGetArray++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJGetArray.html#MatSeqAIJGetArray
man:+MatSeqAIJRestoreArray++MatSeqAIJRestoreArray++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJRestoreArray.html#MatSeqAIJRestoreArray
man:+MatSeqAIJGetArrayRead++MatSeqAIJGetArrayRead++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJGetArrayRead.html#MatSeqAIJGetArrayRead
man:+MatSeqAIJRestoreArrayRead++MatSeqAIJRestoreArrayRead++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJRestoreArrayRead.html#MatSeqAIJRestoreArrayRead
man:+MatSeqAIJGetArrayWrite++MatSeqAIJGetArrayWrite++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJGetArrayWrite.html#MatSeqAIJGetArrayWrite
man:+MatSeqAIJRestoreArrayWrite++MatSeqAIJRestoreArrayWrite++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJRestoreArrayWrite.html#MatSeqAIJRestoreArrayWrite
man:+MatSeqAIJGetCSRAndMemType++MatSeqAIJGetCSRAndMemType++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJGetCSRAndMemType.html#MatSeqAIJGetCSRAndMemType
man:+MatSeqAIJGetMaxRowNonzeros++MatSeqAIJGetMaxRowNonzeros++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJGetMaxRowNonzeros.html#MatSeqAIJGetMaxRowNonzeros
man:+MatCreateSeqAIJWithArrays++MatCreateSeqAIJWithArrays++++man+https://petsc.org/release/manualpages/Mat/MatCreateSeqAIJWithArrays.html#MatCreateSeqAIJWithArrays
man:+MatCreateSeqAIJFromTriple++MatCreateSeqAIJFromTriple++++man+https://petsc.org/release/manualpages/Mat/MatCreateSeqAIJFromTriple.html#MatCreateSeqAIJFromTriple
man:+MatSeqAIJSetType++MatSeqAIJSetType++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJSetType.html#MatSeqAIJSetType
man:+MatSeqAIJRegister++MatSeqAIJRegister++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJRegister.html#MatSeqAIJRegister
man:+MatSeqAIJRegisterAll++MatSeqAIJRegisterAll++++man+https://petsc.org/release/manualpages/Mat/MatSeqAIJRegisterAll.html#MatSeqAIJRegisterAll
man:+MatCreateSeqAIJMKL++MatCreateSeqAIJMKL++++man+https://petsc.org/release/manualpages/Mat/MatCreateSeqAIJMKL.html#MatCreateSeqAIJMKL
man:+MATSOLVERLUSOL++MATSOLVERLUSOL++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERLUSOL.html#MATSOLVERLUSOL
man:+MatCreateSeqAIJSELL++MatCreateSeqAIJSELL++++man+https://petsc.org/release/manualpages/Mat/MatCreateSeqAIJSELL.html#MatCreateSeqAIJSELL
man:+MatInodeGetInodeSizes++MatInodeGetInodeSizes++++man+https://petsc.org/release/manualpages/Mat/MatInodeGetInodeSizes.html#MatInodeGetInodeSizes
man:+MATSOLVERMATLAB++MATSOLVERMATLAB++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERMATLAB.html#MATSOLVERMATLAB
man:+MATSOLVERBAS++MATSOLVERBAS++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERBAS.html#MATSOLVERBAS
man:+MatCreateSeqAIJPERM++MatCreateSeqAIJPERM++++man+https://petsc.org/release/manualpages/Mat/MatCreateSeqAIJPERM.html#MatCreateSeqAIJPERM
man:+MATSOLVERKLU++MATSOLVERKLU++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERKLU.html#MATSOLVERKLU
man:+MatMkl_PardisoSetCntl++MatMkl_PardisoSetCntl++++man+https://petsc.org/release/manualpages/Mat/MatMkl_PardisoSetCntl.html#MatMkl_PardisoSetCntl
man:+MATSOLVERMKL_PARDISO++MATSOLVERMKL_PARDISO++++man+https://petsc.org/release/manualpages/Mat/MATSOLVERMKL_PARDISO.html#MATSOLVERMKL_PARDISO
man:+MatCreateDenseFromVecType++MatCreateDenseFromVecType++++man+https://petsc.org/release/manualpages/Mat/MatCreateDenseFromVecType.html#MatCreateDenseFromVecType
man:+MatGetColumnVector++MatGetColumnVector++++man+https://petsc.org/release/manualpages/Mat/MatGetColumnVector.html#MatGetColumnVector
man:+MatGetColumnNorms++MatGetColumnNorms++++man+https://petsc.org/release/manualpages/Mat/MatGetColumnNorms.html#MatGetColumnNorms
man:+MatGetColumnSumsRealPart++MatGetColumnSumsRealPart++++man+https://petsc.org/release/manualpages/Mat/MatGetColumnSumsRealPart.html#MatGetColumnSumsRealPart
man:+MatGetColumnSumsImaginaryPart++MatGetColumnSumsImaginaryPart++++man+https://petsc.org/release/manualpages/Mat/MatGetColumnSumsImaginaryPart.html#MatGetColumnSumsImaginaryPart
man:+MatGetColumnSums++MatGetColumnSums++++man+https://petsc.org/release/manualpages/Mat/MatGetColumnSums.html#MatGetColumnSums
man:+MatGetColumnMeansRealPart++MatGetColumnMeansRealPart++++man+https://petsc.org/release/manualpages/Mat/MatGetColumnMeansRealPart.html#MatGetColumnMeansRealPart
man:+MatGetColumnMeansImaginaryPart++MatGetColumnMeansImaginaryPart++++man+https://petsc.org/release/manualpages/Mat/MatGetColumnMeansImaginaryPart.html#MatGetColumnMeansImaginaryPart
man:+MatGetColumnMeans++MatGetColumnMeans++++man+https://petsc.org/release/manualpages/Mat/MatGetColumnMeans.html#MatGetColumnMeans
man:+MatGetColumnReductions++MatGetColumnReductions++++man+https://petsc.org/release/manualpages/Mat/MatGetColumnReductions.html#MatGetColumnReductions
man:+MatReorderForNonzeroDiagonal++MatReorderForNonzeroDiagonal++++man+https://petsc.org/release/manualpages/Mat/MatReorderForNonzeroDiagonal.html#MatReorderForNonzeroDiagonal
man:+MatCreate++MatCreate++++man+https://petsc.org/release/manualpages/Mat/MatCreate.html#MatCreate
man:+MatCreateFromOptions++MatCreateFromOptions++++man+https://petsc.org/release/manualpages/Mat/MatCreateFromOptions.html#MatCreateFromOptions
man:+MatSetErrorIfFailure++MatSetErrorIfFailure++++man+https://petsc.org/release/manualpages/Mat/MatSetErrorIfFailure.html#MatSetErrorIfFailure
man:+MatSetSizes++MatSetSizes++++man+https://petsc.org/release/manualpages/Mat/MatSetSizes.html#MatSetSizes
man:+MatSetFromOptions++MatSetFromOptions++++man+https://petsc.org/release/manualpages/Mat/MatSetFromOptions.html#MatSetFromOptions
man:+MatXAIJSetPreallocation++MatXAIJSetPreallocation++++man+https://petsc.org/release/manualpages/Mat/MatXAIJSetPreallocation.html#MatXAIJSetPreallocation
man:+MatHeaderMerge++MatHeaderMerge++++man+https://petsc.org/release/manualpages/Mat/MatHeaderMerge.html#MatHeaderMerge
man:+MatHeaderReplace++MatHeaderReplace++++man+https://petsc.org/release/manualpages/Mat/MatHeaderReplace.html#MatHeaderReplace
man:+MatBindToCPU++MatBindToCPU++++man+https://petsc.org/release/manualpages/Mat/MatBindToCPU.html#MatBindToCPU
man:+MatBoundToCPU++MatBoundToCPU++++man+https://petsc.org/release/manualpages/Mat/MatBoundToCPU.html#MatBoundToCPU
man:+MatSetPreallocationCOO++MatSetPreallocationCOO++++man+https://petsc.org/release/manualpages/Mat/MatSetPreallocationCOO.html#MatSetPreallocationCOO
man:+MatSetPreallocationCOOLocal++MatSetPreallocationCOOLocal++++man+https://petsc.org/release/manualpages/Mat/MatSetPreallocationCOOLocal.html#MatSetPreallocationCOOLocal
man:+MatSetValuesCOO++MatSetValuesCOO++++man+https://petsc.org/release/manualpages/Mat/MatSetValuesCOO.html#MatSetValuesCOO
man:+MatSetBindingPropagates++MatSetBindingPropagates++++man+https://petsc.org/release/manualpages/Mat/MatSetBindingPropagates.html#MatSetBindingPropagates
man:+MatGetBindingPropagates++MatGetBindingPropagates++++man+https://petsc.org/release/manualpages/Mat/MatGetBindingPropagates.html#MatGetBindingPropagates
man:+MatComputeBandwidth++MatComputeBandwidth++++man+https://petsc.org/release/manualpages/Mat/MatComputeBandwidth.html#MatComputeBandwidth
man:+MatSetHPL++MatSetHPL++++man+https://petsc.org/release/manualpages/Mat/MatSetHPL.html#MatSetHPL
man:+MatCheckCompressedRow++MatCheckCompressedRow++++man+https://petsc.org/release/manualpages/Mat/MatCheckCompressedRow.html#MatCheckCompressedRow
man:+MatAXPY++MatAXPY++++man+https://petsc.org/release/manualpages/Mat/MatAXPY.html#MatAXPY
man:+MatShift++MatShift++++man+https://petsc.org/release/manualpages/Mat/MatShift.html#MatShift
man:+MatDiagonalSet++MatDiagonalSet++++man+https://petsc.org/release/manualpages/Mat/MatDiagonalSet.html#MatDiagonalSet
man:+MatAYPX++MatAYPX++++man+https://petsc.org/release/manualpages/Mat/MatAYPX.html#MatAYPX
man:+MatComputeOperator++MatComputeOperator++++man+https://petsc.org/release/manualpages/Mat/MatComputeOperator.html#MatComputeOperator
man:+MatComputeOperatorTranspose++MatComputeOperatorTranspose++++man+https://petsc.org/release/manualpages/Mat/MatComputeOperatorTranspose.html#MatComputeOperatorTranspose
man:+MatFilter++MatFilter++++man+https://petsc.org/release/manualpages/Mat/MatFilter.html#MatFilter
man:+MatMultEqual++MatMultEqual++++man+https://petsc.org/release/manualpages/Mat/MatMultEqual.html#MatMultEqual
man:+MatMultAddEqual++MatMultAddEqual++++man+https://petsc.org/release/manualpages/Mat/MatMultAddEqual.html#MatMultAddEqual
man:+MatMultTransposeEqual++MatMultTransposeEqual++++man+https://petsc.org/release/manualpages/Mat/MatMultTransposeEqual.html#MatMultTransposeEqual
man:+MatMultTransposeAddEqual++MatMultTransposeAddEqual++++man+https://petsc.org/release/manualpages/Mat/MatMultTransposeAddEqual.html#MatMultTransposeAddEqual
man:+MatMultHermitianTransposeEqual++MatMultHermitianTransposeEqual++++man+https://petsc.org/release/manualpages/Mat/MatMultHermitianTransposeEqual.html#MatMultHermitianTransposeEqual
man:+MatMultHermitianTransposeAddEqual++MatMultHermitianTransposeAddEqual++++man+https://petsc.org/release/manualpages/Mat/MatMultHermitianTransposeAddEqual.html#MatMultHermitianTransposeAddEqual
man:+MatMatMultEqual++MatMatMultEqual++++man+https://petsc.org/release/manualpages/Mat/MatMatMultEqual.html#MatMatMultEqual
man:+MatTransposeMatMultEqual++MatTransposeMatMultEqual++++man+https://petsc.org/release/manualpages/Mat/MatTransposeMatMultEqual.html#MatTransposeMatMultEqual
man:+MatMatTransposeMultEqual++MatMatTransposeMultEqual++++man+https://petsc.org/release/manualpages/Mat/MatMatTransposeMultEqual.html#MatMatTransposeMultEqual
man:+MatPtAPMultEqual++MatPtAPMultEqual++++man+https://petsc.org/release/manualpages/Mat/MatPtAPMultEqual.html#MatPtAPMultEqual
man:+MatRARtMultEqual++MatRARtMultEqual++++man+https://petsc.org/release/manualpages/Mat/MatRARtMultEqual.html#MatRARtMultEqual
man:+MatIsLinear++MatIsLinear++++man+https://petsc.org/release/manualpages/Mat/MatIsLinear.html#MatIsLinear
man:+MatOrderingRegisterAll++MatOrderingRegisterAll++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatOrderingRegisterAll.html#MatOrderingRegisterAll
man:+MatCreateLaplacian++MatCreateLaplacian++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCreateLaplacian.html#MatCreateLaplacian
man:+MatOrderingRegister++MatOrderingRegister++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatOrderingRegister.html#MatOrderingRegister
man:+MatGetOrdering++MatGetOrdering++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatGetOrdering.html#MatGetOrdering
man:+MatColoringRegister++MatColoringRegister++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatColoringRegister.html#MatColoringRegister
man:+MatColoringCreate++MatColoringCreate++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatColoringCreate.html#MatColoringCreate
man:+MatColoringDestroy++MatColoringDestroy++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatColoringDestroy.html#MatColoringDestroy
man:+MatColoringSetType++MatColoringSetType++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatColoringSetType.html#MatColoringSetType
man:+MatColoringSetFromOptions++MatColoringSetFromOptions++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatColoringSetFromOptions.html#MatColoringSetFromOptions
man:+MatColoringSetDistance++MatColoringSetDistance++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatColoringSetDistance.html#MatColoringSetDistance
man:+MatColoringGetDistance++MatColoringGetDistance++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatColoringGetDistance.html#MatColoringGetDistance
man:+MatColoringSetMaxColors++MatColoringSetMaxColors++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatColoringSetMaxColors.html#MatColoringSetMaxColors
man:+MatColoringGetMaxColors++MatColoringGetMaxColors++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatColoringGetMaxColors.html#MatColoringGetMaxColors
man:+MatColoringApply++MatColoringApply++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatColoringApply.html#MatColoringApply
man:+MatColoringView++MatColoringView++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatColoringView.html#MatColoringView
man:+MatColoringSetWeightType++MatColoringSetWeightType++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatColoringSetWeightType.html#MatColoringSetWeightType
man:+MatColoringRegisterAll++MatColoringRegisterAll++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatColoringRegisterAll.html#MatColoringRegisterAll
man:+MATCOLORINGPOWER++MATCOLORINGPOWER++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATCOLORINGPOWER.html#MATCOLORINGPOWER
man:+MATCOLORINGNATURAL++MATCOLORINGNATURAL++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATCOLORINGNATURAL.html#MATCOLORINGNATURAL
man:+MATCOLORINGSL++MATCOLORINGSL++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATCOLORINGSL.html#MATCOLORINGSL
man:+MATCOLORINGLF++MATCOLORINGLF++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATCOLORINGLF.html#MATCOLORINGLF
man:+MATCOLORINGID++MATCOLORINGID++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATCOLORINGID.html#MATCOLORINGID
man:+MATCOLORINGGREEDY++MATCOLORINGGREEDY++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATCOLORINGGREEDY.html#MATCOLORINGGREEDY
man:+MATCOLORINGJP++MATCOLORINGJP++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATCOLORINGJP.html#MATCOLORINGJP
man:+MatCoarsenRegisterAll++MatCoarsenRegisterAll++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenRegisterAll.html#MatCoarsenRegisterAll
man:+MatCoarsenRegister++MatCoarsenRegister++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenRegister.html#MatCoarsenRegister
man:+MatCoarsenGetType++MatCoarsenGetType++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenGetType.html#MatCoarsenGetType
man:+MatCoarsenApply++MatCoarsenApply++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenApply.html#MatCoarsenApply
man:+MatCoarsenSetAdjacency++MatCoarsenSetAdjacency++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenSetAdjacency.html#MatCoarsenSetAdjacency
man:+MatCoarsenSetStrictAggs++MatCoarsenSetStrictAggs++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenSetStrictAggs.html#MatCoarsenSetStrictAggs
man:+MatCoarsenDestroy++MatCoarsenDestroy++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenDestroy.html#MatCoarsenDestroy
man:+MatCoarsenViewFromOptions++MatCoarsenViewFromOptions++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenViewFromOptions.html#MatCoarsenViewFromOptions
man:+MatCoarsenView++MatCoarsenView++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenView.html#MatCoarsenView
man:+MatCoarsenSetType++MatCoarsenSetType++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenSetType.html#MatCoarsenSetType
man:+MatCoarsenSetGreedyOrdering++MatCoarsenSetGreedyOrdering++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenSetGreedyOrdering.html#MatCoarsenSetGreedyOrdering
man:+MatCoarsenGetData++MatCoarsenGetData++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenGetData.html#MatCoarsenGetData
man:+MatCoarsenSetFromOptions++MatCoarsenSetFromOptions++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenSetFromOptions.html#MatCoarsenSetFromOptions
man:+MatCoarsenSetMaximumIterations++MatCoarsenSetMaximumIterations++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenSetMaximumIterations.html#MatCoarsenSetMaximumIterations
man:+MatCoarsenSetStrengthIndex++MatCoarsenSetStrengthIndex++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenSetStrengthIndex.html#MatCoarsenSetStrengthIndex
man:+MatCoarsenSetThreshold++MatCoarsenSetThreshold++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenSetThreshold.html#MatCoarsenSetThreshold
man:+MatCoarsenCreate++MatCoarsenCreate++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenCreate.html#MatCoarsenCreate
man:+MATCOARSENMISK++MATCOARSENMISK++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATCOARSENMISK.html#MATCOARSENMISK
man:+MatCoarsenMISKSetDistance++MatCoarsenMISKSetDistance++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenMISKSetDistance.html#MatCoarsenMISKSetDistance
man:+MatCoarsenMISKGetDistance++MatCoarsenMISKGetDistance++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatCoarsenMISKGetDistance.html#MatCoarsenMISKGetDistance
man:+MATCOARSENHEM++MATCOARSENHEM++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATCOARSENHEM.html#MATCOARSENHEM
man:+MATCOARSENMIS++MATCOARSENMIS++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATCOARSENMIS.html#MATCOARSENMIS
man:+MatPartitioningRegister++MatPartitioningRegister++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningRegister.html#MatPartitioningRegister
man:+MatPartitioningGetType++MatPartitioningGetType++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningGetType.html#MatPartitioningGetType
man:+MatPartitioningSetNParts++MatPartitioningSetNParts++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningSetNParts.html#MatPartitioningSetNParts
man:+MatPartitioningApplyND++MatPartitioningApplyND++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningApplyND.html#MatPartitioningApplyND
man:+MatPartitioningApply++MatPartitioningApply++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningApply.html#MatPartitioningApply
man:+MatPartitioningImprove++MatPartitioningImprove++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningImprove.html#MatPartitioningImprove
man:+MatPartitioningViewImbalance++MatPartitioningViewImbalance++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningViewImbalance.html#MatPartitioningViewImbalance
man:+MatPartitioningSetAdjacency++MatPartitioningSetAdjacency++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningSetAdjacency.html#MatPartitioningSetAdjacency
man:+MatPartitioningDestroy++MatPartitioningDestroy++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningDestroy.html#MatPartitioningDestroy
man:+MatPartitioningSetVertexWeights++MatPartitioningSetVertexWeights++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningSetVertexWeights.html#MatPartitioningSetVertexWeights
man:+MatPartitioningSetPartitionWeights++MatPartitioningSetPartitionWeights++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningSetPartitionWeights.html#MatPartitioningSetPartitionWeights
man:+MatPartitioningSetUseEdgeWeights++MatPartitioningSetUseEdgeWeights++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningSetUseEdgeWeights.html#MatPartitioningSetUseEdgeWeights
man:+MatPartitioningGetUseEdgeWeights++MatPartitioningGetUseEdgeWeights++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningGetUseEdgeWeights.html#MatPartitioningGetUseEdgeWeights
man:+MatPartitioningCreate++MatPartitioningCreate++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningCreate.html#MatPartitioningCreate
man:+MatPartitioningViewFromOptions++MatPartitioningViewFromOptions++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningViewFromOptions.html#MatPartitioningViewFromOptions
man:+MatPartitioningView++MatPartitioningView++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningView.html#MatPartitioningView
man:+MatPartitioningSetType++MatPartitioningSetType++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningSetType.html#MatPartitioningSetType
man:+MatPartitioningSetFromOptions++MatPartitioningSetFromOptions++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningSetFromOptions.html#MatPartitioningSetFromOptions
man:+MatPartitioningSetNumberVertexWeights++MatPartitioningSetNumberVertexWeights++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningSetNumberVertexWeights.html#MatPartitioningSetNumberVertexWeights
man:+MATPARTITIONINGHIERARCH++MATPARTITIONINGHIERARCH++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATPARTITIONINGHIERARCH.html#MATPARTITIONINGHIERARCH
man:+MatPartitioningPartySetGlobal++MatPartitioningPartySetGlobal++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningPartySetGlobal.html#MatPartitioningPartySetGlobal
man:+MatPartitioningPartySetLocal++MatPartitioningPartySetLocal++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningPartySetLocal.html#MatPartitioningPartySetLocal
man:+MatPartitioningPartySetCoarseLevel++MatPartitioningPartySetCoarseLevel++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningPartySetCoarseLevel.html#MatPartitioningPartySetCoarseLevel
man:+MatPartitioningPartySetMatchOptimization++MatPartitioningPartySetMatchOptimization++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningPartySetMatchOptimization.html#MatPartitioningPartySetMatchOptimization
man:+MatPartitioningPartySetBipart++MatPartitioningPartySetBipart++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningPartySetBipart.html#MatPartitioningPartySetBipart
man:+MATPARTITIONINGPARTY++MATPARTITIONINGPARTY++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATPARTITIONINGPARTY.html#MATPARTITIONINGPARTY
man:+MatPartitioningParmetisSetCoarseSequential++MatPartitioningParmetisSetCoarseSequential++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningParmetisSetCoarseSequential.html#MatPartitioningParmetisSetCoarseSequential
man:+MatPartitioningParmetisSetRepartition++MatPartitioningParmetisSetRepartition++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningParmetisSetRepartition.html#MatPartitioningParmetisSetRepartition
man:+MatPartitioningParmetisGetEdgeCut++MatPartitioningParmetisGetEdgeCut++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningParmetisGetEdgeCut.html#MatPartitioningParmetisGetEdgeCut
man:+MATPARTITIONINGPARMETIS++MATPARTITIONINGPARMETIS++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATPARTITIONINGPARMETIS.html#MATPARTITIONINGPARMETIS
man:+MatMeshToCellGraph++MatMeshToCellGraph++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatMeshToCellGraph.html#MatMeshToCellGraph
man:+MatPartitioningPTScotchSetImbalance++MatPartitioningPTScotchSetImbalance++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningPTScotchSetImbalance.html#MatPartitioningPTScotchSetImbalance
man:+MatPartitioningPTScotchGetImbalance++MatPartitioningPTScotchGetImbalance++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningPTScotchGetImbalance.html#MatPartitioningPTScotchGetImbalance
man:+MatPartitioningPTScotchSetStrategy++MatPartitioningPTScotchSetStrategy++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningPTScotchSetStrategy.html#MatPartitioningPTScotchSetStrategy
man:+MatPartitioningPTScotchGetStrategy++MatPartitioningPTScotchGetStrategy++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningPTScotchGetStrategy.html#MatPartitioningPTScotchGetStrategy
man:+MATPARTITIONINGPTSCOTCH++MATPARTITIONINGPTSCOTCH++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATPARTITIONINGPTSCOTCH.html#MATPARTITIONINGPTSCOTCH
man:+MatPartitioningChacoSetGlobal++MatPartitioningChacoSetGlobal++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningChacoSetGlobal.html#MatPartitioningChacoSetGlobal
man:+MatPartitioningChacoGetGlobal++MatPartitioningChacoGetGlobal++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningChacoGetGlobal.html#MatPartitioningChacoGetGlobal
man:+MatPartitioningChacoSetLocal++MatPartitioningChacoSetLocal++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningChacoSetLocal.html#MatPartitioningChacoSetLocal
man:+MatPartitioningChacoGetLocal++MatPartitioningChacoGetLocal++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningChacoGetLocal.html#MatPartitioningChacoGetLocal
man:+MatPartitioningChacoSetCoarseLevel++MatPartitioningChacoSetCoarseLevel++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningChacoSetCoarseLevel.html#MatPartitioningChacoSetCoarseLevel
man:+MatPartitioningChacoSetEigenSolver++MatPartitioningChacoSetEigenSolver++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningChacoSetEigenSolver.html#MatPartitioningChacoSetEigenSolver
man:+MatPartitioningChacoGetEigenSolver++MatPartitioningChacoGetEigenSolver++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningChacoGetEigenSolver.html#MatPartitioningChacoGetEigenSolver
man:+MatPartitioningChacoSetEigenTol++MatPartitioningChacoSetEigenTol++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningChacoSetEigenTol.html#MatPartitioningChacoSetEigenTol
man:+MatPartitioningChacoGetEigenTol++MatPartitioningChacoGetEigenTol++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningChacoGetEigenTol.html#MatPartitioningChacoGetEigenTol
man:+MatPartitioningChacoSetEigenNumber++MatPartitioningChacoSetEigenNumber++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningChacoSetEigenNumber.html#MatPartitioningChacoSetEigenNumber
man:+MatPartitioningChacoGetEigenNumber++MatPartitioningChacoGetEigenNumber++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningChacoGetEigenNumber.html#MatPartitioningChacoGetEigenNumber
man:+MATPARTITIONINGCHACO++MATPARTITIONINGCHACO++++man+https://petsc.org/release/manualpages/MatGraphOperations/MATPARTITIONINGCHACO.html#MATPARTITIONINGCHACO
man:+MatPartitioningRegisterAll++MatPartitioningRegisterAll++++man+https://petsc.org/release/manualpages/MatGraphOperations/MatPartitioningRegisterAll.html#MatPartitioningRegisterAll
man:+PCSetType++PCSetType++++man+https://petsc.org/release/manualpages/PC/PCSetType.html#PCSetType
man:+PCGetType++PCGetType++++man+https://petsc.org/release/manualpages/PC/PCGetType.html#PCGetType
man:+PCSetFromOptions++PCSetFromOptions++++man+https://petsc.org/release/manualpages/PC/PCSetFromOptions.html#PCSetFromOptions
man:+PCSetDM++PCSetDM++++man+https://petsc.org/release/manualpages/PC/PCSetDM.html#PCSetDM
man:+PCGetDM++PCGetDM++++man+https://petsc.org/release/manualpages/PC/PCGetDM.html#PCGetDM
man:+PCSetApplicationContext++PCSetApplicationContext++++man+https://petsc.org/release/manualpages/PC/PCSetApplicationContext.html#PCSetApplicationContext
man:+PCGetApplicationContext++PCGetApplicationContext++++man+https://petsc.org/release/manualpages/PC/PCGetApplicationContext.html#PCGetApplicationContext
man:+PCRegisterAll++PCRegisterAll++++man+https://petsc.org/release/manualpages/PC/PCRegisterAll.html#PCRegisterAll
man:+PCReset++PCReset++++man+https://petsc.org/release/manualpages/PC/PCReset.html#PCReset
man:+PCDestroy++PCDestroy++++man+https://petsc.org/release/manualpages/PC/PCDestroy.html#PCDestroy
man:+PCGetDiagonalScale++PCGetDiagonalScale++++man+https://petsc.org/release/manualpages/PC/PCGetDiagonalScale.html#PCGetDiagonalScale
man:+PCSetDiagonalScale++PCSetDiagonalScale++++man+https://petsc.org/release/manualpages/PC/PCSetDiagonalScale.html#PCSetDiagonalScale
man:+PCDiagonalScaleLeft++PCDiagonalScaleLeft++++man+https://petsc.org/release/manualpages/PC/PCDiagonalScaleLeft.html#PCDiagonalScaleLeft
man:+PCDiagonalScaleRight++PCDiagonalScaleRight++++man+https://petsc.org/release/manualpages/PC/PCDiagonalScaleRight.html#PCDiagonalScaleRight
man:+PCSetUseAmat++PCSetUseAmat++++man+https://petsc.org/release/manualpages/PC/PCSetUseAmat.html#PCSetUseAmat
man:+PCSetErrorIfFailure++PCSetErrorIfFailure++++man+https://petsc.org/release/manualpages/PC/PCSetErrorIfFailure.html#PCSetErrorIfFailure
man:+PCGetUseAmat++PCGetUseAmat++++man+https://petsc.org/release/manualpages/PC/PCGetUseAmat.html#PCGetUseAmat
man:+PCSetKSPNestLevel++PCSetKSPNestLevel++++man+https://petsc.org/release/manualpages/PC/PCSetKSPNestLevel.html#PCSetKSPNestLevel
man:+PCGetKSPNestLevel++PCGetKSPNestLevel++++man+https://petsc.org/release/manualpages/PC/PCGetKSPNestLevel.html#PCGetKSPNestLevel
man:+PCCreate++PCCreate++++man+https://petsc.org/release/manualpages/PC/PCCreate.html#PCCreate
man:+PCApply++PCApply++++man+https://petsc.org/release/manualpages/PC/PCApply.html#PCApply
man:+PCMatApply++PCMatApply++++man+https://petsc.org/release/manualpages/PC/PCMatApply.html#PCMatApply
man:+PCApplySymmetricLeft++PCApplySymmetricLeft++++man+https://petsc.org/release/manualpages/PC/PCApplySymmetricLeft.html#PCApplySymmetricLeft
man:+PCApplySymmetricRight++PCApplySymmetricRight++++man+https://petsc.org/release/manualpages/PC/PCApplySymmetricRight.html#PCApplySymmetricRight
man:+PCApplyTranspose++PCApplyTranspose++++man+https://petsc.org/release/manualpages/PC/PCApplyTranspose.html#PCApplyTranspose
man:+PCApplyTransposeExists++PCApplyTransposeExists++++man+https://petsc.org/release/manualpages/PC/PCApplyTransposeExists.html#PCApplyTransposeExists
man:+PCApplyBAorAB++PCApplyBAorAB++++man+https://petsc.org/release/manualpages/PC/PCApplyBAorAB.html#PCApplyBAorAB
man:+PCApplyBAorABTranspose++PCApplyBAorABTranspose++++man+https://petsc.org/release/manualpages/PC/PCApplyBAorABTranspose.html#PCApplyBAorABTranspose
man:+PCApplyRichardsonExists++PCApplyRichardsonExists++++man+https://petsc.org/release/manualpages/PC/PCApplyRichardsonExists.html#PCApplyRichardsonExists
man:+PCApplyRichardson++PCApplyRichardson++++man+https://petsc.org/release/manualpages/PC/PCApplyRichardson.html#PCApplyRichardson
man:+PCSetFailedReason++PCSetFailedReason++++man+https://petsc.org/release/manualpages/PC/PCSetFailedReason.html#PCSetFailedReason
man:+PCGetFailedReason++PCGetFailedReason++++man+https://petsc.org/release/manualpages/PC/PCGetFailedReason.html#PCGetFailedReason
man:+PCReduceFailedReason++PCReduceFailedReason++++man+https://petsc.org/release/manualpages/PC/PCReduceFailedReason.html#PCReduceFailedReason
man:+PCSetUp++PCSetUp++++man+https://petsc.org/release/manualpages/PC/PCSetUp.html#PCSetUp
man:+PCSetUpOnBlocks++PCSetUpOnBlocks++++man+https://petsc.org/release/manualpages/PC/PCSetUpOnBlocks.html#PCSetUpOnBlocks
man:+PCSetModifySubMatrices++PCSetModifySubMatrices++++man+https://petsc.org/release/manualpages/PC/PCSetModifySubMatrices.html#PCSetModifySubMatrices
man:+PCModifySubMatrices++PCModifySubMatrices++++man+https://petsc.org/release/manualpages/PC/PCModifySubMatrices.html#PCModifySubMatrices
man:+PCSetOperators++PCSetOperators++++man+https://petsc.org/release/manualpages/PC/PCSetOperators.html#PCSetOperators
man:+PCSetReusePreconditioner++PCSetReusePreconditioner++++man+https://petsc.org/release/manualpages/PC/PCSetReusePreconditioner.html#PCSetReusePreconditioner
man:+PCGetReusePreconditioner++PCGetReusePreconditioner++++man+https://petsc.org/release/manualpages/PC/PCGetReusePreconditioner.html#PCGetReusePreconditioner
man:+PCGetOperators++PCGetOperators++++man+https://petsc.org/release/manualpages/PC/PCGetOperators.html#PCGetOperators
man:+PCGetOperatorsSet++PCGetOperatorsSet++++man+https://petsc.org/release/manualpages/PC/PCGetOperatorsSet.html#PCGetOperatorsSet
man:+PCFactorGetMatrix++PCFactorGetMatrix++++man+https://petsc.org/release/manualpages/PC/PCFactorGetMatrix.html#PCFactorGetMatrix
man:+PCSetOptionsPrefix++PCSetOptionsPrefix++++man+https://petsc.org/release/manualpages/PC/PCSetOptionsPrefix.html#PCSetOptionsPrefix
man:+PCAppendOptionsPrefix++PCAppendOptionsPrefix++++man+https://petsc.org/release/manualpages/PC/PCAppendOptionsPrefix.html#PCAppendOptionsPrefix
man:+PCGetOptionsPrefix++PCGetOptionsPrefix++++man+https://petsc.org/release/manualpages/PC/PCGetOptionsPrefix.html#PCGetOptionsPrefix
man:+PCPreSolve++PCPreSolve++++man+https://petsc.org/release/manualpages/PC/PCPreSolve.html#PCPreSolve
man:+PCSetPreSolve++PCSetPreSolve++++man+https://petsc.org/release/manualpages/PC/PCSetPreSolve.html#PCSetPreSolve
man:+PCPostSolve++PCPostSolve++++man+https://petsc.org/release/manualpages/PC/PCPostSolve.html#PCPostSolve
man:+PCLoad++PCLoad++++man+https://petsc.org/release/manualpages/PC/PCLoad.html#PCLoad
man:+PCViewFromOptions++PCViewFromOptions++++man+https://petsc.org/release/manualpages/PC/PCViewFromOptions.html#PCViewFromOptions
man:+PCView++PCView++++man+https://petsc.org/release/manualpages/PC/PCView.html#PCView
man:+PCRegister++PCRegister++++man+https://petsc.org/release/manualpages/PC/PCRegister.html#PCRegister
man:+PCComputeOperator++PCComputeOperator++++man+https://petsc.org/release/manualpages/PC/PCComputeOperator.html#PCComputeOperator
man:+PCSetCoordinates++PCSetCoordinates++++man+https://petsc.org/release/manualpages/PC/PCSetCoordinates.html#PCSetCoordinates
man:+PCGetInterpolations++PCGetInterpolations++++man+https://petsc.org/release/manualpages/PC/PCGetInterpolations.html#PCGetInterpolations
man:+PCGetCoarseOperators++PCGetCoarseOperators++++man+https://petsc.org/release/manualpages/PC/PCGetCoarseOperators.html#PCGetCoarseOperators
man:+PCMatSetApplyOperation++PCMatSetApplyOperation++++man+https://petsc.org/release/manualpages/PC/PCMatSetApplyOperation.html#PCMatSetApplyOperation
man:+PCMatGetApplyOperation++PCMatGetApplyOperation++++man+https://petsc.org/release/manualpages/PC/PCMatGetApplyOperation.html#PCMatGetApplyOperation
man:+PCMAT++PCMAT++++man+https://petsc.org/release/manualpages/PC/PCMAT.html#PCMAT
man:+PCVPBJACOBI++PCVPBJACOBI++++man+https://petsc.org/release/manualpages/PC/PCVPBJACOBI.html#PCVPBJACOBI
man:+PCASMSetLocalSubdomains++PCASMSetLocalSubdomains++++man+https://petsc.org/release/manualpages/PC/PCASMSetLocalSubdomains.html#PCASMSetLocalSubdomains
man:+PCASMSetTotalSubdomains++PCASMSetTotalSubdomains++++man+https://petsc.org/release/manualpages/PC/PCASMSetTotalSubdomains.html#PCASMSetTotalSubdomains
man:+PCASMSetOverlap++PCASMSetOverlap++++man+https://petsc.org/release/manualpages/PC/PCASMSetOverlap.html#PCASMSetOverlap
man:+PCASMSetType++PCASMSetType++++man+https://petsc.org/release/manualpages/PC/PCASMSetType.html#PCASMSetType
man:+PCASMGetType++PCASMGetType++++man+https://petsc.org/release/manualpages/PC/PCASMGetType.html#PCASMGetType
man:+PCASMSetLocalType++PCASMSetLocalType++++man+https://petsc.org/release/manualpages/PC/PCASMSetLocalType.html#PCASMSetLocalType
man:+PCASMGetLocalType++PCASMGetLocalType++++man+https://petsc.org/release/manualpages/PC/PCASMGetLocalType.html#PCASMGetLocalType
man:+PCASMSetSortIndices++PCASMSetSortIndices++++man+https://petsc.org/release/manualpages/PC/PCASMSetSortIndices.html#PCASMSetSortIndices
man:+PCASMGetSubKSP++PCASMGetSubKSP++++man+https://petsc.org/release/manualpages/PC/PCASMGetSubKSP.html#PCASMGetSubKSP
man:+PCASM++PCASM++++man+https://petsc.org/release/manualpages/PC/PCASM.html#PCASM
man:+PCASMCreateSubdomains++PCASMCreateSubdomains++++man+https://petsc.org/release/manualpages/PC/PCASMCreateSubdomains.html#PCASMCreateSubdomains
man:+PCASMDestroySubdomains++PCASMDestroySubdomains++++man+https://petsc.org/release/manualpages/PC/PCASMDestroySubdomains.html#PCASMDestroySubdomains
man:+PCASMCreateSubdomains2D++PCASMCreateSubdomains2D++++man+https://petsc.org/release/manualpages/PC/PCASMCreateSubdomains2D.html#PCASMCreateSubdomains2D
man:+PCASMGetLocalSubdomains++PCASMGetLocalSubdomains++++man+https://petsc.org/release/manualpages/PC/PCASMGetLocalSubdomains.html#PCASMGetLocalSubdomains
man:+PCASMGetLocalSubmatrices++PCASMGetLocalSubmatrices++++man+https://petsc.org/release/manualpages/PC/PCASMGetLocalSubmatrices.html#PCASMGetLocalSubmatrices
man:+PCASMSetDMSubdomains++PCASMSetDMSubdomains++++man+https://petsc.org/release/manualpages/PC/PCASMSetDMSubdomains.html#PCASMSetDMSubdomains
man:+PCASMGetDMSubdomains++PCASMGetDMSubdomains++++man+https://petsc.org/release/manualpages/PC/PCASMGetDMSubdomains.html#PCASMGetDMSubdomains
man:+PCASMGetSubMatType++PCASMGetSubMatType++++man+https://petsc.org/release/manualpages/PC/PCASMGetSubMatType.html#PCASMGetSubMatType
man:+PCASMSetSubMatType++PCASMSetSubMatType++++man+https://petsc.org/release/manualpages/PC/PCASMSetSubMatType.html#PCASMSetSubMatType
man:+PCMPIServerBegin++PCMPIServerBegin++++man+https://petsc.org/release/manualpages/PC/PCMPIServerBegin.html#PCMPIServerBegin
man:+PCMPIServerEnd++PCMPIServerEnd++++man+https://petsc.org/release/manualpages/PC/PCMPIServerEnd.html#PCMPIServerEnd
man:+PCMPI++PCMPI++++man+https://petsc.org/release/manualpages/PC/PCMPI.html#PCMPI
man:+PCMPIGetKSP++PCMPIGetKSP++++man+https://petsc.org/release/manualpages/PC/PCMPIGetKSP.html#PCMPIGetKSP
man:+PCPythonSetType++PCPythonSetType++++man+https://petsc.org/release/manualpages/PC/PCPythonSetType.html#PCPythonSetType
man:+PCPythonGetType++PCPythonGetType++++man+https://petsc.org/release/manualpages/PC/PCPythonGetType.html#PCPythonGetType
man:+PCKSPSetKSP++PCKSPSetKSP++++man+https://petsc.org/release/manualpages/PC/PCKSPSetKSP.html#PCKSPSetKSP
man:+PCKSPGetKSP++PCKSPGetKSP++++man+https://petsc.org/release/manualpages/PC/PCKSPGetKSP.html#PCKSPGetKSP
man:+PCKSP++PCKSP++++man+https://petsc.org/release/manualpages/PC/PCKSP.html#PCKSP
man:+PCMGResidualDefault++PCMGResidualDefault++++man+https://petsc.org/release/manualpages/PC/PCMGResidualDefault.html#PCMGResidualDefault
man:+PCMGResidualTransposeDefault++PCMGResidualTransposeDefault++++man+https://petsc.org/release/manualpages/PC/PCMGResidualTransposeDefault.html#PCMGResidualTransposeDefault
man:+PCMGMatResidualDefault++PCMGMatResidualDefault++++man+https://petsc.org/release/manualpages/PC/PCMGMatResidualDefault.html#PCMGMatResidualDefault
man:+PCMGMatResidualTransposeDefault++PCMGMatResidualTransposeDefault++++man+https://petsc.org/release/manualpages/PC/PCMGMatResidualTransposeDefault.html#PCMGMatResidualTransposeDefault
man:+PCMGGetCoarseSolve++PCMGGetCoarseSolve++++man+https://petsc.org/release/manualpages/PC/PCMGGetCoarseSolve.html#PCMGGetCoarseSolve
man:+PCMGSetResidual++PCMGSetResidual++++man+https://petsc.org/release/manualpages/PC/PCMGSetResidual.html#PCMGSetResidual
man:+PCMGSetResidualTranspose++PCMGSetResidualTranspose++++man+https://petsc.org/release/manualpages/PC/PCMGSetResidualTranspose.html#PCMGSetResidualTranspose
man:+PCMGSetInterpolation++PCMGSetInterpolation++++man+https://petsc.org/release/manualpages/PC/PCMGSetInterpolation.html#PCMGSetInterpolation
man:+PCMGSetOperators++PCMGSetOperators++++man+https://petsc.org/release/manualpages/PC/PCMGSetOperators.html#PCMGSetOperators
man:+PCMGGetInterpolation++PCMGGetInterpolation++++man+https://petsc.org/release/manualpages/PC/PCMGGetInterpolation.html#PCMGGetInterpolation
man:+PCMGSetRestriction++PCMGSetRestriction++++man+https://petsc.org/release/manualpages/PC/PCMGSetRestriction.html#PCMGSetRestriction
man:+PCMGGetRestriction++PCMGGetRestriction++++man+https://petsc.org/release/manualpages/PC/PCMGGetRestriction.html#PCMGGetRestriction
man:+PCMGSetRScale++PCMGSetRScale++++man+https://petsc.org/release/manualpages/PC/PCMGSetRScale.html#PCMGSetRScale
man:+PCMGGetRScale++PCMGGetRScale++++man+https://petsc.org/release/manualpages/PC/PCMGGetRScale.html#PCMGGetRScale
man:+PCMGSetInjection++PCMGSetInjection++++man+https://petsc.org/release/manualpages/PC/PCMGSetInjection.html#PCMGSetInjection
man:+PCMGGetInjection++PCMGGetInjection++++man+https://petsc.org/release/manualpages/PC/PCMGGetInjection.html#PCMGGetInjection
man:+PCMGGetSmoother++PCMGGetSmoother++++man+https://petsc.org/release/manualpages/PC/PCMGGetSmoother.html#PCMGGetSmoother
man:+PCMGGetSmootherUp++PCMGGetSmootherUp++++man+https://petsc.org/release/manualpages/PC/PCMGGetSmootherUp.html#PCMGGetSmootherUp
man:+PCMGGetSmootherDown++PCMGGetSmootherDown++++man+https://petsc.org/release/manualpages/PC/PCMGGetSmootherDown.html#PCMGGetSmootherDown
man:+PCMGSetCycleTypeOnLevel++PCMGSetCycleTypeOnLevel++++man+https://petsc.org/release/manualpages/PC/PCMGSetCycleTypeOnLevel.html#PCMGSetCycleTypeOnLevel
man:+PCMGSetRhs++PCMGSetRhs++++man+https://petsc.org/release/manualpages/PC/PCMGSetRhs.html#PCMGSetRhs
man:+PCMGSetX++PCMGSetX++++man+https://petsc.org/release/manualpages/PC/PCMGSetX.html#PCMGSetX
man:+PCMGSetR++PCMGSetR++++man+https://petsc.org/release/manualpages/PC/PCMGSetR.html#PCMGSetR
man:+PCMGSetLevels++PCMGSetLevels++++man+https://petsc.org/release/manualpages/PC/PCMGSetLevels.html#PCMGSetLevels
man:+PCMGGetLevels++PCMGGetLevels++++man+https://petsc.org/release/manualpages/PC/PCMGGetLevels.html#PCMGGetLevels
man:+PCMGGetGridComplexity++PCMGGetGridComplexity++++man+https://petsc.org/release/manualpages/PC/PCMGGetGridComplexity.html#PCMGGetGridComplexity
man:+PCMGSetType++PCMGSetType++++man+https://petsc.org/release/manualpages/PC/PCMGSetType.html#PCMGSetType
man:+PCMGGetType++PCMGGetType++++man+https://petsc.org/release/manualpages/PC/PCMGGetType.html#PCMGGetType
man:+PCMGSetCycleType++PCMGSetCycleType++++man+https://petsc.org/release/manualpages/PC/PCMGSetCycleType.html#PCMGSetCycleType
man:+PCMGMultiplicativeSetCycles++PCMGMultiplicativeSetCycles++++man+https://petsc.org/release/manualpages/PC/PCMGMultiplicativeSetCycles.html#PCMGMultiplicativeSetCycles
man:+PCMGSetGalerkin++PCMGSetGalerkin++++man+https://petsc.org/release/manualpages/PC/PCMGSetGalerkin.html#PCMGSetGalerkin
man:+PCMGGetGalerkin++PCMGGetGalerkin++++man+https://petsc.org/release/manualpages/PC/PCMGGetGalerkin.html#PCMGGetGalerkin
man:+PCMGSetAdaptCoarseSpaceType++PCMGSetAdaptCoarseSpaceType++++man+https://petsc.org/release/manualpages/PC/PCMGSetAdaptCoarseSpaceType.html#PCMGSetAdaptCoarseSpaceType
man:+PCMGGetAdaptCoarseSpaceType++PCMGGetAdaptCoarseSpaceType++++man+https://petsc.org/release/manualpages/PC/PCMGGetAdaptCoarseSpaceType.html#PCMGGetAdaptCoarseSpaceType
man:+PCMGSetAdaptInterpolation++PCMGSetAdaptInterpolation++++man+https://petsc.org/release/manualpages/PC/PCMGSetAdaptInterpolation.html#PCMGSetAdaptInterpolation
man:+PCMGGetAdaptInterpolation++PCMGGetAdaptInterpolation++++man+https://petsc.org/release/manualpages/PC/PCMGGetAdaptInterpolation.html#PCMGGetAdaptInterpolation
man:+PCMGSetAdaptCR++PCMGSetAdaptCR++++man+https://petsc.org/release/manualpages/PC/PCMGSetAdaptCR.html#PCMGSetAdaptCR
man:+PCMGGetAdaptCR++PCMGGetAdaptCR++++man+https://petsc.org/release/manualpages/PC/PCMGGetAdaptCR.html#PCMGGetAdaptCR
man:+PCMGSetNumberSmooth++PCMGSetNumberSmooth++++man+https://petsc.org/release/manualpages/PC/PCMGSetNumberSmooth.html#PCMGSetNumberSmooth
man:+PCMGSetDistinctSmoothUp++PCMGSetDistinctSmoothUp++++man+https://petsc.org/release/manualpages/PC/PCMGSetDistinctSmoothUp.html#PCMGSetDistinctSmoothUp
man:+PCMGRegisterCoarseSpaceConstructor++PCMGRegisterCoarseSpaceConstructor++++man+https://petsc.org/release/manualpages/PC/PCMGRegisterCoarseSpaceConstructor.html#PCMGRegisterCoarseSpaceConstructor
man:+PCMGGetCoarseSpaceConstructor++PCMGGetCoarseSpaceConstructor++++man+https://petsc.org/release/manualpages/PC/PCMGGetCoarseSpaceConstructor.html#PCMGGetCoarseSpaceConstructor
man:+PCMG++PCMG++++man+https://petsc.org/release/manualpages/PC/PCMG.html#PCMG
man:+PCHMGSetReuseInterpolation++PCHMGSetReuseInterpolation++++man+https://petsc.org/release/manualpages/PC/PCHMGSetReuseInterpolation.html#PCHMGSetReuseInterpolation
man:+PCHMGSetUseSubspaceCoarsening++PCHMGSetUseSubspaceCoarsening++++man+https://petsc.org/release/manualpages/PC/PCHMGSetUseSubspaceCoarsening.html#PCHMGSetUseSubspaceCoarsening
man:+PCHMGSetInnerPCType++PCHMGSetInnerPCType++++man+https://petsc.org/release/manualpages/PC/PCHMGSetInnerPCType.html#PCHMGSetInnerPCType
man:+PCHMGSetCoarseningComponent++PCHMGSetCoarseningComponent++++man+https://petsc.org/release/manualpages/PC/PCHMGSetCoarseningComponent.html#PCHMGSetCoarseningComponent
man:+PCHMGUseMatMAIJ++PCHMGUseMatMAIJ++++man+https://petsc.org/release/manualpages/PC/PCHMGUseMatMAIJ.html#PCHMGUseMatMAIJ
man:+PCHMG++PCHMG++++man+https://petsc.org/release/manualpages/PC/PCHMG.html#PCHMG
man:+PCTelescopeGetKSP++PCTelescopeGetKSP++++man+https://petsc.org/release/manualpages/PC/PCTelescopeGetKSP.html#PCTelescopeGetKSP
man:+PCTelescopeGetReductionFactor++PCTelescopeGetReductionFactor++++man+https://petsc.org/release/manualpages/PC/PCTelescopeGetReductionFactor.html#PCTelescopeGetReductionFactor
man:+PCTelescopeSetReductionFactor++PCTelescopeSetReductionFactor++++man+https://petsc.org/release/manualpages/PC/PCTelescopeSetReductionFactor.html#PCTelescopeSetReductionFactor
man:+PCTelescopeGetIgnoreDM++PCTelescopeGetIgnoreDM++++man+https://petsc.org/release/manualpages/PC/PCTelescopeGetIgnoreDM.html#PCTelescopeGetIgnoreDM
man:+PCTelescopeSetIgnoreDM++PCTelescopeSetIgnoreDM++++man+https://petsc.org/release/manualpages/PC/PCTelescopeSetIgnoreDM.html#PCTelescopeSetIgnoreDM
man:+PCTelescopeGetUseCoarseDM++PCTelescopeGetUseCoarseDM++++man+https://petsc.org/release/manualpages/PC/PCTelescopeGetUseCoarseDM.html#PCTelescopeGetUseCoarseDM
man:+PCTelescopeSetUseCoarseDM++PCTelescopeSetUseCoarseDM++++man+https://petsc.org/release/manualpages/PC/PCTelescopeSetUseCoarseDM.html#PCTelescopeSetUseCoarseDM
man:+PCTelescopeGetIgnoreKSPComputeOperators++PCTelescopeGetIgnoreKSPComputeOperators++++man+https://petsc.org/release/manualpages/PC/PCTelescopeGetIgnoreKSPComputeOperators.html#PCTelescopeGetIgnoreKSPComputeOperators
man:+PCTelescopeSetIgnoreKSPComputeOperators++PCTelescopeSetIgnoreKSPComputeOperators++++man+https://petsc.org/release/manualpages/PC/PCTelescopeSetIgnoreKSPComputeOperators.html#PCTelescopeSetIgnoreKSPComputeOperators
man:+PCTelescopeGetDM++PCTelescopeGetDM++++man+https://petsc.org/release/manualpages/PC/PCTelescopeGetDM.html#PCTelescopeGetDM
man:+PCTelescopeSetSubcommType++PCTelescopeSetSubcommType++++man+https://petsc.org/release/manualpages/PC/PCTelescopeSetSubcommType.html#PCTelescopeSetSubcommType
man:+PCTelescopeGetSubcommType++PCTelescopeGetSubcommType++++man+https://petsc.org/release/manualpages/PC/PCTelescopeGetSubcommType.html#PCTelescopeGetSubcommType
man:+PCTELESCOPE++PCTELESCOPE++++man+https://petsc.org/release/manualpages/PC/PCTELESCOPE.html#PCTELESCOPE
man:+PCShellGetContext++PCShellGetContext++++man+https://petsc.org/release/manualpages/PC/PCShellGetContext.html#PCShellGetContext
man:+PCShellSetContext++PCShellSetContext++++man+https://petsc.org/release/manualpages/PC/PCShellSetContext.html#PCShellSetContext
man:+PCShellSetDestroy++PCShellSetDestroy++++man+https://petsc.org/release/manualpages/PC/PCShellSetDestroy.html#PCShellSetDestroy
man:+PCShellSetSetUp++PCShellSetSetUp++++man+https://petsc.org/release/manualpages/PC/PCShellSetSetUp.html#PCShellSetSetUp
man:+PCShellSetView++PCShellSetView++++man+https://petsc.org/release/manualpages/PC/PCShellSetView.html#PCShellSetView
man:+PCShellSetApply++PCShellSetApply++++man+https://petsc.org/release/manualpages/PC/PCShellSetApply.html#PCShellSetApply
man:+PCShellSetMatApply++PCShellSetMatApply++++man+https://petsc.org/release/manualpages/PC/PCShellSetMatApply.html#PCShellSetMatApply
man:+PCShellSetApplySymmetricLeft++PCShellSetApplySymmetricLeft++++man+https://petsc.org/release/manualpages/PC/PCShellSetApplySymmetricLeft.html#PCShellSetApplySymmetricLeft
man:+PCShellSetApplySymmetricRight++PCShellSetApplySymmetricRight++++man+https://petsc.org/release/manualpages/PC/PCShellSetApplySymmetricRight.html#PCShellSetApplySymmetricRight
man:+PCShellSetApplyBA++PCShellSetApplyBA++++man+https://petsc.org/release/manualpages/PC/PCShellSetApplyBA.html#PCShellSetApplyBA
man:+PCShellSetApplyTranspose++PCShellSetApplyTranspose++++man+https://petsc.org/release/manualpages/PC/PCShellSetApplyTranspose.html#PCShellSetApplyTranspose
man:+PCShellSetPreSolve++PCShellSetPreSolve++++man+https://petsc.org/release/manualpages/PC/PCShellSetPreSolve.html#PCShellSetPreSolve
man:+PCShellSetPostSolve++PCShellSetPostSolve++++man+https://petsc.org/release/manualpages/PC/PCShellSetPostSolve.html#PCShellSetPostSolve
man:+PCShellSetName++PCShellSetName++++man+https://petsc.org/release/manualpages/PC/PCShellSetName.html#PCShellSetName
man:+PCShellGetName++PCShellGetName++++man+https://petsc.org/release/manualpages/PC/PCShellGetName.html#PCShellGetName
man:+PCShellSetApplyRichardson++PCShellSetApplyRichardson++++man+https://petsc.org/release/manualpages/PC/PCShellSetApplyRichardson.html#PCShellSetApplyRichardson
man:+PCSHELL++PCSHELL++++man+https://petsc.org/release/manualpages/PC/PCSHELL.html#PCSHELL
man:+PCNN++PCNN++++man+https://petsc.org/release/manualpages/PC/PCNN.html#PCNN
man:+PCISSetUseStiffnessScaling++PCISSetUseStiffnessScaling++++man+https://petsc.org/release/manualpages/PC/PCISSetUseStiffnessScaling.html#PCISSetUseStiffnessScaling
man:+PCISSetSubdomainDiagonalScaling++PCISSetSubdomainDiagonalScaling++++man+https://petsc.org/release/manualpages/PC/PCISSetSubdomainDiagonalScaling.html#PCISSetSubdomainDiagonalScaling
man:+PCISSetSubdomainScalingFactor++PCISSetSubdomainScalingFactor++++man+https://petsc.org/release/manualpages/PC/PCISSetSubdomainScalingFactor.html#PCISSetSubdomainScalingFactor
man:+PCISSetUp++PCISSetUp++++man+https://petsc.org/release/manualpages/PC/PCISSetUp.html#PCISSetUp
man:+PCISReset++PCISReset++++man+https://petsc.org/release/manualpages/PC/PCISReset.html#PCISReset
man:+PCISInitialize++PCISInitialize++++man+https://petsc.org/release/manualpages/PC/PCISInitialize.html#PCISInitialize
man:+PCISApplySchur++PCISApplySchur++++man+https://petsc.org/release/manualpages/PC/PCISApplySchur.html#PCISApplySchur
man:+PCISScatterArrayNToVecB++PCISScatterArrayNToVecB++++man+https://petsc.org/release/manualpages/PC/PCISScatterArrayNToVecB.html#PCISScatterArrayNToVecB
man:+PCISApplyInvSchur++PCISApplyInvSchur++++man+https://petsc.org/release/manualpages/PC/PCISApplyInvSchur.html#PCISApplyInvSchur
man:+PCEisenstatSetOmega++PCEisenstatSetOmega++++man+https://petsc.org/release/manualpages/PC/PCEisenstatSetOmega.html#PCEisenstatSetOmega
man:+PCEisenstatSetNoDiagonalScaling++PCEisenstatSetNoDiagonalScaling++++man+https://petsc.org/release/manualpages/PC/PCEisenstatSetNoDiagonalScaling.html#PCEisenstatSetNoDiagonalScaling
man:+PCEisenstatGetOmega++PCEisenstatGetOmega++++man+https://petsc.org/release/manualpages/PC/PCEisenstatGetOmega.html#PCEisenstatGetOmega
man:+PCEisenstatGetNoDiagonalScaling++PCEisenstatGetNoDiagonalScaling++++man+https://petsc.org/release/manualpages/PC/PCEisenstatGetNoDiagonalScaling.html#PCEisenstatGetNoDiagonalScaling
man:+PCEISENSTAT++PCEISENSTAT++++man+https://petsc.org/release/manualpages/PC/PCEISENSTAT.html#PCEISENSTAT
man:+PCJACOBI++PCJACOBI++++man+https://petsc.org/release/manualpages/PC/PCJACOBI.html#PCJACOBI
man:+PCJacobiSetUseAbs++PCJacobiSetUseAbs++++man+https://petsc.org/release/manualpages/PC/PCJacobiSetUseAbs.html#PCJacobiSetUseAbs
man:+PCJacobiGetUseAbs++PCJacobiGetUseAbs++++man+https://petsc.org/release/manualpages/PC/PCJacobiGetUseAbs.html#PCJacobiGetUseAbs
man:+PCJacobiSetRowl1Scale++PCJacobiSetRowl1Scale++++man+https://petsc.org/release/manualpages/PC/PCJacobiSetRowl1Scale.html#PCJacobiSetRowl1Scale
man:+PCJacobiGetRowl1Scale++PCJacobiGetRowl1Scale++++man+https://petsc.org/release/manualpages/PC/PCJacobiGetRowl1Scale.html#PCJacobiGetRowl1Scale
man:+PCJacobiSetFixDiagonal++PCJacobiSetFixDiagonal++++man+https://petsc.org/release/manualpages/PC/PCJacobiSetFixDiagonal.html#PCJacobiSetFixDiagonal
man:+PCJacobiGetFixDiagonal++PCJacobiGetFixDiagonal++++man+https://petsc.org/release/manualpages/PC/PCJacobiGetFixDiagonal.html#PCJacobiGetFixDiagonal
man:+PCJacobiGetDiagonal++PCJacobiGetDiagonal++++man+https://petsc.org/release/manualpages/PC/PCJacobiGetDiagonal.html#PCJacobiGetDiagonal
man:+PCJacobiSetType++PCJacobiSetType++++man+https://petsc.org/release/manualpages/PC/PCJacobiSetType.html#PCJacobiSetType
man:+PCJacobiGetType++PCJacobiGetType++++man+https://petsc.org/release/manualpages/PC/PCJacobiGetType.html#PCJacobiGetType
man:+PCGalerkinSetRestriction++PCGalerkinSetRestriction++++man+https://petsc.org/release/manualpages/PC/PCGalerkinSetRestriction.html#PCGalerkinSetRestriction
man:+PCGalerkinSetInterpolation++PCGalerkinSetInterpolation++++man+https://petsc.org/release/manualpages/PC/PCGalerkinSetInterpolation.html#PCGalerkinSetInterpolation
man:+PCGalerkinSetComputeSubmatrix++PCGalerkinSetComputeSubmatrix++++man+https://petsc.org/release/manualpages/PC/PCGalerkinSetComputeSubmatrix.html#PCGalerkinSetComputeSubmatrix
man:+PCGalerkinGetKSP++PCGalerkinGetKSP++++man+https://petsc.org/release/manualpages/PC/PCGalerkinGetKSP.html#PCGalerkinGetKSP
man:+PCGALERKIN++PCGALERKIN++++man+https://petsc.org/release/manualpages/PC/PCGALERKIN.html#PCGALERKIN
man:+PCPARMSSetGlobal++PCPARMSSetGlobal++++man+https://petsc.org/release/manualpages/PC/PCPARMSSetGlobal.html#PCPARMSSetGlobal
man:+PCPARMSSetLocal++PCPARMSSetLocal++++man+https://petsc.org/release/manualpages/PC/PCPARMSSetLocal.html#PCPARMSSetLocal
man:+PCPARMSSetSolveTolerances++PCPARMSSetSolveTolerances++++man+https://petsc.org/release/manualpages/PC/PCPARMSSetSolveTolerances.html#PCPARMSSetSolveTolerances
man:+PCPARMSSetSolveRestart++PCPARMSSetSolveRestart++++man+https://petsc.org/release/manualpages/PC/PCPARMSSetSolveRestart.html#PCPARMSSetSolveRestart
man:+PCPARMSSetNonsymPerm++PCPARMSSetNonsymPerm++++man+https://petsc.org/release/manualpages/PC/PCPARMSSetNonsymPerm.html#PCPARMSSetNonsymPerm
man:+PCPARMSSetFill++PCPARMSSetFill++++man+https://petsc.org/release/manualpages/PC/PCPARMSSetFill.html#PCPARMSSetFill
man:+PCPARMS++PCPARMS++++man+https://petsc.org/release/manualpages/PC/PCPARMS.html#PCPARMS
man:+PCExoticSetType++PCExoticSetType++++man+https://petsc.org/release/manualpages/PC/PCExoticSetType.html#PCExoticSetType
man:+PCEXOTIC++PCEXOTIC++++man+https://petsc.org/release/manualpages/PC/PCEXOTIC.html#PCEXOTIC
man:+PCFactorSetUpMatSolverType++PCFactorSetUpMatSolverType++++man+https://petsc.org/release/manualpages/PC/PCFactorSetUpMatSolverType.html#PCFactorSetUpMatSolverType
man:+PCFactorSetZeroPivot++PCFactorSetZeroPivot++++man+https://petsc.org/release/manualpages/PC/PCFactorSetZeroPivot.html#PCFactorSetZeroPivot
man:+PCFactorSetShiftType++PCFactorSetShiftType++++man+https://petsc.org/release/manualpages/PC/PCFactorSetShiftType.html#PCFactorSetShiftType
man:+PCFactorSetShiftAmount++PCFactorSetShiftAmount++++man+https://petsc.org/release/manualpages/PC/PCFactorSetShiftAmount.html#PCFactorSetShiftAmount
man:+PCFactorSetDropTolerance++PCFactorSetDropTolerance++++man+https://petsc.org/release/manualpages/PC/PCFactorSetDropTolerance.html#PCFactorSetDropTolerance
man:+PCFactorGetZeroPivot++PCFactorGetZeroPivot++++man+https://petsc.org/release/manualpages/PC/PCFactorGetZeroPivot.html#PCFactorGetZeroPivot
man:+PCFactorGetShiftAmount++PCFactorGetShiftAmount++++man+https://petsc.org/release/manualpages/PC/PCFactorGetShiftAmount.html#PCFactorGetShiftAmount
man:+PCFactorGetShiftType++PCFactorGetShiftType++++man+https://petsc.org/release/manualpages/PC/PCFactorGetShiftType.html#PCFactorGetShiftType
man:+PCFactorGetLevels++PCFactorGetLevels++++man+https://petsc.org/release/manualpages/PC/PCFactorGetLevels.html#PCFactorGetLevels
man:+PCFactorSetLevels++PCFactorSetLevels++++man+https://petsc.org/release/manualpages/PC/PCFactorSetLevels.html#PCFactorSetLevels
man:+PCFactorSetAllowDiagonalFill++PCFactorSetAllowDiagonalFill++++man+https://petsc.org/release/manualpages/PC/PCFactorSetAllowDiagonalFill.html#PCFactorSetAllowDiagonalFill
man:+PCFactorGetAllowDiagonalFill++PCFactorGetAllowDiagonalFill++++man+https://petsc.org/release/manualpages/PC/PCFactorGetAllowDiagonalFill.html#PCFactorGetAllowDiagonalFill
man:+PCFactorReorderForNonzeroDiagonal++PCFactorReorderForNonzeroDiagonal++++man+https://petsc.org/release/manualpages/PC/PCFactorReorderForNonzeroDiagonal.html#PCFactorReorderForNonzeroDiagonal
man:+PCFactorSetMatSolverType++PCFactorSetMatSolverType++++man+https://petsc.org/release/manualpages/PC/PCFactorSetMatSolverType.html#PCFactorSetMatSolverType
man:+PCFactorGetMatSolverType++PCFactorGetMatSolverType++++man+https://petsc.org/release/manualpages/PC/PCFactorGetMatSolverType.html#PCFactorGetMatSolverType
man:+PCFactorSetFill++PCFactorSetFill++++man+https://petsc.org/release/manualpages/PC/PCFactorSetFill.html#PCFactorSetFill
man:+PCFactorSetUseInPlace++PCFactorSetUseInPlace++++man+https://petsc.org/release/manualpages/PC/PCFactorSetUseInPlace.html#PCFactorSetUseInPlace
man:+PCFactorGetUseInPlace++PCFactorGetUseInPlace++++man+https://petsc.org/release/manualpages/PC/PCFactorGetUseInPlace.html#PCFactorGetUseInPlace
man:+PCFactorSetMatOrderingType++PCFactorSetMatOrderingType++++man+https://petsc.org/release/manualpages/PC/PCFactorSetMatOrderingType.html#PCFactorSetMatOrderingType
man:+PCFactorSetColumnPivot++PCFactorSetColumnPivot++++man+https://petsc.org/release/manualpages/PC/PCFactorSetColumnPivot.html#PCFactorSetColumnPivot
man:+PCFactorSetPivotInBlocks++PCFactorSetPivotInBlocks++++man+https://petsc.org/release/manualpages/PC/PCFactorSetPivotInBlocks.html#PCFactorSetPivotInBlocks
man:+PCFactorSetReuseFill++PCFactorSetReuseFill++++man+https://petsc.org/release/manualpages/PC/PCFactorSetReuseFill.html#PCFactorSetReuseFill
man:+PCQR++PCQR++++man+https://petsc.org/release/manualpages/PC/PCQR.html#PCQR
man:+PCICC++PCICC++++man+https://petsc.org/release/manualpages/PC/PCICC.html#PCICC
man:+PCILU++PCILU++++man+https://petsc.org/release/manualpages/PC/PCILU.html#PCILU
man:+PCFactorSetReuseOrdering++PCFactorSetReuseOrdering++++man+https://petsc.org/release/manualpages/PC/PCFactorSetReuseOrdering.html#PCFactorSetReuseOrdering
man:+PCCHOLESKY++PCCHOLESKY++++man+https://petsc.org/release/manualpages/PC/PCCHOLESKY.html#PCCHOLESKY
man:+PCLU++PCLU++++man+https://petsc.org/release/manualpages/PC/PCLU.html#PCLU
man:+PCLSC++PCLSC++++man+https://petsc.org/release/manualpages/PC/PCLSC.html#PCLSC
man:+PCCompositeSetType++PCCompositeSetType++++man+https://petsc.org/release/manualpages/PC/PCCompositeSetType.html#PCCompositeSetType
man:+PCCompositeGetType++PCCompositeGetType++++man+https://petsc.org/release/manualpages/PC/PCCompositeGetType.html#PCCompositeGetType
man:+PCCompositeSpecialSetAlpha++PCCompositeSpecialSetAlpha++++man+https://petsc.org/release/manualpages/PC/PCCompositeSpecialSetAlpha.html#PCCompositeSpecialSetAlpha
man:+PCCompositeAddPCType++PCCompositeAddPCType++++man+https://petsc.org/release/manualpages/PC/PCCompositeAddPCType.html#PCCompositeAddPCType
man:+PCCompositeAddPC++PCCompositeAddPC++++man+https://petsc.org/release/manualpages/PC/PCCompositeAddPC.html#PCCompositeAddPC
man:+PCCompositeGetNumberPC++PCCompositeGetNumberPC++++man+https://petsc.org/release/manualpages/PC/PCCompositeGetNumberPC.html#PCCompositeGetNumberPC
man:+PCCompositeGetPC++PCCompositeGetPC++++man+https://petsc.org/release/manualpages/PC/PCCompositeGetPC.html#PCCompositeGetPC
man:+PCCOMPOSITE++PCCOMPOSITE++++man+https://petsc.org/release/manualpages/PC/PCCOMPOSITE.html#PCCOMPOSITE
man:+PCBDDCSetDiscreteGradient++PCBDDCSetDiscreteGradient++++man+https://petsc.org/release/manualpages/PC/PCBDDCSetDiscreteGradient.html#PCBDDCSetDiscreteGradient
man:+PCBDDCSetDivergenceMat++PCBDDCSetDivergenceMat++++man+https://petsc.org/release/manualpages/PC/PCBDDCSetDivergenceMat.html#PCBDDCSetDivergenceMat
man:+PCBDDCSetChangeOfBasisMat++PCBDDCSetChangeOfBasisMat++++man+https://petsc.org/release/manualpages/PC/PCBDDCSetChangeOfBasisMat.html#PCBDDCSetChangeOfBasisMat
man:+PCBDDCSetPrimalVerticesIS++PCBDDCSetPrimalVerticesIS++++man+https://petsc.org/release/manualpages/PC/PCBDDCSetPrimalVerticesIS.html#PCBDDCSetPrimalVerticesIS
man:+PCBDDCGetPrimalVerticesIS++PCBDDCGetPrimalVerticesIS++++man+https://petsc.org/release/manualpages/PC/PCBDDCGetPrimalVerticesIS.html#PCBDDCGetPrimalVerticesIS
man:+PCBDDCSetPrimalVerticesLocalIS++PCBDDCSetPrimalVerticesLocalIS++++man+https://petsc.org/release/manualpages/PC/PCBDDCSetPrimalVerticesLocalIS.html#PCBDDCSetPrimalVerticesLocalIS
man:+PCBDDCGetPrimalVerticesLocalIS++PCBDDCGetPrimalVerticesLocalIS++++man+https://petsc.org/release/manualpages/PC/PCBDDCGetPrimalVerticesLocalIS.html#PCBDDCGetPrimalVerticesLocalIS
man:+PCBDDCSetCoarseningRatio++PCBDDCSetCoarseningRatio++++man+https://petsc.org/release/manualpages/PC/PCBDDCSetCoarseningRatio.html#PCBDDCSetCoarseningRatio
man:+PCBDDCSetLevels++PCBDDCSetLevels++++man+https://petsc.org/release/manualpages/PC/PCBDDCSetLevels.html#PCBDDCSetLevels
man:+PCBDDCSetDirichletBoundaries++PCBDDCSetDirichletBoundaries++++man+https://petsc.org/release/manualpages/PC/PCBDDCSetDirichletBoundaries.html#PCBDDCSetDirichletBoundaries
man:+PCBDDCSetDirichletBoundariesLocal++PCBDDCSetDirichletBoundariesLocal++++man+https://petsc.org/release/manualpages/PC/PCBDDCSetDirichletBoundariesLocal.html#PCBDDCSetDirichletBoundariesLocal
man:+PCBDDCSetNeumannBoundaries++PCBDDCSetNeumannBoundaries++++man+https://petsc.org/release/manualpages/PC/PCBDDCSetNeumannBoundaries.html#PCBDDCSetNeumannBoundaries
man:+PCBDDCSetNeumannBoundariesLocal++PCBDDCSetNeumannBoundariesLocal++++man+https://petsc.org/release/manualpages/PC/PCBDDCSetNeumannBoundariesLocal.html#PCBDDCSetNeumannBoundariesLocal
man:+PCBDDCGetDirichletBoundaries++PCBDDCGetDirichletBoundaries++++man+https://petsc.org/release/manualpages/PC/PCBDDCGetDirichletBoundaries.html#PCBDDCGetDirichletBoundaries
man:+PCBDDCGetDirichletBoundariesLocal++PCBDDCGetDirichletBoundariesLocal++++man+https://petsc.org/release/manualpages/PC/PCBDDCGetDirichletBoundariesLocal.html#PCBDDCGetDirichletBoundariesLocal
man:+PCBDDCGetNeumannBoundaries++PCBDDCGetNeumannBoundaries++++man+https://petsc.org/release/manualpages/PC/PCBDDCGetNeumannBoundaries.html#PCBDDCGetNeumannBoundaries
man:+PCBDDCGetNeumannBoundariesLocal++PCBDDCGetNeumannBoundariesLocal++++man+https://petsc.org/release/manualpages/PC/PCBDDCGetNeumannBoundariesLocal.html#PCBDDCGetNeumannBoundariesLocal
man:+PCBDDCSetLocalAdjacencyGraph++PCBDDCSetLocalAdjacencyGraph++++man+https://petsc.org/release/manualpages/PC/PCBDDCSetLocalAdjacencyGraph.html#PCBDDCSetLocalAdjacencyGraph
man:+PCBDDCSetDofsSplittingLocal++PCBDDCSetDofsSplittingLocal++++man+https://petsc.org/release/manualpages/PC/PCBDDCSetDofsSplittingLocal.html#PCBDDCSetDofsSplittingLocal
man:+PCBDDCSetDofsSplitting++PCBDDCSetDofsSplitting++++man+https://petsc.org/release/manualpages/PC/PCBDDCSetDofsSplitting.html#PCBDDCSetDofsSplitting
man:+PCBDDCMatFETIDPGetRHS++PCBDDCMatFETIDPGetRHS++++man+https://petsc.org/release/manualpages/PC/PCBDDCMatFETIDPGetRHS.html#PCBDDCMatFETIDPGetRHS
man:+PCBDDCMatFETIDPGetSolution++PCBDDCMatFETIDPGetSolution++++man+https://petsc.org/release/manualpages/PC/PCBDDCMatFETIDPGetSolution.html#PCBDDCMatFETIDPGetSolution
man:+PCBDDCCreateFETIDPOperators++PCBDDCCreateFETIDPOperators++++man+https://petsc.org/release/manualpages/PC/PCBDDCCreateFETIDPOperators.html#PCBDDCCreateFETIDPOperators
man:+PCBDDC++PCBDDC++++man+https://petsc.org/release/manualpages/PC/PCBDDC.html#PCBDDC
man:+PCBDDCInitializePackage++PCBDDCInitializePackage++++man+https://petsc.org/release/manualpages/PC/PCBDDCInitializePackage.html#PCBDDCInitializePackage
man:+PCBDDCFinalizePackage++PCBDDCFinalizePackage++++man+https://petsc.org/release/manualpages/PC/PCBDDCFinalizePackage.html#PCBDDCFinalizePackage
man:+PCKACZMARZ++PCKACZMARZ++++man+https://petsc.org/release/manualpages/PC/PCKACZMARZ.html#PCKACZMARZ
man:+PCSVD++PCSVD++++man+https://petsc.org/release/manualpages/PC/PCSVD.html#PCSVD
man:+PCPatchSetComputeFunction++PCPatchSetComputeFunction++++man+https://petsc.org/release/manualpages/PC/PCPatchSetComputeFunction.html#PCPatchSetComputeFunction
man:+PCPatchSetComputeFunctionInteriorFacets++PCPatchSetComputeFunctionInteriorFacets++++man+https://petsc.org/release/manualpages/PC/PCPatchSetComputeFunctionInteriorFacets.html#PCPatchSetComputeFunctionInteriorFacets
man:+PCPatchSetComputeOperator++PCPatchSetComputeOperator++++man+https://petsc.org/release/manualpages/PC/PCPatchSetComputeOperator.html#PCPatchSetComputeOperator
man:+PCPatchSetComputeOperatorInteriorFacets++PCPatchSetComputeOperatorInteriorFacets++++man+https://petsc.org/release/manualpages/PC/PCPatchSetComputeOperatorInteriorFacets.html#PCPatchSetComputeOperatorInteriorFacets
man:+PCPATCH++PCPATCH++++man+https://petsc.org/release/manualpages/PC/PCPATCH.html#PCPATCH
man:+PCBJacobiGetSubKSP++PCBJacobiGetSubKSP++++man+https://petsc.org/release/manualpages/PC/PCBJacobiGetSubKSP.html#PCBJacobiGetSubKSP
man:+PCBJacobiSetTotalBlocks++PCBJacobiSetTotalBlocks++++man+https://petsc.org/release/manualpages/PC/PCBJacobiSetTotalBlocks.html#PCBJacobiSetTotalBlocks
man:+PCBJacobiGetTotalBlocks++PCBJacobiGetTotalBlocks++++man+https://petsc.org/release/manualpages/PC/PCBJacobiGetTotalBlocks.html#PCBJacobiGetTotalBlocks
man:+PCBJacobiSetLocalBlocks++PCBJacobiSetLocalBlocks++++man+https://petsc.org/release/manualpages/PC/PCBJacobiSetLocalBlocks.html#PCBJacobiSetLocalBlocks
man:+PCBJacobiGetLocalBlocks++PCBJacobiGetLocalBlocks++++man+https://petsc.org/release/manualpages/PC/PCBJacobiGetLocalBlocks.html#PCBJacobiGetLocalBlocks
man:+PCBJACOBI++PCBJACOBI++++man+https://petsc.org/release/manualpages/PC/PCBJACOBI.html#PCBJACOBI
man:+PCTFS++PCTFS++++man+https://petsc.org/release/manualpages/PC/PCTFS.html#PCTFS
man:+PCSPAISetEpsilon++PCSPAISetEpsilon++++man+https://petsc.org/release/manualpages/PC/PCSPAISetEpsilon.html#PCSPAISetEpsilon
man:+PCSPAISetNBSteps++PCSPAISetNBSteps++++man+https://petsc.org/release/manualpages/PC/PCSPAISetNBSteps.html#PCSPAISetNBSteps
man:+PCSPAISetMax++PCSPAISetMax++++man+https://petsc.org/release/manualpages/PC/PCSPAISetMax.html#PCSPAISetMax
man:+PCSPAISetMaxNew++PCSPAISetMaxNew++++man+https://petsc.org/release/manualpages/PC/PCSPAISetMaxNew.html#PCSPAISetMaxNew
man:+PCSPAISetBlockSize++PCSPAISetBlockSize++++man+https://petsc.org/release/manualpages/PC/PCSPAISetBlockSize.html#PCSPAISetBlockSize
man:+PCSPAISetCacheSize++PCSPAISetCacheSize++++man+https://petsc.org/release/manualpages/PC/PCSPAISetCacheSize.html#PCSPAISetCacheSize
man:+PCSPAISetVerbose++PCSPAISetVerbose++++man+https://petsc.org/release/manualpages/PC/PCSPAISetVerbose.html#PCSPAISetVerbose
man:+PCSPAISetSp++PCSPAISetSp++++man+https://petsc.org/release/manualpages/PC/PCSPAISetSp.html#PCSPAISetSp
man:+PCSPAI++PCSPAI++++man+https://petsc.org/release/manualpages/PC/PCSPAI.html#PCSPAI
man:+PCRedundantSetNumber++PCRedundantSetNumber++++man+https://petsc.org/release/manualpages/PC/PCRedundantSetNumber.html#PCRedundantSetNumber
man:+PCRedundantSetScatter++PCRedundantSetScatter++++man+https://petsc.org/release/manualpages/PC/PCRedundantSetScatter.html#PCRedundantSetScatter
man:+PCRedundantGetKSP++PCRedundantGetKSP++++man+https://petsc.org/release/manualpages/PC/PCRedundantGetKSP.html#PCRedundantGetKSP
man:+PCRedundantGetOperators++PCRedundantGetOperators++++man+https://petsc.org/release/manualpages/PC/PCRedundantGetOperators.html#PCRedundantGetOperators
man:+PCREDUNDANT++PCREDUNDANT++++man+https://petsc.org/release/manualpages/PC/PCREDUNDANT.html#PCREDUNDANT
man:+PCML++PCML++++man+https://petsc.org/release/manualpages/PC/PCML.html#PCML
man:+PCPBJACOBI++PCPBJACOBI++++man+https://petsc.org/release/manualpages/PC/PCPBJACOBI.html#PCPBJACOBI
man:+PCLMVMSetUpdateVec++PCLMVMSetUpdateVec++++man+https://petsc.org/release/manualpages/PC/PCLMVMSetUpdateVec.html#PCLMVMSetUpdateVec
man:+PCLMVMSetMatLMVM++PCLMVMSetMatLMVM++++man+https://petsc.org/release/manualpages/PC/PCLMVMSetMatLMVM.html#PCLMVMSetMatLMVM
man:+PCLMVMGetMatLMVM++PCLMVMGetMatLMVM++++man+https://petsc.org/release/manualpages/PC/PCLMVMGetMatLMVM.html#PCLMVMGetMatLMVM
man:+PCLMVMSetIS++PCLMVMSetIS++++man+https://petsc.org/release/manualpages/PC/PCLMVMSetIS.html#PCLMVMSetIS
man:+PCLMVMClearIS++PCLMVMClearIS++++man+https://petsc.org/release/manualpages/PC/PCLMVMClearIS.html#PCLMVMClearIS
man:+PCLMVM++PCLMVM++++man+https://petsc.org/release/manualpages/PC/PCLMVM.html#PCLMVM
man:+PCRedistributeGetKSP++PCRedistributeGetKSP++++man+https://petsc.org/release/manualpages/PC/PCRedistributeGetKSP.html#PCRedistributeGetKSP
man:+PCREDISTRIBUTE++PCREDISTRIBUTE++++man+https://petsc.org/release/manualpages/PC/PCREDISTRIBUTE.html#PCREDISTRIBUTE
man:+PCFieldSplitRestrictIS++PCFieldSplitRestrictIS++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitRestrictIS.html#PCFieldSplitRestrictIS
man:+PCFieldSplitSetFields++PCFieldSplitSetFields++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetFields.html#PCFieldSplitSetFields
man:+PCFieldSplitSetDiagUseAmat++PCFieldSplitSetDiagUseAmat++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetDiagUseAmat.html#PCFieldSplitSetDiagUseAmat
man:+PCFieldSplitGetDiagUseAmat++PCFieldSplitGetDiagUseAmat++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitGetDiagUseAmat.html#PCFieldSplitGetDiagUseAmat
man:+PCFieldSplitSetOffDiagUseAmat++PCFieldSplitSetOffDiagUseAmat++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetOffDiagUseAmat.html#PCFieldSplitSetOffDiagUseAmat
man:+PCFieldSplitGetOffDiagUseAmat++PCFieldSplitGetOffDiagUseAmat++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitGetOffDiagUseAmat.html#PCFieldSplitGetOffDiagUseAmat
man:+PCFieldSplitSetIS++PCFieldSplitSetIS++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetIS.html#PCFieldSplitSetIS
man:+PCFieldSplitGetIS++PCFieldSplitGetIS++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitGetIS.html#PCFieldSplitGetIS
man:+PCFieldSplitGetISByIndex++PCFieldSplitGetISByIndex++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitGetISByIndex.html#PCFieldSplitGetISByIndex
man:+PCFieldSplitSetBlockSize++PCFieldSplitSetBlockSize++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetBlockSize.html#PCFieldSplitSetBlockSize
man:+PCFieldSplitGetSubKSP++PCFieldSplitGetSubKSP++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitGetSubKSP.html#PCFieldSplitGetSubKSP
man:+PCFieldSplitSchurGetSubKSP++PCFieldSplitSchurGetSubKSP++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSchurGetSubKSP.html#PCFieldSplitSchurGetSubKSP
man:+PCFieldSplitSetSchurPre++PCFieldSplitSetSchurPre++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetSchurPre.html#PCFieldSplitSetSchurPre
man:+PCFieldSplitGetSchurPre++PCFieldSplitGetSchurPre++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitGetSchurPre.html#PCFieldSplitGetSchurPre
man:+PCFieldSplitSchurGetS++PCFieldSplitSchurGetS++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSchurGetS.html#PCFieldSplitSchurGetS
man:+PCFieldSplitSchurRestoreS++PCFieldSplitSchurRestoreS++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSchurRestoreS.html#PCFieldSplitSchurRestoreS
man:+PCFieldSplitSetSchurFactType++PCFieldSplitSetSchurFactType++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetSchurFactType.html#PCFieldSplitSetSchurFactType
man:+PCFieldSplitSetSchurScale++PCFieldSplitSetSchurScale++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetSchurScale.html#PCFieldSplitSetSchurScale
man:+PCFieldSplitGetSchurBlocks++PCFieldSplitGetSchurBlocks++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitGetSchurBlocks.html#PCFieldSplitGetSchurBlocks
man:+PCFieldSplitSetGKBTol++PCFieldSplitSetGKBTol++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetGKBTol.html#PCFieldSplitSetGKBTol
man:+PCFieldSplitSetGKBMaxit++PCFieldSplitSetGKBMaxit++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetGKBMaxit.html#PCFieldSplitSetGKBMaxit
man:+PCFieldSplitSetGKBDelay++PCFieldSplitSetGKBDelay++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetGKBDelay.html#PCFieldSplitSetGKBDelay
man:+PCFieldSplitSetGKBNu++PCFieldSplitSetGKBNu++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetGKBNu.html#PCFieldSplitSetGKBNu
man:+PCFieldSplitSetType++PCFieldSplitSetType++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetType.html#PCFieldSplitSetType
man:+PCFieldSplitGetType++PCFieldSplitGetType++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitGetType.html#PCFieldSplitGetType
man:+PCFieldSplitSetDMSplits++PCFieldSplitSetDMSplits++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetDMSplits.html#PCFieldSplitSetDMSplits
man:+PCFieldSplitGetDMSplits++PCFieldSplitGetDMSplits++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitGetDMSplits.html#PCFieldSplitGetDMSplits
man:+PCFieldSplitGetDetectSaddlePoint++PCFieldSplitGetDetectSaddlePoint++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitGetDetectSaddlePoint.html#PCFieldSplitGetDetectSaddlePoint
man:+PCFieldSplitSetDetectSaddlePoint++PCFieldSplitSetDetectSaddlePoint++++man+https://petsc.org/release/manualpages/PC/PCFieldSplitSetDetectSaddlePoint.html#PCFieldSplitSetDetectSaddlePoint
man:+PCFIELDSPLIT++PCFIELDSPLIT++++man+https://petsc.org/release/manualpages/PC/PCFIELDSPLIT.html#PCFIELDSPLIT
man:+PCGASMSetTotalSubdomains++PCGASMSetTotalSubdomains++++man+https://petsc.org/release/manualpages/PC/PCGASMSetTotalSubdomains.html#PCGASMSetTotalSubdomains
man:+PCGASMSetSubdomains++PCGASMSetSubdomains++++man+https://petsc.org/release/manualpages/PC/PCGASMSetSubdomains.html#PCGASMSetSubdomains
man:+PCGASMSetOverlap++PCGASMSetOverlap++++man+https://petsc.org/release/manualpages/PC/PCGASMSetOverlap.html#PCGASMSetOverlap
man:+PCGASMSetType++PCGASMSetType++++man+https://petsc.org/release/manualpages/PC/PCGASMSetType.html#PCGASMSetType
man:+PCGASMSetSortIndices++PCGASMSetSortIndices++++man+https://petsc.org/release/manualpages/PC/PCGASMSetSortIndices.html#PCGASMSetSortIndices
man:+PCGASMGetSubKSP++PCGASMGetSubKSP++++man+https://petsc.org/release/manualpages/PC/PCGASMGetSubKSP.html#PCGASMGetSubKSP
man:+PCGASM++PCGASM++++man+https://petsc.org/release/manualpages/PC/PCGASM.html#PCGASM
man:+PCGASMCreateSubdomains++PCGASMCreateSubdomains++++man+https://petsc.org/release/manualpages/PC/PCGASMCreateSubdomains.html#PCGASMCreateSubdomains
man:+PCGASMDestroySubdomains++PCGASMDestroySubdomains++++man+https://petsc.org/release/manualpages/PC/PCGASMDestroySubdomains.html#PCGASMDestroySubdomains
man:+PCGASMCreateSubdomains2D++PCGASMCreateSubdomains2D++++man+https://petsc.org/release/manualpages/PC/PCGASMCreateSubdomains2D.html#PCGASMCreateSubdomains2D
man:+PCGASMGetSubdomains++PCGASMGetSubdomains++++man+https://petsc.org/release/manualpages/PC/PCGASMGetSubdomains.html#PCGASMGetSubdomains
man:+PCGASMGetSubmatrices++PCGASMGetSubmatrices++++man+https://petsc.org/release/manualpages/PC/PCGASMGetSubmatrices.html#PCGASMGetSubmatrices
man:+PCGASMSetUseDMSubdomains++PCGASMSetUseDMSubdomains++++man+https://petsc.org/release/manualpages/PC/PCGASMSetUseDMSubdomains.html#PCGASMSetUseDMSubdomains
man:+PCGASMGetUseDMSubdomains++PCGASMGetUseDMSubdomains++++man+https://petsc.org/release/manualpages/PC/PCGASMGetUseDMSubdomains.html#PCGASMGetUseDMSubdomains
man:+PCH2OPUS++PCH2OPUS++++man+https://petsc.org/release/manualpages/PC/PCH2OPUS.html#PCH2OPUS
man:+PCHYPRESetDiscreteGradient++PCHYPRESetDiscreteGradient++++man+https://petsc.org/release/manualpages/PC/PCHYPRESetDiscreteGradient.html#PCHYPRESetDiscreteGradient
man:+PCHYPRESetDiscreteCurl++PCHYPRESetDiscreteCurl++++man+https://petsc.org/release/manualpages/PC/PCHYPRESetDiscreteCurl.html#PCHYPRESetDiscreteCurl
man:+PCHYPRESetInterpolations++PCHYPRESetInterpolations++++man+https://petsc.org/release/manualpages/PC/PCHYPRESetInterpolations.html#PCHYPRESetInterpolations
man:+PCHYPRESetAlphaPoissonMatrix++PCHYPRESetAlphaPoissonMatrix++++man+https://petsc.org/release/manualpages/PC/PCHYPRESetAlphaPoissonMatrix.html#PCHYPRESetAlphaPoissonMatrix
man:+PCHYPRESetBetaPoissonMatrix++PCHYPRESetBetaPoissonMatrix++++man+https://petsc.org/release/manualpages/PC/PCHYPRESetBetaPoissonMatrix.html#PCHYPRESetBetaPoissonMatrix
man:+PCHYPRESetEdgeConstantVectors++PCHYPRESetEdgeConstantVectors++++man+https://petsc.org/release/manualpages/PC/PCHYPRESetEdgeConstantVectors.html#PCHYPRESetEdgeConstantVectors
man:+PCHYPREAMSSetInteriorNodes++PCHYPREAMSSetInteriorNodes++++man+https://petsc.org/release/manualpages/PC/PCHYPREAMSSetInteriorNodes.html#PCHYPREAMSSetInteriorNodes
man:+PCHYPRESetType++PCHYPRESetType++++man+https://petsc.org/release/manualpages/PC/PCHYPRESetType.html#PCHYPRESetType
man:+PCHYPREGetCFMarkers++PCHYPREGetCFMarkers++++man+https://petsc.org/release/manualpages/PC/PCHYPREGetCFMarkers.html#PCHYPREGetCFMarkers
man:+PCHYPREGetType++PCHYPREGetType++++man+https://petsc.org/release/manualpages/PC/PCHYPREGetType.html#PCHYPREGetType
man:+PCMGGalerkinSetMatProductAlgorithm++PCMGGalerkinSetMatProductAlgorithm++++man+https://petsc.org/release/manualpages/PC/PCMGGalerkinSetMatProductAlgorithm.html#PCMGGalerkinSetMatProductAlgorithm
man:+PCMGGalerkinGetMatProductAlgorithm++PCMGGalerkinGetMatProductAlgorithm++++man+https://petsc.org/release/manualpages/PC/PCMGGalerkinGetMatProductAlgorithm.html#PCMGGalerkinGetMatProductAlgorithm
man:+PCHYPRE++PCHYPRE++++man+https://petsc.org/release/manualpages/PC/PCHYPRE.html#PCHYPRE
man:+PCPFMG++PCPFMG++++man+https://petsc.org/release/manualpages/PC/PCPFMG.html#PCPFMG
man:+PCSYSPFMG++PCSYSPFMG++++man+https://petsc.org/release/manualpages/PC/PCSYSPFMG.html#PCSYSPFMG
man:+PCSMG++PCSMG++++man+https://petsc.org/release/manualpages/PC/PCSMG.html#PCSMG
man:+PCSORGetSymmetric++PCSORGetSymmetric++++man+https://petsc.org/release/manualpages/PC/PCSORGetSymmetric.html#PCSORGetSymmetric
man:+PCSORGetOmega++PCSORGetOmega++++man+https://petsc.org/release/manualpages/PC/PCSORGetOmega.html#PCSORGetOmega
man:+PCSORGetIterations++PCSORGetIterations++++man+https://petsc.org/release/manualpages/PC/PCSORGetIterations.html#PCSORGetIterations
man:+PCSORSetSymmetric++PCSORSetSymmetric++++man+https://petsc.org/release/manualpages/PC/PCSORSetSymmetric.html#PCSORSetSymmetric
man:+PCSORSetOmega++PCSORSetOmega++++man+https://petsc.org/release/manualpages/PC/PCSORSetOmega.html#PCSORSetOmega
man:+PCSORSetIterations++PCSORSetIterations++++man+https://petsc.org/release/manualpages/PC/PCSORSetIterations.html#PCSORSetIterations
man:+PCSOR++PCSOR++++man+https://petsc.org/release/manualpages/PC/PCSOR.html#PCSOR
man:+PCDeflationSetInitOnly++PCDeflationSetInitOnly++++man+https://petsc.org/release/manualpages/PC/PCDeflationSetInitOnly.html#PCDeflationSetInitOnly
man:+PCDeflationSetLevels++PCDeflationSetLevels++++man+https://petsc.org/release/manualpages/PC/PCDeflationSetLevels.html#PCDeflationSetLevels
man:+PCDeflationSetReductionFactor++PCDeflationSetReductionFactor++++man+https://petsc.org/release/manualpages/PC/PCDeflationSetReductionFactor.html#PCDeflationSetReductionFactor
man:+PCDeflationSetCorrectionFactor++PCDeflationSetCorrectionFactor++++man+https://petsc.org/release/manualpages/PC/PCDeflationSetCorrectionFactor.html#PCDeflationSetCorrectionFactor
man:+PCDeflationSetSpaceToCompute++PCDeflationSetSpaceToCompute++++man+https://petsc.org/release/manualpages/PC/PCDeflationSetSpaceToCompute.html#PCDeflationSetSpaceToCompute
man:+PCDeflationSetSpace++PCDeflationSetSpace++++man+https://petsc.org/release/manualpages/PC/PCDeflationSetSpace.html#PCDeflationSetSpace
man:+PCDeflationSetProjectionNullSpaceMat++PCDeflationSetProjectionNullSpaceMat++++man+https://petsc.org/release/manualpages/PC/PCDeflationSetProjectionNullSpaceMat.html#PCDeflationSetProjectionNullSpaceMat
man:+PCDeflationSetCoarseMat++PCDeflationSetCoarseMat++++man+https://petsc.org/release/manualpages/PC/PCDeflationSetCoarseMat.html#PCDeflationSetCoarseMat
man:+PCDeflationGetCoarseKSP++PCDeflationGetCoarseKSP++++man+https://petsc.org/release/manualpages/PC/PCDeflationGetCoarseKSP.html#PCDeflationGetCoarseKSP
man:+PCDeflationGetPC++PCDeflationGetPC++++man+https://petsc.org/release/manualpages/PC/PCDeflationGetPC.html#PCDeflationGetPC
man:+PCDEFLATION++PCDEFLATION++++man+https://petsc.org/release/manualpages/PC/PCDEFLATION.html#PCDEFLATION
man:+PCCP++PCCP++++man+https://petsc.org/release/manualpages/PC/PCCP.html#PCCP
man:+PCNONE++PCNONE++++man+https://petsc.org/release/manualpages/PC/PCNONE.html#PCNONE
man:+PCGAMGSetNSmooths++PCGAMGSetNSmooths++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetNSmooths.html#PCGAMGSetNSmooths
man:+PCGAMGSetAggressiveLevels++PCGAMGSetAggressiveLevels++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetAggressiveLevels.html#PCGAMGSetAggressiveLevels
man:+PCGAMGMISkSetAggressive++PCGAMGMISkSetAggressive++++man+https://petsc.org/release/manualpages/PC/PCGAMGMISkSetAggressive.html#PCGAMGMISkSetAggressive
man:+PCGAMGSetAggressiveSquareGraph++PCGAMGSetAggressiveSquareGraph++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetAggressiveSquareGraph.html#PCGAMGSetAggressiveSquareGraph
man:+PCGAMGMISkSetMinDegreeOrdering++PCGAMGMISkSetMinDegreeOrdering++++man+https://petsc.org/release/manualpages/PC/PCGAMGMISkSetMinDegreeOrdering.html#PCGAMGMISkSetMinDegreeOrdering
man:+PCGAMGSetLowMemoryFilter++PCGAMGSetLowMemoryFilter++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetLowMemoryFilter.html#PCGAMGSetLowMemoryFilter
man:+PCGAMGSetGraphSymmetrize++PCGAMGSetGraphSymmetrize++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetGraphSymmetrize.html#PCGAMGSetGraphSymmetrize
man:+PCGAMGAGG++PCGAMGAGG++++man+https://petsc.org/release/manualpages/PC/PCGAMGAGG.html#PCGAMGAGG
man:+PCGAMGSetProcEqLim++PCGAMGSetProcEqLim++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetProcEqLim.html#PCGAMGSetProcEqLim
man:+PCGAMGSetCoarseEqLim++PCGAMGSetCoarseEqLim++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetCoarseEqLim.html#PCGAMGSetCoarseEqLim
man:+PCGAMGSetRepartition++PCGAMGSetRepartition++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetRepartition.html#PCGAMGSetRepartition
man:+PCGAMGSetUseSAEstEig++PCGAMGSetUseSAEstEig++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetUseSAEstEig.html#PCGAMGSetUseSAEstEig
man:+PCGAMGSetRecomputeEstEig++PCGAMGSetRecomputeEstEig++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetRecomputeEstEig.html#PCGAMGSetRecomputeEstEig
man:+PCGAMGSetEigenvalues++PCGAMGSetEigenvalues++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetEigenvalues.html#PCGAMGSetEigenvalues
man:+PCGAMGSetReuseInterpolation++PCGAMGSetReuseInterpolation++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetReuseInterpolation.html#PCGAMGSetReuseInterpolation
man:+PCGAMGASMSetUseAggs++PCGAMGASMSetUseAggs++++man+https://petsc.org/release/manualpages/PC/PCGAMGASMSetUseAggs.html#PCGAMGASMSetUseAggs
man:+PCGAMGSetParallelCoarseGridSolve++PCGAMGSetParallelCoarseGridSolve++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetParallelCoarseGridSolve.html#PCGAMGSetParallelCoarseGridSolve
man:+PCGAMGSetCpuPinCoarseGrids++PCGAMGSetCpuPinCoarseGrids++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetCpuPinCoarseGrids.html#PCGAMGSetCpuPinCoarseGrids
man:+PCGAMGSetCoarseGridLayoutType++PCGAMGSetCoarseGridLayoutType++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetCoarseGridLayoutType.html#PCGAMGSetCoarseGridLayoutType
man:+PCGAMGSetNlevels++PCGAMGSetNlevels++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetNlevels.html#PCGAMGSetNlevels
man:+PCGAMGASMSetHEM++PCGAMGASMSetHEM++++man+https://petsc.org/release/manualpages/PC/PCGAMGASMSetHEM.html#PCGAMGASMSetHEM
man:+PCGAMGSetThreshold++PCGAMGSetThreshold++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetThreshold.html#PCGAMGSetThreshold
man:+PCGAMGSetRankReductionFactors++PCGAMGSetRankReductionFactors++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetRankReductionFactors.html#PCGAMGSetRankReductionFactors
man:+PCGAMGSetThresholdScale++PCGAMGSetThresholdScale++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetThresholdScale.html#PCGAMGSetThresholdScale
man:+PCGAMGSetType++PCGAMGSetType++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetType.html#PCGAMGSetType
man:+PCGAMGGetType++PCGAMGGetType++++man+https://petsc.org/release/manualpages/PC/PCGAMGGetType.html#PCGAMGGetType
man:+PCGAMGSetInjectionIndex++PCGAMGSetInjectionIndex++++man+https://petsc.org/release/manualpages/PC/PCGAMGSetInjectionIndex.html#PCGAMGSetInjectionIndex
man:+PCGAMG++PCGAMG++++man+https://petsc.org/release/manualpages/PC/PCGAMG.html#PCGAMG
man:+PCGAMGInitializePackage++PCGAMGInitializePackage++++man+https://petsc.org/release/manualpages/PC/PCGAMGInitializePackage.html#PCGAMGInitializePackage
man:+PCGAMGFinalizePackage++PCGAMGFinalizePackage++++man+https://petsc.org/release/manualpages/PC/PCGAMGFinalizePackage.html#PCGAMGFinalizePackage
man:+PCGAMGRegister++PCGAMGRegister++++man+https://petsc.org/release/manualpages/PC/PCGAMGRegister.html#PCGAMGRegister
man:+PCGAMGCreateGraph++PCGAMGCreateGraph++++man+https://petsc.org/release/manualpages/PC/PCGAMGCreateGraph.html#PCGAMGCreateGraph
man:+PCGAMGClassicalSetType++PCGAMGClassicalSetType++++man+https://petsc.org/release/manualpages/PC/PCGAMGClassicalSetType.html#PCGAMGClassicalSetType
man:+PCGAMGClassicalGetType++PCGAMGClassicalGetType++++man+https://petsc.org/release/manualpages/PC/PCGAMGClassicalGetType.html#PCGAMGClassicalGetType
man:+KSPRegisterAll++KSPRegisterAll++++man+https://petsc.org/release/manualpages/KSP/KSPRegisterAll.html#KSPRegisterAll
man:+KSPMonitorRegisterAll++KSPMonitorRegisterAll++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorRegisterAll.html#KSPMonitorRegisterAll
man:+KSPComputeOperator++KSPComputeOperator++++man+https://petsc.org/release/manualpages/KSP/KSPComputeOperator.html#KSPComputeOperator
man:+KSPComputeEigenvaluesExplicitly++KSPComputeEigenvaluesExplicitly++++man+https://petsc.org/release/manualpages/KSP/KSPComputeEigenvaluesExplicitly.html#KSPComputeEigenvaluesExplicitly
man:+KSPGuessRegister++KSPGuessRegister++++man+https://petsc.org/release/manualpages/KSP/KSPGuessRegister.html#KSPGuessRegister
man:+KSPGuessRegisterAll++KSPGuessRegisterAll++++man+https://petsc.org/release/manualpages/KSP/KSPGuessRegisterAll.html#KSPGuessRegisterAll
man:+KSPGuessSetFromOptions++KSPGuessSetFromOptions++++man+https://petsc.org/release/manualpages/KSP/KSPGuessSetFromOptions.html#KSPGuessSetFromOptions
man:+KSPGuessSetTolerance++KSPGuessSetTolerance++++man+https://petsc.org/release/manualpages/KSP/KSPGuessSetTolerance.html#KSPGuessSetTolerance
man:+KSPGuessDestroy++KSPGuessDestroy++++man+https://petsc.org/release/manualpages/KSP/KSPGuessDestroy.html#KSPGuessDestroy
man:+KSPGuessView++KSPGuessView++++man+https://petsc.org/release/manualpages/KSP/KSPGuessView.html#KSPGuessView
man:+KSPGuessCreate++KSPGuessCreate++++man+https://petsc.org/release/manualpages/KSP/KSPGuessCreate.html#KSPGuessCreate
man:+KSPGuessSetType++KSPGuessSetType++++man+https://petsc.org/release/manualpages/KSP/KSPGuessSetType.html#KSPGuessSetType
man:+KSPGuessGetType++KSPGuessGetType++++man+https://petsc.org/release/manualpages/KSP/KSPGuessGetType.html#KSPGuessGetType
man:+KSPGuessUpdate++KSPGuessUpdate++++man+https://petsc.org/release/manualpages/KSP/KSPGuessUpdate.html#KSPGuessUpdate
man:+KSPGuessFormGuess++KSPGuessFormGuess++++man+https://petsc.org/release/manualpages/KSP/KSPGuessFormGuess.html#KSPGuessFormGuess
man:+KSPGuessSetUp++KSPGuessSetUp++++man+https://petsc.org/release/manualpages/KSP/KSPGuessSetUp.html#KSPGuessSetUp
man:+KSPMonitorSAWsCreate++KSPMonitorSAWsCreate++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorSAWsCreate.html#KSPMonitorSAWsCreate
man:+KSPMonitorSAWsDestroy++KSPMonitorSAWsDestroy++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorSAWsDestroy.html#KSPMonitorSAWsDestroy
man:+KSPMonitorSAWs++KSPMonitorSAWs++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorSAWs.html#KSPMonitorSAWs
man:+KSPComputeExtremeSingularValues++KSPComputeExtremeSingularValues++++man+https://petsc.org/release/manualpages/KSP/KSPComputeExtremeSingularValues.html#KSPComputeExtremeSingularValues
man:+KSPComputeEigenvalues++KSPComputeEigenvalues++++man+https://petsc.org/release/manualpages/KSP/KSPComputeEigenvalues.html#KSPComputeEigenvalues
man:+KSPComputeRitz++KSPComputeRitz++++man+https://petsc.org/release/manualpages/KSP/KSPComputeRitz.html#KSPComputeRitz
man:+KSPSetUpOnBlocks++KSPSetUpOnBlocks++++man+https://petsc.org/release/manualpages/KSP/KSPSetUpOnBlocks.html#KSPSetUpOnBlocks
man:+KSPSetReusePreconditioner++KSPSetReusePreconditioner++++man+https://petsc.org/release/manualpages/KSP/KSPSetReusePreconditioner.html#KSPSetReusePreconditioner
man:+KSPGetReusePreconditioner++KSPGetReusePreconditioner++++man+https://petsc.org/release/manualpages/KSP/KSPGetReusePreconditioner.html#KSPGetReusePreconditioner
man:+KSPSetSkipPCSetFromOptions++KSPSetSkipPCSetFromOptions++++man+https://petsc.org/release/manualpages/KSP/KSPSetSkipPCSetFromOptions.html#KSPSetSkipPCSetFromOptions
man:+KSPSetUp++KSPSetUp++++man+https://petsc.org/release/manualpages/KSP/KSPSetUp.html#KSPSetUp
man:+KSPConvergedReasonView++KSPConvergedReasonView++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReasonView.html#KSPConvergedReasonView
man:+KSPConvergedReasonViewSet++KSPConvergedReasonViewSet++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReasonViewSet.html#KSPConvergedReasonViewSet
man:+KSPConvergedReasonViewCancel++KSPConvergedReasonViewCancel++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReasonViewCancel.html#KSPConvergedReasonViewCancel
man:+KSPConvergedReasonViewFromOptions++KSPConvergedReasonViewFromOptions++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedReasonViewFromOptions.html#KSPConvergedReasonViewFromOptions
man:+KSPConvergedRateView++KSPConvergedRateView++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedRateView.html#KSPConvergedRateView
man:+KSPSolve++KSPSolve++++man+https://petsc.org/release/manualpages/KSP/KSPSolve.html#KSPSolve
man:+KSPSolveTranspose++KSPSolveTranspose++++man+https://petsc.org/release/manualpages/KSP/KSPSolveTranspose.html#KSPSolveTranspose
man:+KSPMatSolve++KSPMatSolve++++man+https://petsc.org/release/manualpages/KSP/KSPMatSolve.html#KSPMatSolve
man:+KSPMatSolveTranspose++KSPMatSolveTranspose++++man+https://petsc.org/release/manualpages/KSP/KSPMatSolveTranspose.html#KSPMatSolveTranspose
man:+KSPSetMatSolveBatchSize++KSPSetMatSolveBatchSize++++man+https://petsc.org/release/manualpages/KSP/KSPSetMatSolveBatchSize.html#KSPSetMatSolveBatchSize
man:+KSPGetMatSolveBatchSize++KSPGetMatSolveBatchSize++++man+https://petsc.org/release/manualpages/KSP/KSPGetMatSolveBatchSize.html#KSPGetMatSolveBatchSize
man:+KSPResetViewers++KSPResetViewers++++man+https://petsc.org/release/manualpages/KSP/KSPResetViewers.html#KSPResetViewers
man:+KSPReset++KSPReset++++man+https://petsc.org/release/manualpages/KSP/KSPReset.html#KSPReset
man:+KSPDestroy++KSPDestroy++++man+https://petsc.org/release/manualpages/KSP/KSPDestroy.html#KSPDestroy
man:+KSPSetPCSide++KSPSetPCSide++++man+https://petsc.org/release/manualpages/KSP/KSPSetPCSide.html#KSPSetPCSide
man:+KSPGetPCSide++KSPGetPCSide++++man+https://petsc.org/release/manualpages/KSP/KSPGetPCSide.html#KSPGetPCSide
man:+KSPGetTolerances++KSPGetTolerances++++man+https://petsc.org/release/manualpages/KSP/KSPGetTolerances.html#KSPGetTolerances
man:+KSPSetTolerances++KSPSetTolerances++++man+https://petsc.org/release/manualpages/KSP/KSPSetTolerances.html#KSPSetTolerances
man:+KSPSetMinimumIterations++KSPSetMinimumIterations++++man+https://petsc.org/release/manualpages/KSP/KSPSetMinimumIterations.html#KSPSetMinimumIterations
man:+KSPGetMinimumIterations++KSPGetMinimumIterations++++man+https://petsc.org/release/manualpages/KSP/KSPGetMinimumIterations.html#KSPGetMinimumIterations
man:+KSPSetInitialGuessNonzero++KSPSetInitialGuessNonzero++++man+https://petsc.org/release/manualpages/KSP/KSPSetInitialGuessNonzero.html#KSPSetInitialGuessNonzero
man:+KSPGetInitialGuessNonzero++KSPGetInitialGuessNonzero++++man+https://petsc.org/release/manualpages/KSP/KSPGetInitialGuessNonzero.html#KSPGetInitialGuessNonzero
man:+KSPSetErrorIfNotConverged++KSPSetErrorIfNotConverged++++man+https://petsc.org/release/manualpages/KSP/KSPSetErrorIfNotConverged.html#KSPSetErrorIfNotConverged
man:+KSPGetErrorIfNotConverged++KSPGetErrorIfNotConverged++++man+https://petsc.org/release/manualpages/KSP/KSPGetErrorIfNotConverged.html#KSPGetErrorIfNotConverged
man:+KSPSetInitialGuessKnoll++KSPSetInitialGuessKnoll++++man+https://petsc.org/release/manualpages/KSP/KSPSetInitialGuessKnoll.html#KSPSetInitialGuessKnoll
man:+KSPGetInitialGuessKnoll++KSPGetInitialGuessKnoll++++man+https://petsc.org/release/manualpages/KSP/KSPGetInitialGuessKnoll.html#KSPGetInitialGuessKnoll
man:+KSPGetComputeSingularValues++KSPGetComputeSingularValues++++man+https://petsc.org/release/manualpages/KSP/KSPGetComputeSingularValues.html#KSPGetComputeSingularValues
man:+KSPSetComputeSingularValues++KSPSetComputeSingularValues++++man+https://petsc.org/release/manualpages/KSP/KSPSetComputeSingularValues.html#KSPSetComputeSingularValues
man:+KSPGetComputeEigenvalues++KSPGetComputeEigenvalues++++man+https://petsc.org/release/manualpages/KSP/KSPGetComputeEigenvalues.html#KSPGetComputeEigenvalues
man:+KSPSetComputeEigenvalues++KSPSetComputeEigenvalues++++man+https://petsc.org/release/manualpages/KSP/KSPSetComputeEigenvalues.html#KSPSetComputeEigenvalues
man:+KSPSetComputeRitz++KSPSetComputeRitz++++man+https://petsc.org/release/manualpages/KSP/KSPSetComputeRitz.html#KSPSetComputeRitz
man:+KSPGetRhs++KSPGetRhs++++man+https://petsc.org/release/manualpages/KSP/KSPGetRhs.html#KSPGetRhs
man:+KSPGetSolution++KSPGetSolution++++man+https://petsc.org/release/manualpages/KSP/KSPGetSolution.html#KSPGetSolution
man:+KSPSetPC++KSPSetPC++++man+https://petsc.org/release/manualpages/KSP/KSPSetPC.html#KSPSetPC
man:+KSPCheckPCMPI++KSPCheckPCMPI++++man+https://petsc.org/release/manualpages/KSP/KSPCheckPCMPI.html#KSPCheckPCMPI
man:+KSPGetPC++KSPGetPC++++man+https://petsc.org/release/manualpages/KSP/KSPGetPC.html#KSPGetPC
man:+KSPMonitor++KSPMonitor++++man+https://petsc.org/release/manualpages/KSP/KSPMonitor.html#KSPMonitor
man:+KSPMonitorSet++KSPMonitorSet++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorSet.html#KSPMonitorSet
man:+KSPMonitorCancel++KSPMonitorCancel++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorCancel.html#KSPMonitorCancel
man:+KSPGetMonitorContext++KSPGetMonitorContext++++man+https://petsc.org/release/manualpages/KSP/KSPGetMonitorContext.html#KSPGetMonitorContext
man:+KSPSetResidualHistory++KSPSetResidualHistory++++man+https://petsc.org/release/manualpages/KSP/KSPSetResidualHistory.html#KSPSetResidualHistory
man:+KSPGetResidualHistory++KSPGetResidualHistory++++man+https://petsc.org/release/manualpages/KSP/KSPGetResidualHistory.html#KSPGetResidualHistory
man:+KSPSetErrorHistory++KSPSetErrorHistory++++man+https://petsc.org/release/manualpages/KSP/KSPSetErrorHistory.html#KSPSetErrorHistory
man:+KSPGetErrorHistory++KSPGetErrorHistory++++man+https://petsc.org/release/manualpages/KSP/KSPGetErrorHistory.html#KSPGetErrorHistory
man:+KSPComputeConvergenceRate++KSPComputeConvergenceRate++++man+https://petsc.org/release/manualpages/KSP/KSPComputeConvergenceRate.html#KSPComputeConvergenceRate
man:+KSPSetConvergenceTest++KSPSetConvergenceTest++++man+https://petsc.org/release/manualpages/KSP/KSPSetConvergenceTest.html#KSPSetConvergenceTest
man:+KSPGetConvergenceTest++KSPGetConvergenceTest++++man+https://petsc.org/release/manualpages/KSP/KSPGetConvergenceTest.html#KSPGetConvergenceTest
man:+KSPGetAndClearConvergenceTest++KSPGetAndClearConvergenceTest++++man+https://petsc.org/release/manualpages/KSP/KSPGetAndClearConvergenceTest.html#KSPGetAndClearConvergenceTest
man:+KSPGetConvergenceContext++KSPGetConvergenceContext++++man+https://petsc.org/release/manualpages/KSP/KSPGetConvergenceContext.html#KSPGetConvergenceContext
man:+KSPBuildSolution++KSPBuildSolution++++man+https://petsc.org/release/manualpages/KSP/KSPBuildSolution.html#KSPBuildSolution
man:+KSPBuildResidual++KSPBuildResidual++++man+https://petsc.org/release/manualpages/KSP/KSPBuildResidual.html#KSPBuildResidual
man:+KSPSetDiagonalScale++KSPSetDiagonalScale++++man+https://petsc.org/release/manualpages/KSP/KSPSetDiagonalScale.html#KSPSetDiagonalScale
man:+KSPGetDiagonalScale++KSPGetDiagonalScale++++man+https://petsc.org/release/manualpages/KSP/KSPGetDiagonalScale.html#KSPGetDiagonalScale
man:+KSPSetDiagonalScaleFix++KSPSetDiagonalScaleFix++++man+https://petsc.org/release/manualpages/KSP/KSPSetDiagonalScaleFix.html#KSPSetDiagonalScaleFix
man:+KSPGetDiagonalScaleFix++KSPGetDiagonalScaleFix++++man+https://petsc.org/release/manualpages/KSP/KSPGetDiagonalScaleFix.html#KSPGetDiagonalScaleFix
man:+KSPSetComputeOperators++KSPSetComputeOperators++++man+https://petsc.org/release/manualpages/KSP/KSPSetComputeOperators.html#KSPSetComputeOperators
man:+KSPSetComputeRHS++KSPSetComputeRHS++++man+https://petsc.org/release/manualpages/KSP/KSPSetComputeRHS.html#KSPSetComputeRHS
man:+KSPSetComputeInitialGuess++KSPSetComputeInitialGuess++++man+https://petsc.org/release/manualpages/KSP/KSPSetComputeInitialGuess.html#KSPSetComputeInitialGuess
man:+KSPSetUseExplicitTranspose++KSPSetUseExplicitTranspose++++man+https://petsc.org/release/manualpages/KSP/KSPSetUseExplicitTranspose.html#KSPSetUseExplicitTranspose
man:+KSPGetResidualNorm++KSPGetResidualNorm++++man+https://petsc.org/release/manualpages/KSP/KSPGetResidualNorm.html#KSPGetResidualNorm
man:+KSPGetIterationNumber++KSPGetIterationNumber++++man+https://petsc.org/release/manualpages/KSP/KSPGetIterationNumber.html#KSPGetIterationNumber
man:+KSPGetTotalIterations++KSPGetTotalIterations++++man+https://petsc.org/release/manualpages/KSP/KSPGetTotalIterations.html#KSPGetTotalIterations
man:+KSPMonitorResidual++KSPMonitorResidual++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorResidual.html#KSPMonitorResidual
man:+KSPMonitorResidualDraw++KSPMonitorResidualDraw++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorResidualDraw.html#KSPMonitorResidualDraw
man:+KSPMonitorResidualDrawLG++KSPMonitorResidualDrawLG++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorResidualDrawLG.html#KSPMonitorResidualDrawLG
man:+KSPMonitorResidualDrawLGCreate++KSPMonitorResidualDrawLGCreate++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorResidualDrawLGCreate.html#KSPMonitorResidualDrawLGCreate
man:+KSPMonitorResidualRange++KSPMonitorResidualRange++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorResidualRange.html#KSPMonitorResidualRange
man:+KSPMonitorTrueResidual++KSPMonitorTrueResidual++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorTrueResidual.html#KSPMonitorTrueResidual
man:+KSPMonitorTrueResidualDraw++KSPMonitorTrueResidualDraw++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorTrueResidualDraw.html#KSPMonitorTrueResidualDraw
man:+KSPMonitorTrueResidualDrawLG++KSPMonitorTrueResidualDrawLG++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorTrueResidualDrawLG.html#KSPMonitorTrueResidualDrawLG
man:+KSPMonitorTrueResidualDrawLGCreate++KSPMonitorTrueResidualDrawLGCreate++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorTrueResidualDrawLGCreate.html#KSPMonitorTrueResidualDrawLGCreate
man:+KSPMonitorTrueResidualMax++KSPMonitorTrueResidualMax++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorTrueResidualMax.html#KSPMonitorTrueResidualMax
man:+KSPMonitorError++KSPMonitorError++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorError.html#KSPMonitorError
man:+KSPMonitorErrorDraw++KSPMonitorErrorDraw++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorErrorDraw.html#KSPMonitorErrorDraw
man:+KSPMonitorErrorDrawLG++KSPMonitorErrorDrawLG++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorErrorDrawLG.html#KSPMonitorErrorDrawLG
man:+KSPMonitorErrorDrawLGCreate++KSPMonitorErrorDrawLGCreate++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorErrorDrawLGCreate.html#KSPMonitorErrorDrawLGCreate
man:+KSPMonitorSolution++KSPMonitorSolution++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorSolution.html#KSPMonitorSolution
man:+KSPMonitorSolutionDraw++KSPMonitorSolutionDraw++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorSolutionDraw.html#KSPMonitorSolutionDraw
man:+KSPMonitorSolutionDrawLG++KSPMonitorSolutionDrawLG++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorSolutionDrawLG.html#KSPMonitorSolutionDrawLG
man:+KSPMonitorSolutionDrawLGCreate++KSPMonitorSolutionDrawLGCreate++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorSolutionDrawLGCreate.html#KSPMonitorSolutionDrawLGCreate
man:+KSPMonitorSingularValue++KSPMonitorSingularValue++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorSingularValue.html#KSPMonitorSingularValue
man:+KSPMonitorSingularValueCreate++KSPMonitorSingularValueCreate++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorSingularValueCreate.html#KSPMonitorSingularValueCreate
man:+KSPMonitorDynamicToleranceCreate++KSPMonitorDynamicToleranceCreate++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorDynamicToleranceCreate.html#KSPMonitorDynamicToleranceCreate
man:+KSPMonitorDynamicToleranceSetCoefficient++KSPMonitorDynamicToleranceSetCoefficient++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorDynamicToleranceSetCoefficient.html#KSPMonitorDynamicToleranceSetCoefficient
man:+KSPMonitorDynamicTolerance++KSPMonitorDynamicTolerance++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorDynamicTolerance.html#KSPMonitorDynamicTolerance
man:+KSPMonitorDynamicToleranceDestroy++KSPMonitorDynamicToleranceDestroy++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorDynamicToleranceDestroy.html#KSPMonitorDynamicToleranceDestroy
man:+KSPConvergedSkip++KSPConvergedSkip++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedSkip.html#KSPConvergedSkip
man:+KSPSetConvergedNegativeCurvature++KSPSetConvergedNegativeCurvature++++man+https://petsc.org/release/manualpages/KSP/KSPSetConvergedNegativeCurvature.html#KSPSetConvergedNegativeCurvature
man:+KSPGetConvergedNegativeCurvature++KSPGetConvergedNegativeCurvature++++man+https://petsc.org/release/manualpages/KSP/KSPGetConvergedNegativeCurvature.html#KSPGetConvergedNegativeCurvature
man:+KSPConvergedDefaultCreate++KSPConvergedDefaultCreate++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedDefaultCreate.html#KSPConvergedDefaultCreate
man:+KSPConvergedDefaultSetUIRNorm++KSPConvergedDefaultSetUIRNorm++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedDefaultSetUIRNorm.html#KSPConvergedDefaultSetUIRNorm
man:+KSPConvergedDefaultSetUMIRNorm++KSPConvergedDefaultSetUMIRNorm++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedDefaultSetUMIRNorm.html#KSPConvergedDefaultSetUMIRNorm
man:+KSPConvergedDefaultSetConvergedMaxits++KSPConvergedDefaultSetConvergedMaxits++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedDefaultSetConvergedMaxits.html#KSPConvergedDefaultSetConvergedMaxits
man:+KSPConvergedDefault++KSPConvergedDefault++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedDefault.html#KSPConvergedDefault
man:+KSPConvergedDefaultDestroy++KSPConvergedDefaultDestroy++++man+https://petsc.org/release/manualpages/KSP/KSPConvergedDefaultDestroy.html#KSPConvergedDefaultDestroy
man:+KSPBuildResidualDefault++KSPBuildResidualDefault++++man+https://petsc.org/release/manualpages/KSP/KSPBuildResidualDefault.html#KSPBuildResidualDefault
man:+KSPCreateVecs++KSPCreateVecs++++man+https://petsc.org/release/manualpages/KSP/KSPCreateVecs.html#KSPCreateVecs
man:+KSPSetWorkVecs++KSPSetWorkVecs++++man+https://petsc.org/release/manualpages/KSP/KSPSetWorkVecs.html#KSPSetWorkVecs
man:+KSPGetConvergedReason++KSPGetConvergedReason++++man+https://petsc.org/release/manualpages/KSP/KSPGetConvergedReason.html#KSPGetConvergedReason
man:+KSPGetConvergedReasonString++KSPGetConvergedReasonString++++man+https://petsc.org/release/manualpages/KSP/KSPGetConvergedReasonString.html#KSPGetConvergedReasonString
man:+KSPSetDM++KSPSetDM++++man+https://petsc.org/release/manualpages/KSP/KSPSetDM.html#KSPSetDM
man:+KSPSetDMActive++KSPSetDMActive++++man+https://petsc.org/release/manualpages/KSP/KSPSetDMActive.html#KSPSetDMActive
man:+KSPGetDM++KSPGetDM++++man+https://petsc.org/release/manualpages/KSP/KSPGetDM.html#KSPGetDM
man:+KSPSetApplicationContext++KSPSetApplicationContext++++man+https://petsc.org/release/manualpages/KSP/KSPSetApplicationContext.html#KSPSetApplicationContext
man:+KSPGetApplicationContext++KSPGetApplicationContext++++man+https://petsc.org/release/manualpages/KSP/KSPGetApplicationContext.html#KSPGetApplicationContext
man:+KSPCheckSolve++KSPCheckSolve++++man+https://petsc.org/release/manualpages/KSP/KSPCheckSolve.html#KSPCheckSolve
man:+KSPInitialResidual++KSPInitialResidual++++man+https://petsc.org/release/manualpages/KSP/KSPInitialResidual.html#KSPInitialResidual
man:+KSPUnwindPreconditioner++KSPUnwindPreconditioner++++man+https://petsc.org/release/manualpages/KSP/KSPUnwindPreconditioner.html#KSPUnwindPreconditioner
man:+KSPLoad++KSPLoad++++man+https://petsc.org/release/manualpages/KSP/KSPLoad.html#KSPLoad
man:+KSPView++KSPView++++man+https://petsc.org/release/manualpages/KSP/KSPView.html#KSPView
man:+KSPViewFromOptions++KSPViewFromOptions++++man+https://petsc.org/release/manualpages/KSP/KSPViewFromOptions.html#KSPViewFromOptions
man:+KSPSetNormType++KSPSetNormType++++man+https://petsc.org/release/manualpages/KSP/KSPSetNormType.html#KSPSetNormType
man:+KSPSetCheckNormIteration++KSPSetCheckNormIteration++++man+https://petsc.org/release/manualpages/KSP/KSPSetCheckNormIteration.html#KSPSetCheckNormIteration
man:+KSPSetLagNorm++KSPSetLagNorm++++man+https://petsc.org/release/manualpages/KSP/KSPSetLagNorm.html#KSPSetLagNorm
man:+KSPSetSupportedNorm++KSPSetSupportedNorm++++man+https://petsc.org/release/manualpages/KSP/KSPSetSupportedNorm.html#KSPSetSupportedNorm
man:+KSPGetNormType++KSPGetNormType++++man+https://petsc.org/release/manualpages/KSP/KSPGetNormType.html#KSPGetNormType
man:+KSPSetOperators++KSPSetOperators++++man+https://petsc.org/release/manualpages/KSP/KSPSetOperators.html#KSPSetOperators
man:+KSPGetOperators++KSPGetOperators++++man+https://petsc.org/release/manualpages/KSP/KSPGetOperators.html#KSPGetOperators
man:+KSPGetOperatorsSet++KSPGetOperatorsSet++++man+https://petsc.org/release/manualpages/KSP/KSPGetOperatorsSet.html#KSPGetOperatorsSet
man:+KSPSetPreSolve++KSPSetPreSolve++++man+https://petsc.org/release/manualpages/KSP/KSPSetPreSolve.html#KSPSetPreSolve
man:+KSPSetPostSolve++KSPSetPostSolve++++man+https://petsc.org/release/manualpages/KSP/KSPSetPostSolve.html#KSPSetPostSolve
man:+KSPSetNestLevel++KSPSetNestLevel++++man+https://petsc.org/release/manualpages/KSP/KSPSetNestLevel.html#KSPSetNestLevel
man:+KSPGetNestLevel++KSPGetNestLevel++++man+https://petsc.org/release/manualpages/KSP/KSPGetNestLevel.html#KSPGetNestLevel
man:+KSPCreate++KSPCreate++++man+https://petsc.org/release/manualpages/KSP/KSPCreate.html#KSPCreate
man:+KSPSetType++KSPSetType++++man+https://petsc.org/release/manualpages/KSP/KSPSetType.html#KSPSetType
man:+KSPGetType++KSPGetType++++man+https://petsc.org/release/manualpages/KSP/KSPGetType.html#KSPGetType
man:+KSPRegister++KSPRegister++++man+https://petsc.org/release/manualpages/KSP/KSPRegister.html#KSPRegister
man:+KSPMonitorRegister++KSPMonitorRegister++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorRegister.html#KSPMonitorRegister
man:+KSPSetOptionsPrefix++KSPSetOptionsPrefix++++man+https://petsc.org/release/manualpages/KSP/KSPSetOptionsPrefix.html#KSPSetOptionsPrefix
man:+KSPAppendOptionsPrefix++KSPAppendOptionsPrefix++++man+https://petsc.org/release/manualpages/KSP/KSPAppendOptionsPrefix.html#KSPAppendOptionsPrefix
man:+KSPSetUseFischerGuess++KSPSetUseFischerGuess++++man+https://petsc.org/release/manualpages/KSP/KSPSetUseFischerGuess.html#KSPSetUseFischerGuess
man:+KSPSetGuess++KSPSetGuess++++man+https://petsc.org/release/manualpages/KSP/KSPSetGuess.html#KSPSetGuess
man:+KSPGetGuess++KSPGetGuess++++man+https://petsc.org/release/manualpages/KSP/KSPGetGuess.html#KSPGetGuess
man:+KSPGetOptionsPrefix++KSPGetOptionsPrefix++++man+https://petsc.org/release/manualpages/KSP/KSPGetOptionsPrefix.html#KSPGetOptionsPrefix
man:+KSPMonitorSetFromOptions++KSPMonitorSetFromOptions++++man+https://petsc.org/release/manualpages/KSP/KSPMonitorSetFromOptions.html#KSPMonitorSetFromOptions
man:+KSPSetFromOptions++KSPSetFromOptions++++man+https://petsc.org/release/manualpages/KSP/KSPSetFromOptions.html#KSPSetFromOptions
man:+KSPResetFromOptions++KSPResetFromOptions++++man+https://petsc.org/release/manualpages/KSP/KSPResetFromOptions.html#KSPResetFromOptions
man:+PCFinalizePackage++PCFinalizePackage++++man+https://petsc.org/release/manualpages/KSP/PCFinalizePackage.html#PCFinalizePackage
man:+PCInitializePackage++PCInitializePackage++++man+https://petsc.org/release/manualpages/KSP/PCInitializePackage.html#PCInitializePackage
man:+KSPFinalizePackage++KSPFinalizePackage++++man+https://petsc.org/release/manualpages/KSP/KSPFinalizePackage.html#KSPFinalizePackage
man:+KSPInitializePackage++KSPInitializePackage++++man+https://petsc.org/release/manualpages/KSP/KSPInitializePackage.html#KSPInitializePackage
man:+DMGetDMKSP++DMGetDMKSP++++man+https://petsc.org/release/manualpages/KSP/DMGetDMKSP.html#DMGetDMKSP
man:+DMGetDMKSPWrite++DMGetDMKSPWrite++++man+https://petsc.org/release/manualpages/KSP/DMGetDMKSPWrite.html#DMGetDMKSPWrite
man:+DMCopyDMKSP++DMCopyDMKSP++++man+https://petsc.org/release/manualpages/KSP/DMCopyDMKSP.html#DMCopyDMKSP
man:+DMKSPSetComputeOperators++DMKSPSetComputeOperators++++man+https://petsc.org/release/manualpages/KSP/DMKSPSetComputeOperators.html#DMKSPSetComputeOperators
man:+DMKSPGetComputeOperators++DMKSPGetComputeOperators++++man+https://petsc.org/release/manualpages/KSP/DMKSPGetComputeOperators.html#DMKSPGetComputeOperators
man:+DMKSPSetComputeRHS++DMKSPSetComputeRHS++++man+https://petsc.org/release/manualpages/KSP/DMKSPSetComputeRHS.html#DMKSPSetComputeRHS
man:+DMKSPSetComputeInitialGuess++DMKSPSetComputeInitialGuess++++man+https://petsc.org/release/manualpages/KSP/DMKSPSetComputeInitialGuess.html#DMKSPSetComputeInitialGuess
man:+DMKSPGetComputeRHS++DMKSPGetComputeRHS++++man+https://petsc.org/release/manualpages/KSP/DMKSPGetComputeRHS.html#DMKSPGetComputeRHS
man:+DMKSPGetComputeInitialGuess++DMKSPGetComputeInitialGuess++++man+https://petsc.org/release/manualpages/KSP/DMKSPGetComputeInitialGuess.html#DMKSPGetComputeInitialGuess
man:+KSPIBCGS++KSPIBCGS++++man+https://petsc.org/release/manualpages/KSP/KSPIBCGS.html#KSPIBCGS
man:+KSPGMRESSetPreAllocateVectors++KSPGMRESSetPreAllocateVectors++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESSetPreAllocateVectors.html#KSPGMRESSetPreAllocateVectors
man:+KSPGMRESClassicalGramSchmidtOrthogonalization++KSPGMRESClassicalGramSchmidtOrthogonalization++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESClassicalGramSchmidtOrthogonalization.html#KSPGMRESClassicalGramSchmidtOrthogonalization
man:+KSPDGMRES++KSPDGMRES++++man+https://petsc.org/release/manualpages/KSP/KSPDGMRES.html#KSPDGMRES
man:+KSPGMRESSetOrthogonalization++KSPGMRESSetOrthogonalization++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESSetOrthogonalization.html#KSPGMRESSetOrthogonalization
man:+KSPGMRESGetOrthogonalization++KSPGMRESGetOrthogonalization++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESGetOrthogonalization.html#KSPGMRESGetOrthogonalization
man:+KSPGMRESMonitorKrylov++KSPGMRESMonitorKrylov++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESMonitorKrylov.html#KSPGMRESMonitorKrylov
man:+KSPGMRESSetCGSRefinementType++KSPGMRESSetCGSRefinementType++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESSetCGSRefinementType.html#KSPGMRESSetCGSRefinementType
man:+KSPGMRESGetCGSRefinementType++KSPGMRESGetCGSRefinementType++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESGetCGSRefinementType.html#KSPGMRESGetCGSRefinementType
man:+KSPGMRESSetRestart++KSPGMRESSetRestart++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESSetRestart.html#KSPGMRESSetRestart
man:+KSPGMRESGetRestart++KSPGMRESGetRestart++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESGetRestart.html#KSPGMRESGetRestart
man:+KSPGMRESSetHapTol++KSPGMRESSetHapTol++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESSetHapTol.html#KSPGMRESSetHapTol
man:+KSPGMRESSetBreakdownTolerance++KSPGMRESSetBreakdownTolerance++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESSetBreakdownTolerance.html#KSPGMRESSetBreakdownTolerance
man:+KSPGMRES++KSPGMRES++++man+https://petsc.org/release/manualpages/KSP/KSPGMRES.html#KSPGMRES
man:+KSPPGMRES++KSPPGMRES++++man+https://petsc.org/release/manualpages/KSP/KSPPGMRES.html#KSPPGMRES
man:+KSPPIPEFGMRES++KSPPIPEFGMRES++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEFGMRES.html#KSPPIPEFGMRES
man:+KSPPIPEFGMRESSetShift++KSPPIPEFGMRESSetShift++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEFGMRESSetShift.html#KSPPIPEFGMRESSetShift
man:+KSPFGMRES++KSPFGMRES++++man+https://petsc.org/release/manualpages/KSP/KSPFGMRES.html#KSPFGMRES
man:+KSPFGMRESSetModifyPC++KSPFGMRESSetModifyPC++++man+https://petsc.org/release/manualpages/KSP/KSPFGMRESSetModifyPC.html#KSPFGMRESSetModifyPC
man:+KSPFGMRESModifyPCNoChange++KSPFGMRESModifyPCNoChange++++man+https://petsc.org/release/manualpages/KSP/KSPFGMRESModifyPCNoChange.html#KSPFGMRESModifyPCNoChange
man:+KSPFGMRESModifyPCKSP++KSPFGMRESModifyPCKSP++++man+https://petsc.org/release/manualpages/KSP/KSPFGMRESModifyPCKSP.html#KSPFGMRESModifyPCKSP
man:+KSPLGMRESSetAugDim++KSPLGMRESSetAugDim++++man+https://petsc.org/release/manualpages/KSP/KSPLGMRESSetAugDim.html#KSPLGMRESSetAugDim
man:+KSPLGMRESSetConstant++KSPLGMRESSetConstant++++man+https://petsc.org/release/manualpages/KSP/KSPLGMRESSetConstant.html#KSPLGMRESSetConstant
man:+KSPLGMRES++KSPLGMRES++++man+https://petsc.org/release/manualpages/KSP/KSPLGMRES.html#KSPLGMRES
man:+KSPAGMRES++KSPAGMRES++++man+https://petsc.org/release/manualpages/KSP/KSPAGMRES.html#KSPAGMRES
man:+KSPGMRESModifiedGramSchmidtOrthogonalization++KSPGMRESModifiedGramSchmidtOrthogonalization++++man+https://petsc.org/release/manualpages/KSP/KSPGMRESModifiedGramSchmidtOrthogonalization.html#KSPGMRESModifiedGramSchmidtOrthogonalization
man:+KSPChebyshevSetEigenvalues++KSPChebyshevSetEigenvalues++++man+https://petsc.org/release/manualpages/KSP/KSPChebyshevSetEigenvalues.html#KSPChebyshevSetEigenvalues
man:+KSPChebyshevEstEigSet++KSPChebyshevEstEigSet++++man+https://petsc.org/release/manualpages/KSP/KSPChebyshevEstEigSet.html#KSPChebyshevEstEigSet
man:+KSPChebyshevEstEigSetUseNoisy++KSPChebyshevEstEigSetUseNoisy++++man+https://petsc.org/release/manualpages/KSP/KSPChebyshevEstEigSetUseNoisy.html#KSPChebyshevEstEigSetUseNoisy
man:+KSPChebyshevEstEigGetKSP++KSPChebyshevEstEigGetKSP++++man+https://petsc.org/release/manualpages/KSP/KSPChebyshevEstEigGetKSP.html#KSPChebyshevEstEigGetKSP
man:+KSPChebyshevSetKind++KSPChebyshevSetKind++++man+https://petsc.org/release/manualpages/KSP/KSPChebyshevSetKind.html#KSPChebyshevSetKind
man:+KSPChebyshevGetKind++KSPChebyshevGetKind++++man+https://petsc.org/release/manualpages/KSP/KSPChebyshevGetKind.html#KSPChebyshevGetKind
man:+KSPCHEBYSHEV++KSPCHEBYSHEV++++man+https://petsc.org/release/manualpages/KSP/KSPCHEBYSHEV.html#KSPCHEBYSHEV
man:+KSPFCGSetMmax++KSPFCGSetMmax++++man+https://petsc.org/release/manualpages/KSP/KSPFCGSetMmax.html#KSPFCGSetMmax
man:+KSPFCGGetMmax++KSPFCGGetMmax++++man+https://petsc.org/release/manualpages/KSP/KSPFCGGetMmax.html#KSPFCGGetMmax
man:+KSPFCGSetNprealloc++KSPFCGSetNprealloc++++man+https://petsc.org/release/manualpages/KSP/KSPFCGSetNprealloc.html#KSPFCGSetNprealloc
man:+KSPFCGGetNprealloc++KSPFCGGetNprealloc++++man+https://petsc.org/release/manualpages/KSP/KSPFCGGetNprealloc.html#KSPFCGGetNprealloc
man:+KSPFCGSetTruncationType++KSPFCGSetTruncationType++++man+https://petsc.org/release/manualpages/KSP/KSPFCGSetTruncationType.html#KSPFCGSetTruncationType
man:+KSPFCGGetTruncationType++KSPFCGGetTruncationType++++man+https://petsc.org/release/manualpages/KSP/KSPFCGGetTruncationType.html#KSPFCGGetTruncationType
man:+KSPFCG++KSPFCG++++man+https://petsc.org/release/manualpages/KSP/KSPFCG.html#KSPFCG
man:+KSPPIPEFCGSetMmax++KSPPIPEFCGSetMmax++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEFCGSetMmax.html#KSPPIPEFCGSetMmax
man:+KSPPIPEFCGGetMmax++KSPPIPEFCGGetMmax++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEFCGGetMmax.html#KSPPIPEFCGGetMmax
man:+KSPPIPEFCGSetNprealloc++KSPPIPEFCGSetNprealloc++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEFCGSetNprealloc.html#KSPPIPEFCGSetNprealloc
man:+KSPPIPEFCGGetNprealloc++KSPPIPEFCGGetNprealloc++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEFCGGetNprealloc.html#KSPPIPEFCGGetNprealloc
man:+KSPPIPEFCGSetTruncationType++KSPPIPEFCGSetTruncationType++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEFCGSetTruncationType.html#KSPPIPEFCGSetTruncationType
man:+KSPPIPEFCGGetTruncationType++KSPPIPEFCGGetTruncationType++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEFCGGetTruncationType.html#KSPPIPEFCGGetTruncationType
man:+KSPPIPEFCG++KSPPIPEFCG++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEFCG.html#KSPPIPEFCG
man:+KSPPythonSetType++KSPPythonSetType++++man+https://petsc.org/release/manualpages/KSP/KSPPythonSetType.html#KSPPythonSetType
man:+KSPPythonGetType++KSPPythonGetType++++man+https://petsc.org/release/manualpages/KSP/KSPPythonGetType.html#KSPPythonGetType
man:+KSPBICG++KSPBICG++++man+https://petsc.org/release/manualpages/KSP/KSPBICG.html#KSPBICG
man:+KSPSTCG++KSPSTCG++++man+https://petsc.org/release/manualpages/KSP/KSPSTCG.html#KSPSTCG
man:+KSPGLTRGetMinEig++KSPGLTRGetMinEig++++man+https://petsc.org/release/manualpages/KSP/KSPGLTRGetMinEig.html#KSPGLTRGetMinEig
man:+KSPGLTRGetLambda++KSPGLTRGetLambda++++man+https://petsc.org/release/manualpages/KSP/KSPGLTRGetLambda.html#KSPGLTRGetLambda
man:+KSPGLTR++KSPGLTR++++man+https://petsc.org/release/manualpages/KSP/KSPGLTR.html#KSPGLTR
man:+KSPPIPEPRCG++KSPPIPEPRCG++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEPRCG.html#KSPPIPEPRCG
man:+KSPPIPECG2++KSPPIPECG2++++man+https://petsc.org/release/manualpages/KSP/KSPPIPECG2.html#KSPPIPECG2
man:+KSPPIPECGRR++KSPPIPECGRR++++man+https://petsc.org/release/manualpages/KSP/KSPPIPECGRR.html#KSPPIPECGRR
man:+KSPPIPELCG++KSPPIPELCG++++man+https://petsc.org/release/manualpages/KSP/KSPPIPELCG.html#KSPPIPELCG
man:+KSPCGLS++KSPCGLS++++man+https://petsc.org/release/manualpages/KSP/KSPCGLS.html#KSPCGLS
man:+KSPGROPPCG++KSPGROPPCG++++man+https://petsc.org/release/manualpages/KSP/KSPGROPPCG.html#KSPGROPPCG
man:+KSPPIPECG++KSPPIPECG++++man+https://petsc.org/release/manualpages/KSP/KSPPIPECG.html#KSPPIPECG
man:+KSPCGNE++KSPCGNE++++man+https://petsc.org/release/manualpages/KSP/KSPCGNE.html#KSPCGNE
man:+KSPCG++KSPCG++++man+https://petsc.org/release/manualpages/KSP/KSPCG.html#KSPCG
man:+KSPNASH++KSPNASH++++man+https://petsc.org/release/manualpages/KSP/KSPNASH.html#KSPNASH
man:+KSPCGSetType++KSPCGSetType++++man+https://petsc.org/release/manualpages/KSP/KSPCGSetType.html#KSPCGSetType
man:+KSPCGUseSingleReduction++KSPCGUseSingleReduction++++man+https://petsc.org/release/manualpages/KSP/KSPCGUseSingleReduction.html#KSPCGUseSingleReduction
man:+KSPCGSetRadius++KSPCGSetRadius++++man+https://petsc.org/release/manualpages/KSP/KSPCGSetRadius.html#KSPCGSetRadius
man:+KSPCGSetObjectiveTarget++KSPCGSetObjectiveTarget++++man+https://petsc.org/release/manualpages/KSP/KSPCGSetObjectiveTarget.html#KSPCGSetObjectiveTarget
man:+KSPCGGetNormD++KSPCGGetNormD++++man+https://petsc.org/release/manualpages/KSP/KSPCGGetNormD.html#KSPCGGetNormD
man:+KSPCGGetObjFcn++KSPCGGetObjFcn++++man+https://petsc.org/release/manualpages/KSP/KSPCGGetObjFcn.html#KSPCGGetObjFcn
man:+KSPCR++KSPCR++++man+https://petsc.org/release/manualpages/KSP/KSPCR.html#KSPCR
man:+KSPPIPECR++KSPPIPECR++++man+https://petsc.org/release/manualpages/KSP/KSPPIPECR.html#KSPPIPECR
man:+KSPPIPEBCGS++KSPPIPEBCGS++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEBCGS.html#KSPPIPEBCGS
man:+KSPBCGS++KSPBCGS++++man+https://petsc.org/release/manualpages/KSP/KSPBCGS.html#KSPBCGS
man:+KSPFBCGSR++KSPFBCGSR++++man+https://petsc.org/release/manualpages/KSP/KSPFBCGSR.html#KSPFBCGSR
man:+KSPQMRCGS++KSPQMRCGS++++man+https://petsc.org/release/manualpages/KSP/KSPQMRCGS.html#KSPQMRCGS
man:+KSPFBCGS++KSPFBCGS++++man+https://petsc.org/release/manualpages/KSP/KSPFBCGS.html#KSPFBCGS
man:+KSPCGS++KSPCGS++++man+https://petsc.org/release/manualpages/KSP/KSPCGS.html#KSPCGS
man:+KSPTSIRM++KSPTSIRM++++man+https://petsc.org/release/manualpages/KSP/KSPTSIRM.html#KSPTSIRM
man:+KSPLCD++KSPLCD++++man+https://petsc.org/release/manualpages/KSP/KSPLCD.html#KSPLCD
man:+KSPNONE++KSPNONE++++man+https://petsc.org/release/manualpages/KSP/KSPNONE.html#KSPNONE
man:+KSPPREONLY++KSPPREONLY++++man+https://petsc.org/release/manualpages/KSP/KSPPREONLY.html#KSPPREONLY
man:+KSPRichardsonSetScale++KSPRichardsonSetScale++++man+https://petsc.org/release/manualpages/KSP/KSPRichardsonSetScale.html#KSPRichardsonSetScale
man:+KSPRichardsonSetSelfScale++KSPRichardsonSetSelfScale++++man+https://petsc.org/release/manualpages/KSP/KSPRichardsonSetSelfScale.html#KSPRichardsonSetSelfScale
man:+KSPRICHARDSON++KSPRICHARDSON++++man+https://petsc.org/release/manualpages/KSP/KSPRICHARDSON.html#KSPRICHARDSON
man:+KSPFETIDPSetPressureOperator++KSPFETIDPSetPressureOperator++++man+https://petsc.org/release/manualpages/KSP/KSPFETIDPSetPressureOperator.html#KSPFETIDPSetPressureOperator
man:+KSPFETIDPGetInnerKSP++KSPFETIDPGetInnerKSP++++man+https://petsc.org/release/manualpages/KSP/KSPFETIDPGetInnerKSP.html#KSPFETIDPGetInnerKSP
man:+KSPFETIDPGetInnerBDDC++KSPFETIDPGetInnerBDDC++++man+https://petsc.org/release/manualpages/KSP/KSPFETIDPGetInnerBDDC.html#KSPFETIDPGetInnerBDDC
man:+KSPFETIDPSetInnerBDDC++KSPFETIDPSetInnerBDDC++++man+https://petsc.org/release/manualpages/KSP/KSPFETIDPSetInnerBDDC.html#KSPFETIDPSetInnerBDDC
man:+KSPFETIDP++KSPFETIDP++++man+https://petsc.org/release/manualpages/KSP/KSPFETIDP.html#KSPFETIDP
man:+KSPSYMMLQ++KSPSYMMLQ++++man+https://petsc.org/release/manualpages/KSP/KSPSYMMLQ.html#KSPSYMMLQ
man:+KSPTCQMR++KSPTCQMR++++man+https://petsc.org/release/manualpages/KSP/KSPTCQMR.html#KSPTCQMR
man:+KSPBCGSLSetXRes++KSPBCGSLSetXRes++++man+https://petsc.org/release/manualpages/KSP/KSPBCGSLSetXRes.html#KSPBCGSLSetXRes
man:+KSPBCGSLSetUsePseudoinverse++KSPBCGSLSetUsePseudoinverse++++man+https://petsc.org/release/manualpages/KSP/KSPBCGSLSetUsePseudoinverse.html#KSPBCGSLSetUsePseudoinverse
man:+KSPBCGSLSetPol++KSPBCGSLSetPol++++man+https://petsc.org/release/manualpages/KSP/KSPBCGSLSetPol.html#KSPBCGSLSetPol
man:+KSPBCGSLSetEll++KSPBCGSLSetEll++++man+https://petsc.org/release/manualpages/KSP/KSPBCGSLSetEll.html#KSPBCGSLSetEll
man:+KSPBCGSL++KSPBCGSL++++man+https://petsc.org/release/manualpages/KSP/KSPBCGSL.html#KSPBCGSL
man:+KSPQCGSetTrustRegionRadius++KSPQCGSetTrustRegionRadius++++man+https://petsc.org/release/manualpages/KSP/KSPQCGSetTrustRegionRadius.html#KSPQCGSetTrustRegionRadius
man:+KSPQCGGetTrialStepNorm++KSPQCGGetTrialStepNorm++++man+https://petsc.org/release/manualpages/KSP/KSPQCGGetTrialStepNorm.html#KSPQCGGetTrialStepNorm
man:+KSPQCGGetQuadratic++KSPQCGGetQuadratic++++man+https://petsc.org/release/manualpages/KSP/KSPQCGGetQuadratic.html#KSPQCGGetQuadratic
man:+KSPQCG++KSPQCG++++man+https://petsc.org/release/manualpages/KSP/KSPQCG.html#KSPQCG
man:+KSPTFQMR++KSPTFQMR++++man+https://petsc.org/release/manualpages/KSP/KSPTFQMR.html#KSPTFQMR
man:+KSPGCRSetModifyPC++KSPGCRSetModifyPC++++man+https://petsc.org/release/manualpages/KSP/KSPGCRSetModifyPC.html#KSPGCRSetModifyPC
man:+KSPGCRSetRestart++KSPGCRSetRestart++++man+https://petsc.org/release/manualpages/KSP/KSPGCRSetRestart.html#KSPGCRSetRestart
man:+KSPGCRGetRestart++KSPGCRGetRestart++++man+https://petsc.org/release/manualpages/KSP/KSPGCRGetRestart.html#KSPGCRGetRestart
man:+KSPGCR++KSPGCR++++man+https://petsc.org/release/manualpages/KSP/KSPGCR.html#KSPGCR
man:+KSPPIPEGCRSetUnrollW++KSPPIPEGCRSetUnrollW++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEGCRSetUnrollW.html#KSPPIPEGCRSetUnrollW
man:+KSPPIPEGCRGetUnrollW++KSPPIPEGCRGetUnrollW++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEGCRGetUnrollW.html#KSPPIPEGCRGetUnrollW
man:+KSPPIPEGCRSetMmax++KSPPIPEGCRSetMmax++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEGCRSetMmax.html#KSPPIPEGCRSetMmax
man:+KSPPIPEGCRGetMmax++KSPPIPEGCRGetMmax++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEGCRGetMmax.html#KSPPIPEGCRGetMmax
man:+KSPPIPEGCRSetNprealloc++KSPPIPEGCRSetNprealloc++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEGCRSetNprealloc.html#KSPPIPEGCRSetNprealloc
man:+KSPPIPEGCRGetNprealloc++KSPPIPEGCRGetNprealloc++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEGCRGetNprealloc.html#KSPPIPEGCRGetNprealloc
man:+KSPPIPEGCRSetTruncationType++KSPPIPEGCRSetTruncationType++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEGCRSetTruncationType.html#KSPPIPEGCRSetTruncationType
man:+KSPPIPEGCRGetTruncationType++KSPPIPEGCRGetTruncationType++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEGCRGetTruncationType.html#KSPPIPEGCRGetTruncationType
man:+KSPPIPEGCRSetModifyPC++KSPPIPEGCRSetModifyPC++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEGCRSetModifyPC.html#KSPPIPEGCRSetModifyPC
man:+KSPPIPEGCR++KSPPIPEGCR++++man+https://petsc.org/release/manualpages/KSP/KSPPIPEGCR.html#KSPPIPEGCR
man:+KSPMINRESSetUseQLP++KSPMINRESSetUseQLP++++man+https://petsc.org/release/manualpages/KSP/KSPMINRESSetUseQLP.html#KSPMINRESSetUseQLP
man:+KSPMINRESSetRadius++KSPMINRESSetRadius++++man+https://petsc.org/release/manualpages/KSP/KSPMINRESSetRadius.html#KSPMINRESSetRadius
man:+KSPMINRESGetUseQLP++KSPMINRESGetUseQLP++++man+https://petsc.org/release/manualpages/KSP/KSPMINRESGetUseQLP.html#KSPMINRESGetUseQLP
man:+KSPMINRES++KSPMINRES++++man+https://petsc.org/release/manualpages/KSP/KSPMINRES.html#KSPMINRES
man:+KSPLSQRSetComputeStandardErrorVec++KSPLSQRSetComputeStandardErrorVec++++man+https://petsc.org/release/manualpages/KSP/KSPLSQRSetComputeStandardErrorVec.html#KSPLSQRSetComputeStandardErrorVec
man:+KSPLSQRSetExactMatNorm++KSPLSQRSetExactMatNorm++++man+https://petsc.org/release/manualpages/KSP/KSPLSQRSetExactMatNorm.html#KSPLSQRSetExactMatNorm
man:+KSPLSQRGetStandardErrorVec++KSPLSQRGetStandardErrorVec++++man+https://petsc.org/release/manualpages/KSP/KSPLSQRGetStandardErrorVec.html#KSPLSQRGetStandardErrorVec
man:+KSPLSQRGetNorms++KSPLSQRGetNorms++++man+https://petsc.org/release/manualpages/KSP/KSPLSQRGetNorms.html#KSPLSQRGetNorms
man:+KSPLSQRMonitorResidual++KSPLSQRMonitorResidual++++man+https://petsc.org/release/manualpages/KSP/KSPLSQRMonitorResidual.html#KSPLSQRMonitorResidual
man:+KSPLSQRMonitorResidualDrawLG++KSPLSQRMonitorResidualDrawLG++++man+https://petsc.org/release/manualpages/KSP/KSPLSQRMonitorResidualDrawLG.html#KSPLSQRMonitorResidualDrawLG
man:+KSPLSQRMonitorResidualDrawLGCreate++KSPLSQRMonitorResidualDrawLGCreate++++man+https://petsc.org/release/manualpages/KSP/KSPLSQRMonitorResidualDrawLGCreate.html#KSPLSQRMonitorResidualDrawLGCreate
man:+KSPLSQRConvergedDefault++KSPLSQRConvergedDefault++++man+https://petsc.org/release/manualpages/KSP/KSPLSQRConvergedDefault.html#KSPLSQRConvergedDefault
man:+KSPLSQR++KSPLSQR++++man+https://petsc.org/release/manualpages/KSP/KSPLSQR.html#KSPLSQR
man:+KSPMatRegisterAll++KSPMatRegisterAll++++man+https://petsc.org/release/manualpages/KSP/KSPMatRegisterAll.html#KSPMatRegisterAll
man:+MatCreateLMVMDiagBroyden++MatCreateLMVMDiagBroyden++++man+https://petsc.org/release/manualpages/KSP/MatCreateLMVMDiagBroyden.html#MatCreateLMVMDiagBroyden
man:+MatCreateLMVMBadBroyden++MatCreateLMVMBadBroyden++++man+https://petsc.org/release/manualpages/KSP/MatCreateLMVMBadBroyden.html#MatCreateLMVMBadBroyden
man:+MatCreateLMVMBroyden++MatCreateLMVMBroyden++++man+https://petsc.org/release/manualpages/KSP/MatCreateLMVMBroyden.html#MatCreateLMVMBroyden
man:+MatCreateLMVMDQN++MatCreateLMVMDQN++++man+https://petsc.org/release/manualpages/KSP/MatCreateLMVMDQN.html#MatCreateLMVMDQN
man:+MatCreateLMVMDBFGS++MatCreateLMVMDBFGS++++man+https://petsc.org/release/manualpages/KSP/MatCreateLMVMDBFGS.html#MatCreateLMVMDBFGS
man:+MatCreateLMVMDDFP++MatCreateLMVMDDFP++++man+https://petsc.org/release/manualpages/KSP/MatCreateLMVMDDFP.html#MatCreateLMVMDDFP
man:+MatLMVMDenseSetType++MatLMVMDenseSetType++++man+https://petsc.org/release/manualpages/KSP/MatLMVMDenseSetType.html#MatLMVMDenseSetType
man:+MatCreateLMVMSR1++MatCreateLMVMSR1++++man+https://petsc.org/release/manualpages/KSP/MatCreateLMVMSR1.html#MatCreateLMVMSR1
man:+MatCreateLMVMBFGS++MatCreateLMVMBFGS++++man+https://petsc.org/release/manualpages/KSP/MatCreateLMVMBFGS.html#MatCreateLMVMBFGS
man:+MATLMVM++MATLMVM++++man+https://petsc.org/release/manualpages/KSP/MATLMVM.html#MATLMVM
man:+MatLMVMSymBroydenSetDelta++MatLMVMSymBroydenSetDelta++++man+https://petsc.org/release/manualpages/KSP/MatLMVMSymBroydenSetDelta.html#MatLMVMSymBroydenSetDelta
man:+MatLMVMSymBroydenSetScaleType++MatLMVMSymBroydenSetScaleType++++man+https://petsc.org/release/manualpages/KSP/MatLMVMSymBroydenSetScaleType.html#MatLMVMSymBroydenSetScaleType
man:+MatCreateLMVMSymBroyden++MatCreateLMVMSymBroyden++++man+https://petsc.org/release/manualpages/KSP/MatCreateLMVMSymBroyden.html#MatCreateLMVMSymBroyden
man:+MatCreateLMVMSymBadBroyden++MatCreateLMVMSymBadBroyden++++man+https://petsc.org/release/manualpages/KSP/MatCreateLMVMSymBadBroyden.html#MatCreateLMVMSymBadBroyden
man:+MatCreateLMVMDFP++MatCreateLMVMDFP++++man+https://petsc.org/release/manualpages/KSP/MatCreateLMVMDFP.html#MatCreateLMVMDFP
man:+MatLMVMUpdate++MatLMVMUpdate++++man+https://petsc.org/release/manualpages/KSP/MatLMVMUpdate.html#MatLMVMUpdate
man:+MatLMVMClearJ0++MatLMVMClearJ0++++man+https://petsc.org/release/manualpages/KSP/MatLMVMClearJ0.html#MatLMVMClearJ0
man:+MatLMVMSetJ0Scale++MatLMVMSetJ0Scale++++man+https://petsc.org/release/manualpages/KSP/MatLMVMSetJ0Scale.html#MatLMVMSetJ0Scale
man:+MatLMVMSetJ0Diag++MatLMVMSetJ0Diag++++man+https://petsc.org/release/manualpages/KSP/MatLMVMSetJ0Diag.html#MatLMVMSetJ0Diag
man:+MatLMVMSetJ0++MatLMVMSetJ0++++man+https://petsc.org/release/manualpages/KSP/MatLMVMSetJ0.html#MatLMVMSetJ0
man:+MatLMVMSetJ0PC++MatLMVMSetJ0PC++++man+https://petsc.org/release/manualpages/KSP/MatLMVMSetJ0PC.html#MatLMVMSetJ0PC
man:+MatLMVMSetJ0KSP++MatLMVMSetJ0KSP++++man+https://petsc.org/release/manualpages/KSP/MatLMVMSetJ0KSP.html#MatLMVMSetJ0KSP
man:+MatLMVMGetJ0++MatLMVMGetJ0++++man+https://petsc.org/release/manualpages/KSP/MatLMVMGetJ0.html#MatLMVMGetJ0
man:+MatLMVMGetJ0PC++MatLMVMGetJ0PC++++man+https://petsc.org/release/manualpages/KSP/MatLMVMGetJ0PC.html#MatLMVMGetJ0PC
man:+MatLMVMGetJ0KSP++MatLMVMGetJ0KSP++++man+https://petsc.org/release/manualpages/KSP/MatLMVMGetJ0KSP.html#MatLMVMGetJ0KSP
man:+MatLMVMApplyJ0Fwd++MatLMVMApplyJ0Fwd++++man+https://petsc.org/release/manualpages/KSP/MatLMVMApplyJ0Fwd.html#MatLMVMApplyJ0Fwd
man:+MatLMVMApplyJ0Inv++MatLMVMApplyJ0Inv++++man+https://petsc.org/release/manualpages/KSP/MatLMVMApplyJ0Inv.html#MatLMVMApplyJ0Inv
man:+MatLMVMIsAllocated++MatLMVMIsAllocated++++man+https://petsc.org/release/manualpages/KSP/MatLMVMIsAllocated.html#MatLMVMIsAllocated
man:+MatLMVMAllocate++MatLMVMAllocate++++man+https://petsc.org/release/manualpages/KSP/MatLMVMAllocate.html#MatLMVMAllocate
man:+MatLMVMResetShift++MatLMVMResetShift++++man+https://petsc.org/release/manualpages/KSP/MatLMVMResetShift.html#MatLMVMResetShift
man:+MatLMVMReset++MatLMVMReset++++man+https://petsc.org/release/manualpages/KSP/MatLMVMReset.html#MatLMVMReset
man:+MatLMVMSetHistorySize++MatLMVMSetHistorySize++++man+https://petsc.org/release/manualpages/KSP/MatLMVMSetHistorySize.html#MatLMVMSetHistorySize
man:+MatLMVMGetUpdateCount++MatLMVMGetUpdateCount++++man+https://petsc.org/release/manualpages/KSP/MatLMVMGetUpdateCount.html#MatLMVMGetUpdateCount
man:+MatLMVMGetRejectCount++MatLMVMGetRejectCount++++man+https://petsc.org/release/manualpages/KSP/MatLMVMGetRejectCount.html#MatLMVMGetRejectCount
man:+DMGlobalToLocalSolve++DMGlobalToLocalSolve++++man+https://petsc.org/release/manualpages/DM/DMGlobalToLocalSolve.html#DMGlobalToLocalSolve
man:+DMProjectField++DMProjectField++++man+https://petsc.org/release/manualpages/DM/DMProjectField.html#DMProjectField
man:+DMSwarmProjectFields++DMSwarmProjectFields++++man+https://petsc.org/release/manualpages/DM/DMSwarmProjectFields.html#DMSwarmProjectFields
man:+DMSwarmRemap++DMSwarmRemap++++man+https://petsc.org/release/manualpages/DM/DMSwarmRemap.html#DMSwarmRemap
man:+MatCreateSchurComplement++MatCreateSchurComplement++++man+https://petsc.org/release/manualpages/KSP/MatCreateSchurComplement.html#MatCreateSchurComplement
man:+MatSchurComplementSetSubMatrices++MatSchurComplementSetSubMatrices++++man+https://petsc.org/release/manualpages/KSP/MatSchurComplementSetSubMatrices.html#MatSchurComplementSetSubMatrices
man:+MatSchurComplementGetKSP++MatSchurComplementGetKSP++++man+https://petsc.org/release/manualpages/KSP/MatSchurComplementGetKSP.html#MatSchurComplementGetKSP
man:+MatSchurComplementSetKSP++MatSchurComplementSetKSP++++man+https://petsc.org/release/manualpages/KSP/MatSchurComplementSetKSP.html#MatSchurComplementSetKSP
man:+MatSchurComplementUpdateSubMatrices++MatSchurComplementUpdateSubMatrices++++man+https://petsc.org/release/manualpages/KSP/MatSchurComplementUpdateSubMatrices.html#MatSchurComplementUpdateSubMatrices
man:+MatSchurComplementGetSubMatrices++MatSchurComplementGetSubMatrices++++man+https://petsc.org/release/manualpages/KSP/MatSchurComplementGetSubMatrices.html#MatSchurComplementGetSubMatrices
man:+MatSchurComplementComputeExplicitOperator++MatSchurComplementComputeExplicitOperator++++man+https://petsc.org/release/manualpages/KSP/MatSchurComplementComputeExplicitOperator.html#MatSchurComplementComputeExplicitOperator
man:+MatGetSchurComplement++MatGetSchurComplement++++man+https://petsc.org/release/manualpages/KSP/MatGetSchurComplement.html#MatGetSchurComplement
man:+MatSchurComplementSetAinvType++MatSchurComplementSetAinvType++++man+https://petsc.org/release/manualpages/KSP/MatSchurComplementSetAinvType.html#MatSchurComplementSetAinvType
man:+MatSchurComplementGetAinvType++MatSchurComplementGetAinvType++++man+https://petsc.org/release/manualpages/KSP/MatSchurComplementGetAinvType.html#MatSchurComplementGetAinvType
man:+MatCreateSchurComplementPmat++MatCreateSchurComplementPmat++++man+https://petsc.org/release/manualpages/KSP/MatCreateSchurComplementPmat.html#MatCreateSchurComplementPmat
man:+MatSchurComplementGetPmat++MatSchurComplementGetPmat++++man+https://petsc.org/release/manualpages/KSP/MatSchurComplementGetPmat.html#MatSchurComplementGetPmat
man:+MATSCHURCOMPLEMENT++MATSCHURCOMPLEMENT++++man+https://petsc.org/release/manualpages/KSP/MATSCHURCOMPLEMENT.html#MATSCHURCOMPLEMENT
man:+KSPGUESSPOD++KSPGUESSPOD++++man+https://petsc.org/release/manualpages/KSP/KSPGUESSPOD.html#KSPGUESSPOD
man:+KSPGuessFischerSetModel++KSPGuessFischerSetModel++++man+https://petsc.org/release/manualpages/KSP/KSPGuessFischerSetModel.html#KSPGuessFischerSetModel
man:+KSPGUESSFISCHER++KSPGUESSFISCHER++++man+https://petsc.org/release/manualpages/KSP/KSPGUESSFISCHER.html#KSPGUESSFISCHER
man:+SNESMonitorSolution++SNESMonitorSolution++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorSolution.html#SNESMonitorSolution
man:+SNESMonitorResidual++SNESMonitorResidual++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorResidual.html#SNESMonitorResidual
man:+SNESMonitorSolutionUpdate++SNESMonitorSolutionUpdate++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorSolutionUpdate.html#SNESMonitorSolutionUpdate
man:+KSPMonitorSNESResidual++KSPMonitorSNESResidual++++man+https://petsc.org/release/manualpages/SNES/KSPMonitorSNESResidual.html#KSPMonitorSNESResidual
man:+KSPMonitorSNESResidualDrawLG++KSPMonitorSNESResidualDrawLG++++man+https://petsc.org/release/manualpages/SNES/KSPMonitorSNESResidualDrawLG.html#KSPMonitorSNESResidualDrawLG
man:+KSPMonitorSNESResidualDrawLGCreate++KSPMonitorSNESResidualDrawLGCreate++++man+https://petsc.org/release/manualpages/SNES/KSPMonitorSNESResidualDrawLGCreate.html#KSPMonitorSNESResidualDrawLGCreate
man:+SNESMonitorDefault++SNESMonitorDefault++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorDefault.html#SNESMonitorDefault
man:+SNESMonitorScaling++SNESMonitorScaling++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorScaling.html#SNESMonitorScaling
man:+SNESMonitorJacUpdateSpectrum++SNESMonitorJacUpdateSpectrum++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorJacUpdateSpectrum.html#SNESMonitorJacUpdateSpectrum
man:+SNESMonitorRange++SNESMonitorRange++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorRange.html#SNESMonitorRange
man:+SNESMonitorRatio++SNESMonitorRatio++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorRatio.html#SNESMonitorRatio
man:+SNESMonitorRatioSetUp++SNESMonitorRatioSetUp++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorRatioSetUp.html#SNESMonitorRatioSetUp
man:+SNESMonitorDefaultField++SNESMonitorDefaultField++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorDefaultField.html#SNESMonitorDefaultField
man:+SNESConvergedDefault++SNESConvergedDefault++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedDefault.html#SNESConvergedDefault
man:+SNESConvergedSkip++SNESConvergedSkip++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedSkip.html#SNESConvergedSkip
man:+SNESSetWorkVecs++SNESSetWorkVecs++++man+https://petsc.org/release/manualpages/SNES/SNESSetWorkVecs.html#SNESSetWorkVecs
man:+SNESFinalizePackage++SNESFinalizePackage++++man+https://petsc.org/release/manualpages/SNES/SNESFinalizePackage.html#SNESFinalizePackage
man:+SNESInitializePackage++SNESInitializePackage++++man+https://petsc.org/release/manualpages/SNES/SNESInitializePackage.html#SNESInitializePackage
man:+SNESSetErrorIfNotConverged++SNESSetErrorIfNotConverged++++man+https://petsc.org/release/manualpages/SNES/SNESSetErrorIfNotConverged.html#SNESSetErrorIfNotConverged
man:+SNESGetErrorIfNotConverged++SNESGetErrorIfNotConverged++++man+https://petsc.org/release/manualpages/SNES/SNESGetErrorIfNotConverged.html#SNESGetErrorIfNotConverged
man:+SNESSetAlwaysComputesFinalResidual++SNESSetAlwaysComputesFinalResidual++++man+https://petsc.org/release/manualpages/SNES/SNESSetAlwaysComputesFinalResidual.html#SNESSetAlwaysComputesFinalResidual
man:+SNESGetAlwaysComputesFinalResidual++SNESGetAlwaysComputesFinalResidual++++man+https://petsc.org/release/manualpages/SNES/SNESGetAlwaysComputesFinalResidual.html#SNESGetAlwaysComputesFinalResidual
man:+SNESSetFunctionDomainError++SNESSetFunctionDomainError++++man+https://petsc.org/release/manualpages/SNES/SNESSetFunctionDomainError.html#SNESSetFunctionDomainError
man:+SNESSetJacobianDomainError++SNESSetJacobianDomainError++++man+https://petsc.org/release/manualpages/SNES/SNESSetJacobianDomainError.html#SNESSetJacobianDomainError
man:+SNESSetCheckJacobianDomainError++SNESSetCheckJacobianDomainError++++man+https://petsc.org/release/manualpages/SNES/SNESSetCheckJacobianDomainError.html#SNESSetCheckJacobianDomainError
man:+SNESGetCheckJacobianDomainError++SNESGetCheckJacobianDomainError++++man+https://petsc.org/release/manualpages/SNES/SNESGetCheckJacobianDomainError.html#SNESGetCheckJacobianDomainError
man:+SNESGetFunctionDomainError++SNESGetFunctionDomainError++++man+https://petsc.org/release/manualpages/SNES/SNESGetFunctionDomainError.html#SNESGetFunctionDomainError
man:+SNESGetJacobianDomainError++SNESGetJacobianDomainError++++man+https://petsc.org/release/manualpages/SNES/SNESGetJacobianDomainError.html#SNESGetJacobianDomainError
man:+SNESLoad++SNESLoad++++man+https://petsc.org/release/manualpages/SNES/SNESLoad.html#SNESLoad
man:+SNESViewFromOptions++SNESViewFromOptions++++man+https://petsc.org/release/manualpages/SNES/SNESViewFromOptions.html#SNESViewFromOptions
man:+SNESView++SNESView++++man+https://petsc.org/release/manualpages/SNES/SNESView.html#SNESView
man:+SNESAddOptionsChecker++SNESAddOptionsChecker++++man+https://petsc.org/release/manualpages/SNES/SNESAddOptionsChecker.html#SNESAddOptionsChecker
man:+SNESSetUpMatrices++SNESSetUpMatrices++++man+https://petsc.org/release/manualpages/SNES/SNESSetUpMatrices.html#SNESSetUpMatrices
man:+SNESMonitorSetFromOptions++SNESMonitorSetFromOptions++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorSetFromOptions.html#SNESMonitorSetFromOptions
man:+SNESSetFromOptions++SNESSetFromOptions++++man+https://petsc.org/release/manualpages/SNES/SNESSetFromOptions.html#SNESSetFromOptions
man:+SNESResetFromOptions++SNESResetFromOptions++++man+https://petsc.org/release/manualpages/SNES/SNESResetFromOptions.html#SNESResetFromOptions
man:+SNESSetComputeApplicationContext++SNESSetComputeApplicationContext++++man+https://petsc.org/release/manualpages/SNES/SNESSetComputeApplicationContext.html#SNESSetComputeApplicationContext
man:+SNESSetApplicationContext++SNESSetApplicationContext++++man+https://petsc.org/release/manualpages/SNES/SNESSetApplicationContext.html#SNESSetApplicationContext
man:+SNESGetApplicationContext++SNESGetApplicationContext++++man+https://petsc.org/release/manualpages/SNES/SNESGetApplicationContext.html#SNESGetApplicationContext
man:+SNESSetUseMatrixFree++SNESSetUseMatrixFree++++man+https://petsc.org/release/manualpages/SNES/SNESSetUseMatrixFree.html#SNESSetUseMatrixFree
man:+SNESGetUseMatrixFree++SNESGetUseMatrixFree++++man+https://petsc.org/release/manualpages/SNES/SNESGetUseMatrixFree.html#SNESGetUseMatrixFree
man:+SNESGetIterationNumber++SNESGetIterationNumber++++man+https://petsc.org/release/manualpages/SNES/SNESGetIterationNumber.html#SNESGetIterationNumber
man:+SNESSetIterationNumber++SNESSetIterationNumber++++man+https://petsc.org/release/manualpages/SNES/SNESSetIterationNumber.html#SNESSetIterationNumber
man:+SNESGetNonlinearStepFailures++SNESGetNonlinearStepFailures++++man+https://petsc.org/release/manualpages/SNES/SNESGetNonlinearStepFailures.html#SNESGetNonlinearStepFailures
man:+SNESSetMaxNonlinearStepFailures++SNESSetMaxNonlinearStepFailures++++man+https://petsc.org/release/manualpages/SNES/SNESSetMaxNonlinearStepFailures.html#SNESSetMaxNonlinearStepFailures
man:+SNESGetMaxNonlinearStepFailures++SNESGetMaxNonlinearStepFailures++++man+https://petsc.org/release/manualpages/SNES/SNESGetMaxNonlinearStepFailures.html#SNESGetMaxNonlinearStepFailures
man:+SNESGetNumberFunctionEvals++SNESGetNumberFunctionEvals++++man+https://petsc.org/release/manualpages/SNES/SNESGetNumberFunctionEvals.html#SNESGetNumberFunctionEvals
man:+SNESGetLinearSolveFailures++SNESGetLinearSolveFailures++++man+https://petsc.org/release/manualpages/SNES/SNESGetLinearSolveFailures.html#SNESGetLinearSolveFailures
man:+SNESSetMaxLinearSolveFailures++SNESSetMaxLinearSolveFailures++++man+https://petsc.org/release/manualpages/SNES/SNESSetMaxLinearSolveFailures.html#SNESSetMaxLinearSolveFailures
man:+SNESGetMaxLinearSolveFailures++SNESGetMaxLinearSolveFailures++++man+https://petsc.org/release/manualpages/SNES/SNESGetMaxLinearSolveFailures.html#SNESGetMaxLinearSolveFailures
man:+SNESGetLinearSolveIterations++SNESGetLinearSolveIterations++++man+https://petsc.org/release/manualpages/SNES/SNESGetLinearSolveIterations.html#SNESGetLinearSolveIterations
man:+SNESSetCountersReset++SNESSetCountersReset++++man+https://petsc.org/release/manualpages/SNES/SNESSetCountersReset.html#SNESSetCountersReset
man:+SNESResetCounters++SNESResetCounters++++man+https://petsc.org/release/manualpages/SNES/SNESResetCounters.html#SNESResetCounters
man:+SNESSetKSP++SNESSetKSP++++man+https://petsc.org/release/manualpages/SNES/SNESSetKSP.html#SNESSetKSP
man:+SNESParametersInitialize++SNESParametersInitialize++++man+https://petsc.org/release/manualpages/SNES/SNESParametersInitialize.html#SNESParametersInitialize
man:+SNESCreate++SNESCreate++++man+https://petsc.org/release/manualpages/SNES/SNESCreate.html#SNESCreate
man:+SNESSetFunction++SNESSetFunction++++man+https://petsc.org/release/manualpages/SNES/SNESSetFunction.html#SNESSetFunction
man:+SNESSetInitialFunction++SNESSetInitialFunction++++man+https://petsc.org/release/manualpages/SNES/SNESSetInitialFunction.html#SNESSetInitialFunction
man:+SNESSetNormSchedule++SNESSetNormSchedule++++man+https://petsc.org/release/manualpages/SNES/SNESSetNormSchedule.html#SNESSetNormSchedule
man:+SNESGetNormSchedule++SNESGetNormSchedule++++man+https://petsc.org/release/manualpages/SNES/SNESGetNormSchedule.html#SNESGetNormSchedule
man:+SNESSetFunctionNorm++SNESSetFunctionNorm++++man+https://petsc.org/release/manualpages/SNES/SNESSetFunctionNorm.html#SNESSetFunctionNorm
man:+SNESGetFunctionNorm++SNESGetFunctionNorm++++man+https://petsc.org/release/manualpages/SNES/SNESGetFunctionNorm.html#SNESGetFunctionNorm
man:+SNESGetUpdateNorm++SNESGetUpdateNorm++++man+https://petsc.org/release/manualpages/SNES/SNESGetUpdateNorm.html#SNESGetUpdateNorm
man:+SNESGetSolutionNorm++SNESGetSolutionNorm++++man+https://petsc.org/release/manualpages/SNES/SNESGetSolutionNorm.html#SNESGetSolutionNorm
man:+SNESSetFunctionType++SNESSetFunctionType++++man+https://petsc.org/release/manualpages/SNES/SNESSetFunctionType.html#SNESSetFunctionType
man:+SNESGetFunctionType++SNESGetFunctionType++++man+https://petsc.org/release/manualpages/SNES/SNESGetFunctionType.html#SNESGetFunctionType
man:+SNESSetNGS++SNESSetNGS++++man+https://petsc.org/release/manualpages/SNES/SNESSetNGS.html#SNESSetNGS
man:+SNESSetPicard++SNESSetPicard++++man+https://petsc.org/release/manualpages/SNES/SNESSetPicard.html#SNESSetPicard
man:+SNESGetPicard++SNESGetPicard++++man+https://petsc.org/release/manualpages/SNES/SNESGetPicard.html#SNESGetPicard
man:+SNESSetComputeInitialGuess++SNESSetComputeInitialGuess++++man+https://petsc.org/release/manualpages/SNES/SNESSetComputeInitialGuess.html#SNESSetComputeInitialGuess
man:+SNESGetRhs++SNESGetRhs++++man+https://petsc.org/release/manualpages/SNES/SNESGetRhs.html#SNESGetRhs
man:+SNESComputeFunction++SNESComputeFunction++++man+https://petsc.org/release/manualpages/SNES/SNESComputeFunction.html#SNESComputeFunction
man:+SNESComputeMFFunction++SNESComputeMFFunction++++man+https://petsc.org/release/manualpages/SNES/SNESComputeMFFunction.html#SNESComputeMFFunction
man:+SNESComputeNGS++SNESComputeNGS++++man+https://petsc.org/release/manualpages/SNES/SNESComputeNGS.html#SNESComputeNGS
man:+SNESComputeJacobian++SNESComputeJacobian++++man+https://petsc.org/release/manualpages/SNES/SNESComputeJacobian.html#SNESComputeJacobian
man:+SNESSetJacobian++SNESSetJacobian++++man+https://petsc.org/release/manualpages/SNES/SNESSetJacobian.html#SNESSetJacobian
man:+SNESGetJacobian++SNESGetJacobian++++man+https://petsc.org/release/manualpages/SNES/SNESGetJacobian.html#SNESGetJacobian
man:+SNESSetUp++SNESSetUp++++man+https://petsc.org/release/manualpages/SNES/SNESSetUp.html#SNESSetUp
man:+SNESReset++SNESReset++++man+https://petsc.org/release/manualpages/SNES/SNESReset.html#SNESReset
man:+SNESConvergedReasonViewCancel++SNESConvergedReasonViewCancel++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReasonViewCancel.html#SNESConvergedReasonViewCancel
man:+SNESDestroy++SNESDestroy++++man+https://petsc.org/release/manualpages/SNES/SNESDestroy.html#SNESDestroy
man:+SNESSetLagPreconditioner++SNESSetLagPreconditioner++++man+https://petsc.org/release/manualpages/SNES/SNESSetLagPreconditioner.html#SNESSetLagPreconditioner
man:+SNESSetGridSequence++SNESSetGridSequence++++man+https://petsc.org/release/manualpages/SNES/SNESSetGridSequence.html#SNESSetGridSequence
man:+SNESGetGridSequence++SNESGetGridSequence++++man+https://petsc.org/release/manualpages/SNES/SNESGetGridSequence.html#SNESGetGridSequence
man:+SNESGetLagPreconditioner++SNESGetLagPreconditioner++++man+https://petsc.org/release/manualpages/SNES/SNESGetLagPreconditioner.html#SNESGetLagPreconditioner
man:+SNESSetLagJacobian++SNESSetLagJacobian++++man+https://petsc.org/release/manualpages/SNES/SNESSetLagJacobian.html#SNESSetLagJacobian
man:+SNESGetLagJacobian++SNESGetLagJacobian++++man+https://petsc.org/release/manualpages/SNES/SNESGetLagJacobian.html#SNESGetLagJacobian
man:+SNESSetLagJacobianPersists++SNESSetLagJacobianPersists++++man+https://petsc.org/release/manualpages/SNES/SNESSetLagJacobianPersists.html#SNESSetLagJacobianPersists
man:+SNESSetLagPreconditionerPersists++SNESSetLagPreconditionerPersists++++man+https://petsc.org/release/manualpages/SNES/SNESSetLagPreconditionerPersists.html#SNESSetLagPreconditionerPersists
man:+SNESSetForceIteration++SNESSetForceIteration++++man+https://petsc.org/release/manualpages/SNES/SNESSetForceIteration.html#SNESSetForceIteration
man:+SNESGetForceIteration++SNESGetForceIteration++++man+https://petsc.org/release/manualpages/SNES/SNESGetForceIteration.html#SNESGetForceIteration
man:+SNESSetTolerances++SNESSetTolerances++++man+https://petsc.org/release/manualpages/SNES/SNESSetTolerances.html#SNESSetTolerances
man:+SNESSetDivergenceTolerance++SNESSetDivergenceTolerance++++man+https://petsc.org/release/manualpages/SNES/SNESSetDivergenceTolerance.html#SNESSetDivergenceTolerance
man:+SNESGetTolerances++SNESGetTolerances++++man+https://petsc.org/release/manualpages/SNES/SNESGetTolerances.html#SNESGetTolerances
man:+SNESGetDivergenceTolerance++SNESGetDivergenceTolerance++++man+https://petsc.org/release/manualpages/SNES/SNESGetDivergenceTolerance.html#SNESGetDivergenceTolerance
man:+SNESConverged++SNESConverged++++man+https://petsc.org/release/manualpages/SNES/SNESConverged.html#SNESConverged
man:+SNESMonitor++SNESMonitor++++man+https://petsc.org/release/manualpages/SNES/SNESMonitor.html#SNESMonitor
man:+SNESMonitorFunction++SNESMonitorFunction++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorFunction.html#SNESMonitorFunction
man:+SNESMonitorSet++SNESMonitorSet++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorSet.html#SNESMonitorSet
man:+SNESMonitorCancel++SNESMonitorCancel++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorCancel.html#SNESMonitorCancel
man:+SNESConvergenceTestFunction++SNESConvergenceTestFunction++++man+https://petsc.org/release/manualpages/SNES/SNESConvergenceTestFunction.html#SNESConvergenceTestFunction
man:+SNESSetConvergenceTest++SNESSetConvergenceTest++++man+https://petsc.org/release/manualpages/SNES/SNESSetConvergenceTest.html#SNESSetConvergenceTest
man:+SNESGetConvergedReason++SNESGetConvergedReason++++man+https://petsc.org/release/manualpages/SNES/SNESGetConvergedReason.html#SNESGetConvergedReason
man:+SNESGetConvergedReasonString++SNESGetConvergedReasonString++++man+https://petsc.org/release/manualpages/SNES/SNESGetConvergedReasonString.html#SNESGetConvergedReasonString
man:+SNESSetConvergedReason++SNESSetConvergedReason++++man+https://petsc.org/release/manualpages/SNES/SNESSetConvergedReason.html#SNESSetConvergedReason
man:+SNESSetConvergenceHistory++SNESSetConvergenceHistory++++man+https://petsc.org/release/manualpages/SNES/SNESSetConvergenceHistory.html#SNESSetConvergenceHistory
man:+SNESGetConvergenceHistory++SNESGetConvergenceHistory++++man+https://petsc.org/release/manualpages/SNES/SNESGetConvergenceHistory.html#SNESGetConvergenceHistory
man:+SNESSetUpdate++SNESSetUpdate++++man+https://petsc.org/release/manualpages/SNES/SNESSetUpdate.html#SNESSetUpdate
man:+SNESConvergedReasonView++SNESConvergedReasonView++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReasonView.html#SNESConvergedReasonView
man:+SNESConvergedReasonViewSet++SNESConvergedReasonViewSet++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReasonViewSet.html#SNESConvergedReasonViewSet
man:+SNESConvergedReasonViewFromOptions++SNESConvergedReasonViewFromOptions++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedReasonViewFromOptions.html#SNESConvergedReasonViewFromOptions
man:+SNESSolve++SNESSolve++++man+https://petsc.org/release/manualpages/SNES/SNESSolve.html#SNESSolve
man:+SNESSetType++SNESSetType++++man+https://petsc.org/release/manualpages/SNES/SNESSetType.html#SNESSetType
man:+SNESGetType++SNESGetType++++man+https://petsc.org/release/manualpages/SNES/SNESGetType.html#SNESGetType
man:+SNESSetSolution++SNESSetSolution++++man+https://petsc.org/release/manualpages/SNES/SNESSetSolution.html#SNESSetSolution
man:+SNESGetSolution++SNESGetSolution++++man+https://petsc.org/release/manualpages/SNES/SNESGetSolution.html#SNESGetSolution
man:+SNESGetSolutionUpdate++SNESGetSolutionUpdate++++man+https://petsc.org/release/manualpages/SNES/SNESGetSolutionUpdate.html#SNESGetSolutionUpdate
man:+SNESGetFunction++SNESGetFunction++++man+https://petsc.org/release/manualpages/SNES/SNESGetFunction.html#SNESGetFunction
man:+SNESGetNGS++SNESGetNGS++++man+https://petsc.org/release/manualpages/SNES/SNESGetNGS.html#SNESGetNGS
man:+SNESSetOptionsPrefix++SNESSetOptionsPrefix++++man+https://petsc.org/release/manualpages/SNES/SNESSetOptionsPrefix.html#SNESSetOptionsPrefix
man:+SNESAppendOptionsPrefix++SNESAppendOptionsPrefix++++man+https://petsc.org/release/manualpages/SNES/SNESAppendOptionsPrefix.html#SNESAppendOptionsPrefix
man:+SNESGetOptionsPrefix++SNESGetOptionsPrefix++++man+https://petsc.org/release/manualpages/SNES/SNESGetOptionsPrefix.html#SNESGetOptionsPrefix
man:+SNESRegister++SNESRegister++++man+https://petsc.org/release/manualpages/SNES/SNESRegister.html#SNESRegister
man:+SNESKSPSetUseEW++SNESKSPSetUseEW++++man+https://petsc.org/release/manualpages/SNES/SNESKSPSetUseEW.html#SNESKSPSetUseEW
man:+SNESKSPGetUseEW++SNESKSPGetUseEW++++man+https://petsc.org/release/manualpages/SNES/SNESKSPGetUseEW.html#SNESKSPGetUseEW
man:+SNESKSPSetParametersEW++SNESKSPSetParametersEW++++man+https://petsc.org/release/manualpages/SNES/SNESKSPSetParametersEW.html#SNESKSPSetParametersEW
man:+SNESKSPGetParametersEW++SNESKSPGetParametersEW++++man+https://petsc.org/release/manualpages/SNES/SNESKSPGetParametersEW.html#SNESKSPGetParametersEW
man:+SNESGetKSP++SNESGetKSP++++man+https://petsc.org/release/manualpages/SNES/SNESGetKSP.html#SNESGetKSP
man:+SNESSetDM++SNESSetDM++++man+https://petsc.org/release/manualpages/SNES/SNESSetDM.html#SNESSetDM
man:+SNESGetDM++SNESGetDM++++man+https://petsc.org/release/manualpages/SNES/SNESGetDM.html#SNESGetDM
man:+SNESSetNPC++SNESSetNPC++++man+https://petsc.org/release/manualpages/SNES/SNESSetNPC.html#SNESSetNPC
man:+SNESGetNPC++SNESGetNPC++++man+https://petsc.org/release/manualpages/SNES/SNESGetNPC.html#SNESGetNPC
man:+SNESHasNPC++SNESHasNPC++++man+https://petsc.org/release/manualpages/SNES/SNESHasNPC.html#SNESHasNPC
man:+SNESSetNPCSide++SNESSetNPCSide++++man+https://petsc.org/release/manualpages/SNES/SNESSetNPCSide.html#SNESSetNPCSide
man:+SNESGetNPCSide++SNESGetNPCSide++++man+https://petsc.org/release/manualpages/SNES/SNESGetNPCSide.html#SNESGetNPCSide
man:+SNESSetLineSearch++SNESSetLineSearch++++man+https://petsc.org/release/manualpages/SNES/SNESSetLineSearch.html#SNESSetLineSearch
man:+SNESGetLineSearch++SNESGetLineSearch++++man+https://petsc.org/release/manualpages/SNES/SNESGetLineSearch.html#SNESGetLineSearch
man:+MatCreateSNESMFMore++MatCreateSNESMFMore++++man+https://petsc.org/release/manualpages/SNES/MatCreateSNESMFMore.html#MatCreateSNESMFMore
man:+MatSNESMFMoreSetParameters++MatSNESMFMoreSetParameters++++man+https://petsc.org/release/manualpages/SNES/MatSNESMFMoreSetParameters.html#MatSNESMFMoreSetParameters
man:+SNESMonitorSAWsCreate++SNESMonitorSAWsCreate++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorSAWsCreate.html#SNESMonitorSAWsCreate
man:+SNESMonitorSAWsDestroy++SNESMonitorSAWsDestroy++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorSAWsDestroy.html#SNESMonitorSAWsDestroy
man:+SNESMonitorSAWs++SNESMonitorSAWs++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorSAWs.html#SNESMonitorSAWs
man:+SNESComputeJacobianDefault++SNESComputeJacobianDefault++++man+https://petsc.org/release/manualpages/SNES/SNESComputeJacobianDefault.html#SNESComputeJacobianDefault
man:+SNESApplyNPC++SNESApplyNPC++++man+https://petsc.org/release/manualpages/SNES/SNESApplyNPC.html#SNESApplyNPC
man:+SNESGetNPCFunction++SNESGetNPCFunction++++man+https://petsc.org/release/manualpages/SNES/SNESGetNPCFunction.html#SNESGetNPCFunction
man:+SNESSetObjective++SNESSetObjective++++man+https://petsc.org/release/manualpages/SNES/SNESSetObjective.html#SNESSetObjective
man:+SNESGetObjective++SNESGetObjective++++man+https://petsc.org/release/manualpages/SNES/SNESGetObjective.html#SNESGetObjective
man:+SNESComputeObjective++SNESComputeObjective++++man+https://petsc.org/release/manualpages/SNES/SNESComputeObjective.html#SNESComputeObjective
man:+SNESObjectiveComputeFunctionDefaultFD++SNESObjectiveComputeFunctionDefaultFD++++man+https://petsc.org/release/manualpages/SNES/SNESObjectiveComputeFunctionDefaultFD.html#SNESObjectiveComputeFunctionDefaultFD
man:+SNESComputeJacobianDefaultColor++SNESComputeJacobianDefaultColor++++man+https://petsc.org/release/manualpages/SNES/SNESComputeJacobianDefaultColor.html#SNESComputeJacobianDefaultColor
man:+SNESPruneJacobianColor++SNESPruneJacobianColor++++man+https://petsc.org/release/manualpages/SNES/SNESPruneJacobianColor.html#SNESPruneJacobianColor
man:+SNESRegisterAll++SNESRegisterAll++++man+https://petsc.org/release/manualpages/SNES/SNESRegisterAll.html#SNESRegisterAll
man:+MatMFFDComputeJacobian++MatMFFDComputeJacobian++++man+https://petsc.org/release/manualpages/SNES/MatMFFDComputeJacobian.html#MatMFFDComputeJacobian
man:+MatSNESMFGetSNES++MatSNESMFGetSNES++++man+https://petsc.org/release/manualpages/SNES/MatSNESMFGetSNES.html#MatSNESMFGetSNES
man:+MatSNESMFSetReuseBase++MatSNESMFSetReuseBase++++man+https://petsc.org/release/manualpages/SNES/MatSNESMFSetReuseBase.html#MatSNESMFSetReuseBase
man:+MatSNESMFGetReuseBase++MatSNESMFGetReuseBase++++man+https://petsc.org/release/manualpages/SNES/MatSNESMFGetReuseBase.html#MatSNESMFGetReuseBase
man:+MatCreateSNESMF++MatCreateSNESMF++++man+https://petsc.org/release/manualpages/SNES/MatCreateSNESMF.html#MatCreateSNESMF
man:+SNESLineSearchRegisterAll++SNESLineSearchRegisterAll++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchRegisterAll.html#SNESLineSearchRegisterAll
man:+SNESLineSearchMonitorCancel++SNESLineSearchMonitorCancel++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchMonitorCancel.html#SNESLineSearchMonitorCancel
man:+SNESLineSearchMonitor++SNESLineSearchMonitor++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchMonitor.html#SNESLineSearchMonitor
man:+SNESLineSearchMonitorSet++SNESLineSearchMonitorSet++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchMonitorSet.html#SNESLineSearchMonitorSet
man:+SNESLineSearchMonitorSolutionUpdate++SNESLineSearchMonitorSolutionUpdate++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchMonitorSolutionUpdate.html#SNESLineSearchMonitorSolutionUpdate
man:+SNESLineSearchCreate++SNESLineSearchCreate++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchCreate.html#SNESLineSearchCreate
man:+SNESLineSearchSetUp++SNESLineSearchSetUp++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetUp.html#SNESLineSearchSetUp
man:+SNESLineSearchReset++SNESLineSearchReset++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchReset.html#SNESLineSearchReset
man:+SNESLineSearchSetFunction++SNESLineSearchSetFunction++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetFunction.html#SNESLineSearchSetFunction
man:+SNESLineSearchSetPreCheck++SNESLineSearchSetPreCheck++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetPreCheck.html#SNESLineSearchSetPreCheck
man:+SNESLineSearchGetPreCheck++SNESLineSearchGetPreCheck++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchGetPreCheck.html#SNESLineSearchGetPreCheck
man:+SNESLineSearchSetPostCheck++SNESLineSearchSetPostCheck++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetPostCheck.html#SNESLineSearchSetPostCheck
man:+SNESLineSearchGetPostCheck++SNESLineSearchGetPostCheck++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchGetPostCheck.html#SNESLineSearchGetPostCheck
man:+SNESLineSearchPreCheck++SNESLineSearchPreCheck++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchPreCheck.html#SNESLineSearchPreCheck
man:+SNESLineSearchPostCheck++SNESLineSearchPostCheck++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchPostCheck.html#SNESLineSearchPostCheck
man:+SNESLineSearchPreCheckPicard++SNESLineSearchPreCheckPicard++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchPreCheckPicard.html#SNESLineSearchPreCheckPicard
man:+SNESLineSearchApply++SNESLineSearchApply++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchApply.html#SNESLineSearchApply
man:+SNESLineSearchDestroy++SNESLineSearchDestroy++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchDestroy.html#SNESLineSearchDestroy
man:+SNESLineSearchSetDefaultMonitor++SNESLineSearchSetDefaultMonitor++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetDefaultMonitor.html#SNESLineSearchSetDefaultMonitor
man:+SNESLineSearchGetDefaultMonitor++SNESLineSearchGetDefaultMonitor++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchGetDefaultMonitor.html#SNESLineSearchGetDefaultMonitor
man:+SNESLineSearchMonitorSetFromOptions++SNESLineSearchMonitorSetFromOptions++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchMonitorSetFromOptions.html#SNESLineSearchMonitorSetFromOptions
man:+SNESLineSearchSetFromOptions++SNESLineSearchSetFromOptions++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetFromOptions.html#SNESLineSearchSetFromOptions
man:+SNESLineSearchView++SNESLineSearchView++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchView.html#SNESLineSearchView
man:+SNESLineSearchGetType++SNESLineSearchGetType++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchGetType.html#SNESLineSearchGetType
man:+SNESLineSearchSetType++SNESLineSearchSetType++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetType.html#SNESLineSearchSetType
man:+SNESLineSearchSetSNES++SNESLineSearchSetSNES++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetSNES.html#SNESLineSearchSetSNES
man:+SNESLineSearchGetSNES++SNESLineSearchGetSNES++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchGetSNES.html#SNESLineSearchGetSNES
man:+SNESLineSearchGetLambda++SNESLineSearchGetLambda++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchGetLambda.html#SNESLineSearchGetLambda
man:+SNESLineSearchSetLambda++SNESLineSearchSetLambda++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetLambda.html#SNESLineSearchSetLambda
man:+SNESLineSearchGetTolerances++SNESLineSearchGetTolerances++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchGetTolerances.html#SNESLineSearchGetTolerances
man:+SNESLineSearchSetTolerances++SNESLineSearchSetTolerances++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetTolerances.html#SNESLineSearchSetTolerances
man:+SNESLineSearchGetDamping++SNESLineSearchGetDamping++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchGetDamping.html#SNESLineSearchGetDamping
man:+SNESLineSearchSetDamping++SNESLineSearchSetDamping++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetDamping.html#SNESLineSearchSetDamping
man:+SNESLineSearchGetOrder++SNESLineSearchGetOrder++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchGetOrder.html#SNESLineSearchGetOrder
man:+SNESLineSearchSetOrder++SNESLineSearchSetOrder++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetOrder.html#SNESLineSearchSetOrder
man:+SNESLineSearchGetNorms++SNESLineSearchGetNorms++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchGetNorms.html#SNESLineSearchGetNorms
man:+SNESLineSearchSetNorms++SNESLineSearchSetNorms++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetNorms.html#SNESLineSearchSetNorms
man:+SNESLineSearchComputeNorms++SNESLineSearchComputeNorms++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchComputeNorms.html#SNESLineSearchComputeNorms
man:+SNESLineSearchSetComputeNorms++SNESLineSearchSetComputeNorms++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetComputeNorms.html#SNESLineSearchSetComputeNorms
man:+SNESLineSearchGetVecs++SNESLineSearchGetVecs++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchGetVecs.html#SNESLineSearchGetVecs
man:+SNESLineSearchSetVecs++SNESLineSearchSetVecs++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetVecs.html#SNESLineSearchSetVecs
man:+SNESLineSearchAppendOptionsPrefix++SNESLineSearchAppendOptionsPrefix++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchAppendOptionsPrefix.html#SNESLineSearchAppendOptionsPrefix
man:+SNESLineSearchGetOptionsPrefix++SNESLineSearchGetOptionsPrefix++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchGetOptionsPrefix.html#SNESLineSearchGetOptionsPrefix
man:+SNESLineSearchSetWorkVecs++SNESLineSearchSetWorkVecs++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetWorkVecs.html#SNESLineSearchSetWorkVecs
man:+SNESLineSearchGetReason++SNESLineSearchGetReason++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchGetReason.html#SNESLineSearchGetReason
man:+SNESLineSearchSetReason++SNESLineSearchSetReason++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetReason.html#SNESLineSearchSetReason
man:+SNESLineSearchSetVIFunctions++SNESLineSearchSetVIFunctions++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchSetVIFunctions.html#SNESLineSearchSetVIFunctions
man:+SNESLineSearchGetVIFunctions++SNESLineSearchGetVIFunctions++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchGetVIFunctions.html#SNESLineSearchGetVIFunctions
man:+SNESLineSearchRegister++SNESLineSearchRegister++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchRegister.html#SNESLineSearchRegister
man:+SNESLINESEARCHBISECTION++SNESLINESEARCHBISECTION++++man+https://petsc.org/release/manualpages/SNES/SNESLINESEARCHBISECTION.html#SNESLINESEARCHBISECTION
man:+SNESLineSearchShellSetApply++SNESLineSearchShellSetApply++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchShellSetApply.html#SNESLineSearchShellSetApply
man:+SNESLineSearchShellGetApply++SNESLineSearchShellGetApply++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchShellGetApply.html#SNESLineSearchShellGetApply
man:+SNESLINESEARCHSHELL++SNESLINESEARCHSHELL++++man+https://petsc.org/release/manualpages/SNES/SNESLINESEARCHSHELL.html#SNESLINESEARCHSHELL
man:+SNESLINESEARCHL2++SNESLINESEARCHL2++++man+https://petsc.org/release/manualpages/SNES/SNESLINESEARCHL2.html#SNESLINESEARCHL2
man:+SNESLINESEARCHBASIC++SNESLINESEARCHBASIC++++man+https://petsc.org/release/manualpages/SNES/SNESLINESEARCHBASIC.html#SNESLINESEARCHBASIC
man:+SNESLINESEARCHNLEQERR++SNESLINESEARCHNLEQERR++++man+https://petsc.org/release/manualpages/SNES/SNESLINESEARCHNLEQERR.html#SNESLINESEARCHNLEQERR
man:+SNESLineSearchBTSetAlpha++SNESLineSearchBTSetAlpha++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchBTSetAlpha.html#SNESLineSearchBTSetAlpha
man:+SNESLineSearchBTGetAlpha++SNESLineSearchBTGetAlpha++++man+https://petsc.org/release/manualpages/SNES/SNESLineSearchBTGetAlpha.html#SNESLineSearchBTGetAlpha
man:+SNESLINESEARCHBT++SNESLINESEARCHBT++++man+https://petsc.org/release/manualpages/SNES/SNESLINESEARCHBT.html#SNESLINESEARCHBT
man:+SNESLINESEARCHCP++SNESLINESEARCHCP++++man+https://petsc.org/release/manualpages/SNES/SNESLINESEARCHCP.html#SNESLINESEARCHCP
man:+SNESANDERSON++SNESANDERSON++++man+https://petsc.org/release/manualpages/SNES/SNESANDERSON.html#SNESANDERSON
man:+SNESNGMRESSetRestartFmRise++SNESNGMRESSetRestartFmRise++++man+https://petsc.org/release/manualpages/SNES/SNESNGMRESSetRestartFmRise.html#SNESNGMRESSetRestartFmRise
man:+SNESNGMRESSetRestartType++SNESNGMRESSetRestartType++++man+https://petsc.org/release/manualpages/SNES/SNESNGMRESSetRestartType.html#SNESNGMRESSetRestartType
man:+SNESNGMRESSetSelectType++SNESNGMRESSetSelectType++++man+https://petsc.org/release/manualpages/SNES/SNESNGMRESSetSelectType.html#SNESNGMRESSetSelectType
man:+SNESNGMRES++SNESNGMRES++++man+https://petsc.org/release/manualpages/SNES/SNESNGMRES.html#SNESNGMRES
man:+SNESVISetComputeVariableBounds++SNESVISetComputeVariableBounds++++man+https://petsc.org/release/manualpages/SNES/SNESVISetComputeVariableBounds.html#SNESVISetComputeVariableBounds
man:+SNESVIGetActiveSetIS++SNESVIGetActiveSetIS++++man+https://petsc.org/release/manualpages/SNES/SNESVIGetActiveSetIS.html#SNESVIGetActiveSetIS
man:+SNESVIComputeInactiveSetFnorm++SNESVIComputeInactiveSetFnorm++++man+https://petsc.org/release/manualpages/SNES/SNESVIComputeInactiveSetFnorm.html#SNESVIComputeInactiveSetFnorm
man:+SNESVIComputeInactiveSetFtY++SNESVIComputeInactiveSetFtY++++man+https://petsc.org/release/manualpages/SNES/SNESVIComputeInactiveSetFtY.html#SNESVIComputeInactiveSetFtY
man:+SNESVISetVariableBounds++SNESVISetVariableBounds++++man+https://petsc.org/release/manualpages/SNES/SNESVISetVariableBounds.html#SNESVISetVariableBounds
man:+SNESVIGetVariableBounds++SNESVIGetVariableBounds++++man+https://petsc.org/release/manualpages/SNES/SNESVIGetVariableBounds.html#SNESVIGetVariableBounds
man:+SNESVIGetInactiveSet++SNESVIGetInactiveSet++++man+https://petsc.org/release/manualpages/SNES/SNESVIGetInactiveSet.html#SNESVIGetInactiveSet
man:+DMSetVI++DMSetVI++++man+https://petsc.org/release/manualpages/SNES/DMSetVI.html#DMSetVI
man:+SNESVISetRedundancyCheck++SNESVISetRedundancyCheck++++man+https://petsc.org/release/manualpages/SNES/SNESVISetRedundancyCheck.html#SNESVISetRedundancyCheck
man:+SNESVINEWTONRSLS++SNESVINEWTONRSLS++++man+https://petsc.org/release/manualpages/SNES/SNESVINEWTONRSLS.html#SNESVINEWTONRSLS
man:+SNESVIComputeMeritFunction++SNESVIComputeMeritFunction++++man+https://petsc.org/release/manualpages/SNES/SNESVIComputeMeritFunction.html#SNESVIComputeMeritFunction
man:+SNESVIComputeFunction++SNESVIComputeFunction++++man+https://petsc.org/release/manualpages/SNES/SNESVIComputeFunction.html#SNESVIComputeFunction
man:+SNESVINEWTONSSLS++SNESVINEWTONSSLS++++man+https://petsc.org/release/manualpages/SNES/SNESVINEWTONSSLS.html#SNESVINEWTONSSLS
man:+SNESMSRegisterAll++SNESMSRegisterAll++++man+https://petsc.org/release/manualpages/SNES/SNESMSRegisterAll.html#SNESMSRegisterAll
man:+SNESMSRegisterDestroy++SNESMSRegisterDestroy++++man+https://petsc.org/release/manualpages/SNES/SNESMSRegisterDestroy.html#SNESMSRegisterDestroy
man:+SNESMSInitializePackage++SNESMSInitializePackage++++man+https://petsc.org/release/manualpages/SNES/SNESMSInitializePackage.html#SNESMSInitializePackage
man:+SNESMSFinalizePackage++SNESMSFinalizePackage++++man+https://petsc.org/release/manualpages/SNES/SNESMSFinalizePackage.html#SNESMSFinalizePackage
man:+SNESMSRegister++SNESMSRegister++++man+https://petsc.org/release/manualpages/SNES/SNESMSRegister.html#SNESMSRegister
man:+SNESMSGetType++SNESMSGetType++++man+https://petsc.org/release/manualpages/SNES/SNESMSGetType.html#SNESMSGetType
man:+SNESMSSetType++SNESMSSetType++++man+https://petsc.org/release/manualpages/SNES/SNESMSSetType.html#SNESMSSetType
man:+SNESMSGetDamping++SNESMSGetDamping++++man+https://petsc.org/release/manualpages/SNES/SNESMSGetDamping.html#SNESMSGetDamping
man:+SNESMSSetDamping++SNESMSSetDamping++++man+https://petsc.org/release/manualpages/SNES/SNESMSSetDamping.html#SNESMSSetDamping
man:+SNESMS++SNESMS++++man+https://petsc.org/release/manualpages/SNES/SNESMS.html#SNESMS
man:+SNESNGSSetTolerances++SNESNGSSetTolerances++++man+https://petsc.org/release/manualpages/SNES/SNESNGSSetTolerances.html#SNESNGSSetTolerances
man:+SNESNGSGetTolerances++SNESNGSGetTolerances++++man+https://petsc.org/release/manualpages/SNES/SNESNGSGetTolerances.html#SNESNGSGetTolerances
man:+SNESNGSSetSweeps++SNESNGSSetSweeps++++man+https://petsc.org/release/manualpages/SNES/SNESNGSSetSweeps.html#SNESNGSSetSweeps
man:+SNESNGSGetSweeps++SNESNGSGetSweeps++++man+https://petsc.org/release/manualpages/SNES/SNESNGSGetSweeps.html#SNESNGSGetSweeps
man:+SNESNGS++SNESNGS++++man+https://petsc.org/release/manualpages/SNES/SNESNGS.html#SNESNGS
man:+SNESNewtonALSetCorrectionType++SNESNewtonALSetCorrectionType++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonALSetCorrectionType.html#SNESNewtonALSetCorrectionType
man:+SNESNewtonALSetFunction++SNESNewtonALSetFunction++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonALSetFunction.html#SNESNewtonALSetFunction
man:+SNESNewtonALGetFunction++SNESNewtonALGetFunction++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonALGetFunction.html#SNESNewtonALGetFunction
man:+SNESNewtonALGetLoadParameter++SNESNewtonALGetLoadParameter++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonALGetLoadParameter.html#SNESNewtonALGetLoadParameter
man:+SNESNewtonALComputeFunction++SNESNewtonALComputeFunction++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonALComputeFunction.html#SNESNewtonALComputeFunction
man:+SNESNEWTONAL++SNESNEWTONAL++++man+https://petsc.org/release/manualpages/SNES/SNESNEWTONAL.html#SNESNEWTONAL
man:+SNESPythonSetType++SNESPythonSetType++++man+https://petsc.org/release/manualpages/SNES/SNESPythonSetType.html#SNESPythonSetType
man:+SNESPythonGetType++SNESPythonGetType++++man+https://petsc.org/release/manualpages/SNES/SNESPythonGetType.html#SNESPythonGetType
man:+SNESShellSetSolve++SNESShellSetSolve++++man+https://petsc.org/release/manualpages/SNES/SNESShellSetSolve.html#SNESShellSetSolve
man:+SNESShellGetContext++SNESShellGetContext++++man+https://petsc.org/release/manualpages/SNES/SNESShellGetContext.html#SNESShellGetContext
man:+SNESShellSetContext++SNESShellSetContext++++man+https://petsc.org/release/manualpages/SNES/SNESShellSetContext.html#SNESShellSetContext
man:+SNESSHELL++SNESSHELL++++man+https://petsc.org/release/manualpages/SNES/SNESSHELL.html#SNESSHELL
man:+SNESNRICHARDSON++SNESNRICHARDSON++++man+https://petsc.org/release/manualpages/SNES/SNESNRICHARDSON.html#SNESNRICHARDSON
man:+SNESASPIN++SNESASPIN++++man+https://petsc.org/release/manualpages/SNES/SNESASPIN.html#SNESASPIN
man:+SNESNASMSetType++SNESNASMSetType++++man+https://petsc.org/release/manualpages/SNES/SNESNASMSetType.html#SNESNASMSetType
man:+SNESNASMGetType++SNESNASMGetType++++man+https://petsc.org/release/manualpages/SNES/SNESNASMGetType.html#SNESNASMGetType
man:+SNESNASMSetSubdomains++SNESNASMSetSubdomains++++man+https://petsc.org/release/manualpages/SNES/SNESNASMSetSubdomains.html#SNESNASMSetSubdomains
man:+SNESNASMGetSubdomains++SNESNASMGetSubdomains++++man+https://petsc.org/release/manualpages/SNES/SNESNASMGetSubdomains.html#SNESNASMGetSubdomains
man:+SNESNASMGetSubdomainVecs++SNESNASMGetSubdomainVecs++++man+https://petsc.org/release/manualpages/SNES/SNESNASMGetSubdomainVecs.html#SNESNASMGetSubdomainVecs
man:+SNESNASMSetComputeFinalJacobian++SNESNASMSetComputeFinalJacobian++++man+https://petsc.org/release/manualpages/SNES/SNESNASMSetComputeFinalJacobian.html#SNESNASMSetComputeFinalJacobian
man:+SNESNASMSetDamping++SNESNASMSetDamping++++man+https://petsc.org/release/manualpages/SNES/SNESNASMSetDamping.html#SNESNASMSetDamping
man:+SNESNASMGetDamping++SNESNASMGetDamping++++man+https://petsc.org/release/manualpages/SNES/SNESNASMGetDamping.html#SNESNASMGetDamping
man:+SNESNASM++SNESNASM++++man+https://petsc.org/release/manualpages/SNES/SNESNASM.html#SNESNASM
man:+SNESNASMGetSNES++SNESNASMGetSNES++++man+https://petsc.org/release/manualpages/SNES/SNESNASMGetSNES.html#SNESNASMGetSNES
man:+SNESNASMGetNumber++SNESNASMGetNumber++++man+https://petsc.org/release/manualpages/SNES/SNESNASMGetNumber.html#SNESNASMGetNumber
man:+SNESNASMSetWeight++SNESNASMSetWeight++++man+https://petsc.org/release/manualpages/SNES/SNESNASMSetWeight.html#SNESNASMSetWeight
man:+SNESQNSetRestartType++SNESQNSetRestartType++++man+https://petsc.org/release/manualpages/SNES/SNESQNSetRestartType.html#SNESQNSetRestartType
man:+SNESQNSetScaleType++SNESQNSetScaleType++++man+https://petsc.org/release/manualpages/SNES/SNESQNSetScaleType.html#SNESQNSetScaleType
man:+SNESQNSetType++SNESQNSetType++++man+https://petsc.org/release/manualpages/SNES/SNESQNSetType.html#SNESQNSetType
man:+SNESQN++SNESQN++++man+https://petsc.org/release/manualpages/SNES/SNESQN.html#SNESQN
man:+SNESCompositeSetType++SNESCompositeSetType++++man+https://petsc.org/release/manualpages/SNES/SNESCompositeSetType.html#SNESCompositeSetType
man:+SNESCompositeAddSNES++SNESCompositeAddSNES++++man+https://petsc.org/release/manualpages/SNES/SNESCompositeAddSNES.html#SNESCompositeAddSNES
man:+SNESCompositeGetSNES++SNESCompositeGetSNES++++man+https://petsc.org/release/manualpages/SNES/SNESCompositeGetSNES.html#SNESCompositeGetSNES
man:+SNESCompositeGetNumber++SNESCompositeGetNumber++++man+https://petsc.org/release/manualpages/SNES/SNESCompositeGetNumber.html#SNESCompositeGetNumber
man:+SNESCompositeSetDamping++SNESCompositeSetDamping++++man+https://petsc.org/release/manualpages/SNES/SNESCompositeSetDamping.html#SNESCompositeSetDamping
man:+SNESCOMPOSITE++SNESCOMPOSITE++++man+https://petsc.org/release/manualpages/SNES/SNESCOMPOSITE.html#SNESCOMPOSITE
man:+SNESNewtonTRDCGetRhoFlag++SNESNewtonTRDCGetRhoFlag++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRDCGetRhoFlag.html#SNESNewtonTRDCGetRhoFlag
man:+SNESNewtonTRDCSetPreCheck++SNESNewtonTRDCSetPreCheck++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRDCSetPreCheck.html#SNESNewtonTRDCSetPreCheck
man:+SNESNewtonTRDCGetPreCheck++SNESNewtonTRDCGetPreCheck++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRDCGetPreCheck.html#SNESNewtonTRDCGetPreCheck
man:+SNESNewtonTRDCSetPostCheck++SNESNewtonTRDCSetPostCheck++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRDCSetPostCheck.html#SNESNewtonTRDCSetPostCheck
man:+SNESNewtonTRDCGetPostCheck++SNESNewtonTRDCGetPostCheck++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRDCGetPostCheck.html#SNESNewtonTRDCGetPostCheck
man:+SNESNewtonTRDCPreCheck++SNESNewtonTRDCPreCheck++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRDCPreCheck.html#SNESNewtonTRDCPreCheck
man:+SNESNewtonTRDCPostCheck++SNESNewtonTRDCPostCheck++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRDCPostCheck.html#SNESNewtonTRDCPostCheck
man:+SNESNEWTONTRDC++SNESNEWTONTRDC++++man+https://petsc.org/release/manualpages/SNES/SNESNEWTONTRDC.html#SNESNEWTONTRDC
man:+SNESKSPONLY++SNESKSPONLY++++man+https://petsc.org/release/manualpages/SNES/SNESKSPONLY.html#SNESKSPONLY
man:+SNESKSPTRANSPOSEONLY++SNESKSPTRANSPOSEONLY++++man+https://petsc.org/release/manualpages/SNES/SNESKSPTRANSPOSEONLY.html#SNESKSPTRANSPOSEONLY
man:+SNESPATCH++SNESPATCH++++man+https://petsc.org/release/manualpages/SNES/SNESPATCH.html#SNESPATCH
man:+SNESMultiblockSetFields++SNESMultiblockSetFields++++man+https://petsc.org/release/manualpages/SNES/SNESMultiblockSetFields.html#SNESMultiblockSetFields
man:+SNESMultiblockSetIS++SNESMultiblockSetIS++++man+https://petsc.org/release/manualpages/SNES/SNESMultiblockSetIS.html#SNESMultiblockSetIS
man:+SNESMultiblockSetType++SNESMultiblockSetType++++man+https://petsc.org/release/manualpages/SNES/SNESMultiblockSetType.html#SNESMultiblockSetType
man:+SNESMultiblockSetBlockSize++SNESMultiblockSetBlockSize++++man+https://petsc.org/release/manualpages/SNES/SNESMultiblockSetBlockSize.html#SNESMultiblockSetBlockSize
man:+SNESMultiblockGetSubSNES++SNESMultiblockGetSubSNES++++man+https://petsc.org/release/manualpages/SNES/SNESMultiblockGetSubSNES.html#SNESMultiblockGetSubSNES
man:+SNESMULTIBLOCK++SNESMULTIBLOCK++++man+https://petsc.org/release/manualpages/SNES/SNESMULTIBLOCK.html#SNESMULTIBLOCK
man:+SNESLINESEARCHNCGLINEAR++SNESLINESEARCHNCGLINEAR++++man+https://petsc.org/release/manualpages/SNES/SNESLINESEARCHNCGLINEAR.html#SNESLINESEARCHNCGLINEAR
man:+SNESNCGSetType++SNESNCGSetType++++man+https://petsc.org/release/manualpages/SNES/SNESNCGSetType.html#SNESNCGSetType
man:+SNESNCG++SNESNCG++++man+https://petsc.org/release/manualpages/SNES/SNESNCG.html#SNESNCG
man:+SNESNEWTONLS++SNESNEWTONLS++++man+https://petsc.org/release/manualpages/SNES/SNESNEWTONLS.html#SNESNEWTONLS
man:+SNESFASCreateCoarseVec++SNESFASCreateCoarseVec++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASCreateCoarseVec.html#SNESFASCreateCoarseVec
man:+SNESFASRestrict++SNESFASRestrict++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASRestrict.html#SNESFASRestrict
man:+SNESFAS++SNESFAS++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFAS.html#SNESFAS
man:+SNESFASGetGalerkin++SNESFASGetGalerkin++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASGetGalerkin.html#SNESFASGetGalerkin
man:+SNESFASSetGalerkin++SNESFASSetGalerkin++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASSetGalerkin.html#SNESFASSetGalerkin
man:+SNESFASGalerkinFunctionDefault++SNESFASGalerkinFunctionDefault++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASGalerkinFunctionDefault.html#SNESFASGalerkinFunctionDefault
man:+SNESFASSetType++SNESFASSetType++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASSetType.html#SNESFASSetType
man:+SNESFASGetType++SNESFASGetType++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASGetType.html#SNESFASGetType
man:+SNESFASSetLevels++SNESFASSetLevels++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASSetLevels.html#SNESFASSetLevels
man:+SNESFASGetLevels++SNESFASGetLevels++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASGetLevels.html#SNESFASGetLevels
man:+SNESFASGetCycleSNES++SNESFASGetCycleSNES++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASGetCycleSNES.html#SNESFASGetCycleSNES
man:+SNESFASSetNumberSmoothUp++SNESFASSetNumberSmoothUp++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASSetNumberSmoothUp.html#SNESFASSetNumberSmoothUp
man:+SNESFASSetNumberSmoothDown++SNESFASSetNumberSmoothDown++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASSetNumberSmoothDown.html#SNESFASSetNumberSmoothDown
man:+SNESFASSetContinuation++SNESFASSetContinuation++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASSetContinuation.html#SNESFASSetContinuation
man:+SNESFASSetCycles++SNESFASSetCycles++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASSetCycles.html#SNESFASSetCycles
man:+SNESFASSetMonitor++SNESFASSetMonitor++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASSetMonitor.html#SNESFASSetMonitor
man:+SNESFASSetLog++SNESFASSetLog++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASSetLog.html#SNESFASSetLog
man:+SNESFASCycleSetCycles++SNESFASCycleSetCycles++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASCycleSetCycles.html#SNESFASCycleSetCycles
man:+SNESFASCycleGetSmoother++SNESFASCycleGetSmoother++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASCycleGetSmoother.html#SNESFASCycleGetSmoother
man:+SNESFASCycleGetSmootherUp++SNESFASCycleGetSmootherUp++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASCycleGetSmootherUp.html#SNESFASCycleGetSmootherUp
man:+SNESFASCycleGetSmootherDown++SNESFASCycleGetSmootherDown++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASCycleGetSmootherDown.html#SNESFASCycleGetSmootherDown
man:+SNESFASCycleGetCorrection++SNESFASCycleGetCorrection++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASCycleGetCorrection.html#SNESFASCycleGetCorrection
man:+SNESFASCycleGetInterpolation++SNESFASCycleGetInterpolation++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASCycleGetInterpolation.html#SNESFASCycleGetInterpolation
man:+SNESFASCycleGetRestriction++SNESFASCycleGetRestriction++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASCycleGetRestriction.html#SNESFASCycleGetRestriction
man:+SNESFASCycleGetInjection++SNESFASCycleGetInjection++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASCycleGetInjection.html#SNESFASCycleGetInjection
man:+SNESFASCycleGetRScale++SNESFASCycleGetRScale++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASCycleGetRScale.html#SNESFASCycleGetRScale
man:+SNESFASCycleIsFine++SNESFASCycleIsFine++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASCycleIsFine.html#SNESFASCycleIsFine
man:+SNESFASSetInterpolation++SNESFASSetInterpolation++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASSetInterpolation.html#SNESFASSetInterpolation
man:+SNESFASGetInterpolation++SNESFASGetInterpolation++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASGetInterpolation.html#SNESFASGetInterpolation
man:+SNESFASSetRestriction++SNESFASSetRestriction++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASSetRestriction.html#SNESFASSetRestriction
man:+SNESFASGetRestriction++SNESFASGetRestriction++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASGetRestriction.html#SNESFASGetRestriction
man:+SNESFASSetInjection++SNESFASSetInjection++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASSetInjection.html#SNESFASSetInjection
man:+SNESFASGetInjection++SNESFASGetInjection++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASGetInjection.html#SNESFASGetInjection
man:+SNESFASSetRScale++SNESFASSetRScale++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASSetRScale.html#SNESFASSetRScale
man:+SNESFASGetSmoother++SNESFASGetSmoother++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASGetSmoother.html#SNESFASGetSmoother
man:+SNESFASGetSmootherDown++SNESFASGetSmootherDown++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASGetSmootherDown.html#SNESFASGetSmootherDown
man:+SNESFASGetSmootherUp++SNESFASGetSmootherUp++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASGetSmootherUp.html#SNESFASGetSmootherUp
man:+SNESFASGetCoarseSolve++SNESFASGetCoarseSolve++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASGetCoarseSolve.html#SNESFASGetCoarseSolve
man:+SNESFASFullSetDownSweep++SNESFASFullSetDownSweep++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASFullSetDownSweep.html#SNESFASFullSetDownSweep
man:+SNESFASFullSetTotal++SNESFASFullSetTotal++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASFullSetTotal.html#SNESFASFullSetTotal
man:+SNESFASFullGetTotal++SNESFASFullGetTotal++++man+https://petsc.org/release/manualpages/SNESFAS/SNESFASFullGetTotal.html#SNESFASFullGetTotal
man:+SNESNewtonTRSetNormType++SNESNewtonTRSetNormType++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRSetNormType.html#SNESNewtonTRSetNormType
man:+SNESNewtonTRSetQNType++SNESNewtonTRSetQNType++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRSetQNType.html#SNESNewtonTRSetQNType
man:+SNESNewtonTRSetFallbackType++SNESNewtonTRSetFallbackType++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRSetFallbackType.html#SNESNewtonTRSetFallbackType
man:+SNESNewtonTRSetPreCheck++SNESNewtonTRSetPreCheck++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRSetPreCheck.html#SNESNewtonTRSetPreCheck
man:+SNESNewtonTRGetPreCheck++SNESNewtonTRGetPreCheck++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRGetPreCheck.html#SNESNewtonTRGetPreCheck
man:+SNESNewtonTRSetPostCheck++SNESNewtonTRSetPostCheck++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRSetPostCheck.html#SNESNewtonTRSetPostCheck
man:+SNESNewtonTRGetPostCheck++SNESNewtonTRGetPostCheck++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRGetPostCheck.html#SNESNewtonTRGetPostCheck
man:+SNESNewtonTRPreCheck++SNESNewtonTRPreCheck++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRPreCheck.html#SNESNewtonTRPreCheck
man:+SNESNewtonTRPostCheck++SNESNewtonTRPostCheck++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRPostCheck.html#SNESNewtonTRPostCheck
man:+SNESSetTrustRegionTolerance++SNESSetTrustRegionTolerance++++man+https://petsc.org/release/manualpages/SNES/SNESSetTrustRegionTolerance.html#SNESSetTrustRegionTolerance
man:+SNESNewtonTRSetTolerances++SNESNewtonTRSetTolerances++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRSetTolerances.html#SNESNewtonTRSetTolerances
man:+SNESNewtonTRGetTolerances++SNESNewtonTRGetTolerances++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRGetTolerances.html#SNESNewtonTRGetTolerances
man:+SNESNewtonTRSetUpdateParameters++SNESNewtonTRSetUpdateParameters++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRSetUpdateParameters.html#SNESNewtonTRSetUpdateParameters
man:+SNESNewtonTRGetUpdateParameters++SNESNewtonTRGetUpdateParameters++++man+https://petsc.org/release/manualpages/SNES/SNESNewtonTRGetUpdateParameters.html#SNESNewtonTRGetUpdateParameters
man:+SNESNEWTONTR++SNESNEWTONTR++++man+https://petsc.org/release/manualpages/SNES/SNESNEWTONTR.html#SNESNEWTONTR
man:+DMGetDMSNES++DMGetDMSNES++++man+https://petsc.org/release/manualpages/SNES/DMGetDMSNES.html#DMGetDMSNES
man:+DMGetDMSNESWrite++DMGetDMSNESWrite++++man+https://petsc.org/release/manualpages/SNES/DMGetDMSNESWrite.html#DMGetDMSNESWrite
man:+DMCopyDMSNES++DMCopyDMSNES++++man+https://petsc.org/release/manualpages/SNES/DMCopyDMSNES.html#DMCopyDMSNES
man:+DMSNESSetFunction++DMSNESSetFunction++++man+https://petsc.org/release/manualpages/SNES/DMSNESSetFunction.html#DMSNESSetFunction
man:+DMSNESSetFunctionContextDestroy++DMSNESSetFunctionContextDestroy++++man+https://petsc.org/release/manualpages/SNES/DMSNESSetFunctionContextDestroy.html#DMSNESSetFunctionContextDestroy
man:+DMSNESSetMFFunction++DMSNESSetMFFunction++++man+https://petsc.org/release/manualpages/SNES/DMSNESSetMFFunction.html#DMSNESSetMFFunction
man:+DMSNESGetFunction++DMSNESGetFunction++++man+https://petsc.org/release/manualpages/SNES/DMSNESGetFunction.html#DMSNESGetFunction
man:+DMSNESSetObjective++DMSNESSetObjective++++man+https://petsc.org/release/manualpages/SNES/DMSNESSetObjective.html#DMSNESSetObjective
man:+DMSNESGetObjective++DMSNESGetObjective++++man+https://petsc.org/release/manualpages/SNES/DMSNESGetObjective.html#DMSNESGetObjective
man:+DMSNESSetNGS++DMSNESSetNGS++++man+https://petsc.org/release/manualpages/SNES/DMSNESSetNGS.html#DMSNESSetNGS
man:+DMSNESGetNGS++DMSNESGetNGS++++man+https://petsc.org/release/manualpages/SNES/DMSNESGetNGS.html#DMSNESGetNGS
man:+DMSNESSetJacobian++DMSNESSetJacobian++++man+https://petsc.org/release/manualpages/SNES/DMSNESSetJacobian.html#DMSNESSetJacobian
man:+DMSNESSetJacobianContextDestroy++DMSNESSetJacobianContextDestroy++++man+https://petsc.org/release/manualpages/SNES/DMSNESSetJacobianContextDestroy.html#DMSNESSetJacobianContextDestroy
man:+DMSNESGetJacobian++DMSNESGetJacobian++++man+https://petsc.org/release/manualpages/SNES/DMSNESGetJacobian.html#DMSNESGetJacobian
man:+DMSNESSetPicard++DMSNESSetPicard++++man+https://petsc.org/release/manualpages/SNES/DMSNESSetPicard.html#DMSNESSetPicard
man:+DMSNESGetPicard++DMSNESGetPicard++++man+https://petsc.org/release/manualpages/SNES/DMSNESGetPicard.html#DMSNESGetPicard
man:+DMSNESSetObjectiveLocal++DMSNESSetObjectiveLocal++++man+https://petsc.org/release/manualpages/SNES/DMSNESSetObjectiveLocal.html#DMSNESSetObjectiveLocal
man:+DMSNESSetFunctionLocal++DMSNESSetFunctionLocal++++man+https://petsc.org/release/manualpages/SNES/DMSNESSetFunctionLocal.html#DMSNESSetFunctionLocal
man:+DMSNESSetBoundaryLocal++DMSNESSetBoundaryLocal++++man+https://petsc.org/release/manualpages/SNES/DMSNESSetBoundaryLocal.html#DMSNESSetBoundaryLocal
man:+DMSNESSetJacobianLocal++DMSNESSetJacobianLocal++++man+https://petsc.org/release/manualpages/SNES/DMSNESSetJacobianLocal.html#DMSNESSetJacobianLocal
man:+DMSNESGetObjectiveLocal++DMSNESGetObjectiveLocal++++man+https://petsc.org/release/manualpages/SNES/DMSNESGetObjectiveLocal.html#DMSNESGetObjectiveLocal
man:+DMSNESGetFunctionLocal++DMSNESGetFunctionLocal++++man+https://petsc.org/release/manualpages/SNES/DMSNESGetFunctionLocal.html#DMSNESGetFunctionLocal
man:+DMSNESGetBoundaryLocal++DMSNESGetBoundaryLocal++++man+https://petsc.org/release/manualpages/SNES/DMSNESGetBoundaryLocal.html#DMSNESGetBoundaryLocal
man:+DMSNESGetJacobianLocal++DMSNESGetJacobianLocal++++man+https://petsc.org/release/manualpages/SNES/DMSNESGetJacobianLocal.html#DMSNESGetJacobianLocal
man:+PetscConvEstDestroy++PetscConvEstDestroy++++man+https://petsc.org/release/manualpages/SNES/PetscConvEstDestroy.html#PetscConvEstDestroy
man:+PetscConvEstSetFromOptions++PetscConvEstSetFromOptions++++man+https://petsc.org/release/manualpages/SNES/PetscConvEstSetFromOptions.html#PetscConvEstSetFromOptions
man:+PetscConvEstView++PetscConvEstView++++man+https://petsc.org/release/manualpages/SNES/PetscConvEstView.html#PetscConvEstView
man:+PetscConvEstGetSolver++PetscConvEstGetSolver++++man+https://petsc.org/release/manualpages/SNES/PetscConvEstGetSolver.html#PetscConvEstGetSolver
man:+PetscConvEstSetSolver++PetscConvEstSetSolver++++man+https://petsc.org/release/manualpages/SNES/PetscConvEstSetSolver.html#PetscConvEstSetSolver
man:+PetscConvEstSetUp++PetscConvEstSetUp++++man+https://petsc.org/release/manualpages/SNES/PetscConvEstSetUp.html#PetscConvEstSetUp
man:+PetscConvEstMonitorDefault++PetscConvEstMonitorDefault++++man+https://petsc.org/release/manualpages/SNES/PetscConvEstMonitorDefault.html#PetscConvEstMonitorDefault
man:+PetscConvEstGetConvRate++PetscConvEstGetConvRate++++man+https://petsc.org/release/manualpages/SNES/PetscConvEstGetConvRate.html#PetscConvEstGetConvRate
man:+PetscConvEstRateView++PetscConvEstRateView++++man+https://petsc.org/release/manualpages/SNES/PetscConvEstRateView.html#PetscConvEstRateView
man:+PetscConvEstCreate++PetscConvEstCreate++++man+https://petsc.org/release/manualpages/SNES/PetscConvEstCreate.html#PetscConvEstCreate
man:+DMInterpolationCreate++DMInterpolationCreate++++man+https://petsc.org/release/manualpages/DM/DMInterpolationCreate.html#DMInterpolationCreate
man:+DMInterpolationSetDim++DMInterpolationSetDim++++man+https://petsc.org/release/manualpages/DM/DMInterpolationSetDim.html#DMInterpolationSetDim
man:+DMInterpolationGetDim++DMInterpolationGetDim++++man+https://petsc.org/release/manualpages/DM/DMInterpolationGetDim.html#DMInterpolationGetDim
man:+DMInterpolationSetDof++DMInterpolationSetDof++++man+https://petsc.org/release/manualpages/DM/DMInterpolationSetDof.html#DMInterpolationSetDof
man:+DMInterpolationGetDof++DMInterpolationGetDof++++man+https://petsc.org/release/manualpages/DM/DMInterpolationGetDof.html#DMInterpolationGetDof
man:+DMInterpolationAddPoints++DMInterpolationAddPoints++++man+https://petsc.org/release/manualpages/DM/DMInterpolationAddPoints.html#DMInterpolationAddPoints
man:+DMInterpolationSetUp++DMInterpolationSetUp++++man+https://petsc.org/release/manualpages/DM/DMInterpolationSetUp.html#DMInterpolationSetUp
man:+DMInterpolationGetCoordinates++DMInterpolationGetCoordinates++++man+https://petsc.org/release/manualpages/DM/DMInterpolationGetCoordinates.html#DMInterpolationGetCoordinates
man:+DMInterpolationGetVector++DMInterpolationGetVector++++man+https://petsc.org/release/manualpages/DM/DMInterpolationGetVector.html#DMInterpolationGetVector
man:+DMInterpolationRestoreVector++DMInterpolationRestoreVector++++man+https://petsc.org/release/manualpages/DM/DMInterpolationRestoreVector.html#DMInterpolationRestoreVector
man:+DMInterpolationEvaluate++DMInterpolationEvaluate++++man+https://petsc.org/release/manualpages/DM/DMInterpolationEvaluate.html#DMInterpolationEvaluate
man:+DMInterpolationDestroy++DMInterpolationDestroy++++man+https://petsc.org/release/manualpages/DM/DMInterpolationDestroy.html#DMInterpolationDestroy
man:+DMAdaptorRegister++DMAdaptorRegister++++man+https://petsc.org/release/manualpages/DM/DMAdaptorRegister.html#DMAdaptorRegister
man:+DMAdaptorRegisterAll++DMAdaptorRegisterAll++++man+https://petsc.org/release/manualpages/DM/DMAdaptorRegisterAll.html#DMAdaptorRegisterAll
man:+DMAdaptorRegisterDestroy++DMAdaptorRegisterDestroy++++man+https://petsc.org/release/manualpages/DM/DMAdaptorRegisterDestroy.html#DMAdaptorRegisterDestroy
man:+DMAdaptorMonitorRegister++DMAdaptorMonitorRegister++++man+https://petsc.org/release/manualpages/DM/DMAdaptorMonitorRegister.html#DMAdaptorMonitorRegister
man:+DMAdaptorMonitorRegisterDestroy++DMAdaptorMonitorRegisterDestroy++++man+https://petsc.org/release/manualpages/DM/DMAdaptorMonitorRegisterDestroy.html#DMAdaptorMonitorRegisterDestroy
man:+DMAdaptorCreate++DMAdaptorCreate++++man+https://petsc.org/release/manualpages/DM/DMAdaptorCreate.html#DMAdaptorCreate
man:+DMAdaptorDestroy++DMAdaptorDestroy++++man+https://petsc.org/release/manualpages/DM/DMAdaptorDestroy.html#DMAdaptorDestroy
man:+DMAdaptorSetType++DMAdaptorSetType++++man+https://petsc.org/release/manualpages/DM/DMAdaptorSetType.html#DMAdaptorSetType
man:+DMAdaptorGetType++DMAdaptorGetType++++man+https://petsc.org/release/manualpages/DM/DMAdaptorGetType.html#DMAdaptorGetType
man:+DMAdaptorMonitorSet++DMAdaptorMonitorSet++++man+https://petsc.org/release/manualpages/DM/DMAdaptorMonitorSet.html#DMAdaptorMonitorSet
man:+DMAdaptorMonitorCancel++DMAdaptorMonitorCancel++++man+https://petsc.org/release/manualpages/DM/DMAdaptorMonitorCancel.html#DMAdaptorMonitorCancel
man:+DMAdaptorMonitorSetFromOptions++DMAdaptorMonitorSetFromOptions++++man+https://petsc.org/release/manualpages/DM/DMAdaptorMonitorSetFromOptions.html#DMAdaptorMonitorSetFromOptions
man:+DMAdaptorSetOptionsPrefix++DMAdaptorSetOptionsPrefix++++man+https://petsc.org/release/manualpages/DM/DMAdaptorSetOptionsPrefix.html#DMAdaptorSetOptionsPrefix
man:+DMAdaptorSetFromOptions++DMAdaptorSetFromOptions++++man+https://petsc.org/release/manualpages/DM/DMAdaptorSetFromOptions.html#DMAdaptorSetFromOptions
man:+DMAdaptorView++DMAdaptorView++++man+https://petsc.org/release/manualpages/DM/DMAdaptorView.html#DMAdaptorView
man:+DMAdaptorGetSolver++DMAdaptorGetSolver++++man+https://petsc.org/release/manualpages/DM/DMAdaptorGetSolver.html#DMAdaptorGetSolver
man:+DMAdaptorSetSolver++DMAdaptorSetSolver++++man+https://petsc.org/release/manualpages/DM/DMAdaptorSetSolver.html#DMAdaptorSetSolver
man:+DMAdaptorGetSequenceLength++DMAdaptorGetSequenceLength++++man+https://petsc.org/release/manualpages/DM/DMAdaptorGetSequenceLength.html#DMAdaptorGetSequenceLength
man:+DMAdaptorSetSequenceLength++DMAdaptorSetSequenceLength++++man+https://petsc.org/release/manualpages/DM/DMAdaptorSetSequenceLength.html#DMAdaptorSetSequenceLength
man:+DMAdaptorSetUp++DMAdaptorSetUp++++man+https://petsc.org/release/manualpages/DM/DMAdaptorSetUp.html#DMAdaptorSetUp
man:+DMAdaptorMonitor++DMAdaptorMonitor++++man+https://petsc.org/release/manualpages/DM/DMAdaptorMonitor.html#DMAdaptorMonitor
man:+DMAdaptorMonitorSize++DMAdaptorMonitorSize++++man+https://petsc.org/release/manualpages/DM/DMAdaptorMonitorSize.html#DMAdaptorMonitorSize
man:+DMAdaptorMonitorError++DMAdaptorMonitorError++++man+https://petsc.org/release/manualpages/DM/DMAdaptorMonitorError.html#DMAdaptorMonitorError
man:+DMAdaptorMonitorErrorDraw++DMAdaptorMonitorErrorDraw++++man+https://petsc.org/release/manualpages/DM/DMAdaptorMonitorErrorDraw.html#DMAdaptorMonitorErrorDraw
man:+DMAdaptorMonitorErrorDrawLGCreate++DMAdaptorMonitorErrorDrawLGCreate++++man+https://petsc.org/release/manualpages/DM/DMAdaptorMonitorErrorDrawLGCreate.html#DMAdaptorMonitorErrorDrawLGCreate
man:+DMAdaptorMonitorErrorDrawLG++DMAdaptorMonitorErrorDrawLG++++man+https://petsc.org/release/manualpages/DM/DMAdaptorMonitorErrorDrawLG.html#DMAdaptorMonitorErrorDrawLG
man:+DMAdaptorMonitorRegisterAll++DMAdaptorMonitorRegisterAll++++man+https://petsc.org/release/manualpages/DM/DMAdaptorMonitorRegisterAll.html#DMAdaptorMonitorRegisterAll
man:+DMAdaptorAdapt++DMAdaptorAdapt++++man+https://petsc.org/release/manualpages/DM/DMAdaptorAdapt.html#DMAdaptorAdapt
man:+DMAdaptorGetMixedSetupFunction++DMAdaptorGetMixedSetupFunction++++man+https://petsc.org/release/manualpages/DM/DMAdaptorGetMixedSetupFunction.html#DMAdaptorGetMixedSetupFunction
man:+DMAdaptorSetMixedSetupFunction++DMAdaptorSetMixedSetupFunction++++man+https://petsc.org/release/manualpages/DM/DMAdaptorSetMixedSetupFunction.html#DMAdaptorSetMixedSetupFunction
man:+DMAdaptorGetCriterion++DMAdaptorGetCriterion++++man+https://petsc.org/release/manualpages/DM/DMAdaptorGetCriterion.html#DMAdaptorGetCriterion
man:+DMAdaptorSetCriterion++DMAdaptorSetCriterion++++man+https://petsc.org/release/manualpages/DM/DMAdaptorSetCriterion.html#DMAdaptorSetCriterion
man:+DMDASNESSetFunctionLocal++DMDASNESSetFunctionLocal++++man+https://petsc.org/release/manualpages/SNES/DMDASNESSetFunctionLocal.html#DMDASNESSetFunctionLocal
man:+DMDASNESSetFunctionLocalVec++DMDASNESSetFunctionLocalVec++++man+https://petsc.org/release/manualpages/SNES/DMDASNESSetFunctionLocalVec.html#DMDASNESSetFunctionLocalVec
man:+DMDASNESSetJacobianLocal++DMDASNESSetJacobianLocal++++man+https://petsc.org/release/manualpages/SNES/DMDASNESSetJacobianLocal.html#DMDASNESSetJacobianLocal
man:+DMDASNESSetJacobianLocalVec++DMDASNESSetJacobianLocalVec++++man+https://petsc.org/release/manualpages/SNES/DMDASNESSetJacobianLocalVec.html#DMDASNESSetJacobianLocalVec
man:+DMDASNESSetObjectiveLocal++DMDASNESSetObjectiveLocal++++man+https://petsc.org/release/manualpages/SNES/DMDASNESSetObjectiveLocal.html#DMDASNESSetObjectiveLocal
man:+DMDASNESSetObjectiveLocalVec++DMDASNESSetObjectiveLocalVec++++man+https://petsc.org/release/manualpages/SNES/DMDASNESSetObjectiveLocalVec.html#DMDASNESSetObjectiveLocalVec
man:+DMDASNESSetPicardLocal++DMDASNESSetPicardLocal++++man+https://petsc.org/release/manualpages/SNES/DMDASNESSetPicardLocal.html#DMDASNESSetPicardLocal
man:+SNESConvergedCorrectPressure++SNESConvergedCorrectPressure++++man+https://petsc.org/release/manualpages/SNES/SNESConvergedCorrectPressure.html#SNESConvergedCorrectPressure
man:+SNESMonitorFields++SNESMonitorFields++++man+https://petsc.org/release/manualpages/SNES/SNESMonitorFields.html#SNESMonitorFields
man:+DMPlexSNESComputeObjectiveFEM++DMPlexSNESComputeObjectiveFEM++++man+https://petsc.org/release/manualpages/SNES/DMPlexSNESComputeObjectiveFEM.html#DMPlexSNESComputeObjectiveFEM
man:+DMPlexSNESComputeResidualFEM++DMPlexSNESComputeResidualFEM++++man+https://petsc.org/release/manualpages/SNES/DMPlexSNESComputeResidualFEM.html#DMPlexSNESComputeResidualFEM
man:+DMPlexSNESComputeResidualDS++DMPlexSNESComputeResidualDS++++man+https://petsc.org/release/manualpages/SNES/DMPlexSNESComputeResidualDS.html#DMPlexSNESComputeResidualDS
man:+DMPlexSNESComputeBoundaryFEM++DMPlexSNESComputeBoundaryFEM++++man+https://petsc.org/release/manualpages/SNES/DMPlexSNESComputeBoundaryFEM.html#DMPlexSNESComputeBoundaryFEM
man:+DMSNESComputeJacobianAction++DMSNESComputeJacobianAction++++man+https://petsc.org/release/manualpages/SNES/DMSNESComputeJacobianAction.html#DMSNESComputeJacobianAction
man:+DMPlexSNESComputeJacobianFEM++DMPlexSNESComputeJacobianFEM++++man+https://petsc.org/release/manualpages/SNES/DMPlexSNESComputeJacobianFEM.html#DMPlexSNESComputeJacobianFEM
man:+DMSNESCreateJacobianMF++DMSNESCreateJacobianMF++++man+https://petsc.org/release/manualpages/SNES/DMSNESCreateJacobianMF.html#DMSNESCreateJacobianMF
man:+DMPlexSetSNESLocalFEM++DMPlexSetSNESLocalFEM++++man+https://petsc.org/release/manualpages/SNES/DMPlexSetSNESLocalFEM.html#DMPlexSetSNESLocalFEM
man:+DMSNESCheckDiscretization++DMSNESCheckDiscretization++++man+https://petsc.org/release/manualpages/SNES/DMSNESCheckDiscretization.html#DMSNESCheckDiscretization
man:+DMSNESCheckResidual++DMSNESCheckResidual++++man+https://petsc.org/release/manualpages/SNES/DMSNESCheckResidual.html#DMSNESCheckResidual
man:+DMSNESCheckJacobian++DMSNESCheckJacobian++++man+https://petsc.org/release/manualpages/SNES/DMSNESCheckJacobian.html#DMSNESCheckJacobian
man:+DMSNESCheckFromOptions++DMSNESCheckFromOptions++++man+https://petsc.org/release/manualpages/SNES/DMSNESCheckFromOptions.html#DMSNESCheckFromOptions
man:+PetscGlobusAuthorize++PetscGlobusAuthorize++++man+https://petsc.org/release/manualpages/Sys/PetscGlobusAuthorize.html#PetscGlobusAuthorize
man:+PetscGlobusGetTransfers++PetscGlobusGetTransfers++++man+https://petsc.org/release/manualpages/Sys/PetscGlobusGetTransfers.html#PetscGlobusGetTransfers
man:+PetscGlobusUpload++PetscGlobusUpload++++man+https://petsc.org/release/manualpages/Sys/PetscGlobusUpload.html#PetscGlobusUpload
man:+PetscGoogleDriveRefresh++PetscGoogleDriveRefresh++++man+https://petsc.org/release/manualpages/Sys/PetscGoogleDriveRefresh.html#PetscGoogleDriveRefresh
man:+PetscGoogleDriveUpload++PetscGoogleDriveUpload++++man+https://petsc.org/release/manualpages/Sys/PetscGoogleDriveUpload.html#PetscGoogleDriveUpload
man:+PetscGoogleDriveAuthorize++PetscGoogleDriveAuthorize++++man+https://petsc.org/release/manualpages/Sys/PetscGoogleDriveAuthorize.html#PetscGoogleDriveAuthorize
man:+PetscSSLInitializeContext++PetscSSLInitializeContext++++man+https://petsc.org/release/manualpages/Sys/PetscSSLInitializeContext.html#PetscSSLInitializeContext
man:+PetscSSLDestroyContext++PetscSSLDestroyContext++++man+https://petsc.org/release/manualpages/Sys/PetscSSLDestroyContext.html#PetscSSLDestroyContext
man:+PetscHTTPSRequest++PetscHTTPSRequest++++man+https://petsc.org/release/manualpages/Sys/PetscHTTPSRequest.html#PetscHTTPSRequest
man:+PetscHTTPRequest++PetscHTTPRequest++++man+https://petsc.org/release/manualpages/Sys/PetscHTTPRequest.html#PetscHTTPRequest
man:+PetscHTTPSConnect++PetscHTTPSConnect++++man+https://petsc.org/release/manualpages/Sys/PetscHTTPSConnect.html#PetscHTTPSConnect
man:+PetscPullJSONValue++PetscPullJSONValue++++man+https://petsc.org/release/manualpages/Sys/PetscPullJSONValue.html#PetscPullJSONValue
man:+PetscPushJSONValue++PetscPushJSONValue++++man+https://petsc.org/release/manualpages/Sys/PetscPushJSONValue.html#PetscPushJSONValue
man:+PetscBoxAuthorize++PetscBoxAuthorize++++man+https://petsc.org/release/manualpages/Sys/PetscBoxAuthorize.html#PetscBoxAuthorize
man:+PetscBoxRefresh++PetscBoxRefresh++++man+https://petsc.org/release/manualpages/Sys/PetscBoxRefresh.html#PetscBoxRefresh
man:+PetscBoxUpload++PetscBoxUpload++++man+https://petsc.org/release/manualpages/Sys/PetscBoxUpload.html#PetscBoxUpload
man:+PetscObjectSAWsTakeAccess++PetscObjectSAWsTakeAccess++++man+https://petsc.org/release/manualpages/Sys/PetscObjectSAWsTakeAccess.html#PetscObjectSAWsTakeAccess
man:+PetscObjectSAWsGrantAccess++PetscObjectSAWsGrantAccess++++man+https://petsc.org/release/manualpages/Sys/PetscObjectSAWsGrantAccess.html#PetscObjectSAWsGrantAccess
man:+PetscSAWsBlock++PetscSAWsBlock++++man+https://petsc.org/release/manualpages/Sys/PetscSAWsBlock.html#PetscSAWsBlock
man:+PetscObjectSAWsBlock++PetscObjectSAWsBlock++++man+https://petsc.org/release/manualpages/Sys/PetscObjectSAWsBlock.html#PetscObjectSAWsBlock
man:+PetscObjectSAWsSetBlock++PetscObjectSAWsSetBlock++++man+https://petsc.org/release/manualpages/Sys/PetscObjectSAWsSetBlock.html#PetscObjectSAWsSetBlock
man:+PetscMemoryGetCurrentUsage++PetscMemoryGetCurrentUsage++++man+https://petsc.org/release/manualpages/Sys/PetscMemoryGetCurrentUsage.html#PetscMemoryGetCurrentUsage
man:+PetscMemoryGetMaximumUsage++PetscMemoryGetMaximumUsage++++man+https://petsc.org/release/manualpages/Sys/PetscMemoryGetMaximumUsage.html#PetscMemoryGetMaximumUsage
man:+PetscMemorySetGetMaximumUsage++PetscMemorySetGetMaximumUsage++++man+https://petsc.org/release/manualpages/Sys/PetscMemorySetGetMaximumUsage.html#PetscMemorySetGetMaximumUsage
man:+PetscMallocValidate++PetscMallocValidate++++man+https://petsc.org/release/manualpages/Sys/PetscMallocValidate.html#PetscMallocValidate
man:+PetscMemoryView++PetscMemoryView++++man+https://petsc.org/release/manualpages/Sys/PetscMemoryView.html#PetscMemoryView
man:+PetscMallocGetCurrentUsage++PetscMallocGetCurrentUsage++++man+https://petsc.org/release/manualpages/Sys/PetscMallocGetCurrentUsage.html#PetscMallocGetCurrentUsage
man:+PetscMallocGetMaximumUsage++PetscMallocGetMaximumUsage++++man+https://petsc.org/release/manualpages/Sys/PetscMallocGetMaximumUsage.html#PetscMallocGetMaximumUsage
man:+PetscMallocPushMaximumUsage++PetscMallocPushMaximumUsage++++man+https://petsc.org/release/manualpages/Sys/PetscMallocPushMaximumUsage.html#PetscMallocPushMaximumUsage
man:+PetscMallocPopMaximumUsage++PetscMallocPopMaximumUsage++++man+https://petsc.org/release/manualpages/Sys/PetscMallocPopMaximumUsage.html#PetscMallocPopMaximumUsage
man:+PetscMallocGetStack++PetscMallocGetStack++++man+https://petsc.org/release/manualpages/Sys/PetscMallocGetStack.html#PetscMallocGetStack
man:+PetscMallocDump++PetscMallocDump++++man+https://petsc.org/release/manualpages/Sys/PetscMallocDump.html#PetscMallocDump
man:+PetscMallocViewSet++PetscMallocViewSet++++man+https://petsc.org/release/manualpages/Sys/PetscMallocViewSet.html#PetscMallocViewSet
man:+PetscMallocViewGet++PetscMallocViewGet++++man+https://petsc.org/release/manualpages/Sys/PetscMallocViewGet.html#PetscMallocViewGet
man:+PetscMallocTraceSet++PetscMallocTraceSet++++man+https://petsc.org/release/manualpages/Sys/PetscMallocTraceSet.html#PetscMallocTraceSet
man:+PetscMallocTraceGet++PetscMallocTraceGet++++man+https://petsc.org/release/manualpages/Sys/PetscMallocTraceGet.html#PetscMallocTraceGet
man:+PetscMallocView++PetscMallocView++++man+https://petsc.org/release/manualpages/Sys/PetscMallocView.html#PetscMallocView
man:+PetscMallocSetDebug++PetscMallocSetDebug++++man+https://petsc.org/release/manualpages/Sys/PetscMallocSetDebug.html#PetscMallocSetDebug
man:+PetscMallocGetDebug++PetscMallocGetDebug++++man+https://petsc.org/release/manualpages/Sys/PetscMallocGetDebug.html#PetscMallocGetDebug
man:+PetscMallocLogRequestedSizeSet++PetscMallocLogRequestedSizeSet++++man+https://petsc.org/release/manualpages/Sys/PetscMallocLogRequestedSizeSet.html#PetscMallocLogRequestedSizeSet
man:+PetscMallocLogRequestedSizeGet++PetscMallocLogRequestedSizeGet++++man+https://petsc.org/release/manualpages/Sys/PetscMallocLogRequestedSizeGet.html#PetscMallocLogRequestedSizeGet
man:+PetscMallocSet++PetscMallocSet++++man+https://petsc.org/release/manualpages/Sys/PetscMallocSet.html#PetscMallocSet
man:+PetscMallocClear++PetscMallocClear++++man+https://petsc.org/release/manualpages/Sys/PetscMallocClear.html#PetscMallocClear
man:+PetscMallocSetDRAM++PetscMallocSetDRAM++++man+https://petsc.org/release/manualpages/Sys/PetscMallocSetDRAM.html#PetscMallocSetDRAM
man:+PetscMallocResetDRAM++PetscMallocResetDRAM++++man+https://petsc.org/release/manualpages/Sys/PetscMallocResetDRAM.html#PetscMallocResetDRAM
man:+PetscMallocSetCoalesce++PetscMallocSetCoalesce++++man+https://petsc.org/release/manualpages/Sys/PetscMallocSetCoalesce.html#PetscMallocSetCoalesce
man:+PetscMallocA++PetscMallocA++++man+https://petsc.org/release/manualpages/Sys/PetscMallocA.html#PetscMallocA
man:+PetscFreeA++PetscFreeA++++man+https://petsc.org/release/manualpages/Sys/PetscFreeA.html#PetscFreeA
man:+PetscTestFile++PetscTestFile++++man+https://petsc.org/release/manualpages/Sys/PetscTestFile.html#PetscTestFile
man:+PetscTestDirectory++PetscTestDirectory++++man+https://petsc.org/release/manualpages/Sys/PetscTestDirectory.html#PetscTestDirectory
man:+PetscLs++PetscLs++++man+https://petsc.org/release/manualpages/Sys/PetscLs.html#PetscLs
man:+PetscGetRealPath++PetscGetRealPath++++man+https://petsc.org/release/manualpages/Sys/PetscGetRealPath.html#PetscGetRealPath
man:+PetscGetTmp++PetscGetTmp++++man+https://petsc.org/release/manualpages/Sys/PetscGetTmp.html#PetscGetTmp
man:+PetscSharedTmp++PetscSharedTmp++++man+https://petsc.org/release/manualpages/Sys/PetscSharedTmp.html#PetscSharedTmp
man:+PetscSharedWorkingDirectory++PetscSharedWorkingDirectory++++man+https://petsc.org/release/manualpages/Sys/PetscSharedWorkingDirectory.html#PetscSharedWorkingDirectory
man:+PetscFileRetrieve++PetscFileRetrieve++++man+https://petsc.org/release/manualpages/Sys/PetscFileRetrieve.html#PetscFileRetrieve
man:+PetscGetFullPath++PetscGetFullPath++++man+https://petsc.org/release/manualpages/Sys/PetscGetFullPath.html#PetscGetFullPath
man:+PetscBinaryRead++PetscBinaryRead++++man+https://petsc.org/release/manualpages/Sys/PetscBinaryRead.html#PetscBinaryRead
man:+PetscBinaryWrite++PetscBinaryWrite++++man+https://petsc.org/release/manualpages/Sys/PetscBinaryWrite.html#PetscBinaryWrite
man:+PetscBinaryOpen++PetscBinaryOpen++++man+https://petsc.org/release/manualpages/Sys/PetscBinaryOpen.html#PetscBinaryOpen
man:+PetscBinaryClose++PetscBinaryClose++++man+https://petsc.org/release/manualpages/Sys/PetscBinaryClose.html#PetscBinaryClose
man:+PetscBinarySeek++PetscBinarySeek++++man+https://petsc.org/release/manualpages/Sys/PetscBinarySeek.html#PetscBinarySeek
man:+PetscBinarySynchronizedRead++PetscBinarySynchronizedRead++++man+https://petsc.org/release/manualpages/Sys/PetscBinarySynchronizedRead.html#PetscBinarySynchronizedRead
man:+PetscBinarySynchronizedWrite++PetscBinarySynchronizedWrite++++man+https://petsc.org/release/manualpages/Sys/PetscBinarySynchronizedWrite.html#PetscBinarySynchronizedWrite
man:+PetscBinarySynchronizedSeek++PetscBinarySynchronizedSeek++++man+https://petsc.org/release/manualpages/Sys/PetscBinarySynchronizedSeek.html#PetscBinarySynchronizedSeek
man:+PetscStartMatlab++PetscStartMatlab++++man+https://petsc.org/release/manualpages/Sys/PetscStartMatlab.html#PetscStartMatlab
man:+PetscFOpen++PetscFOpen++++man+https://petsc.org/release/manualpages/Sys/PetscFOpen.html#PetscFOpen
man:+PetscFClose++PetscFClose++++man+https://petsc.org/release/manualpages/Sys/PetscFClose.html#PetscFClose
man:+PetscPClose++PetscPClose++++man+https://petsc.org/release/manualpages/Sys/PetscPClose.html#PetscPClose
man:+PetscPOpen++PetscPOpen++++man+https://petsc.org/release/manualpages/Sys/PetscPOpen.html#PetscPOpen
man:+PetscPOpenSetMachine++PetscPOpenSetMachine++++man+https://petsc.org/release/manualpages/Sys/PetscPOpenSetMachine.html#PetscPOpenSetMachine
man:+PetscGetWorkingDirectory++PetscGetWorkingDirectory++++man+https://petsc.org/release/manualpages/Sys/PetscGetWorkingDirectory.html#PetscGetWorkingDirectory
man:+PetscGetHomeDirectory++PetscGetHomeDirectory++++man+https://petsc.org/release/manualpages/Sys/PetscGetHomeDirectory.html#PetscGetHomeDirectory
man:+PetscFixFilename++PetscFixFilename++++man+https://petsc.org/release/manualpages/Sys/PetscFixFilename.html#PetscFixFilename
man:+PetscGetRelativePath++PetscGetRelativePath++++man+https://petsc.org/release/manualpages/Sys/PetscGetRelativePath.html#PetscGetRelativePath
man:+PetscFormatConvertGetSize++PetscFormatConvertGetSize++++man+https://petsc.org/release/manualpages/Sys/PetscFormatConvertGetSize.html#PetscFormatConvertGetSize
man:+PetscFormatConvert++PetscFormatConvert++++man+https://petsc.org/release/manualpages/Sys/PetscFormatConvert.html#PetscFormatConvert
man:+PetscVSNPrintf++PetscVSNPrintf++++man+https://petsc.org/release/manualpages/Sys/PetscVSNPrintf.html#PetscVSNPrintf
man:+PetscFFlush++PetscFFlush++++man+https://petsc.org/release/manualpages/Sys/PetscFFlush.html#PetscFFlush
man:+PetscVFPrintfDefault++PetscVFPrintfDefault++++man+https://petsc.org/release/manualpages/Sys/PetscVFPrintfDefault.html#PetscVFPrintfDefault
man:+PetscSNPrintf++PetscSNPrintf++++man+https://petsc.org/release/manualpages/Sys/PetscSNPrintf.html#PetscSNPrintf
man:+PetscSNPrintfCount++PetscSNPrintfCount++++man+https://petsc.org/release/manualpages/Sys/PetscSNPrintfCount.html#PetscSNPrintfCount
man:+PetscSynchronizedPrintf++PetscSynchronizedPrintf++++man+https://petsc.org/release/manualpages/Sys/PetscSynchronizedPrintf.html#PetscSynchronizedPrintf
man:+PetscSynchronizedFPrintf++PetscSynchronizedFPrintf++++man+https://petsc.org/release/manualpages/Sys/PetscSynchronizedFPrintf.html#PetscSynchronizedFPrintf
man:+PetscSynchronizedFlush++PetscSynchronizedFlush++++man+https://petsc.org/release/manualpages/Sys/PetscSynchronizedFlush.html#PetscSynchronizedFlush
man:+PetscFPrintf++PetscFPrintf++++man+https://petsc.org/release/manualpages/Sys/PetscFPrintf.html#PetscFPrintf
man:+PetscPrintf++PetscPrintf++++man+https://petsc.org/release/manualpages/Sys/PetscPrintf.html#PetscPrintf
man:+PetscSynchronizedFGets++PetscSynchronizedFGets++++man+https://petsc.org/release/manualpages/Sys/PetscSynchronizedFGets.html#PetscSynchronizedFGets
man:+PetscMkdir++PetscMkdir++++man+https://petsc.org/release/manualpages/Sys/PetscMkdir.html#PetscMkdir
man:+PetscMkdtemp++PetscMkdtemp++++man+https://petsc.org/release/manualpages/Sys/PetscMkdtemp.html#PetscMkdtemp
man:+PetscRMTree++PetscRMTree++++man+https://petsc.org/release/manualpages/Sys/PetscRMTree.html#PetscRMTree
man:+PetscPythonFinalize++PetscPythonFinalize++++man+https://petsc.org/release/manualpages/Sys/PetscPythonFinalize.html#PetscPythonFinalize
man:+PetscPythonInitialize++PetscPythonInitialize++++man+https://petsc.org/release/manualpages/Sys/PetscPythonInitialize.html#PetscPythonInitialize
man:+PetscPythonPrintError++PetscPythonPrintError++++man+https://petsc.org/release/manualpages/Sys/PetscPythonPrintError.html#PetscPythonPrintError
man:+PetscPythonMonitorSet++PetscPythonMonitorSet++++man+https://petsc.org/release/manualpages/Sys/PetscPythonMonitorSet.html#PetscPythonMonitorSet
man:+PetscBenchFinalizePackage++PetscBenchFinalizePackage++++man+https://petsc.org/release/manualpages/BM/PetscBenchFinalizePackage.html#PetscBenchFinalizePackage
man:+PetscBenchInitializePackage++PetscBenchInitializePackage++++man+https://petsc.org/release/manualpages/BM/PetscBenchInitializePackage.html#PetscBenchInitializePackage
man:+PetscBenchRegister++PetscBenchRegister++++man+https://petsc.org/release/manualpages/BM/PetscBenchRegister.html#PetscBenchRegister
man:+PetscBenchReset++PetscBenchReset++++man+https://petsc.org/release/manualpages/BM/PetscBenchReset.html#PetscBenchReset
man:+PetscBenchDestroy++PetscBenchDestroy++++man+https://petsc.org/release/manualpages/BM/PetscBenchDestroy.html#PetscBenchDestroy
man:+PetscBenchSetUp++PetscBenchSetUp++++man+https://petsc.org/release/manualpages/BM/PetscBenchSetUp.html#PetscBenchSetUp
man:+PetscBenchRun++PetscBenchRun++++man+https://petsc.org/release/manualpages/BM/PetscBenchRun.html#PetscBenchRun
man:+PetscBenchSetFromOptions++PetscBenchSetFromOptions++++man+https://petsc.org/release/manualpages/BM/PetscBenchSetFromOptions.html#PetscBenchSetFromOptions
man:+PetscBenchView++PetscBenchView++++man+https://petsc.org/release/manualpages/BM/PetscBenchView.html#PetscBenchView
man:+PetscBenchViewFromOptions++PetscBenchViewFromOptions++++man+https://petsc.org/release/manualpages/BM/PetscBenchViewFromOptions.html#PetscBenchViewFromOptions
man:+PetscBenchCreate++PetscBenchCreate++++man+https://petsc.org/release/manualpages/BM/PetscBenchCreate.html#PetscBenchCreate
man:+PetscBenchSetOptionsPrefix++PetscBenchSetOptionsPrefix++++man+https://petsc.org/release/manualpages/BM/PetscBenchSetOptionsPrefix.html#PetscBenchSetOptionsPrefix
man:+PetscBenchSetSize++PetscBenchSetSize++++man+https://petsc.org/release/manualpages/BM/PetscBenchSetSize.html#PetscBenchSetSize
man:+PetscBenchGetSize++PetscBenchGetSize++++man+https://petsc.org/release/manualpages/BM/PetscBenchGetSize.html#PetscBenchGetSize
man:+PetscBenchSetType++PetscBenchSetType++++man+https://petsc.org/release/manualpages/BM/PetscBenchSetType.html#PetscBenchSetType
man:+PetscBenchGetType++PetscBenchGetType++++man+https://petsc.org/release/manualpages/BM/PetscBenchGetType.html#PetscBenchGetType
man:+PetscMatlabEngineCreate++PetscMatlabEngineCreate++++man+https://petsc.org/release/manualpages/Matlab/PetscMatlabEngineCreate.html#PetscMatlabEngineCreate
man:+PetscMatlabEngineDestroy++PetscMatlabEngineDestroy++++man+https://petsc.org/release/manualpages/Matlab/PetscMatlabEngineDestroy.html#PetscMatlabEngineDestroy
man:+PetscMatlabEngineEvaluate++PetscMatlabEngineEvaluate++++man+https://petsc.org/release/manualpages/Matlab/PetscMatlabEngineEvaluate.html#PetscMatlabEngineEvaluate
man:+PetscMatlabEngineGetOutput++PetscMatlabEngineGetOutput++++man+https://petsc.org/release/manualpages/Matlab/PetscMatlabEngineGetOutput.html#PetscMatlabEngineGetOutput
man:+PetscMatlabEnginePrintOutput++PetscMatlabEnginePrintOutput++++man+https://petsc.org/release/manualpages/Matlab/PetscMatlabEnginePrintOutput.html#PetscMatlabEnginePrintOutput
man:+PetscMatlabEnginePut++PetscMatlabEnginePut++++man+https://petsc.org/release/manualpages/Matlab/PetscMatlabEnginePut.html#PetscMatlabEnginePut
man:+PetscMatlabEngineGet++PetscMatlabEngineGet++++man+https://petsc.org/release/manualpages/Matlab/PetscMatlabEngineGet.html#PetscMatlabEngineGet
man:+PETSC_MATLAB_ENGINE_++PETSC_MATLAB_ENGINE_++++man+https://petsc.org/release/manualpages/Matlab/PETSC_MATLAB_ENGINE_.html#PETSC_MATLAB_ENGINE_
man:+PetscMatlabEnginePutArray++PetscMatlabEnginePutArray++++man+https://petsc.org/release/manualpages/Matlab/PetscMatlabEnginePutArray.html#PetscMatlabEnginePutArray
man:+PetscMatlabEngineGetArray++PetscMatlabEngineGetArray++++man+https://petsc.org/release/manualpages/Matlab/PetscMatlabEngineGetArray.html#PetscMatlabEngineGetArray
man:+PetscOptionsHelpPrintedCreate++PetscOptionsHelpPrintedCreate++++man+https://petsc.org/release/manualpages/Viewer/PetscOptionsHelpPrintedCreate.html#PetscOptionsHelpPrintedCreate
man:+PetscOptionsHelpPrintedCheck++PetscOptionsHelpPrintedCheck++++man+https://petsc.org/release/manualpages/Viewer/PetscOptionsHelpPrintedCheck.html#PetscOptionsHelpPrintedCheck
man:+PetscOptionsPushCreateViewerOff++PetscOptionsPushCreateViewerOff++++man+https://petsc.org/release/manualpages/Viewer/PetscOptionsPushCreateViewerOff.html#PetscOptionsPushCreateViewerOff
man:+PetscOptionsPopCreateViewerOff++PetscOptionsPopCreateViewerOff++++man+https://petsc.org/release/manualpages/Viewer/PetscOptionsPopCreateViewerOff.html#PetscOptionsPopCreateViewerOff
man:+PetscOptionsGetCreateViewerOff++PetscOptionsGetCreateViewerOff++++man+https://petsc.org/release/manualpages/Viewer/PetscOptionsGetCreateViewerOff.html#PetscOptionsGetCreateViewerOff
man:+PetscOptionsCreateViewer++PetscOptionsCreateViewer++++man+https://petsc.org/release/manualpages/Viewer/PetscOptionsCreateViewer.html#PetscOptionsCreateViewer
man:+PetscOptionsCreateViewers++PetscOptionsCreateViewers++++man+https://petsc.org/release/manualpages/Viewer/PetscOptionsCreateViewers.html#PetscOptionsCreateViewers
man:+PetscViewerCreate++PetscViewerCreate++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerCreate.html#PetscViewerCreate
man:+PetscViewerSetType++PetscViewerSetType++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerSetType.html#PetscViewerSetType
man:+PetscViewerRegister++PetscViewerRegister++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerRegister.html#PetscViewerRegister
man:+PetscViewerSetFromOptions++PetscViewerSetFromOptions++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerSetFromOptions.html#PetscViewerSetFromOptions
man:+PetscViewerFlush++PetscViewerFlush++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFlush.html#PetscViewerFlush
man:+PetscViewerSetFormat++PetscViewerSetFormat++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerSetFormat.html#PetscViewerSetFormat
man:+PetscViewerPushFormat++PetscViewerPushFormat++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerPushFormat.html#PetscViewerPushFormat
man:+PetscViewerPopFormat++PetscViewerPopFormat++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerPopFormat.html#PetscViewerPopFormat
man:+PetscViewerGetFormat++PetscViewerGetFormat++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerGetFormat.html#PetscViewerGetFormat
man:+PetscViewerGetSubViewer++PetscViewerGetSubViewer++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerGetSubViewer.html#PetscViewerGetSubViewer
man:+PetscViewerRestoreSubViewer++PetscViewerRestoreSubViewer++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerRestoreSubViewer.html#PetscViewerRestoreSubViewer
man:+PetscSysFinalizePackage++PetscSysFinalizePackage++++man+https://petsc.org/release/manualpages/Viewer/PetscSysFinalizePackage.html#PetscSysFinalizePackage
man:+PetscSysInitializePackage++PetscSysInitializePackage++++man+https://petsc.org/release/manualpages/Viewer/PetscSysInitializePackage.html#PetscSysInitializePackage
man:+PetscViewerFinalizePackage++PetscViewerFinalizePackage++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFinalizePackage.html#PetscViewerFinalizePackage
man:+PetscViewerInitializePackage++PetscViewerInitializePackage++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerInitializePackage.html#PetscViewerInitializePackage
man:+PetscViewerDestroy++PetscViewerDestroy++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerDestroy.html#PetscViewerDestroy
man:+PetscViewerAndFormatCreate++PetscViewerAndFormatCreate++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerAndFormatCreate.html#PetscViewerAndFormatCreate
man:+PetscViewerAndFormatDestroy++PetscViewerAndFormatDestroy++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerAndFormatDestroy.html#PetscViewerAndFormatDestroy
man:+PetscViewerGetType++PetscViewerGetType++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerGetType.html#PetscViewerGetType
man:+PetscViewerSetOptionsPrefix++PetscViewerSetOptionsPrefix++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerSetOptionsPrefix.html#PetscViewerSetOptionsPrefix
man:+PetscViewerAppendOptionsPrefix++PetscViewerAppendOptionsPrefix++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerAppendOptionsPrefix.html#PetscViewerAppendOptionsPrefix
man:+PetscViewerGetOptionsPrefix++PetscViewerGetOptionsPrefix++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerGetOptionsPrefix.html#PetscViewerGetOptionsPrefix
man:+PetscViewerSetUp++PetscViewerSetUp++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerSetUp.html#PetscViewerSetUp
man:+PetscViewerViewFromOptions++PetscViewerViewFromOptions++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerViewFromOptions.html#PetscViewerViewFromOptions
man:+PetscViewerView++PetscViewerView++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerView.html#PetscViewerView
man:+PetscViewerRead++PetscViewerRead++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerRead.html#PetscViewerRead
man:+PetscViewerReadable++PetscViewerReadable++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerReadable.html#PetscViewerReadable
man:+PetscViewerWritable++PetscViewerWritable++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerWritable.html#PetscViewerWritable
man:+PetscViewerCheckReadable++PetscViewerCheckReadable++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerCheckReadable.html#PetscViewerCheckReadable
man:+PetscViewerCheckWritable++PetscViewerCheckWritable++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerCheckWritable.html#PetscViewerCheckWritable
man:+PetscViewerRegisterAll++PetscViewerRegisterAll++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerRegisterAll.html#PetscViewerRegisterAll
man:+PetscViewersDestroy++PetscViewersDestroy++++man+https://petsc.org/release/manualpages/Viewer/PetscViewersDestroy.html#PetscViewersDestroy
man:+PetscViewersCreate++PetscViewersCreate++++man+https://petsc.org/release/manualpages/Viewer/PetscViewersCreate.html#PetscViewersCreate
man:+PetscViewersGetViewer++PetscViewersGetViewer++++man+https://petsc.org/release/manualpages/Viewer/PetscViewersGetViewer.html#PetscViewersGetViewer
man:+PetscMonitorCompare++PetscMonitorCompare++++man+https://petsc.org/release/manualpages/Viewer/PetscMonitorCompare.html#PetscMonitorCompare
man:+PetscViewerASCIIGetPointer++PetscViewerASCIIGetPointer++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIGetPointer.html#PetscViewerASCIIGetPointer
man:+PetscViewerASCIISetTab++PetscViewerASCIISetTab++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIISetTab.html#PetscViewerASCIISetTab
man:+PetscViewerASCIIGetTab++PetscViewerASCIIGetTab++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIGetTab.html#PetscViewerASCIIGetTab
man:+PetscViewerASCIIAddTab++PetscViewerASCIIAddTab++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIAddTab.html#PetscViewerASCIIAddTab
man:+PetscViewerASCIISubtractTab++PetscViewerASCIISubtractTab++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIISubtractTab.html#PetscViewerASCIISubtractTab
man:+PetscViewerASCIIPushSynchronized++PetscViewerASCIIPushSynchronized++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIPushSynchronized.html#PetscViewerASCIIPushSynchronized
man:+PetscViewerASCIIPopSynchronized++PetscViewerASCIIPopSynchronized++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIPopSynchronized.html#PetscViewerASCIIPopSynchronized
man:+PetscViewerASCIIPushTab++PetscViewerASCIIPushTab++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIPushTab.html#PetscViewerASCIIPushTab
man:+PetscViewerASCIIPopTab++PetscViewerASCIIPopTab++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIPopTab.html#PetscViewerASCIIPopTab
man:+PetscViewerASCIIUseTabs++PetscViewerASCIIUseTabs++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIUseTabs.html#PetscViewerASCIIUseTabs
man:+PetscViewerASCIIStdoutSetFileUnit++PetscViewerASCIIStdoutSetFileUnit++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIStdoutSetFileUnit.html#PetscViewerASCIIStdoutSetFileUnit
man:+PetscViewerASCIISetFileUnit++PetscViewerASCIISetFileUnit++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIISetFileUnit.html#PetscViewerASCIISetFileUnit
man:+PetscViewerASCIIOpenWithFileUnit++PetscViewerASCIIOpenWithFileUnit++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIOpenWithFileUnit.html#PetscViewerASCIIOpenWithFileUnit
man:+PetscViewerASCIIGetStdout++PetscViewerASCIIGetStdout++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIGetStdout.html#PetscViewerASCIIGetStdout
man:+PetscViewerASCIIPrintf++PetscViewerASCIIPrintf++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIPrintf.html#PetscViewerASCIIPrintf
man:+PetscViewerFileSetName++PetscViewerFileSetName++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFileSetName.html#PetscViewerFileSetName
man:+PetscViewerFileGetName++PetscViewerFileGetName++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFileGetName.html#PetscViewerFileGetName
man:+PETSCVIEWERASCII++PETSCVIEWERASCII++++man+https://petsc.org/release/manualpages/Viewer/PETSCVIEWERASCII.html#PETSCVIEWERASCII
man:+PetscViewerASCIISynchronizedPrintf++PetscViewerASCIISynchronizedPrintf++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIISynchronizedPrintf.html#PetscViewerASCIISynchronizedPrintf
man:+PetscViewerASCIIRead++PetscViewerASCIIRead++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIRead.html#PetscViewerASCIIRead
man:+PETSC_VIEWER_STDOUT_++PETSC_VIEWER_STDOUT_++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_STDOUT_.html#PETSC_VIEWER_STDOUT_
man:+PetscViewerASCIIGetStderr++PetscViewerASCIIGetStderr++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIGetStderr.html#PetscViewerASCIIGetStderr
man:+PETSC_VIEWER_STDERR_++PETSC_VIEWER_STDERR_++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_STDERR_.html#PETSC_VIEWER_STDERR_
man:+PetscViewerASCIIOpen++PetscViewerASCIIOpen++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIOpen.html#PetscViewerASCIIOpen
man:+PetscViewerASCIIOpenWithFILE++PetscViewerASCIIOpenWithFILE++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIIOpenWithFILE.html#PetscViewerASCIIOpenWithFILE
man:+PetscViewerASCIISetFILE++PetscViewerASCIISetFILE++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerASCIISetFILE.html#PetscViewerASCIISetFILE
man:+PETSCVIEWERVU++PETSCVIEWERVU++++man+https://petsc.org/release/manualpages/Viewer/PETSCVIEWERVU.html#PETSCVIEWERVU
man:+PetscViewerVUGetPointer++PetscViewerVUGetPointer++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerVUGetPointer.html#PetscViewerVUGetPointer
man:+PetscViewerVUSetVecSeen++PetscViewerVUSetVecSeen++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerVUSetVecSeen.html#PetscViewerVUSetVecSeen
man:+PetscViewerVUGetVecSeen++PetscViewerVUGetVecSeen++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerVUGetVecSeen.html#PetscViewerVUGetVecSeen
man:+PetscViewerVUPrintDeferred++PetscViewerVUPrintDeferred++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerVUPrintDeferred.html#PetscViewerVUPrintDeferred
man:+PetscViewerVUFlushDeferred++PetscViewerVUFlushDeferred++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerVUFlushDeferred.html#PetscViewerVUFlushDeferred
man:+PETSC_VIEWER_SAWS_++PETSC_VIEWER_SAWS_++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_SAWS_.html#PETSC_VIEWER_SAWS_
man:+PetscViewerSAWsOpen++PetscViewerSAWsOpen++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerSAWsOpen.html#PetscViewerSAWsOpen
man:+PetscObjectViewSAWs++PetscObjectViewSAWs++++man+https://petsc.org/release/manualpages/Viewer/PetscObjectViewSAWs.html#PetscObjectViewSAWs
man:+PetscViewerPythonSetType++PetscViewerPythonSetType++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerPythonSetType.html#PetscViewerPythonSetType
man:+PetscViewerPythonGetType++PetscViewerPythonGetType++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerPythonGetType.html#PetscViewerPythonGetType
man:+PetscViewerPythonViewObject++PetscViewerPythonViewObject++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerPythonViewObject.html#PetscViewerPythonViewObject
man:+PetscViewerPythonCreate++PetscViewerPythonCreate++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerPythonCreate.html#PetscViewerPythonCreate
man:+PETSC_VIEWER_PYTHON_++PETSC_VIEWER_PYTHON_++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_PYTHON_.html#PETSC_VIEWER_PYTHON_
man:+PETSCVIEWERPYTHON++PETSCVIEWERPYTHON++++man+https://petsc.org/release/manualpages/Viewer/PETSCVIEWERPYTHON.html#PETSCVIEWERPYTHON
man:+PetscViewerHDF5GetGroup++PetscViewerHDF5GetGroup++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5GetGroup.html#PetscViewerHDF5GetGroup
man:+PetscViewerHDF5SetBaseDimension2++PetscViewerHDF5SetBaseDimension2++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5SetBaseDimension2.html#PetscViewerHDF5SetBaseDimension2
man:+PetscViewerHDF5GetBaseDimension2++PetscViewerHDF5GetBaseDimension2++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5GetBaseDimension2.html#PetscViewerHDF5GetBaseDimension2
man:+PetscViewerHDF5SetSPOutput++PetscViewerHDF5SetSPOutput++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5SetSPOutput.html#PetscViewerHDF5SetSPOutput
man:+PetscViewerHDF5GetSPOutput++PetscViewerHDF5GetSPOutput++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5GetSPOutput.html#PetscViewerHDF5GetSPOutput
man:+PetscViewerHDF5SetCollective++PetscViewerHDF5SetCollective++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5SetCollective.html#PetscViewerHDF5SetCollective
man:+PetscViewerHDF5GetCollective++PetscViewerHDF5GetCollective++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5GetCollective.html#PetscViewerHDF5GetCollective
man:+PetscViewerHDF5SetDefaultTimestepping++PetscViewerHDF5SetDefaultTimestepping++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5SetDefaultTimestepping.html#PetscViewerHDF5SetDefaultTimestepping
man:+PetscViewerHDF5GetDefaultTimestepping++PetscViewerHDF5GetDefaultTimestepping++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5GetDefaultTimestepping.html#PetscViewerHDF5GetDefaultTimestepping
man:+PETSCVIEWERHDF5++PETSCVIEWERHDF5++++man+https://petsc.org/release/manualpages/Viewer/PETSCVIEWERHDF5.html#PETSCVIEWERHDF5
man:+PetscViewerHDF5Open++PetscViewerHDF5Open++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5Open.html#PetscViewerHDF5Open
man:+PetscViewerHDF5GetFileId++PetscViewerHDF5GetFileId++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5GetFileId.html#PetscViewerHDF5GetFileId
man:+PetscViewerHDF5PushGroup++PetscViewerHDF5PushGroup++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5PushGroup.html#PetscViewerHDF5PushGroup
man:+PetscViewerHDF5PopGroup++PetscViewerHDF5PopGroup++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5PopGroup.html#PetscViewerHDF5PopGroup
man:+PetscViewerHDF5OpenGroup++PetscViewerHDF5OpenGroup++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5OpenGroup.html#PetscViewerHDF5OpenGroup
man:+PetscViewerHDF5WriteGroup++PetscViewerHDF5WriteGroup++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5WriteGroup.html#PetscViewerHDF5WriteGroup
man:+PetscViewerHDF5PushTimestepping++PetscViewerHDF5PushTimestepping++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5PushTimestepping.html#PetscViewerHDF5PushTimestepping
man:+PetscViewerHDF5PopTimestepping++PetscViewerHDF5PopTimestepping++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5PopTimestepping.html#PetscViewerHDF5PopTimestepping
man:+PetscViewerHDF5IsTimestepping++PetscViewerHDF5IsTimestepping++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5IsTimestepping.html#PetscViewerHDF5IsTimestepping
man:+PetscViewerHDF5IncrementTimestep++PetscViewerHDF5IncrementTimestep++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5IncrementTimestep.html#PetscViewerHDF5IncrementTimestep
man:+PetscViewerHDF5SetTimestep++PetscViewerHDF5SetTimestep++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5SetTimestep.html#PetscViewerHDF5SetTimestep
man:+PetscViewerHDF5GetTimestep++PetscViewerHDF5GetTimestep++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5GetTimestep.html#PetscViewerHDF5GetTimestep
man:+PetscDataTypeToHDF5DataType++PetscDataTypeToHDF5DataType++++man+https://petsc.org/release/manualpages/Viewer/PetscDataTypeToHDF5DataType.html#PetscDataTypeToHDF5DataType
man:+PetscHDF5DataTypeToPetscDataType++PetscHDF5DataTypeToPetscDataType++++man+https://petsc.org/release/manualpages/Viewer/PetscHDF5DataTypeToPetscDataType.html#PetscHDF5DataTypeToPetscDataType
man:+PetscViewerHDF5WriteAttribute++PetscViewerHDF5WriteAttribute++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5WriteAttribute.html#PetscViewerHDF5WriteAttribute
man:+PetscViewerHDF5WriteObjectAttribute++PetscViewerHDF5WriteObjectAttribute++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5WriteObjectAttribute.html#PetscViewerHDF5WriteObjectAttribute
man:+PetscViewerHDF5ReadAttribute++PetscViewerHDF5ReadAttribute++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5ReadAttribute.html#PetscViewerHDF5ReadAttribute
man:+PetscViewerHDF5ReadObjectAttribute++PetscViewerHDF5ReadObjectAttribute++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5ReadObjectAttribute.html#PetscViewerHDF5ReadObjectAttribute
man:+PetscViewerHDF5HasGroup++PetscViewerHDF5HasGroup++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5HasGroup.html#PetscViewerHDF5HasGroup
man:+PetscViewerHDF5HasDataset++PetscViewerHDF5HasDataset++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5HasDataset.html#PetscViewerHDF5HasDataset
man:+PetscViewerHDF5HasObject++PetscViewerHDF5HasObject++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5HasObject.html#PetscViewerHDF5HasObject
man:+PetscViewerHDF5HasAttribute++PetscViewerHDF5HasAttribute++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5HasAttribute.html#PetscViewerHDF5HasAttribute
man:+PetscViewerHDF5HasObjectAttribute++PetscViewerHDF5HasObjectAttribute++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5HasObjectAttribute.html#PetscViewerHDF5HasObjectAttribute
man:+PETSC_VIEWER_HDF5_++PETSC_VIEWER_HDF5_++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_HDF5_.html#PETSC_VIEWER_HDF5_
man:+PETSCVIEWERCGNS++PETSCVIEWERCGNS++++man+https://petsc.org/release/manualpages/Viewer/PETSCVIEWERCGNS.html#PETSCVIEWERCGNS
man:+PetscViewerCGNSOpen++PetscViewerCGNSOpen++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerCGNSOpen.html#PetscViewerCGNSOpen
man:+PetscViewerCGNSSetSolutionIndex++PetscViewerCGNSSetSolutionIndex++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerCGNSSetSolutionIndex.html#PetscViewerCGNSSetSolutionIndex
man:+PetscViewerCGNSGetSolutionIndex++PetscViewerCGNSGetSolutionIndex++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerCGNSGetSolutionIndex.html#PetscViewerCGNSGetSolutionIndex
man:+PetscViewerCGNSGetSolutionTime++PetscViewerCGNSGetSolutionTime++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerCGNSGetSolutionTime.html#PetscViewerCGNSGetSolutionTime
man:+PetscViewerCGNSGetSolutionIteration++PetscViewerCGNSGetSolutionIteration++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerCGNSGetSolutionIteration.html#PetscViewerCGNSGetSolutionIteration
man:+PetscViewerCGNSGetSolutionName++PetscViewerCGNSGetSolutionName++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerCGNSGetSolutionName.html#PetscViewerCGNSGetSolutionName
man:+PetscViewerMathematicaFinalizePackage++PetscViewerMathematicaFinalizePackage++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerMathematicaFinalizePackage.html#PetscViewerMathematicaFinalizePackage
man:+PetscViewerMathematicaInitializePackage++PetscViewerMathematicaInitializePackage++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerMathematicaInitializePackage.html#PetscViewerMathematicaInitializePackage
man:+PetscViewerMathematicaOpen++PetscViewerMathematicaOpen++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerMathematicaOpen.html#PetscViewerMathematicaOpen
man:+PetscViewerMathematicaSkipPackets++PetscViewerMathematicaSkipPackets++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerMathematicaSkipPackets.html#PetscViewerMathematicaSkipPackets
man:+PetscViewerMathematicaGetName++PetscViewerMathematicaGetName++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerMathematicaGetName.html#PetscViewerMathematicaGetName
man:+PetscViewerMathematicaSetName++PetscViewerMathematicaSetName++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerMathematicaSetName.html#PetscViewerMathematicaSetName
man:+PetscViewerMathematicaClearName++PetscViewerMathematicaClearName++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerMathematicaClearName.html#PetscViewerMathematicaClearName
man:+PETSC_VIEWER_PYVISTA_++PETSC_VIEWER_PYVISTA_++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_PYVISTA_.html#PETSC_VIEWER_PYVISTA_
man:+PETSCVIEWERPYVISTA++PETSCVIEWERPYVISTA++++man+https://petsc.org/release/manualpages/Viewer/PETSCVIEWERPYVISTA.html#PETSCVIEWERPYVISTA
man:+PetscViewerVTKWriteFunction++PetscViewerVTKWriteFunction++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerVTKWriteFunction.html#PetscViewerVTKWriteFunction
man:+PetscViewerVTKAddField++PetscViewerVTKAddField++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerVTKAddField.html#PetscViewerVTKAddField
man:+PetscViewerVTKGetDM++PetscViewerVTKGetDM++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerVTKGetDM.html#PetscViewerVTKGetDM
man:+PETSCVIEWERVTK++PETSCVIEWERVTK++++man+https://petsc.org/release/manualpages/Viewer/PETSCVIEWERVTK.html#PETSCVIEWERVTK
man:+PetscViewerVTKOpen++PetscViewerVTKOpen++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerVTKOpen.html#PetscViewerVTKOpen
man:+PetscViewerVTKFWrite++PetscViewerVTKFWrite++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerVTKFWrite.html#PetscViewerVTKFWrite
man:+PetscViewerMatlabPutArray++PetscViewerMatlabPutArray++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerMatlabPutArray.html#PetscViewerMatlabPutArray
man:+PetscViewerMatlabGetArray++PetscViewerMatlabGetArray++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerMatlabGetArray.html#PetscViewerMatlabGetArray
man:+PETSCVIEWERMATLAB++PETSCVIEWERMATLAB++++man+https://petsc.org/release/manualpages/Viewer/PETSCVIEWERMATLAB.html#PETSCVIEWERMATLAB
man:+PetscViewerMatlabOpen++PetscViewerMatlabOpen++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerMatlabOpen.html#PetscViewerMatlabOpen
man:+PETSC_VIEWER_MATLAB_++PETSC_VIEWER_MATLAB_++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_MATLAB_.html#PETSC_VIEWER_MATLAB_
man:+PetscViewerGLVisSetPrecision++PetscViewerGLVisSetPrecision++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerGLVisSetPrecision.html#PetscViewerGLVisSetPrecision
man:+PetscViewerGLVisSetSnapId++PetscViewerGLVisSetSnapId++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerGLVisSetSnapId.html#PetscViewerGLVisSetSnapId
man:+PetscViewerGLVisSetFields++PetscViewerGLVisSetFields++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerGLVisSetFields.html#PetscViewerGLVisSetFields
man:+PetscViewerGLVisOpen++PetscViewerGLVisOpen++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerGLVisOpen.html#PetscViewerGLVisOpen
man:+PETSC_VIEWER_GLVIS_++PETSC_VIEWER_GLVIS_++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_GLVIS_.html#PETSC_VIEWER_GLVIS_
man:+PetscViewerBinaryGetMPIIOOffset++PetscViewerBinaryGetMPIIOOffset++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryGetMPIIOOffset.html#PetscViewerBinaryGetMPIIOOffset
man:+PetscViewerBinaryAddMPIIOOffset++PetscViewerBinaryAddMPIIOOffset++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryAddMPIIOOffset.html#PetscViewerBinaryAddMPIIOOffset
man:+PetscViewerBinaryGetMPIIODescriptor++PetscViewerBinaryGetMPIIODescriptor++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryGetMPIIODescriptor.html#PetscViewerBinaryGetMPIIODescriptor
man:+PetscViewerBinarySetUseMPIIO++PetscViewerBinarySetUseMPIIO++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinarySetUseMPIIO.html#PetscViewerBinarySetUseMPIIO
man:+PetscViewerBinaryGetUseMPIIO++PetscViewerBinaryGetUseMPIIO++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryGetUseMPIIO.html#PetscViewerBinaryGetUseMPIIO
man:+PetscViewerBinarySetFlowControl++PetscViewerBinarySetFlowControl++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinarySetFlowControl.html#PetscViewerBinarySetFlowControl
man:+PetscViewerBinaryGetFlowControl++PetscViewerBinaryGetFlowControl++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryGetFlowControl.html#PetscViewerBinaryGetFlowControl
man:+PetscViewerBinaryGetDescriptor++PetscViewerBinaryGetDescriptor++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryGetDescriptor.html#PetscViewerBinaryGetDescriptor
man:+PetscViewerBinarySkipInfo++PetscViewerBinarySkipInfo++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinarySkipInfo.html#PetscViewerBinarySkipInfo
man:+PetscViewerBinarySetSkipInfo++PetscViewerBinarySetSkipInfo++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinarySetSkipInfo.html#PetscViewerBinarySetSkipInfo
man:+PetscViewerBinaryGetSkipInfo++PetscViewerBinaryGetSkipInfo++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryGetSkipInfo.html#PetscViewerBinaryGetSkipInfo
man:+PetscViewerBinarySetSkipOptions++PetscViewerBinarySetSkipOptions++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinarySetSkipOptions.html#PetscViewerBinarySetSkipOptions
man:+PetscViewerBinaryGetSkipOptions++PetscViewerBinaryGetSkipOptions++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryGetSkipOptions.html#PetscViewerBinaryGetSkipOptions
man:+PetscViewerBinarySetSkipHeader++PetscViewerBinarySetSkipHeader++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinarySetSkipHeader.html#PetscViewerBinarySetSkipHeader
man:+PetscViewerBinaryGetSkipHeader++PetscViewerBinaryGetSkipHeader++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryGetSkipHeader.html#PetscViewerBinaryGetSkipHeader
man:+PetscViewerBinaryGetInfoPointer++PetscViewerBinaryGetInfoPointer++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryGetInfoPointer.html#PetscViewerBinaryGetInfoPointer
man:+PetscViewerBinaryOpen++PetscViewerBinaryOpen++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryOpen.html#PetscViewerBinaryOpen
man:+PetscViewerBinaryRead++PetscViewerBinaryRead++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryRead.html#PetscViewerBinaryRead
man:+PetscViewerBinaryWrite++PetscViewerBinaryWrite++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryWrite.html#PetscViewerBinaryWrite
man:+PetscViewerBinaryReadAll++PetscViewerBinaryReadAll++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryReadAll.html#PetscViewerBinaryReadAll
man:+PetscViewerBinaryWriteAll++PetscViewerBinaryWriteAll++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryWriteAll.html#PetscViewerBinaryWriteAll
man:+PetscViewerBinaryWriteStringArray++PetscViewerBinaryWriteStringArray++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryWriteStringArray.html#PetscViewerBinaryWriteStringArray
man:+PetscViewerBinaryReadStringArray++PetscViewerBinaryReadStringArray++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerBinaryReadStringArray.html#PetscViewerBinaryReadStringArray
man:+PetscViewerFileSetMode++PetscViewerFileSetMode++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFileSetMode.html#PetscViewerFileSetMode
man:+PetscViewerFileGetMode++PetscViewerFileGetMode++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerFileGetMode.html#PetscViewerFileGetMode
man:+PETSCVIEWERBINARY++PETSCVIEWERBINARY++++man+https://petsc.org/release/manualpages/Viewer/PETSCVIEWERBINARY.html#PETSCVIEWERBINARY
man:+PETSC_VIEWER_BINARY_++PETSC_VIEWER_BINARY_++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_BINARY_.html#PETSC_VIEWER_BINARY_
man:+PetscViewerStringSPrintf++PetscViewerStringSPrintf++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerStringSPrintf.html#PetscViewerStringSPrintf
man:+PetscViewerStringOpen++PetscViewerStringOpen++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerStringOpen.html#PetscViewerStringOpen
man:+PETSCVIEWERSTRING++PETSCVIEWERSTRING++++man+https://petsc.org/release/manualpages/Viewer/PETSCVIEWERSTRING.html#PETSCVIEWERSTRING
man:+PetscViewerStringGetStringRead++PetscViewerStringGetStringRead++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerStringGetStringRead.html#PetscViewerStringGetStringRead
man:+PetscViewerStringSetString++PetscViewerStringSetString++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerStringSetString.html#PetscViewerStringSetString
man:+PetscViewerStringSetOwnString++PetscViewerStringSetOwnString++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerStringSetOwnString.html#PetscViewerStringSetOwnString
man:+PetscViewerDrawBaseAdd++PetscViewerDrawBaseAdd++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerDrawBaseAdd.html#PetscViewerDrawBaseAdd
man:+PetscViewerDrawBaseSet++PetscViewerDrawBaseSet++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerDrawBaseSet.html#PetscViewerDrawBaseSet
man:+PetscViewerDrawOpen++PetscViewerDrawOpen++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerDrawOpen.html#PetscViewerDrawOpen
man:+PETSCVIEWERDRAW++PETSCVIEWERDRAW++++man+https://petsc.org/release/manualpages/Viewer/PETSCVIEWERDRAW.html#PETSCVIEWERDRAW
man:+PetscViewerDrawClear++PetscViewerDrawClear++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerDrawClear.html#PetscViewerDrawClear
man:+PetscViewerDrawGetPause++PetscViewerDrawGetPause++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerDrawGetPause.html#PetscViewerDrawGetPause
man:+PetscViewerDrawSetPause++PetscViewerDrawSetPause++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerDrawSetPause.html#PetscViewerDrawSetPause
man:+PetscViewerDrawSetHold++PetscViewerDrawSetHold++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerDrawSetHold.html#PetscViewerDrawSetHold
man:+PetscViewerDrawGetHold++PetscViewerDrawGetHold++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerDrawGetHold.html#PetscViewerDrawGetHold
man:+PETSC_VIEWER_DRAW_++PETSC_VIEWER_DRAW_++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_DRAW_.html#PETSC_VIEWER_DRAW_
man:+PetscViewerDrawSetBounds++PetscViewerDrawSetBounds++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerDrawSetBounds.html#PetscViewerDrawSetBounds
man:+PetscViewerDrawGetBounds++PetscViewerDrawGetBounds++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerDrawGetBounds.html#PetscViewerDrawGetBounds
man:+PetscViewerMonitorLGSetUp++PetscViewerMonitorLGSetUp++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerMonitorLGSetUp.html#PetscViewerMonitorLGSetUp
man:+PetscViewerDrawGetDraw++PetscViewerDrawGetDraw++++man+https://petsc.org/release/manualpages/Draw/PetscViewerDrawGetDraw.html#PetscViewerDrawGetDraw
man:+PetscViewerDrawGetDrawLG++PetscViewerDrawGetDrawLG++++man+https://petsc.org/release/manualpages/Draw/PetscViewerDrawGetDrawLG.html#PetscViewerDrawGetDrawLG
man:+PetscViewerDrawGetDrawAxis++PetscViewerDrawGetDrawAxis++++man+https://petsc.org/release/manualpages/Draw/PetscViewerDrawGetDrawAxis.html#PetscViewerDrawGetDrawAxis
man:+PETSCVIEWERADIOS++PETSCVIEWERADIOS++++man+https://petsc.org/release/manualpages/Viewer/PETSCVIEWERADIOS.html#PETSCVIEWERADIOS
man:+PetscViewerADIOSOpen++PetscViewerADIOSOpen++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerADIOSOpen.html#PetscViewerADIOSOpen
man:+PetscOpenSocket++PetscOpenSocket++++man+https://petsc.org/release/manualpages/Viewer/PetscOpenSocket.html#PetscOpenSocket
man:+PetscViewerSocketOpen++PetscViewerSocketOpen++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerSocketOpen.html#PetscViewerSocketOpen
man:+PETSCVIEWERSOCKET++PETSCVIEWERSOCKET++++man+https://petsc.org/release/manualpages/Viewer/PETSCVIEWERSOCKET.html#PETSCVIEWERSOCKET
man:+PetscViewerSocketSetConnection++PetscViewerSocketSetConnection++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerSocketSetConnection.html#PetscViewerSocketSetConnection
man:+PETSC_VIEWER_SOCKET_++PETSC_VIEWER_SOCKET_++++man+https://petsc.org/release/manualpages/Viewer/PETSC_VIEWER_SOCKET_.html#PETSC_VIEWER_SOCKET_
man:+PetscRandomDestroy++PetscRandomDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscRandomDestroy.html#PetscRandomDestroy
man:+PetscRandomGetSeed++PetscRandomGetSeed++++man+https://petsc.org/release/manualpages/Sys/PetscRandomGetSeed.html#PetscRandomGetSeed
man:+PetscRandomSetSeed++PetscRandomSetSeed++++man+https://petsc.org/release/manualpages/Sys/PetscRandomSetSeed.html#PetscRandomSetSeed
man:+PetscRandomSetFromOptions++PetscRandomSetFromOptions++++man+https://petsc.org/release/manualpages/Sys/PetscRandomSetFromOptions.html#PetscRandomSetFromOptions
man:+PetscRandomSetOptionsPrefix++PetscRandomSetOptionsPrefix++++man+https://petsc.org/release/manualpages/Sys/PetscRandomSetOptionsPrefix.html#PetscRandomSetOptionsPrefix
man:+PetscRandomViewFromOptions++PetscRandomViewFromOptions++++man+https://petsc.org/release/manualpages/Sys/PetscRandomViewFromOptions.html#PetscRandomViewFromOptions
man:+PetscRandomView++PetscRandomView++++man+https://petsc.org/release/manualpages/Sys/PetscRandomView.html#PetscRandomView
man:+PetscRandomCreate++PetscRandomCreate++++man+https://petsc.org/release/manualpages/Sys/PetscRandomCreate.html#PetscRandomCreate
man:+PetscRandomSeed++PetscRandomSeed++++man+https://petsc.org/release/manualpages/Sys/PetscRandomSeed.html#PetscRandomSeed
man:+PetscRandomSetType++PetscRandomSetType++++man+https://petsc.org/release/manualpages/Sys/PetscRandomSetType.html#PetscRandomSetType
man:+PetscRandomGetType++PetscRandomGetType++++man+https://petsc.org/release/manualpages/Sys/PetscRandomGetType.html#PetscRandomGetType
man:+PetscRandomRegister++PetscRandomRegister++++man+https://petsc.org/release/manualpages/Sys/PetscRandomRegister.html#PetscRandomRegister
man:+PetscRandomRegisterAll++PetscRandomRegisterAll++++man+https://petsc.org/release/manualpages/Sys/PetscRandomRegisterAll.html#PetscRandomRegisterAll
man:+PetscRandomGetValue++PetscRandomGetValue++++man+https://petsc.org/release/manualpages/Sys/PetscRandomGetValue.html#PetscRandomGetValue
man:+PetscRandomGetValueReal++PetscRandomGetValueReal++++man+https://petsc.org/release/manualpages/Sys/PetscRandomGetValueReal.html#PetscRandomGetValueReal
man:+PetscRandomGetValues++PetscRandomGetValues++++man+https://petsc.org/release/manualpages/Sys/PetscRandomGetValues.html#PetscRandomGetValues
man:+PetscRandomGetValuesReal++PetscRandomGetValuesReal++++man+https://petsc.org/release/manualpages/Sys/PetscRandomGetValuesReal.html#PetscRandomGetValuesReal
man:+PetscRandomGetInterval++PetscRandomGetInterval++++man+https://petsc.org/release/manualpages/Sys/PetscRandomGetInterval.html#PetscRandomGetInterval
man:+PetscRandomSetInterval++PetscRandomSetInterval++++man+https://petsc.org/release/manualpages/Sys/PetscRandomSetInterval.html#PetscRandomSetInterval
man:+PetscRandomFinalizePackage++PetscRandomFinalizePackage++++man+https://petsc.org/release/manualpages/Sys/PetscRandomFinalizePackage.html#PetscRandomFinalizePackage
man:+PetscRandomInitializePackage++PetscRandomInitializePackage++++man+https://petsc.org/release/manualpages/Sys/PetscRandomInitializePackage.html#PetscRandomInitializePackage
man:+PETSCRANDER48++PETSCRANDER48++++man+https://petsc.org/release/manualpages/Sys/PETSCRANDER48.html#PETSCRANDER48
man:+PETSCRAND48++PETSCRAND48++++man+https://petsc.org/release/manualpages/Sys/PETSCRAND48.html#PETSCRAND48
man:+PETSCCURAND++PETSCCURAND++++man+https://petsc.org/release/manualpages/Sys/PETSCCURAND.html#PETSCCURAND
man:+PETSCSPRNG++PETSCSPRNG++++man+https://petsc.org/release/manualpages/Sys/PETSCSPRNG.html#PETSCSPRNG
man:+PETSCRAND++PETSCRAND++++man+https://petsc.org/release/manualpages/Sys/PETSCRAND.html#PETSCRAND
man:+PETSCRANDOM123++PETSCRANDOM123++++man+https://petsc.org/release/manualpages/Sys/PETSCRANDOM123.html#PETSCRANDOM123
man:+PetscBagRegisterEnum++PetscBagRegisterEnum++++man+https://petsc.org/release/manualpages/Bag/PetscBagRegisterEnum.html#PetscBagRegisterEnum
man:+PetscBagRegisterIntArray++PetscBagRegisterIntArray++++man+https://petsc.org/release/manualpages/Bag/PetscBagRegisterIntArray.html#PetscBagRegisterIntArray
man:+PetscBagRegisterRealArray++PetscBagRegisterRealArray++++man+https://petsc.org/release/manualpages/Bag/PetscBagRegisterRealArray.html#PetscBagRegisterRealArray
man:+PetscBagRegisterInt++PetscBagRegisterInt++++man+https://petsc.org/release/manualpages/Bag/PetscBagRegisterInt.html#PetscBagRegisterInt
man:+PetscBagRegisterInt64++PetscBagRegisterInt64++++man+https://petsc.org/release/manualpages/Bag/PetscBagRegisterInt64.html#PetscBagRegisterInt64
man:+PetscBagRegisterBoolArray++PetscBagRegisterBoolArray++++man+https://petsc.org/release/manualpages/Bag/PetscBagRegisterBoolArray.html#PetscBagRegisterBoolArray
man:+PetscBagRegisterString++PetscBagRegisterString++++man+https://petsc.org/release/manualpages/Bag/PetscBagRegisterString.html#PetscBagRegisterString
man:+PetscBagRegisterReal++PetscBagRegisterReal++++man+https://petsc.org/release/manualpages/Bag/PetscBagRegisterReal.html#PetscBagRegisterReal
man:+PetscBagRegisterScalar++PetscBagRegisterScalar++++man+https://petsc.org/release/manualpages/Bag/PetscBagRegisterScalar.html#PetscBagRegisterScalar
man:+PetscBagRegisterBool++PetscBagRegisterBool++++man+https://petsc.org/release/manualpages/Bag/PetscBagRegisterBool.html#PetscBagRegisterBool
man:+PetscBagDestroy++PetscBagDestroy++++man+https://petsc.org/release/manualpages/Bag/PetscBagDestroy.html#PetscBagDestroy
man:+PetscBagSetFromOptions++PetscBagSetFromOptions++++man+https://petsc.org/release/manualpages/Bag/PetscBagSetFromOptions.html#PetscBagSetFromOptions
man:+PetscBagView++PetscBagView++++man+https://petsc.org/release/manualpages/Bag/PetscBagView.html#PetscBagView
man:+PetscBagViewFromOptions++PetscBagViewFromOptions++++man+https://petsc.org/release/manualpages/Bag/PetscBagViewFromOptions.html#PetscBagViewFromOptions
man:+PetscBagLoad++PetscBagLoad++++man+https://petsc.org/release/manualpages/Bag/PetscBagLoad.html#PetscBagLoad
man:+PetscBagCreate++PetscBagCreate++++man+https://petsc.org/release/manualpages/Bag/PetscBagCreate.html#PetscBagCreate
man:+PetscBagSetName++PetscBagSetName++++man+https://petsc.org/release/manualpages/Bag/PetscBagSetName.html#PetscBagSetName
man:+PetscBagGetName++PetscBagGetName++++man+https://petsc.org/release/manualpages/Bag/PetscBagGetName.html#PetscBagGetName
man:+PetscBagGetData++PetscBagGetData++++man+https://petsc.org/release/manualpages/Bag/PetscBagGetData.html#PetscBagGetData
man:+PetscBagSetOptionsPrefix++PetscBagSetOptionsPrefix++++man+https://petsc.org/release/manualpages/Bag/PetscBagSetOptionsPrefix.html#PetscBagSetOptionsPrefix
man:+PetscBagGetNames++PetscBagGetNames++++man+https://petsc.org/release/manualpages/Bag/PetscBagGetNames.html#PetscBagGetNames
man:+PetscDrawSetSave++PetscDrawSetSave++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetSave.html#PetscDrawSetSave
man:+PetscDrawSetSaveMovie++PetscDrawSetSaveMovie++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetSaveMovie.html#PetscDrawSetSaveMovie
man:+PetscDrawSetSaveFinalImage++PetscDrawSetSaveFinalImage++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetSaveFinalImage.html#PetscDrawSetSaveFinalImage
man:+PetscDrawSave++PetscDrawSave++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSave.html#PetscDrawSave
man:+PetscDrawSaveMovie++PetscDrawSaveMovie++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSaveMovie.html#PetscDrawSaveMovie
man:+PetscDrawEllipse++PetscDrawEllipse++++man+https://petsc.org/release/manualpages/Draw/PetscDrawEllipse.html#PetscDrawEllipse
man:+PetscDrawFlush++PetscDrawFlush++++man+https://petsc.org/release/manualpages/Draw/PetscDrawFlush.html#PetscDrawFlush
man:+PetscDrawGetMouseButton++PetscDrawGetMouseButton++++man+https://petsc.org/release/manualpages/Draw/PetscDrawGetMouseButton.html#PetscDrawGetMouseButton
man:+PetscDrawView++PetscDrawView++++man+https://petsc.org/release/manualpages/Draw/PetscDrawView.html#PetscDrawView
man:+PetscDrawViewFromOptions++PetscDrawViewFromOptions++++man+https://petsc.org/release/manualpages/Draw/PetscDrawViewFromOptions.html#PetscDrawViewFromOptions
man:+PetscDrawCreate++PetscDrawCreate++++man+https://petsc.org/release/manualpages/Draw/PetscDrawCreate.html#PetscDrawCreate
man:+PetscDrawSetType++PetscDrawSetType++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetType.html#PetscDrawSetType
man:+PetscDrawGetType++PetscDrawGetType++++man+https://petsc.org/release/manualpages/Draw/PetscDrawGetType.html#PetscDrawGetType
man:+PetscDrawRegister++PetscDrawRegister++++man+https://petsc.org/release/manualpages/Draw/PetscDrawRegister.html#PetscDrawRegister
man:+PetscDrawSetOptionsPrefix++PetscDrawSetOptionsPrefix++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetOptionsPrefix.html#PetscDrawSetOptionsPrefix
man:+PetscDrawSetFromOptions++PetscDrawSetFromOptions++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetFromOptions.html#PetscDrawSetFromOptions
man:+PetscDrawSetViewPort++PetscDrawSetViewPort++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetViewPort.html#PetscDrawSetViewPort
man:+PetscDrawGetViewPort++PetscDrawGetViewPort++++man+https://petsc.org/release/manualpages/Draw/PetscDrawGetViewPort.html#PetscDrawGetViewPort
man:+PetscDrawSplitViewPort++PetscDrawSplitViewPort++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSplitViewPort.html#PetscDrawSplitViewPort
man:+PetscDrawViewPortsCreate++PetscDrawViewPortsCreate++++man+https://petsc.org/release/manualpages/Draw/PetscDrawViewPortsCreate.html#PetscDrawViewPortsCreate
man:+PetscDrawViewPortsCreateRect++PetscDrawViewPortsCreateRect++++man+https://petsc.org/release/manualpages/Draw/PetscDrawViewPortsCreateRect.html#PetscDrawViewPortsCreateRect
man:+PetscDrawViewPortsDestroy++PetscDrawViewPortsDestroy++++man+https://petsc.org/release/manualpages/Draw/PetscDrawViewPortsDestroy.html#PetscDrawViewPortsDestroy
man:+PetscDrawViewPortsSet++PetscDrawViewPortsSet++++man+https://petsc.org/release/manualpages/Draw/PetscDrawViewPortsSet.html#PetscDrawViewPortsSet
man:+PetscDrawRegisterAll++PetscDrawRegisterAll++++man+https://petsc.org/release/manualpages/Draw/PetscDrawRegisterAll.html#PetscDrawRegisterAll
man:+PetscDrawString++PetscDrawString++++man+https://petsc.org/release/manualpages/Draw/PetscDrawString.html#PetscDrawString
man:+PetscDrawStringVertical++PetscDrawStringVertical++++man+https://petsc.org/release/manualpages/Draw/PetscDrawStringVertical.html#PetscDrawStringVertical
man:+PetscDrawStringCentered++PetscDrawStringCentered++++man+https://petsc.org/release/manualpages/Draw/PetscDrawStringCentered.html#PetscDrawStringCentered
man:+PetscDrawStringBoxed++PetscDrawStringBoxed++++man+https://petsc.org/release/manualpages/Draw/PetscDrawStringBoxed.html#PetscDrawStringBoxed
man:+PetscDrawStringSetSize++PetscDrawStringSetSize++++man+https://petsc.org/release/manualpages/Draw/PetscDrawStringSetSize.html#PetscDrawStringSetSize
man:+PetscDrawStringGetSize++PetscDrawStringGetSize++++man+https://petsc.org/release/manualpages/Draw/PetscDrawStringGetSize.html#PetscDrawStringGetSize
man:+PetscDrawFinalizePackage++PetscDrawFinalizePackage++++man+https://petsc.org/release/manualpages/Draw/PetscDrawFinalizePackage.html#PetscDrawFinalizePackage
man:+PetscDrawInitializePackage++PetscDrawInitializePackage++++man+https://petsc.org/release/manualpages/Draw/PetscDrawInitializePackage.html#PetscDrawInitializePackage
man:+PetscDrawResizeWindow++PetscDrawResizeWindow++++man+https://petsc.org/release/manualpages/Draw/PetscDrawResizeWindow.html#PetscDrawResizeWindow
man:+PetscDrawGetWindowSize++PetscDrawGetWindowSize++++man+https://petsc.org/release/manualpages/Draw/PetscDrawGetWindowSize.html#PetscDrawGetWindowSize
man:+PetscDrawCheckResizedWindow++PetscDrawCheckResizedWindow++++man+https://petsc.org/release/manualpages/Draw/PetscDrawCheckResizedWindow.html#PetscDrawCheckResizedWindow
man:+PetscDrawGetTitle++PetscDrawGetTitle++++man+https://petsc.org/release/manualpages/Draw/PetscDrawGetTitle.html#PetscDrawGetTitle
man:+PetscDrawSetTitle++PetscDrawSetTitle++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetTitle.html#PetscDrawSetTitle
man:+PetscDrawAppendTitle++PetscDrawAppendTitle++++man+https://petsc.org/release/manualpages/Draw/PetscDrawAppendTitle.html#PetscDrawAppendTitle
man:+PetscDrawDestroy++PetscDrawDestroy++++man+https://petsc.org/release/manualpages/Draw/PetscDrawDestroy.html#PetscDrawDestroy
man:+PetscDrawGetPopup++PetscDrawGetPopup++++man+https://petsc.org/release/manualpages/Draw/PetscDrawGetPopup.html#PetscDrawGetPopup
man:+PetscDrawSetDisplay++PetscDrawSetDisplay++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetDisplay.html#PetscDrawSetDisplay
man:+PetscDrawSetDoubleBuffer++PetscDrawSetDoubleBuffer++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetDoubleBuffer.html#PetscDrawSetDoubleBuffer
man:+PetscDrawGetSingleton++PetscDrawGetSingleton++++man+https://petsc.org/release/manualpages/Draw/PetscDrawGetSingleton.html#PetscDrawGetSingleton
man:+PetscDrawRestoreSingleton++PetscDrawRestoreSingleton++++man+https://petsc.org/release/manualpages/Draw/PetscDrawRestoreSingleton.html#PetscDrawRestoreSingleton
man:+PetscDrawSetVisible++PetscDrawSetVisible++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetVisible.html#PetscDrawSetVisible
man:+PetscDrawSetCoordinates++PetscDrawSetCoordinates++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetCoordinates.html#PetscDrawSetCoordinates
man:+PetscDrawGetCoordinates++PetscDrawGetCoordinates++++man+https://petsc.org/release/manualpages/Draw/PetscDrawGetCoordinates.html#PetscDrawGetCoordinates
man:+PetscDrawGetBoundingBox++PetscDrawGetBoundingBox++++man+https://petsc.org/release/manualpages/Draw/PetscDrawGetBoundingBox.html#PetscDrawGetBoundingBox
man:+PetscDrawGetCurrentPoint++PetscDrawGetCurrentPoint++++man+https://petsc.org/release/manualpages/Draw/PetscDrawGetCurrentPoint.html#PetscDrawGetCurrentPoint
man:+PetscDrawSetCurrentPoint++PetscDrawSetCurrentPoint++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetCurrentPoint.html#PetscDrawSetCurrentPoint
man:+PetscDrawPushCurrentPoint++PetscDrawPushCurrentPoint++++man+https://petsc.org/release/manualpages/Draw/PetscDrawPushCurrentPoint.html#PetscDrawPushCurrentPoint
man:+PetscDrawPopCurrentPoint++PetscDrawPopCurrentPoint++++man+https://petsc.org/release/manualpages/Draw/PetscDrawPopCurrentPoint.html#PetscDrawPopCurrentPoint
man:+PetscDrawLine++PetscDrawLine++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLine.html#PetscDrawLine
man:+PetscDrawArrow++PetscDrawArrow++++man+https://petsc.org/release/manualpages/Draw/PetscDrawArrow.html#PetscDrawArrow
man:+PetscDrawLineSetWidth++PetscDrawLineSetWidth++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLineSetWidth.html#PetscDrawLineSetWidth
man:+PetscDrawLineGetWidth++PetscDrawLineGetWidth++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLineGetWidth.html#PetscDrawLineGetWidth
man:+PetscDrawTriangle++PetscDrawTriangle++++man+https://petsc.org/release/manualpages/Draw/PetscDrawTriangle.html#PetscDrawTriangle
man:+PetscDrawScalePopup++PetscDrawScalePopup++++man+https://petsc.org/release/manualpages/Draw/PetscDrawScalePopup.html#PetscDrawScalePopup
man:+PetscDrawTensorContour++PetscDrawTensorContour++++man+https://petsc.org/release/manualpages/Draw/PetscDrawTensorContour.html#PetscDrawTensorContour
man:+PetscDrawTensorContourPatch++PetscDrawTensorContourPatch++++man+https://petsc.org/release/manualpages/Draw/PetscDrawTensorContourPatch.html#PetscDrawTensorContourPatch
man:+PetscDrawPoint++PetscDrawPoint++++man+https://petsc.org/release/manualpages/Draw/PetscDrawPoint.html#PetscDrawPoint
man:+PetscDrawPointPixel++PetscDrawPointPixel++++man+https://petsc.org/release/manualpages/Draw/PetscDrawPointPixel.html#PetscDrawPointPixel
man:+PetscDrawPointSetSize++PetscDrawPointSetSize++++man+https://petsc.org/release/manualpages/Draw/PetscDrawPointSetSize.html#PetscDrawPointSetSize
man:+PetscDrawClear++PetscDrawClear++++man+https://petsc.org/release/manualpages/Draw/PetscDrawClear.html#PetscDrawClear
man:+PetscDrawBOP++PetscDrawBOP++++man+https://petsc.org/release/manualpages/Draw/PetscDrawBOP.html#PetscDrawBOP
man:+PetscDrawEOP++PetscDrawEOP++++man+https://petsc.org/release/manualpages/Draw/PetscDrawEOP.html#PetscDrawEOP
man:+PetscDrawPause++PetscDrawPause++++man+https://petsc.org/release/manualpages/Draw/PetscDrawPause.html#PetscDrawPause
man:+PetscDrawSetPause++PetscDrawSetPause++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetPause.html#PetscDrawSetPause
man:+PetscDrawGetPause++PetscDrawGetPause++++man+https://petsc.org/release/manualpages/Draw/PetscDrawGetPause.html#PetscDrawGetPause
man:+PetscDrawMarker++PetscDrawMarker++++man+https://petsc.org/release/manualpages/Draw/PetscDrawMarker.html#PetscDrawMarker
man:+PetscDrawSetMarkerType++PetscDrawSetMarkerType++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSetMarkerType.html#PetscDrawSetMarkerType
man:+PetscDrawGetMarkerType++PetscDrawGetMarkerType++++man+https://petsc.org/release/manualpages/Draw/PetscDrawGetMarkerType.html#PetscDrawGetMarkerType
man:+PetscDrawIndicatorFunction++PetscDrawIndicatorFunction++++man+https://petsc.org/release/manualpages/Draw/PetscDrawIndicatorFunction.html#PetscDrawIndicatorFunction
man:+PetscDrawCoordinateToPixel++PetscDrawCoordinateToPixel++++man+https://petsc.org/release/manualpages/Draw/PetscDrawCoordinateToPixel.html#PetscDrawCoordinateToPixel
man:+PetscDrawPixelToCoordinate++PetscDrawPixelToCoordinate++++man+https://petsc.org/release/manualpages/Draw/PetscDrawPixelToCoordinate.html#PetscDrawPixelToCoordinate
man:+PetscDrawRectangle++PetscDrawRectangle++++man+https://petsc.org/release/manualpages/Draw/PetscDrawRectangle.html#PetscDrawRectangle
man:+PETSC_DRAW_IMAGE++PETSC_DRAW_IMAGE++++man+https://petsc.org/release/manualpages/Draw/PETSC_DRAW_IMAGE.html#PETSC_DRAW_IMAGE
man:+PetscDrawOpenImage++PetscDrawOpenImage++++man+https://petsc.org/release/manualpages/Draw/PetscDrawOpenImage.html#PetscDrawOpenImage
man:+PETSC_DRAW_NULL++PETSC_DRAW_NULL++++man+https://petsc.org/release/manualpages/Draw/PETSC_DRAW_NULL.html#PETSC_DRAW_NULL
man:+PetscDrawOpenNull++PetscDrawOpenNull++++man+https://petsc.org/release/manualpages/Draw/PetscDrawOpenNull.html#PetscDrawOpenNull
man:+PetscDrawIsNull++PetscDrawIsNull++++man+https://petsc.org/release/manualpages/Draw/PetscDrawIsNull.html#PetscDrawIsNull
man:+PetscDrawOpenX++PetscDrawOpenX++++man+https://petsc.org/release/manualpages/Draw/PetscDrawOpenX.html#PetscDrawOpenX
man:+PETSC_DRAW_X++PETSC_DRAW_X++++man+https://petsc.org/release/manualpages/Draw/PETSC_DRAW_X.html#PETSC_DRAW_X
man:+PetscDrawZoom++PetscDrawZoom++++man+https://petsc.org/release/manualpages/Draw/PetscDrawZoom.html#PetscDrawZoom
man:+PetscDrawSPCreate++PetscDrawSPCreate++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSPCreate.html#PetscDrawSPCreate
man:+PetscDrawSPSetDimension++PetscDrawSPSetDimension++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSPSetDimension.html#PetscDrawSPSetDimension
man:+PetscDrawSPGetDimension++PetscDrawSPGetDimension++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSPGetDimension.html#PetscDrawSPGetDimension
man:+PetscDrawSPReset++PetscDrawSPReset++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSPReset.html#PetscDrawSPReset
man:+PetscDrawSPDestroy++PetscDrawSPDestroy++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSPDestroy.html#PetscDrawSPDestroy
man:+PetscDrawSPAddPoint++PetscDrawSPAddPoint++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSPAddPoint.html#PetscDrawSPAddPoint
man:+PetscDrawSPAddPoints++PetscDrawSPAddPoints++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSPAddPoints.html#PetscDrawSPAddPoints
man:+PetscDrawSPAddPointColorized++PetscDrawSPAddPointColorized++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSPAddPointColorized.html#PetscDrawSPAddPointColorized
man:+PetscDrawSPDraw++PetscDrawSPDraw++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSPDraw.html#PetscDrawSPDraw
man:+PetscDrawSPSave++PetscDrawSPSave++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSPSave.html#PetscDrawSPSave
man:+PetscDrawSPSetLimits++PetscDrawSPSetLimits++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSPSetLimits.html#PetscDrawSPSetLimits
man:+PetscDrawSPGetAxis++PetscDrawSPGetAxis++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSPGetAxis.html#PetscDrawSPGetAxis
man:+PetscDrawSPGetDraw++PetscDrawSPGetDraw++++man+https://petsc.org/release/manualpages/Draw/PetscDrawSPGetDraw.html#PetscDrawSPGetDraw
man:+PetscDrawBarCreate++PetscDrawBarCreate++++man+https://petsc.org/release/manualpages/Draw/PetscDrawBarCreate.html#PetscDrawBarCreate
man:+PetscDrawBarSetData++PetscDrawBarSetData++++man+https://petsc.org/release/manualpages/Draw/PetscDrawBarSetData.html#PetscDrawBarSetData
man:+PetscDrawBarDestroy++PetscDrawBarDestroy++++man+https://petsc.org/release/manualpages/Draw/PetscDrawBarDestroy.html#PetscDrawBarDestroy
man:+PetscDrawBarDraw++PetscDrawBarDraw++++man+https://petsc.org/release/manualpages/Draw/PetscDrawBarDraw.html#PetscDrawBarDraw
man:+PetscDrawBarSave++PetscDrawBarSave++++man+https://petsc.org/release/manualpages/Draw/PetscDrawBarSave.html#PetscDrawBarSave
man:+PetscDrawBarSetColor++PetscDrawBarSetColor++++man+https://petsc.org/release/manualpages/Draw/PetscDrawBarSetColor.html#PetscDrawBarSetColor
man:+PetscDrawBarSort++PetscDrawBarSort++++man+https://petsc.org/release/manualpages/Draw/PetscDrawBarSort.html#PetscDrawBarSort
man:+PetscDrawBarSetLimits++PetscDrawBarSetLimits++++man+https://petsc.org/release/manualpages/Draw/PetscDrawBarSetLimits.html#PetscDrawBarSetLimits
man:+PetscDrawBarGetAxis++PetscDrawBarGetAxis++++man+https://petsc.org/release/manualpages/Draw/PetscDrawBarGetAxis.html#PetscDrawBarGetAxis
man:+PetscDrawBarGetDraw++PetscDrawBarGetDraw++++man+https://petsc.org/release/manualpages/Draw/PetscDrawBarGetDraw.html#PetscDrawBarGetDraw
man:+PetscDrawBarSetFromOptions++PetscDrawBarSetFromOptions++++man+https://petsc.org/release/manualpages/Draw/PetscDrawBarSetFromOptions.html#PetscDrawBarSetFromOptions
man:+PetscDrawAxisCreate++PetscDrawAxisCreate++++man+https://petsc.org/release/manualpages/Draw/PetscDrawAxisCreate.html#PetscDrawAxisCreate
man:+PetscDrawAxisDestroy++PetscDrawAxisDestroy++++man+https://petsc.org/release/manualpages/Draw/PetscDrawAxisDestroy.html#PetscDrawAxisDestroy
man:+PetscDrawAxisSetColors++PetscDrawAxisSetColors++++man+https://petsc.org/release/manualpages/Draw/PetscDrawAxisSetColors.html#PetscDrawAxisSetColors
man:+PetscDrawAxisSetLabels++PetscDrawAxisSetLabels++++man+https://petsc.org/release/manualpages/Draw/PetscDrawAxisSetLabels.html#PetscDrawAxisSetLabels
man:+PetscDrawAxisSetLimits++PetscDrawAxisSetLimits++++man+https://petsc.org/release/manualpages/Draw/PetscDrawAxisSetLimits.html#PetscDrawAxisSetLimits
man:+PetscDrawAxisGetLimits++PetscDrawAxisGetLimits++++man+https://petsc.org/release/manualpages/Draw/PetscDrawAxisGetLimits.html#PetscDrawAxisGetLimits
man:+PetscDrawAxisSetHoldLimits++PetscDrawAxisSetHoldLimits++++man+https://petsc.org/release/manualpages/Draw/PetscDrawAxisSetHoldLimits.html#PetscDrawAxisSetHoldLimits
man:+PetscDrawAxisDraw++PetscDrawAxisDraw++++man+https://petsc.org/release/manualpages/Draw/PetscDrawAxisDraw.html#PetscDrawAxisDraw
man:+PetscDrawLGGetAxis++PetscDrawLGGetAxis++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGGetAxis.html#PetscDrawLGGetAxis
man:+PetscDrawLGGetDraw++PetscDrawLGGetDraw++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGGetDraw.html#PetscDrawLGGetDraw
man:+PetscDrawLGSPDraw++PetscDrawLGSPDraw++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGSPDraw.html#PetscDrawLGSPDraw
man:+PetscDrawLGCreate++PetscDrawLGCreate++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGCreate.html#PetscDrawLGCreate
man:+PetscDrawLGSetColors++PetscDrawLGSetColors++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGSetColors.html#PetscDrawLGSetColors
man:+PetscDrawLGSetLegend++PetscDrawLGSetLegend++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGSetLegend.html#PetscDrawLGSetLegend
man:+PetscDrawLGGetDimension++PetscDrawLGGetDimension++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGGetDimension.html#PetscDrawLGGetDimension
man:+PetscDrawLGSetDimension++PetscDrawLGSetDimension++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGSetDimension.html#PetscDrawLGSetDimension
man:+PetscDrawLGSetLimits++PetscDrawLGSetLimits++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGSetLimits.html#PetscDrawLGSetLimits
man:+PetscDrawLGReset++PetscDrawLGReset++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGReset.html#PetscDrawLGReset
man:+PetscDrawLGDestroy++PetscDrawLGDestroy++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGDestroy.html#PetscDrawLGDestroy
man:+PetscDrawLGSetUseMarkers++PetscDrawLGSetUseMarkers++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGSetUseMarkers.html#PetscDrawLGSetUseMarkers
man:+PetscDrawLGDraw++PetscDrawLGDraw++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGDraw.html#PetscDrawLGDraw
man:+PetscDrawLGSave++PetscDrawLGSave++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGSave.html#PetscDrawLGSave
man:+PetscDrawLGView++PetscDrawLGView++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGView.html#PetscDrawLGView
man:+PetscDrawLGSetOptionsPrefix++PetscDrawLGSetOptionsPrefix++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGSetOptionsPrefix.html#PetscDrawLGSetOptionsPrefix
man:+PetscDrawLGSetFromOptions++PetscDrawLGSetFromOptions++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGSetFromOptions.html#PetscDrawLGSetFromOptions
man:+PetscDrawLGAddCommonPoint++PetscDrawLGAddCommonPoint++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGAddCommonPoint.html#PetscDrawLGAddCommonPoint
man:+PetscDrawLGAddPoint++PetscDrawLGAddPoint++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGAddPoint.html#PetscDrawLGAddPoint
man:+PetscDrawLGAddPoints++PetscDrawLGAddPoints++++man+https://petsc.org/release/manualpages/Draw/PetscDrawLGAddPoints.html#PetscDrawLGAddPoints
man:+PetscDrawHGCreate++PetscDrawHGCreate++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGCreate.html#PetscDrawHGCreate
man:+PetscDrawHGSetNumberBins++PetscDrawHGSetNumberBins++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGSetNumberBins.html#PetscDrawHGSetNumberBins
man:+PetscDrawHGReset++PetscDrawHGReset++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGReset.html#PetscDrawHGReset
man:+PetscDrawHGDestroy++PetscDrawHGDestroy++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGDestroy.html#PetscDrawHGDestroy
man:+PetscDrawHGAddValue++PetscDrawHGAddValue++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGAddValue.html#PetscDrawHGAddValue
man:+PetscDrawHGAddWeightedValue++PetscDrawHGAddWeightedValue++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGAddWeightedValue.html#PetscDrawHGAddWeightedValue
man:+PetscDrawHGDraw++PetscDrawHGDraw++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGDraw.html#PetscDrawHGDraw
man:+PetscDrawHGSave++PetscDrawHGSave++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGSave.html#PetscDrawHGSave
man:+PetscDrawHGView++PetscDrawHGView++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGView.html#PetscDrawHGView
man:+PetscDrawHGSetColor++PetscDrawHGSetColor++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGSetColor.html#PetscDrawHGSetColor
man:+PetscDrawHGSetLimits++PetscDrawHGSetLimits++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGSetLimits.html#PetscDrawHGSetLimits
man:+PetscDrawHGCalcStats++PetscDrawHGCalcStats++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGCalcStats.html#PetscDrawHGCalcStats
man:+PetscDrawHGIntegerBins++PetscDrawHGIntegerBins++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGIntegerBins.html#PetscDrawHGIntegerBins
man:+PetscDrawHGGetAxis++PetscDrawHGGetAxis++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGGetAxis.html#PetscDrawHGGetAxis
man:+PetscDrawHGGetDraw++PetscDrawHGGetDraw++++man+https://petsc.org/release/manualpages/Draw/PetscDrawHGGetDraw.html#PetscDrawHGGetDraw
man:+PetscObjectGetType++PetscObjectGetType++++man+https://petsc.org/release/manualpages/Sys/PetscObjectGetType.html#PetscObjectGetType
man:+PetscObjectCopyFortranFunctionPointers++PetscObjectCopyFortranFunctionPointers++++man+https://petsc.org/release/manualpages/Sys/PetscObjectCopyFortranFunctionPointers.html#PetscObjectCopyFortranFunctionPointers
man:+PetscObjectSetFortranCallback++PetscObjectSetFortranCallback++++man+https://petsc.org/release/manualpages/Sys/PetscObjectSetFortranCallback.html#PetscObjectSetFortranCallback
man:+PetscObjectGetFortranCallback++PetscObjectGetFortranCallback++++man+https://petsc.org/release/manualpages/Sys/PetscObjectGetFortranCallback.html#PetscObjectGetFortranCallback
man:+PetscObjectsDump++PetscObjectsDump++++man+https://petsc.org/release/manualpages/Sys/PetscObjectsDump.html#PetscObjectsDump
man:+PetscObjectsView++PetscObjectsView++++man+https://petsc.org/release/manualpages/Sys/PetscObjectsView.html#PetscObjectsView
man:+PetscObjectsGetObject++PetscObjectsGetObject++++man+https://petsc.org/release/manualpages/Sys/PetscObjectsGetObject.html#PetscObjectsGetObject
man:+PetscObjectSetPrintedOptions++PetscObjectSetPrintedOptions++++man+https://petsc.org/release/manualpages/Sys/PetscObjectSetPrintedOptions.html#PetscObjectSetPrintedOptions
man:+PetscObjectInheritPrintedOptions++PetscObjectInheritPrintedOptions++++man+https://petsc.org/release/manualpages/Sys/PetscObjectInheritPrintedOptions.html#PetscObjectInheritPrintedOptions
man:+PetscObjectAddOptionsHandler++PetscObjectAddOptionsHandler++++man+https://petsc.org/release/manualpages/Sys/PetscObjectAddOptionsHandler.html#PetscObjectAddOptionsHandler
man:+PetscObjectProcessOptionsHandlers++PetscObjectProcessOptionsHandlers++++man+https://petsc.org/release/manualpages/Sys/PetscObjectProcessOptionsHandlers.html#PetscObjectProcessOptionsHandlers
man:+PetscObjectDestroyOptionsHandlers++PetscObjectDestroyOptionsHandlers++++man+https://petsc.org/release/manualpages/Sys/PetscObjectDestroyOptionsHandlers.html#PetscObjectDestroyOptionsHandlers
man:+PetscObjectReference++PetscObjectReference++++man+https://petsc.org/release/manualpages/Sys/PetscObjectReference.html#PetscObjectReference
man:+PetscObjectGetReference++PetscObjectGetReference++++man+https://petsc.org/release/manualpages/Sys/PetscObjectGetReference.html#PetscObjectGetReference
man:+PetscObjectDereference++PetscObjectDereference++++man+https://petsc.org/release/manualpages/Sys/PetscObjectDereference.html#PetscObjectDereference
man:+PetscObjectCompose++PetscObjectCompose++++man+https://petsc.org/release/manualpages/Sys/PetscObjectCompose.html#PetscObjectCompose
man:+PetscObjectQuery++PetscObjectQuery++++man+https://petsc.org/release/manualpages/Sys/PetscObjectQuery.html#PetscObjectQuery
man:+PetscObjectComposeFunction++PetscObjectComposeFunction++++man+https://petsc.org/release/manualpages/Sys/PetscObjectComposeFunction.html#PetscObjectComposeFunction
man:+PetscObjectQueryFunction++PetscObjectQueryFunction++++man+https://petsc.org/release/manualpages/Sys/PetscObjectQueryFunction.html#PetscObjectQueryFunction
man:+PetscObjectHasFunction++PetscObjectHasFunction++++man+https://petsc.org/release/manualpages/Sys/PetscObjectHasFunction.html#PetscObjectHasFunction
man:+PetscContainerGetPointer++PetscContainerGetPointer++++man+https://petsc.org/release/manualpages/Sys/PetscContainerGetPointer.html#PetscContainerGetPointer
man:+PetscContainerSetPointer++PetscContainerSetPointer++++man+https://petsc.org/release/manualpages/Sys/PetscContainerSetPointer.html#PetscContainerSetPointer
man:+PetscContainerDestroy++PetscContainerDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscContainerDestroy.html#PetscContainerDestroy
man:+PetscContainerSetCtxDestroy++PetscContainerSetCtxDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscContainerSetCtxDestroy.html#PetscContainerSetCtxDestroy
man:+PetscContainerSetUserDestroy++PetscContainerSetUserDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscContainerSetUserDestroy.html#PetscContainerSetUserDestroy
man:+PetscContainerCreate++PetscContainerCreate++++man+https://petsc.org/release/manualpages/Sys/PetscContainerCreate.html#PetscContainerCreate
man:+PetscObjectContainerCompose++PetscObjectContainerCompose++++man+https://petsc.org/release/manualpages/Sys/PetscObjectContainerCompose.html#PetscObjectContainerCompose
man:+PetscObjectContainerQuery++PetscObjectContainerQuery++++man+https://petsc.org/release/manualpages/Sys/PetscObjectContainerQuery.html#PetscObjectContainerQuery
man:+PetscObjectSetFromOptions++PetscObjectSetFromOptions++++man+https://petsc.org/release/manualpages/Sys/PetscObjectSetFromOptions.html#PetscObjectSetFromOptions
man:+PetscObjectSetUp++PetscObjectSetUp++++man+https://petsc.org/release/manualpages/Sys/PetscObjectSetUp.html#PetscObjectSetUp
man:+PetscObjectIsNull++PetscObjectIsNull++++man+https://petsc.org/release/manualpages/Sys/PetscObjectIsNull.html#PetscObjectIsNull
man:+PetscObjectCast++PetscObjectCast++++man+https://petsc.org/release/manualpages/Sys/PetscObjectCast.html#PetscObjectCast
man:+PetscObjectSpecificCast++PetscObjectSpecificCast++++man+https://petsc.org/release/manualpages/Sys/PetscObjectSpecificCast.html#PetscObjectSpecificCast
man:+PetscEnumCase++PetscEnumCase++++man+https://petsc.org/release/manualpages/Sys/PetscEnumCase.html#PetscEnumCase
man:+PetscObjectGetName++PetscObjectGetName++++man+https://petsc.org/release/manualpages/Sys/PetscObjectGetName.html#PetscObjectGetName
man:+PetscObjectDelayedDestroy++PetscObjectDelayedDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscObjectDelayedDestroy.html#PetscObjectDelayedDestroy
man:+PetscGarbageCleanup++PetscGarbageCleanup++++man+https://petsc.org/release/manualpages/Sys/PetscGarbageCleanup.html#PetscGarbageCleanup
man:+PetscObjectDestroy++PetscObjectDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscObjectDestroy.html#PetscObjectDestroy
man:+PetscObjectView++PetscObjectView++++man+https://petsc.org/release/manualpages/Sys/PetscObjectView.html#PetscObjectView
man:+PetscObjectViewFromOptions++PetscObjectViewFromOptions++++man+https://petsc.org/release/manualpages/Sys/PetscObjectViewFromOptions.html#PetscObjectViewFromOptions
man:+PetscObjectTypeCompare++PetscObjectTypeCompare++++man+https://petsc.org/release/manualpages/Sys/PetscObjectTypeCompare.html#PetscObjectTypeCompare
man:+PetscObjectObjectTypeCompare++PetscObjectObjectTypeCompare++++man+https://petsc.org/release/manualpages/Sys/PetscObjectObjectTypeCompare.html#PetscObjectObjectTypeCompare
man:+PetscObjectBaseTypeCompare++PetscObjectBaseTypeCompare++++man+https://petsc.org/release/manualpages/Sys/PetscObjectBaseTypeCompare.html#PetscObjectBaseTypeCompare
man:+PetscObjectTypeCompareAny++PetscObjectTypeCompareAny++++man+https://petsc.org/release/manualpages/Sys/PetscObjectTypeCompareAny.html#PetscObjectTypeCompareAny
man:+PetscObjectBaseTypeCompareAny++PetscObjectBaseTypeCompareAny++++man+https://petsc.org/release/manualpages/Sys/PetscObjectBaseTypeCompareAny.html#PetscObjectBaseTypeCompareAny
man:+PetscObjectRegisterDestroy++PetscObjectRegisterDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscObjectRegisterDestroy.html#PetscObjectRegisterDestroy
man:+PetscObjectRegisterDestroyAll++PetscObjectRegisterDestroyAll++++man+https://petsc.org/release/manualpages/Sys/PetscObjectRegisterDestroyAll.html#PetscObjectRegisterDestroyAll
man:+PetscRegisterFinalize++PetscRegisterFinalize++++man+https://petsc.org/release/manualpages/Sys/PetscRegisterFinalize.html#PetscRegisterFinalize
man:+PetscRegisterFinalizeAll++PetscRegisterFinalizeAll++++man+https://petsc.org/release/manualpages/Sys/PetscRegisterFinalizeAll.html#PetscRegisterFinalizeAll
man:+PetscHasExternalPackage++PetscHasExternalPackage++++man+https://petsc.org/release/manualpages/Sys/PetscHasExternalPackage.html#PetscHasExternalPackage
man:+PetscInitializeNoPointers++PetscInitializeNoPointers++++man+https://petsc.org/release/manualpages/Sys/PetscInitializeNoPointers.html#PetscInitializeNoPointers
man:+PetscInitialized++PetscInitialized++++man+https://petsc.org/release/manualpages/Sys/PetscInitialized.html#PetscInitialized
man:+PetscFinalized++PetscFinalized++++man+https://petsc.org/release/manualpages/Sys/PetscFinalized.html#PetscFinalized
man:+PetscMaxSum++PetscMaxSum++++man+https://petsc.org/release/manualpages/Sys/PetscMaxSum.html#PetscMaxSum
man:+PetscGetProgramName++PetscGetProgramName++++man+https://petsc.org/release/manualpages/Sys/PetscGetProgramName.html#PetscGetProgramName
man:+PetscGetArgs++PetscGetArgs++++man+https://petsc.org/release/manualpages/Sys/PetscGetArgs.html#PetscGetArgs
man:+PetscGetArguments++PetscGetArguments++++man+https://petsc.org/release/manualpages/Sys/PetscGetArguments.html#PetscGetArguments
man:+PetscFreeArguments++PetscFreeArguments++++man+https://petsc.org/release/manualpages/Sys/PetscFreeArguments.html#PetscFreeArguments
man:+PetscInitialize++PetscInitialize++++man+https://petsc.org/release/manualpages/Sys/PetscInitialize.html#PetscInitialize
man:+PetscFinalize++PetscFinalize++++man+https://petsc.org/release/manualpages/Sys/PetscFinalize.html#PetscFinalize
man:+PetscCtxDestroyDefault++PetscCtxDestroyDefault++++man+https://petsc.org/release/manualpages/Sys/PetscCtxDestroyDefault.html#PetscCtxDestroyDefault
man:+PetscObjectStateGet++PetscObjectStateGet++++man+https://petsc.org/release/manualpages/Sys/PetscObjectStateGet.html#PetscObjectStateGet
man:+PetscObjectStateSet++PetscObjectStateSet++++man+https://petsc.org/release/manualpages/Sys/PetscObjectStateSet.html#PetscObjectStateSet
man:+PetscObjectComposedDataRegister++PetscObjectComposedDataRegister++++man+https://petsc.org/release/manualpages/Sys/PetscObjectComposedDataRegister.html#PetscObjectComposedDataRegister
man:+PetscObjectGetId++PetscObjectGetId++++man+https://petsc.org/release/manualpages/Sys/PetscObjectGetId.html#PetscObjectGetId
man:+PetscObjectCompareId++PetscObjectCompareId++++man+https://petsc.org/release/manualpages/Sys/PetscObjectCompareId.html#PetscObjectCompareId
man:+PetscObjectGetOptions++PetscObjectGetOptions++++man+https://petsc.org/release/manualpages/Sys/PetscObjectGetOptions.html#PetscObjectGetOptions
man:+PetscObjectSetOptions++PetscObjectSetOptions++++man+https://petsc.org/release/manualpages/Sys/PetscObjectSetOptions.html#PetscObjectSetOptions
man:+PetscObjectSetOptionsPrefix++PetscObjectSetOptionsPrefix++++man+https://petsc.org/release/manualpages/Sys/PetscObjectSetOptionsPrefix.html#PetscObjectSetOptionsPrefix
man:+PetscObjectAppendOptionsPrefix++PetscObjectAppendOptionsPrefix++++man+https://petsc.org/release/manualpages/Sys/PetscObjectAppendOptionsPrefix.html#PetscObjectAppendOptionsPrefix
man:+PetscObjectGetOptionsPrefix++PetscObjectGetOptionsPrefix++++man+https://petsc.org/release/manualpages/Sys/PetscObjectGetOptionsPrefix.html#PetscObjectGetOptionsPrefix
man:+PetscObjectPrependOptionsPrefix++PetscObjectPrependOptionsPrefix++++man+https://petsc.org/release/manualpages/Sys/PetscObjectPrependOptionsPrefix.html#PetscObjectPrependOptionsPrefix
man:+PETSC_i++PETSC_i++++man+https://petsc.org/release/manualpages/Sys/PETSC_i.html#PETSC_i
man:+PetscEnd++PetscEnd++++man+https://petsc.org/release/manualpages/Sys/PetscEnd.html#PetscEnd
man:+PetscSetHelpVersionFunctions++PetscSetHelpVersionFunctions++++man+https://petsc.org/release/manualpages/Sys/PetscSetHelpVersionFunctions.html#PetscSetHelpVersionFunctions
man:+PetscObjectListRemoveReference++PetscObjectListRemoveReference++++man+https://petsc.org/release/manualpages/Sys/PetscObjectListRemoveReference.html#PetscObjectListRemoveReference
man:+PetscObjectListAdd++PetscObjectListAdd++++man+https://petsc.org/release/manualpages/Sys/PetscObjectListAdd.html#PetscObjectListAdd
man:+PetscObjectListDestroy++PetscObjectListDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscObjectListDestroy.html#PetscObjectListDestroy
man:+PetscObjectListFind++PetscObjectListFind++++man+https://petsc.org/release/manualpages/Sys/PetscObjectListFind.html#PetscObjectListFind
man:+PetscObjectListReverseFind++PetscObjectListReverseFind++++man+https://petsc.org/release/manualpages/Sys/PetscObjectListReverseFind.html#PetscObjectListReverseFind
man:+PetscObjectListDuplicate++PetscObjectListDuplicate++++man+https://petsc.org/release/manualpages/Sys/PetscObjectListDuplicate.html#PetscObjectListDuplicate
man:+PetscOptionsInsertStringYAML++PetscOptionsInsertStringYAML++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsInsertStringYAML.html#PetscOptionsInsertStringYAML
man:+PetscOptionsInsertFileYAML++PetscOptionsInsertFileYAML++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsInsertFileYAML.html#PetscOptionsInsertFileYAML
man:+PetscOptionsViewer++PetscOptionsViewer++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsViewer.html#PetscOptionsViewer
man:+PetscObjectComm++PetscObjectComm++++man+https://petsc.org/release/manualpages/Sys/PetscObjectComm.html#PetscObjectComm
man:+PetscObjectGetComm++PetscObjectGetComm++++man+https://petsc.org/release/manualpages/Sys/PetscObjectGetComm.html#PetscObjectGetComm
man:+PetscObjectGetTabLevel++PetscObjectGetTabLevel++++man+https://petsc.org/release/manualpages/Sys/PetscObjectGetTabLevel.html#PetscObjectGetTabLevel
man:+PetscObjectSetTabLevel++PetscObjectSetTabLevel++++man+https://petsc.org/release/manualpages/Sys/PetscObjectSetTabLevel.html#PetscObjectSetTabLevel
man:+PetscObjectIncrementTabLevel++PetscObjectIncrementTabLevel++++man+https://petsc.org/release/manualpages/Sys/PetscObjectIncrementTabLevel.html#PetscObjectIncrementTabLevel
man:+PetscInitializeFortran++PetscInitializeFortran++++man+https://petsc.org/release/manualpages/Sys/PetscInitializeFortran.html#PetscInitializeFortran
man:+PetscObjectGetNewTag++PetscObjectGetNewTag++++man+https://petsc.org/release/manualpages/Sys/PetscObjectGetNewTag.html#PetscObjectGetNewTag
man:+PetscCommGetNewTag++PetscCommGetNewTag++++man+https://petsc.org/release/manualpages/Sys/PetscCommGetNewTag.html#PetscCommGetNewTag
man:+PetscCommGetComm++PetscCommGetComm++++man+https://petsc.org/release/manualpages/Sys/PetscCommGetComm.html#PetscCommGetComm
man:+PetscCommRestoreComm++PetscCommRestoreComm++++man+https://petsc.org/release/manualpages/Sys/PetscCommRestoreComm.html#PetscCommRestoreComm
man:+PetscCommDuplicate++PetscCommDuplicate++++man+https://petsc.org/release/manualpages/Sys/PetscCommDuplicate.html#PetscCommDuplicate
man:+PetscCommDestroy++PetscCommDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscCommDestroy.html#PetscCommDestroy
man:+PetscObjectsListGetGlobalNumbering++PetscObjectsListGetGlobalNumbering++++man+https://petsc.org/release/manualpages/Sys/PetscObjectsListGetGlobalNumbering.html#PetscObjectsListGetGlobalNumbering
man:+PetscObjectGetClassId++PetscObjectGetClassId++++man+https://petsc.org/release/manualpages/Sys/PetscObjectGetClassId.html#PetscObjectGetClassId
man:+PetscObjectGetClassName++PetscObjectGetClassName++++man+https://petsc.org/release/manualpages/Sys/PetscObjectGetClassName.html#PetscObjectGetClassName
man:+PetscGetVersion++PetscGetVersion++++man+https://petsc.org/release/manualpages/Sys/PetscGetVersion.html#PetscGetVersion
man:+PetscGetVersionNumber++PetscGetVersionNumber++++man+https://petsc.org/release/manualpages/Sys/PetscGetVersionNumber.html#PetscGetVersionNumber
man:+PetscBLASSetNumThreads++PetscBLASSetNumThreads++++man+https://petsc.org/release/manualpages/Sys/PetscBLASSetNumThreads.html#PetscBLASSetNumThreads
man:+PetscBLASGetNumThreads++PetscBLASGetNumThreads++++man+https://petsc.org/release/manualpages/Sys/PetscBLASGetNumThreads.html#PetscBLASGetNumThreads
man:+PetscSubcommSetFromOptions++PetscSubcommSetFromOptions++++man+https://petsc.org/release/manualpages/Sys/PetscSubcommSetFromOptions.html#PetscSubcommSetFromOptions
man:+PetscSubcommSetOptionsPrefix++PetscSubcommSetOptionsPrefix++++man+https://petsc.org/release/manualpages/Sys/PetscSubcommSetOptionsPrefix.html#PetscSubcommSetOptionsPrefix
man:+PetscSubcommView++PetscSubcommView++++man+https://petsc.org/release/manualpages/Sys/PetscSubcommView.html#PetscSubcommView
man:+PetscSubcommSetNumber++PetscSubcommSetNumber++++man+https://petsc.org/release/manualpages/Sys/PetscSubcommSetNumber.html#PetscSubcommSetNumber
man:+PetscSubcommSetType++PetscSubcommSetType++++man+https://petsc.org/release/manualpages/Sys/PetscSubcommSetType.html#PetscSubcommSetType
man:+PetscSubcommSetTypeGeneral++PetscSubcommSetTypeGeneral++++man+https://petsc.org/release/manualpages/Sys/PetscSubcommSetTypeGeneral.html#PetscSubcommSetTypeGeneral
man:+PetscSubcommDestroy++PetscSubcommDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscSubcommDestroy.html#PetscSubcommDestroy
man:+PetscSubcommCreate++PetscSubcommCreate++++man+https://petsc.org/release/manualpages/Sys/PetscSubcommCreate.html#PetscSubcommCreate
man:+PetscSubcommGetParent++PetscSubcommGetParent++++man+https://petsc.org/release/manualpages/Sys/PetscSubcommGetParent.html#PetscSubcommGetParent
man:+PetscSubcommGetContiguousParent++PetscSubcommGetContiguousParent++++man+https://petsc.org/release/manualpages/Sys/PetscSubcommGetContiguousParent.html#PetscSubcommGetContiguousParent
man:+PetscSubcommGetChild++PetscSubcommGetChild++++man+https://petsc.org/release/manualpages/Sys/PetscSubcommGetChild.html#PetscSubcommGetChild
man:+PetscDeviceFinalizePackage++PetscDeviceFinalizePackage++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceFinalizePackage.html#PetscDeviceFinalizePackage
man:+PetscDeviceInitializePackage++PetscDeviceInitializePackage++++man+https://petsc.org/release/manualpages/Sys/PetscDeviceInitializePackage.html#PetscDeviceInitializePackage
man:+PetscGetMemType++PetscGetMemType++++man+https://petsc.org/release/manualpages/Sys/PetscGetMemType.html#PetscGetMemType
man:+PetscObjectSetName++PetscObjectSetName++++man+https://petsc.org/release/manualpages/Sys/PetscObjectSetName.html#PetscObjectSetName
man:+PetscObjectPrintClassNamePrefixType++PetscObjectPrintClassNamePrefixType++++man+https://petsc.org/release/manualpages/Sys/PetscObjectPrintClassNamePrefixType.html#PetscObjectPrintClassNamePrefixType
man:+PetscObjectName++PetscObjectName++++man+https://petsc.org/release/manualpages/Sys/PetscObjectName.html#PetscObjectName
man:+PetscFortranCallbackRegister++PetscFortranCallbackRegister++++man+https://petsc.org/release/manualpages/Sys/PetscFortranCallbackRegister.html#PetscFortranCallbackRegister
man:+PetscFortranCallbackGetSizes++PetscFortranCallbackGetSizes++++man+https://petsc.org/release/manualpages/Sys/PetscFortranCallbackGetSizes.html#PetscFortranCallbackGetSizes
man:+PetscOptionsCreate++PetscOptionsCreate++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsCreate.html#PetscOptionsCreate
man:+PetscOptionsDestroy++PetscOptionsDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsDestroy.html#PetscOptionsDestroy
man:+PetscOptionsPush++PetscOptionsPush++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsPush.html#PetscOptionsPush
man:+PetscOptionsPop++PetscOptionsPop++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsPop.html#PetscOptionsPop
man:+PetscOptionsValidKey++PetscOptionsValidKey++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsValidKey.html#PetscOptionsValidKey
man:+PetscOptionsInsertString++PetscOptionsInsertString++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsInsertString.html#PetscOptionsInsertString
man:+PetscOptionsInsertFile++PetscOptionsInsertFile++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsInsertFile.html#PetscOptionsInsertFile
man:+PetscOptionsInsertArgs++PetscOptionsInsertArgs++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsInsertArgs.html#PetscOptionsInsertArgs
man:+PetscOptionsInsert++PetscOptionsInsert++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsInsert.html#PetscOptionsInsert
man:+PetscOptionsView++PetscOptionsView++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsView.html#PetscOptionsView
man:+PetscOptionsPrefixPush++PetscOptionsPrefixPush++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsPrefixPush.html#PetscOptionsPrefixPush
man:+PetscOptionsPrefixPop++PetscOptionsPrefixPop++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsPrefixPop.html#PetscOptionsPrefixPop
man:+PetscOptionsClear++PetscOptionsClear++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsClear.html#PetscOptionsClear
man:+PetscOptionsSetAlias++PetscOptionsSetAlias++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsSetAlias.html#PetscOptionsSetAlias
man:+PetscOptionsSetValue++PetscOptionsSetValue++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsSetValue.html#PetscOptionsSetValue
man:+PetscOptionsClearValue++PetscOptionsClearValue++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsClearValue.html#PetscOptionsClearValue
man:+PetscOptionsFindPair++PetscOptionsFindPair++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsFindPair.html#PetscOptionsFindPair
man:+PetscOptionsReject++PetscOptionsReject++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsReject.html#PetscOptionsReject
man:+PetscOptionsHasHelp++PetscOptionsHasHelp++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsHasHelp.html#PetscOptionsHasHelp
man:+PetscOptionsHasName++PetscOptionsHasName++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsHasName.html#PetscOptionsHasName
man:+PetscOptionsGetAll++PetscOptionsGetAll++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetAll.html#PetscOptionsGetAll
man:+PetscOptionsUsed++PetscOptionsUsed++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsUsed.html#PetscOptionsUsed
man:+PetscOptionsAllUsed++PetscOptionsAllUsed++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsAllUsed.html#PetscOptionsAllUsed
man:+PetscOptionsLeft++PetscOptionsLeft++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsLeft.html#PetscOptionsLeft
man:+PetscOptionsLeftGet++PetscOptionsLeftGet++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsLeftGet.html#PetscOptionsLeftGet
man:+PetscOptionsLeftRestore++PetscOptionsLeftRestore++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsLeftRestore.html#PetscOptionsLeftRestore
man:+PetscOptionsMonitorDefault++PetscOptionsMonitorDefault++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsMonitorDefault.html#PetscOptionsMonitorDefault
man:+PetscOptionsMonitorSet++PetscOptionsMonitorSet++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsMonitorSet.html#PetscOptionsMonitorSet
man:+PetscOptionsGetBool++PetscOptionsGetBool++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetBool.html#PetscOptionsGetBool
man:+PetscOptionsGetBool3++PetscOptionsGetBool3++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetBool3.html#PetscOptionsGetBool3
man:+PetscOptionsGetEList++PetscOptionsGetEList++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetEList.html#PetscOptionsGetEList
man:+PetscOptionsGetEnum++PetscOptionsGetEnum++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetEnum.html#PetscOptionsGetEnum
man:+PetscOptionsGetInt++PetscOptionsGetInt++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetInt.html#PetscOptionsGetInt
man:+PetscOptionsGetMPIInt++PetscOptionsGetMPIInt++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetMPIInt.html#PetscOptionsGetMPIInt
man:+PetscOptionsGetReal++PetscOptionsGetReal++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetReal.html#PetscOptionsGetReal
man:+PetscOptionsGetScalar++PetscOptionsGetScalar++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetScalar.html#PetscOptionsGetScalar
man:+PetscOptionsGetString++PetscOptionsGetString++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetString.html#PetscOptionsGetString
man:+PetscOptionsGetBoolArray++PetscOptionsGetBoolArray++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetBoolArray.html#PetscOptionsGetBoolArray
man:+PetscOptionsGetEnumArray++PetscOptionsGetEnumArray++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetEnumArray.html#PetscOptionsGetEnumArray
man:+PetscOptionsGetIntArray++PetscOptionsGetIntArray++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetIntArray.html#PetscOptionsGetIntArray
man:+PetscOptionsGetRealArray++PetscOptionsGetRealArray++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetRealArray.html#PetscOptionsGetRealArray
man:+PetscOptionsGetScalarArray++PetscOptionsGetScalarArray++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetScalarArray.html#PetscOptionsGetScalarArray
man:+PetscOptionsGetStringArray++PetscOptionsGetStringArray++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetStringArray.html#PetscOptionsGetStringArray
man:+PetscOptionsDeprecated_Private++PetscOptionsDeprecated_Private++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsDeprecated_Private.html#PetscOptionsDeprecated_Private
man:+PetscDataTypeToMPIDataType++PetscDataTypeToMPIDataType++++man+https://petsc.org/release/manualpages/Sys/PetscDataTypeToMPIDataType.html#PetscDataTypeToMPIDataType
man:+PetscMPIDataTypeToPetscDataType++PetscMPIDataTypeToPetscDataType++++man+https://petsc.org/release/manualpages/Sys/PetscMPIDataTypeToPetscDataType.html#PetscMPIDataTypeToPetscDataType
man:+PetscDataTypeGetSize++PetscDataTypeGetSize++++man+https://petsc.org/release/manualpages/Sys/PetscDataTypeGetSize.html#PetscDataTypeGetSize
man:+PetscDataTypeFromString++PetscDataTypeFromString++++man+https://petsc.org/release/manualpages/Sys/PetscDataTypeFromString.html#PetscDataTypeFromString
man:+PetscIsCloseAtTol++PetscIsCloseAtTol++++man+https://petsc.org/release/manualpages/Sys/PetscIsCloseAtTol.html#PetscIsCloseAtTol
man:+PetscTimSort++PetscTimSort++++man+https://petsc.org/release/manualpages/Sys/PetscTimSort.html#PetscTimSort
man:+PetscTimSortWithArray++PetscTimSortWithArray++++man+https://petsc.org/release/manualpages/Sys/PetscTimSortWithArray.html#PetscTimSortWithArray
man:+PetscIntSortSemiOrdered++PetscIntSortSemiOrdered++++man+https://petsc.org/release/manualpages/Sys/PetscIntSortSemiOrdered.html#PetscIntSortSemiOrdered
man:+PetscIntSortSemiOrderedWithArray++PetscIntSortSemiOrderedWithArray++++man+https://petsc.org/release/manualpages/Sys/PetscIntSortSemiOrderedWithArray.html#PetscIntSortSemiOrderedWithArray
man:+PetscMPIIntSortSemiOrdered++PetscMPIIntSortSemiOrdered++++man+https://petsc.org/release/manualpages/Sys/PetscMPIIntSortSemiOrdered.html#PetscMPIIntSortSemiOrdered
man:+PetscMPIIntSortSemiOrderedWithArray++PetscMPIIntSortSemiOrderedWithArray++++man+https://petsc.org/release/manualpages/Sys/PetscMPIIntSortSemiOrderedWithArray.html#PetscMPIIntSortSemiOrderedWithArray
man:+PetscRealSortSemiOrdered++PetscRealSortSemiOrdered++++man+https://petsc.org/release/manualpages/Sys/PetscRealSortSemiOrdered.html#PetscRealSortSemiOrdered
man:+PetscRealSortSemiOrderedWithArrayInt++PetscRealSortSemiOrderedWithArrayInt++++man+https://petsc.org/release/manualpages/Sys/PetscRealSortSemiOrderedWithArrayInt.html#PetscRealSortSemiOrderedWithArrayInt
man:+PetscIsNormalReal++PetscIsNormalReal++++man+https://petsc.org/release/manualpages/Sys/PetscIsNormalReal.html#PetscIsNormalReal
man:+PetscIsInfReal++PetscIsInfReal++++man+https://petsc.org/release/manualpages/Sys/PetscIsInfReal.html#PetscIsInfReal
man:+PetscIsNanReal++PetscIsNanReal++++man+https://petsc.org/release/manualpages/Sys/PetscIsNanReal.html#PetscIsNanReal
man:+PetscLinearRegression++PetscLinearRegression++++man+https://petsc.org/release/manualpages/Sys/PetscLinearRegression.html#PetscLinearRegression
man:+PetscSortedInt++PetscSortedInt++++man+https://petsc.org/release/manualpages/Sys/PetscSortedInt.html#PetscSortedInt
man:+PetscSortedInt64++PetscSortedInt64++++man+https://petsc.org/release/manualpages/Sys/PetscSortedInt64.html#PetscSortedInt64
man:+PetscSortInt++PetscSortInt++++man+https://petsc.org/release/manualpages/Sys/PetscSortInt.html#PetscSortInt
man:+PetscSortInt64++PetscSortInt64++++man+https://petsc.org/release/manualpages/Sys/PetscSortInt64.html#PetscSortInt64
man:+PetscSortCount++PetscSortCount++++man+https://petsc.org/release/manualpages/Sys/PetscSortCount.html#PetscSortCount
man:+PetscSortReverseInt++PetscSortReverseInt++++man+https://petsc.org/release/manualpages/Sys/PetscSortReverseInt.html#PetscSortReverseInt
man:+PetscSortedRemoveDupsInt++PetscSortedRemoveDupsInt++++man+https://petsc.org/release/manualpages/Sys/PetscSortedRemoveDupsInt.html#PetscSortedRemoveDupsInt
man:+PetscSortedCheckDupsInt++PetscSortedCheckDupsInt++++man+https://petsc.org/release/manualpages/Sys/PetscSortedCheckDupsInt.html#PetscSortedCheckDupsInt
man:+PetscSortedCheckDupsCount++PetscSortedCheckDupsCount++++man+https://petsc.org/release/manualpages/Sys/PetscSortedCheckDupsCount.html#PetscSortedCheckDupsCount
man:+PetscSortRemoveDupsInt++PetscSortRemoveDupsInt++++man+https://petsc.org/release/manualpages/Sys/PetscSortRemoveDupsInt.html#PetscSortRemoveDupsInt
man:+PetscFindInt++PetscFindInt++++man+https://petsc.org/release/manualpages/Sys/PetscFindInt.html#PetscFindInt
man:+PetscFindCount++PetscFindCount++++man+https://petsc.org/release/manualpages/Sys/PetscFindCount.html#PetscFindCount
man:+PetscCheckDupsInt++PetscCheckDupsInt++++man+https://petsc.org/release/manualpages/Sys/PetscCheckDupsInt.html#PetscCheckDupsInt
man:+PetscFindMPIInt++PetscFindMPIInt++++man+https://petsc.org/release/manualpages/Sys/PetscFindMPIInt.html#PetscFindMPIInt
man:+PetscSortIntWithArray++PetscSortIntWithArray++++man+https://petsc.org/release/manualpages/Sys/PetscSortIntWithArray.html#PetscSortIntWithArray
man:+PetscSortIntWithArrayPair++PetscSortIntWithArrayPair++++man+https://petsc.org/release/manualpages/Sys/PetscSortIntWithArrayPair.html#PetscSortIntWithArrayPair
man:+PetscSortIntWithMPIIntArray++PetscSortIntWithMPIIntArray++++man+https://petsc.org/release/manualpages/Sys/PetscSortIntWithMPIIntArray.html#PetscSortIntWithMPIIntArray
man:+PetscSortIntWithCountArray++PetscSortIntWithCountArray++++man+https://petsc.org/release/manualpages/Sys/PetscSortIntWithCountArray.html#PetscSortIntWithCountArray
man:+PetscSortIntWithIntCountArrayPair++PetscSortIntWithIntCountArrayPair++++man+https://petsc.org/release/manualpages/Sys/PetscSortIntWithIntCountArrayPair.html#PetscSortIntWithIntCountArrayPair
man:+PetscSortedMPIInt++PetscSortedMPIInt++++man+https://petsc.org/release/manualpages/Sys/PetscSortedMPIInt.html#PetscSortedMPIInt
man:+PetscSortMPIInt++PetscSortMPIInt++++man+https://petsc.org/release/manualpages/Sys/PetscSortMPIInt.html#PetscSortMPIInt
man:+PetscSortRemoveDupsMPIInt++PetscSortRemoveDupsMPIInt++++man+https://petsc.org/release/manualpages/Sys/PetscSortRemoveDupsMPIInt.html#PetscSortRemoveDupsMPIInt
man:+PetscSortMPIIntWithArray++PetscSortMPIIntWithArray++++man+https://petsc.org/release/manualpages/Sys/PetscSortMPIIntWithArray.html#PetscSortMPIIntWithArray
man:+PetscSortMPIIntWithIntArray++PetscSortMPIIntWithIntArray++++man+https://petsc.org/release/manualpages/Sys/PetscSortMPIIntWithIntArray.html#PetscSortMPIIntWithIntArray
man:+PetscSortIntWithScalarArray++PetscSortIntWithScalarArray++++man+https://petsc.org/release/manualpages/Sys/PetscSortIntWithScalarArray.html#PetscSortIntWithScalarArray
man:+PetscSortIntWithDataArray++PetscSortIntWithDataArray++++man+https://petsc.org/release/manualpages/Sys/PetscSortIntWithDataArray.html#PetscSortIntWithDataArray
man:+PetscMergeIntArray++PetscMergeIntArray++++man+https://petsc.org/release/manualpages/Sys/PetscMergeIntArray.html#PetscMergeIntArray
man:+PetscMergeIntArrayPair++PetscMergeIntArrayPair++++man+https://petsc.org/release/manualpages/Sys/PetscMergeIntArrayPair.html#PetscMergeIntArrayPair
man:+PetscMergeMPIIntArray++PetscMergeMPIIntArray++++man+https://petsc.org/release/manualpages/Sys/PetscMergeMPIIntArray.html#PetscMergeMPIIntArray
man:+PetscProcessTree++PetscProcessTree++++man+https://petsc.org/release/manualpages/Sys/PetscProcessTree.html#PetscProcessTree
man:+PetscParallelSortedInt++PetscParallelSortedInt++++man+https://petsc.org/release/manualpages/Sys/PetscParallelSortedInt.html#PetscParallelSortedInt
man:+PetscCommBuildTwoSidedSetType++PetscCommBuildTwoSidedSetType++++man+https://petsc.org/release/manualpages/Sys/PetscCommBuildTwoSidedSetType.html#PetscCommBuildTwoSidedSetType
man:+PetscCommBuildTwoSidedGetType++PetscCommBuildTwoSidedGetType++++man+https://petsc.org/release/manualpages/Sys/PetscCommBuildTwoSidedGetType.html#PetscCommBuildTwoSidedGetType
man:+PetscCommBuildTwoSided++PetscCommBuildTwoSided++++man+https://petsc.org/release/manualpages/Sys/PetscCommBuildTwoSided.html#PetscCommBuildTwoSided
man:+PetscCommBuildTwoSidedF++PetscCommBuildTwoSidedF++++man+https://petsc.org/release/manualpages/Sys/PetscCommBuildTwoSidedF.html#PetscCommBuildTwoSidedF
man:+PetscCommBuildTwoSidedFReq++PetscCommBuildTwoSidedFReq++++man+https://petsc.org/release/manualpages/Sys/PetscCommBuildTwoSidedFReq.html#PetscCommBuildTwoSidedFReq
man:+PetscSplitOwnershipBlock++PetscSplitOwnershipBlock++++man+https://petsc.org/release/manualpages/Sys/PetscSplitOwnershipBlock.html#PetscSplitOwnershipBlock
man:+PetscSplitOwnership++PetscSplitOwnership++++man+https://petsc.org/release/manualpages/Sys/PetscSplitOwnership.html#PetscSplitOwnership
man:+PetscSplitOwnershipEqual++PetscSplitOwnershipEqual++++man+https://petsc.org/release/manualpages/Sys/PetscSplitOwnershipEqual.html#PetscSplitOwnershipEqual
man:+PetscStrToArray++PetscStrToArray++++man+https://petsc.org/release/manualpages/Sys/PetscStrToArray.html#PetscStrToArray
man:+PetscStrToArrayDestroy++PetscStrToArrayDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscStrToArrayDestroy.html#PetscStrToArrayDestroy
man:+PetscStrArrayallocpy++PetscStrArrayallocpy++++man+https://petsc.org/release/manualpages/Sys/PetscStrArrayallocpy.html#PetscStrArrayallocpy
man:+PetscStrArrayDestroy++PetscStrArrayDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscStrArrayDestroy.html#PetscStrArrayDestroy
man:+PetscStrNArrayallocpy++PetscStrNArrayallocpy++++man+https://petsc.org/release/manualpages/Sys/PetscStrNArrayallocpy.html#PetscStrNArrayallocpy
man:+PetscStrNArrayDestroy++PetscStrNArrayDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscStrNArrayDestroy.html#PetscStrNArrayDestroy
man:+PetscBasename++PetscBasename++++man+https://petsc.org/release/manualpages/Sys/PetscBasename.html#PetscBasename
man:+PetscStrcasecmp++PetscStrcasecmp++++man+https://petsc.org/release/manualpages/Sys/PetscStrcasecmp.html#PetscStrcasecmp
man:+PetscStrendswithwhich++PetscStrendswithwhich++++man+https://petsc.org/release/manualpages/Sys/PetscStrendswithwhich.html#PetscStrendswithwhich
man:+PetscTokenFind++PetscTokenFind++++man+https://petsc.org/release/manualpages/Sys/PetscTokenFind.html#PetscTokenFind
man:+PetscTokenCreate++PetscTokenCreate++++man+https://petsc.org/release/manualpages/Sys/PetscTokenCreate.html#PetscTokenCreate
man:+PetscTokenDestroy++PetscTokenDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscTokenDestroy.html#PetscTokenDestroy
man:+PetscStrInList++PetscStrInList++++man+https://petsc.org/release/manualpages/Sys/PetscStrInList.html#PetscStrInList
man:+PetscGetPetscDir++PetscGetPetscDir++++man+https://petsc.org/release/manualpages/Sys/PetscGetPetscDir.html#PetscGetPetscDir
man:+PetscStrreplace++PetscStrreplace++++man+https://petsc.org/release/manualpages/Sys/PetscStrreplace.html#PetscStrreplace
man:+PetscStrcmpAny++PetscStrcmpAny++++man+https://petsc.org/release/manualpages/Sys/PetscStrcmpAny.html#PetscStrcmpAny
man:+PetscEListFind++PetscEListFind++++man+https://petsc.org/release/manualpages/Sys/PetscEListFind.html#PetscEListFind
man:+PetscEnumFind++PetscEnumFind++++man+https://petsc.org/release/manualpages/Sys/PetscEnumFind.html#PetscEnumFind
man:+PetscCIFilename++PetscCIFilename++++man+https://petsc.org/release/manualpages/Sys/PetscCIFilename.html#PetscCIFilename
man:+PetscCILinenumber++PetscCILinenumber++++man+https://petsc.org/release/manualpages/Sys/PetscCILinenumber.html#PetscCILinenumber
man:+PetscStrcat++PetscStrcat++++man+https://petsc.org/release/manualpages/Sys/PetscStrcat.html#PetscStrcat
man:+PetscStrcpy++PetscStrcpy++++man+https://petsc.org/release/manualpages/Sys/PetscStrcpy.html#PetscStrcpy
man:+PetscGetArchType++PetscGetArchType++++man+https://petsc.org/release/manualpages/Sys/PetscGetArchType.html#PetscGetArchType
man:+PetscOptionsGetenv++PetscOptionsGetenv++++man+https://petsc.org/release/manualpages/Sys/PetscOptionsGetenv.html#PetscOptionsGetenv
man:+PetscGetDisplay++PetscGetDisplay++++man+https://petsc.org/release/manualpages/Sys/PetscGetDisplay.html#PetscGetDisplay
man:+PetscGetHostName++PetscGetHostName++++man+https://petsc.org/release/manualpages/Sys/PetscGetHostName.html#PetscGetHostName
man:+PetscSortedReal++PetscSortedReal++++man+https://petsc.org/release/manualpages/Sys/PetscSortedReal.html#PetscSortedReal
man:+PetscSortReal++PetscSortReal++++man+https://petsc.org/release/manualpages/Sys/PetscSortReal.html#PetscSortReal
man:+PetscSortRealWithArrayInt++PetscSortRealWithArrayInt++++man+https://petsc.org/release/manualpages/Sys/PetscSortRealWithArrayInt.html#PetscSortRealWithArrayInt
man:+PetscFindReal++PetscFindReal++++man+https://petsc.org/release/manualpages/Sys/PetscFindReal.html#PetscFindReal
man:+PetscSortRemoveDupsReal++PetscSortRemoveDupsReal++++man+https://petsc.org/release/manualpages/Sys/PetscSortRemoveDupsReal.html#PetscSortRemoveDupsReal
man:+PetscSortSplit++PetscSortSplit++++man+https://petsc.org/release/manualpages/Sys/PetscSortSplit.html#PetscSortSplit
man:+PetscSortSplitReal++PetscSortSplitReal++++man+https://petsc.org/release/manualpages/Sys/PetscSortSplitReal.html#PetscSortSplitReal
man:+PetscGatherNumberOfMessages++PetscGatherNumberOfMessages++++man+https://petsc.org/release/manualpages/Sys/PetscGatherNumberOfMessages.html#PetscGatherNumberOfMessages
man:+PetscGatherMessageLengths++PetscGatherMessageLengths++++man+https://petsc.org/release/manualpages/Sys/PetscGatherMessageLengths.html#PetscGatherMessageLengths
man:+PetscGatherMessageLengths2++PetscGatherMessageLengths2++++man+https://petsc.org/release/manualpages/Sys/PetscGatherMessageLengths2.html#PetscGatherMessageLengths2
man:+PetscShmgetAddressesFinalize++PetscShmgetAddressesFinalize++++man+https://petsc.org/release/manualpages/Sys/PetscShmgetAddressesFinalize.html#PetscShmgetAddressesFinalize
man:+PetscShmgetMapAddresses++PetscShmgetMapAddresses++++man+https://petsc.org/release/manualpages/Sys/PetscShmgetMapAddresses.html#PetscShmgetMapAddresses
man:+PetscShmgetUnmapAddresses++PetscShmgetUnmapAddresses++++man+https://petsc.org/release/manualpages/Sys/PetscShmgetUnmapAddresses.html#PetscShmgetUnmapAddresses
man:+PetscShmgetAllocateArray++PetscShmgetAllocateArray++++man+https://petsc.org/release/manualpages/Sys/PetscShmgetAllocateArray.html#PetscShmgetAllocateArray
man:+PetscShmgetDeallocateArray++PetscShmgetDeallocateArray++++man+https://petsc.org/release/manualpages/Sys/PetscShmgetDeallocateArray.html#PetscShmgetDeallocateArray
man:+PetscMPIDump++PetscMPIDump++++man+https://petsc.org/release/manualpages/Sys/PetscMPIDump.html#PetscMPIDump
man:+PetscSegBufferCreate++PetscSegBufferCreate++++man+https://petsc.org/release/manualpages/Sys/PetscSegBufferCreate.html#PetscSegBufferCreate
man:+PetscSegBufferGet++PetscSegBufferGet++++man+https://petsc.org/release/manualpages/Sys/PetscSegBufferGet.html#PetscSegBufferGet
man:+PetscSegBufferDestroy++PetscSegBufferDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscSegBufferDestroy.html#PetscSegBufferDestroy
man:+PetscSegBufferExtractTo++PetscSegBufferExtractTo++++man+https://petsc.org/release/manualpages/Sys/PetscSegBufferExtractTo.html#PetscSegBufferExtractTo
man:+PetscSegBufferExtractAlloc++PetscSegBufferExtractAlloc++++man+https://petsc.org/release/manualpages/Sys/PetscSegBufferExtractAlloc.html#PetscSegBufferExtractAlloc
man:+PetscSegBufferExtractInPlace++PetscSegBufferExtractInPlace++++man+https://petsc.org/release/manualpages/Sys/PetscSegBufferExtractInPlace.html#PetscSegBufferExtractInPlace
man:+PetscSegBufferGetSize++PetscSegBufferGetSize++++man+https://petsc.org/release/manualpages/Sys/PetscSegBufferGetSize.html#PetscSegBufferGetSize
man:+PetscSegBufferUnuse++PetscSegBufferUnuse++++man+https://petsc.org/release/manualpages/Sys/PetscSegBufferUnuse.html#PetscSegBufferUnuse
man:+PetscSortIntWithPermutation++PetscSortIntWithPermutation++++man+https://petsc.org/release/manualpages/Sys/PetscSortIntWithPermutation.html#PetscSortIntWithPermutation
man:+PetscSortRealWithPermutation++PetscSortRealWithPermutation++++man+https://petsc.org/release/manualpages/Sys/PetscSortRealWithPermutation.html#PetscSortRealWithPermutation
man:+PetscSortStrWithPermutation++PetscSortStrWithPermutation++++man+https://petsc.org/release/manualpages/Sys/PetscSortStrWithPermutation.html#PetscSortStrWithPermutation
man:+PetscSleep++PetscSleep++++man+https://petsc.org/release/manualpages/Sys/PetscSleep.html#PetscSleep
man:+PetscEqualReal++PetscEqualReal++++man+https://petsc.org/release/manualpages/Sys/PetscEqualReal.html#PetscEqualReal
man:+PetscEqualScalar++PetscEqualScalar++++man+https://petsc.org/release/manualpages/Sys/PetscEqualScalar.html#PetscEqualScalar
man:+PetscBarrier++PetscBarrier++++man+https://petsc.org/release/manualpages/Sys/PetscBarrier.html#PetscBarrier
man:+PetscSequentialPhaseBegin++PetscSequentialPhaseBegin++++man+https://petsc.org/release/manualpages/Sys/PetscSequentialPhaseBegin.html#PetscSequentialPhaseBegin
man:+PetscSequentialPhaseEnd++PetscSequentialPhaseEnd++++man+https://petsc.org/release/manualpages/Sys/PetscSequentialPhaseEnd.html#PetscSequentialPhaseEnd
man:+PetscGlobalMinMaxInt++PetscGlobalMinMaxInt++++man+https://petsc.org/release/manualpages/Sys/PetscGlobalMinMaxInt.html#PetscGlobalMinMaxInt
man:+PetscGlobalMinMaxReal++PetscGlobalMinMaxReal++++man+https://petsc.org/release/manualpages/Sys/PetscGlobalMinMaxReal.html#PetscGlobalMinMaxReal
man:+PetscShmCommGet++PetscShmCommGet++++man+https://petsc.org/release/manualpages/Sys/PetscShmCommGet.html#PetscShmCommGet
man:+PetscShmCommGlobalToLocal++PetscShmCommGlobalToLocal++++man+https://petsc.org/release/manualpages/Sys/PetscShmCommGlobalToLocal.html#PetscShmCommGlobalToLocal
man:+PetscShmCommLocalToGlobal++PetscShmCommLocalToGlobal++++man+https://petsc.org/release/manualpages/Sys/PetscShmCommLocalToGlobal.html#PetscShmCommLocalToGlobal
man:+PetscShmCommGetMpiShmComm++PetscShmCommGetMpiShmComm++++man+https://petsc.org/release/manualpages/Sys/PetscShmCommGetMpiShmComm.html#PetscShmCommGetMpiShmComm
man:+PetscMemcmp++PetscMemcmp++++man+https://petsc.org/release/manualpages/Sys/PetscMemcmp.html#PetscMemcmp
man:+PetscProcessPlacementView++PetscProcessPlacementView++++man+https://petsc.org/release/manualpages/Sys/PetscProcessPlacementView.html#PetscProcessPlacementView
man:+PetscSSEIsEnabled++PetscSSEIsEnabled++++man+https://petsc.org/release/manualpages/Sys/PetscSSEIsEnabled.html#PetscSSEIsEnabled
man:+PetscGetUserName++PetscGetUserName++++man+https://petsc.org/release/manualpages/Sys/PetscGetUserName.html#PetscGetUserName
man:+PetscOmpCtrlCreate++PetscOmpCtrlCreate++++man+https://petsc.org/release/manualpages/Sys/PetscOmpCtrlCreate.html#PetscOmpCtrlCreate
man:+PetscOmpCtrlDestroy++PetscOmpCtrlDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscOmpCtrlDestroy.html#PetscOmpCtrlDestroy
man:+PetscOmpCtrlGetOmpComms++PetscOmpCtrlGetOmpComms++++man+https://petsc.org/release/manualpages/Sys/PetscOmpCtrlGetOmpComms.html#PetscOmpCtrlGetOmpComms
man:+PetscOmpCtrlBarrier++PetscOmpCtrlBarrier++++man+https://petsc.org/release/manualpages/Sys/PetscOmpCtrlBarrier.html#PetscOmpCtrlBarrier
man:+PetscOmpCtrlOmpRegionOnMasterBegin++PetscOmpCtrlOmpRegionOnMasterBegin++++man+https://petsc.org/release/manualpages/Sys/PetscOmpCtrlOmpRegionOnMasterBegin.html#PetscOmpCtrlOmpRegionOnMasterBegin
man:+PetscOmpCtrlOmpRegionOnMasterEnd++PetscOmpCtrlOmpRegionOnMasterEnd++++man+https://petsc.org/release/manualpages/Sys/PetscOmpCtrlOmpRegionOnMasterEnd.html#PetscOmpCtrlOmpRegionOnMasterEnd
man:+PetscGetDate++PetscGetDate++++man+https://petsc.org/release/manualpages/Sys/PetscGetDate.html#PetscGetDate
man:+PetscGetCPUTime++PetscGetCPUTime++++man+https://petsc.org/release/manualpages/Sys/PetscGetCPUTime.html#PetscGetCPUTime
man:+PetscInfoEnabled++PetscInfoEnabled++++man+https://petsc.org/release/manualpages/Log/PetscInfoEnabled.html#PetscInfoEnabled
man:+PetscInfoAllow++PetscInfoAllow++++man+https://petsc.org/release/manualpages/Log/PetscInfoAllow.html#PetscInfoAllow
man:+PetscInfoSetFile++PetscInfoSetFile++++man+https://petsc.org/release/manualpages/Log/PetscInfoSetFile.html#PetscInfoSetFile
man:+PetscInfoGetFile++PetscInfoGetFile++++man+https://petsc.org/release/manualpages/Log/PetscInfoGetFile.html#PetscInfoGetFile
man:+PetscInfoSetClasses++PetscInfoSetClasses++++man+https://petsc.org/release/manualpages/Log/PetscInfoSetClasses.html#PetscInfoSetClasses
man:+PetscInfoGetClass++PetscInfoGetClass++++man+https://petsc.org/release/manualpages/Log/PetscInfoGetClass.html#PetscInfoGetClass
man:+PetscInfoGetInfo++PetscInfoGetInfo++++man+https://petsc.org/release/manualpages/Log/PetscInfoGetInfo.html#PetscInfoGetInfo
man:+PetscInfoProcessClass++PetscInfoProcessClass++++man+https://petsc.org/release/manualpages/Log/PetscInfoProcessClass.html#PetscInfoProcessClass
man:+PetscInfoSetFilterCommSelf++PetscInfoSetFilterCommSelf++++man+https://petsc.org/release/manualpages/Log/PetscInfoSetFilterCommSelf.html#PetscInfoSetFilterCommSelf
man:+PetscInfoSetFromOptions++PetscInfoSetFromOptions++++man+https://petsc.org/release/manualpages/Log/PetscInfoSetFromOptions.html#PetscInfoSetFromOptions
man:+PetscInfoDestroy++PetscInfoDestroy++++man+https://petsc.org/release/manualpages/Log/PetscInfoDestroy.html#PetscInfoDestroy
man:+PetscInfoDeactivateClass++PetscInfoDeactivateClass++++man+https://petsc.org/release/manualpages/Log/PetscInfoDeactivateClass.html#PetscInfoDeactivateClass
man:+PetscInfoActivateClass++PetscInfoActivateClass++++man+https://petsc.org/release/manualpages/Log/PetscInfoActivateClass.html#PetscInfoActivateClass
man:+PetscInfo++PetscInfo++++man+https://petsc.org/release/manualpages/Log/PetscInfo.html#PetscInfo
man:+PetscDLOpen++PetscDLOpen++++man+https://petsc.org/release/manualpages/Sys/PetscDLOpen.html#PetscDLOpen
man:+PetscDLClose++PetscDLClose++++man+https://petsc.org/release/manualpages/Sys/PetscDLClose.html#PetscDLClose
man:+PetscDLSym++PetscDLSym++++man+https://petsc.org/release/manualpages/Sys/PetscDLSym.html#PetscDLSym
man:+PetscDLAddr++PetscDLAddr++++man+https://petsc.org/release/manualpages/Sys/PetscDLAddr.html#PetscDLAddr
man:+PetscFunctionListAdd++PetscFunctionListAdd++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionListAdd.html#PetscFunctionListAdd
man:+PetscFunctionListDestroy++PetscFunctionListDestroy++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionListDestroy.html#PetscFunctionListDestroy
man:+PetscFunctionListClear++PetscFunctionListClear++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionListClear.html#PetscFunctionListClear
man:+PetscFunctionListPrintNonEmpty++PetscFunctionListPrintNonEmpty++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionListPrintNonEmpty.html#PetscFunctionListPrintNonEmpty
man:+PetscFunctionListFind++PetscFunctionListFind++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionListFind.html#PetscFunctionListFind
man:+PetscFunctionListView++PetscFunctionListView++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionListView.html#PetscFunctionListView
man:+PetscFunctionListGet++PetscFunctionListGet++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionListGet.html#PetscFunctionListGet
man:+PetscFunctionListPrintTypes++PetscFunctionListPrintTypes++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionListPrintTypes.html#PetscFunctionListPrintTypes
man:+PetscFunctionListDuplicate++PetscFunctionListDuplicate++++man+https://petsc.org/release/manualpages/Sys/PetscFunctionListDuplicate.html#PetscFunctionListDuplicate
man:+PetscDLLibraryRetrieve++PetscDLLibraryRetrieve++++man+https://petsc.org/release/manualpages/Sys/PetscDLLibraryRetrieve.html#PetscDLLibraryRetrieve
man:+PetscDLLibraryOpen++PetscDLLibraryOpen++++man+https://petsc.org/release/manualpages/Sys/PetscDLLibraryOpen.html#PetscDLLibraryOpen
man:+PetscDLLibrarySym++PetscDLLibrarySym++++man+https://petsc.org/release/manualpages/Sys/PetscDLLibrarySym.html#PetscDLLibrarySym
man:+PetscDLLibraryAppend++PetscDLLibraryAppend++++man+https://petsc.org/release/manualpages/Sys/PetscDLLibraryAppend.html#PetscDLLibraryAppend
man:+PetscDLLibraryPrepend++PetscDLLibraryPrepend++++man+https://petsc.org/release/manualpages/Sys/PetscDLLibraryPrepend.html#PetscDLLibraryPrepend
man:+PetscDLLibraryClose++PetscDLLibraryClose++++man+https://petsc.org/release/manualpages/Sys/PetscDLLibraryClose.html#PetscDLLibraryClose
man:+PetscStackSAWsGrantAccess++PetscStackSAWsGrantAccess++++man+https://petsc.org/release/manualpages/Sys/PetscStackSAWsGrantAccess.html#PetscStackSAWsGrantAccess
man:+PetscStackSAWsTakeAccess++PetscStackSAWsTakeAccess++++man+https://petsc.org/release/manualpages/Sys/PetscStackSAWsTakeAccess.html#PetscStackSAWsTakeAccess
man:+PetscIgnoreErrorHandler++PetscIgnoreErrorHandler++++man+https://petsc.org/release/manualpages/Sys/PetscIgnoreErrorHandler.html#PetscIgnoreErrorHandler
man:+PetscTraceBackErrorHandler++PetscTraceBackErrorHandler++++man+https://petsc.org/release/manualpages/Sys/PetscTraceBackErrorHandler.html#PetscTraceBackErrorHandler
man:+PetscFPTrapPush++PetscFPTrapPush++++man+https://petsc.org/release/manualpages/Sys/PetscFPTrapPush.html#PetscFPTrapPush
man:+PetscFPTrapPop++PetscFPTrapPop++++man+https://petsc.org/release/manualpages/Sys/PetscFPTrapPop.html#PetscFPTrapPop
man:+PetscSetFPTrap++PetscSetFPTrap++++man+https://petsc.org/release/manualpages/Sys/PetscSetFPTrap.html#PetscSetFPTrap
man:+PetscDetermineInitialFPTrap++PetscDetermineInitialFPTrap++++man+https://petsc.org/release/manualpages/Sys/PetscDetermineInitialFPTrap.html#PetscDetermineInitialFPTrap
man:+PetscCheckPointerSetIntensity++PetscCheckPointerSetIntensity++++man+https://petsc.org/release/manualpages/Sys/PetscCheckPointerSetIntensity.html#PetscCheckPointerSetIntensity
man:+PetscSignalSegvCheckPointerOrMpi++PetscSignalSegvCheckPointerOrMpi++++man+https://petsc.org/release/manualpages/Sys/PetscSignalSegvCheckPointerOrMpi.html#PetscSignalSegvCheckPointerOrMpi
man:+PetscCheckPointer++PetscCheckPointer++++man+https://petsc.org/release/manualpages/Sys/PetscCheckPointer.html#PetscCheckPointer
man:+PetscSetDebugTerminal++PetscSetDebugTerminal++++man+https://petsc.org/release/manualpages/Sys/PetscSetDebugTerminal.html#PetscSetDebugTerminal
man:+PetscSetDebugger++PetscSetDebugger++++man+https://petsc.org/release/manualpages/Sys/PetscSetDebugger.html#PetscSetDebugger
man:+PetscSetDefaultDebugger++PetscSetDefaultDebugger++++man+https://petsc.org/release/manualpages/Sys/PetscSetDefaultDebugger.html#PetscSetDefaultDebugger
man:+PetscSetDebuggerFromString++PetscSetDebuggerFromString++++man+https://petsc.org/release/manualpages/Sys/PetscSetDebuggerFromString.html#PetscSetDebuggerFromString
man:+PetscWaitOnError++PetscWaitOnError++++man+https://petsc.org/release/manualpages/Sys/PetscWaitOnError.html#PetscWaitOnError
man:+PetscAttachDebugger++PetscAttachDebugger++++man+https://petsc.org/release/manualpages/Sys/PetscAttachDebugger.html#PetscAttachDebugger
man:+PetscAttachDebuggerErrorHandler++PetscAttachDebuggerErrorHandler++++man+https://petsc.org/release/manualpages/Sys/PetscAttachDebuggerErrorHandler.html#PetscAttachDebuggerErrorHandler
man:+PetscStopForDebugger++PetscStopForDebugger++++man+https://petsc.org/release/manualpages/Sys/PetscStopForDebugger.html#PetscStopForDebugger
man:+PetscAbortErrorHandler++PetscAbortErrorHandler++++man+https://petsc.org/release/manualpages/Sys/PetscAbortErrorHandler.html#PetscAbortErrorHandler
man:+PetscEmacsClientErrorHandler++PetscEmacsClientErrorHandler++++man+https://petsc.org/release/manualpages/Sys/PetscEmacsClientErrorHandler.html#PetscEmacsClientErrorHandler
man:+PetscPushErrorHandler++PetscPushErrorHandler++++man+https://petsc.org/release/manualpages/Sys/PetscPushErrorHandler.html#PetscPushErrorHandler
man:+PetscPopErrorHandler++PetscPopErrorHandler++++man+https://petsc.org/release/manualpages/Sys/PetscPopErrorHandler.html#PetscPopErrorHandler
man:+PetscReturnErrorHandler++PetscReturnErrorHandler++++man+https://petsc.org/release/manualpages/Sys/PetscReturnErrorHandler.html#PetscReturnErrorHandler
man:+PetscErrorMessage++PetscErrorMessage++++man+https://petsc.org/release/manualpages/Sys/PetscErrorMessage.html#PetscErrorMessage
man:+PetscError++PetscError++++man+https://petsc.org/release/manualpages/Sys/PetscError.html#PetscError
man:+PetscIntViewNumColumns++PetscIntViewNumColumns++++man+https://petsc.org/release/manualpages/Sys/PetscIntViewNumColumns.html#PetscIntViewNumColumns
man:+PetscRealViewNumColumns++PetscRealViewNumColumns++++man+https://petsc.org/release/manualpages/Sys/PetscRealViewNumColumns.html#PetscRealViewNumColumns
man:+PetscScalarViewNumColumns++PetscScalarViewNumColumns++++man+https://petsc.org/release/manualpages/Sys/PetscScalarViewNumColumns.html#PetscScalarViewNumColumns
man:+PetscIntView++PetscIntView++++man+https://petsc.org/release/manualpages/Sys/PetscIntView.html#PetscIntView
man:+PetscRealView++PetscRealView++++man+https://petsc.org/release/manualpages/Sys/PetscRealView.html#PetscRealView
man:+PetscScalarView++PetscScalarView++++man+https://petsc.org/release/manualpages/Sys/PetscScalarView.html#PetscScalarView
man:+PetscMPIErrorString++PetscMPIErrorString++++man+https://petsc.org/release/manualpages/Sys/PetscMPIErrorString.html#PetscMPIErrorString
man:+PetscSignalHandlerDefault++PetscSignalHandlerDefault++++man+https://petsc.org/release/manualpages/Sys/PetscSignalHandlerDefault.html#PetscSignalHandlerDefault
man:+PetscPushSignalHandler++PetscPushSignalHandler++++man+https://petsc.org/release/manualpages/Sys/PetscPushSignalHandler.html#PetscPushSignalHandler
man:+PetscPopSignalHandler++PetscPopSignalHandler++++man+https://petsc.org/release/manualpages/Sys/PetscPopSignalHandler.html#PetscPopSignalHandler
man:+PetscMPIAbortErrorHandler++PetscMPIAbortErrorHandler++++man+https://petsc.org/release/manualpages/Sys/PetscMPIAbortErrorHandler.html#PetscMPIAbortErrorHandler
man:+PetscLogHandlerRegister++PetscLogHandlerRegister++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerRegister.html#PetscLogHandlerRegister
man:+PetscLogHandlerSetType++PetscLogHandlerSetType++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerSetType.html#PetscLogHandlerSetType
man:+PetscLogHandlerGetType++PetscLogHandlerGetType++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerGetType.html#PetscLogHandlerGetType
man:+PetscLogHandlerCreate++PetscLogHandlerCreate++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerCreate.html#PetscLogHandlerCreate
man:+PetscLogHandlerDestroy++PetscLogHandlerDestroy++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerDestroy.html#PetscLogHandlerDestroy
man:+PetscLogHandlerSetState++PetscLogHandlerSetState++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerSetState.html#PetscLogHandlerSetState
man:+PetscLogHandlerGetState++PetscLogHandlerGetState++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerGetState.html#PetscLogHandlerGetState
man:+PetscLogHandlerEventBegin++PetscLogHandlerEventBegin++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerEventBegin.html#PetscLogHandlerEventBegin
man:+PetscLogHandlerEventEnd++PetscLogHandlerEventEnd++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerEventEnd.html#PetscLogHandlerEventEnd
man:+PetscLogHandlerEventSync++PetscLogHandlerEventSync++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerEventSync.html#PetscLogHandlerEventSync
man:+PetscLogHandlerObjectCreate++PetscLogHandlerObjectCreate++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerObjectCreate.html#PetscLogHandlerObjectCreate
man:+PetscLogHandlerObjectDestroy++PetscLogHandlerObjectDestroy++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerObjectDestroy.html#PetscLogHandlerObjectDestroy
man:+PetscLogHandlerStagePush++PetscLogHandlerStagePush++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerStagePush.html#PetscLogHandlerStagePush
man:+PetscLogHandlerStagePop++PetscLogHandlerStagePop++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerStagePop.html#PetscLogHandlerStagePop
man:+PetscLogHandlerView++PetscLogHandlerView++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerView.html#PetscLogHandlerView
man:+PetscLogHandlerGetEventPerfInfo++PetscLogHandlerGetEventPerfInfo++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerGetEventPerfInfo.html#PetscLogHandlerGetEventPerfInfo
man:+PetscLogHandlerGetStagePerfInfo++PetscLogHandlerGetStagePerfInfo++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerGetStagePerfInfo.html#PetscLogHandlerGetStagePerfInfo
man:+PetscLogHandlerSetLogActions++PetscLogHandlerSetLogActions++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerSetLogActions.html#PetscLogHandlerSetLogActions
man:+PetscLogHandlerSetLogObjects++PetscLogHandlerSetLogObjects++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerSetLogObjects.html#PetscLogHandlerSetLogObjects
man:+PetscLogHandlerLogObjectState++PetscLogHandlerLogObjectState++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerLogObjectState.html#PetscLogHandlerLogObjectState
man:+PetscLogHandlerGetNumObjects++PetscLogHandlerGetNumObjects++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerGetNumObjects.html#PetscLogHandlerGetNumObjects
man:+PetscLogHandlerEventDeactivatePush++PetscLogHandlerEventDeactivatePush++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerEventDeactivatePush.html#PetscLogHandlerEventDeactivatePush
man:+PetscLogHandlerEventDeactivatePop++PetscLogHandlerEventDeactivatePop++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerEventDeactivatePop.html#PetscLogHandlerEventDeactivatePop
man:+PetscLogHandlerEventsPause++PetscLogHandlerEventsPause++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerEventsPause.html#PetscLogHandlerEventsPause
man:+PetscLogHandlerEventsResume++PetscLogHandlerEventsResume++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerEventsResume.html#PetscLogHandlerEventsResume
man:+PetscLogHandlerDump++PetscLogHandlerDump++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerDump.html#PetscLogHandlerDump
man:+PetscLogHandlerStageSetVisible++PetscLogHandlerStageSetVisible++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerStageSetVisible.html#PetscLogHandlerStageSetVisible
man:+PetscLogHandlerStageGetVisible++PetscLogHandlerStageGetVisible++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerStageGetVisible.html#PetscLogHandlerStageGetVisible
man:+PETSCLOGHANDLERTRACE++PETSCLOGHANDLERTRACE++++man+https://petsc.org/release/manualpages/Log/PETSCLOGHANDLERTRACE.html#PETSCLOGHANDLERTRACE
man:+PetscLogHandlerCreateTrace++PetscLogHandlerCreateTrace++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerCreateTrace.html#PetscLogHandlerCreateTrace
man:+PETSCLOGHANDLERPERFSTUBS++PETSCLOGHANDLERPERFSTUBS++++man+https://petsc.org/release/manualpages/Log/PETSCLOGHANDLERPERFSTUBS.html#PETSCLOGHANDLERPERFSTUBS
man:+PETSCLOGHANDLERLEGACY++PETSCLOGHANDLERLEGACY++++man+https://petsc.org/release/manualpages/Log/PETSCLOGHANDLERLEGACY.html#PETSCLOGHANDLERLEGACY
man:+PetscLogHandlerCreateLegacy++PetscLogHandlerCreateLegacy++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerCreateLegacy.html#PetscLogHandlerCreateLegacy
man:+PETSCLOGHANDLERDEFAULT++PETSCLOGHANDLERDEFAULT++++man+https://petsc.org/release/manualpages/Log/PETSCLOGHANDLERDEFAULT.html#PETSCLOGHANDLERDEFAULT
man:+PETSCLOGHANDLERMPE++PETSCLOGHANDLERMPE++++man+https://petsc.org/release/manualpages/Log/PETSCLOGHANDLERMPE.html#PETSCLOGHANDLERMPE
man:+PETSCLOGHANDLERNESTED++PETSCLOGHANDLERNESTED++++man+https://petsc.org/release/manualpages/Log/PETSCLOGHANDLERNESTED.html#PETSCLOGHANDLERNESTED
man:+PETSCLOGHANDLERNVTX++PETSCLOGHANDLERNVTX++++man+https://petsc.org/release/manualpages/Log/PETSCLOGHANDLERNVTX.html#PETSCLOGHANDLERNVTX
man:+PetscLogGetDefaultHandler++PetscLogGetDefaultHandler++++man+https://petsc.org/release/manualpages/Log/PetscLogGetDefaultHandler.html#PetscLogGetDefaultHandler
man:+PetscLogGetState++PetscLogGetState++++man+https://petsc.org/release/manualpages/Log/PetscLogGetState.html#PetscLogGetState
man:+PetscLogHandlerStart++PetscLogHandlerStart++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerStart.html#PetscLogHandlerStart
man:+PetscLogHandlerStop++PetscLogHandlerStop++++man+https://petsc.org/release/manualpages/Log/PetscLogHandlerStop.html#PetscLogHandlerStop
man:+PetscLogIsActive++PetscLogIsActive++++man+https://petsc.org/release/manualpages/Log/PetscLogIsActive.html#PetscLogIsActive
man:+PetscLogDefaultBegin++PetscLogDefaultBegin++++man+https://petsc.org/release/manualpages/Log/PetscLogDefaultBegin.html#PetscLogDefaultBegin
man:+PetscLogTraceBegin++PetscLogTraceBegin++++man+https://petsc.org/release/manualpages/Log/PetscLogTraceBegin.html#PetscLogTraceBegin
man:+PetscLogNestedBegin++PetscLogNestedBegin++++man+https://petsc.org/release/manualpages/Log/PetscLogNestedBegin.html#PetscLogNestedBegin
man:+PetscLogLegacyCallbacksBegin++PetscLogLegacyCallbacksBegin++++man+https://petsc.org/release/manualpages/Log/PetscLogLegacyCallbacksBegin.html#PetscLogLegacyCallbacksBegin
man:+PetscLogMPEBegin++PetscLogMPEBegin++++man+https://petsc.org/release/manualpages/Log/PetscLogMPEBegin.html#PetscLogMPEBegin
man:+PetscLogPerfstubsBegin++PetscLogPerfstubsBegin++++man+https://petsc.org/release/manualpages/Log/PetscLogPerfstubsBegin.html#PetscLogPerfstubsBegin
man:+PetscLogActions++PetscLogActions++++man+https://petsc.org/release/manualpages/Log/PetscLogActions.html#PetscLogActions
man:+PetscLogObjects++PetscLogObjects++++man+https://petsc.org/release/manualpages/Log/PetscLogObjects.html#PetscLogObjects
man:+PetscLogStageRegister++PetscLogStageRegister++++man+https://petsc.org/release/manualpages/Log/PetscLogStageRegister.html#PetscLogStageRegister
man:+PetscLogStagePush++PetscLogStagePush++++man+https://petsc.org/release/manualpages/Log/PetscLogStagePush.html#PetscLogStagePush
man:+PetscLogStagePop++PetscLogStagePop++++man+https://petsc.org/release/manualpages/Log/PetscLogStagePop.html#PetscLogStagePop
man:+PetscLogStageSetActive++PetscLogStageSetActive++++man+https://petsc.org/release/manualpages/Log/PetscLogStageSetActive.html#PetscLogStageSetActive
man:+PetscLogStageGetActive++PetscLogStageGetActive++++man+https://petsc.org/release/manualpages/Log/PetscLogStageGetActive.html#PetscLogStageGetActive
man:+PetscLogStageSetVisible++PetscLogStageSetVisible++++man+https://petsc.org/release/manualpages/Log/PetscLogStageSetVisible.html#PetscLogStageSetVisible
man:+PetscLogStageGetVisible++PetscLogStageGetVisible++++man+https://petsc.org/release/manualpages/Log/PetscLogStageGetVisible.html#PetscLogStageGetVisible
man:+PetscLogStageGetId++PetscLogStageGetId++++man+https://petsc.org/release/manualpages/Log/PetscLogStageGetId.html#PetscLogStageGetId
man:+PetscLogStageGetName++PetscLogStageGetName++++man+https://petsc.org/release/manualpages/Log/PetscLogStageGetName.html#PetscLogStageGetName
man:+PetscLogEventRegister++PetscLogEventRegister++++man+https://petsc.org/release/manualpages/Log/PetscLogEventRegister.html#PetscLogEventRegister
man:+PetscLogEventSetCollective++PetscLogEventSetCollective++++man+https://petsc.org/release/manualpages/Log/PetscLogEventSetCollective.html#PetscLogEventSetCollective
man:+PetscLogEventIncludeClass++PetscLogEventIncludeClass++++man+https://petsc.org/release/manualpages/Log/PetscLogEventIncludeClass.html#PetscLogEventIncludeClass
man:+PetscLogEventExcludeClass++PetscLogEventExcludeClass++++man+https://petsc.org/release/manualpages/Log/PetscLogEventExcludeClass.html#PetscLogEventExcludeClass
man:+PetscLogEventActivate++PetscLogEventActivate++++man+https://petsc.org/release/manualpages/Log/PetscLogEventActivate.html#PetscLogEventActivate
man:+PetscLogEventDeactivate++PetscLogEventDeactivate++++man+https://petsc.org/release/manualpages/Log/PetscLogEventDeactivate.html#PetscLogEventDeactivate
man:+PetscLogEventDeactivatePush++PetscLogEventDeactivatePush++++man+https://petsc.org/release/manualpages/Log/PetscLogEventDeactivatePush.html#PetscLogEventDeactivatePush
man:+PetscLogEventDeactivatePop++PetscLogEventDeactivatePop++++man+https://petsc.org/release/manualpages/Log/PetscLogEventDeactivatePop.html#PetscLogEventDeactivatePop
man:+PetscLogEventSetActiveAll++PetscLogEventSetActiveAll++++man+https://petsc.org/release/manualpages/Log/PetscLogEventSetActiveAll.html#PetscLogEventSetActiveAll
man:+PetscLogEventActivateClass++PetscLogEventActivateClass++++man+https://petsc.org/release/manualpages/Log/PetscLogEventActivateClass.html#PetscLogEventActivateClass
man:+PetscLogEventDeactivateClass++PetscLogEventDeactivateClass++++man+https://petsc.org/release/manualpages/Log/PetscLogEventDeactivateClass.html#PetscLogEventDeactivateClass
man:+PetscLogEventSync++PetscLogEventSync++++man+https://petsc.org/release/manualpages/Log/PetscLogEventSync.html#PetscLogEventSync
man:+PetscLogEventBegin++PetscLogEventBegin++++man+https://petsc.org/release/manualpages/Log/PetscLogEventBegin.html#PetscLogEventBegin
man:+PetscLogEventEnd++PetscLogEventEnd++++man+https://petsc.org/release/manualpages/Log/PetscLogEventEnd.html#PetscLogEventEnd
man:+PetscLogStageGetPerfInfo++PetscLogStageGetPerfInfo++++man+https://petsc.org/release/manualpages/Log/PetscLogStageGetPerfInfo.html#PetscLogStageGetPerfInfo
man:+PetscLogEventGetPerfInfo++PetscLogEventGetPerfInfo++++man+https://petsc.org/release/manualpages/Log/PetscLogEventGetPerfInfo.html#PetscLogEventGetPerfInfo
man:+PetscLogEventSetDof++PetscLogEventSetDof++++man+https://petsc.org/release/manualpages/Log/PetscLogEventSetDof.html#PetscLogEventSetDof
man:+PetscLogEventSetError++PetscLogEventSetError++++man+https://petsc.org/release/manualpages/Log/PetscLogEventSetError.html#PetscLogEventSetError
man:+PetscLogEventGetId++PetscLogEventGetId++++man+https://petsc.org/release/manualpages/Log/PetscLogEventGetId.html#PetscLogEventGetId
man:+PetscLogEventGetName++PetscLogEventGetName++++man+https://petsc.org/release/manualpages/Log/PetscLogEventGetName.html#PetscLogEventGetName
man:+PetscLogEventsPause++PetscLogEventsPause++++man+https://petsc.org/release/manualpages/Log/PetscLogEventsPause.html#PetscLogEventsPause
man:+PetscLogEventsResume++PetscLogEventsResume++++man+https://petsc.org/release/manualpages/Log/PetscLogEventsResume.html#PetscLogEventsResume
man:+PetscLogObjectCreate++PetscLogObjectCreate++++man+https://petsc.org/release/manualpages/Log/PetscLogObjectCreate.html#PetscLogObjectCreate
man:+PetscLogObjectDestroy++PetscLogObjectDestroy++++man+https://petsc.org/release/manualpages/Log/PetscLogObjectDestroy.html#PetscLogObjectDestroy
man:+PetscLogClassGetClassId++PetscLogClassGetClassId++++man+https://petsc.org/release/manualpages/Log/PetscLogClassGetClassId.html#PetscLogClassGetClassId
man:+PetscLogClassIdGetName++PetscLogClassIdGetName++++man+https://petsc.org/release/manualpages/Log/PetscLogClassIdGetName.html#PetscLogClassIdGetName
man:+PetscLogDump++PetscLogDump++++man+https://petsc.org/release/manualpages/Log/PetscLogDump.html#PetscLogDump
man:+PetscLogMPEDump++PetscLogMPEDump++++man+https://petsc.org/release/manualpages/Log/PetscLogMPEDump.html#PetscLogMPEDump
man:+PetscLogView++PetscLogView++++man+https://petsc.org/release/manualpages/Log/PetscLogView.html#PetscLogView
man:+PetscLogViewFromOptions++PetscLogViewFromOptions++++man+https://petsc.org/release/manualpages/Log/PetscLogViewFromOptions.html#PetscLogViewFromOptions
man:+PetscLogSetThreshold++PetscLogSetThreshold++++man+https://petsc.org/release/manualpages/Log/PetscLogSetThreshold.html#PetscLogSetThreshold
man:+PetscGetFlops++PetscGetFlops++++man+https://petsc.org/release/manualpages/Log/PetscGetFlops.html#PetscGetFlops
man:+PetscLogObjectState++PetscLogObjectState++++man+https://petsc.org/release/manualpages/Log/PetscLogObjectState.html#PetscLogObjectState
man:+PetscLogFlops++PetscLogFlops++++man+https://petsc.org/release/manualpages/Log/PetscLogFlops.html#PetscLogFlops
man:+PetscPreLoadBegin++PetscPreLoadBegin++++man+https://petsc.org/release/manualpages/Log/PetscPreLoadBegin.html#PetscPreLoadBegin
man:+PetscPreLoadEnd++PetscPreLoadEnd++++man+https://petsc.org/release/manualpages/Log/PetscPreLoadEnd.html#PetscPreLoadEnd
man:+PetscPreLoadStage++PetscPreLoadStage++++man+https://petsc.org/release/manualpages/Log/PetscPreLoadStage.html#PetscPreLoadStage
man:+PetscLogGpuTime++PetscLogGpuTime++++man+https://petsc.org/release/manualpages/Log/PetscLogGpuTime.html#PetscLogGpuTime
man:+PetscLogGpuTimeBegin++PetscLogGpuTimeBegin++++man+https://petsc.org/release/manualpages/Log/PetscLogGpuTimeBegin.html#PetscLogGpuTimeBegin
man:+PetscLogGpuTimeEnd++PetscLogGpuTimeEnd++++man+https://petsc.org/release/manualpages/Log/PetscLogGpuTimeEnd.html#PetscLogGpuTimeEnd
man:+PetscClassIdRegister++PetscClassIdRegister++++man+https://petsc.org/release/manualpages/Log/PetscClassIdRegister.html#PetscClassIdRegister
man:+PetscIntStackDestroy++PetscIntStackDestroy++++man+https://petsc.org/release/manualpages/Log/PetscIntStackDestroy.html#PetscIntStackDestroy
man:+PetscIntStackEmpty++PetscIntStackEmpty++++man+https://petsc.org/release/manualpages/Log/PetscIntStackEmpty.html#PetscIntStackEmpty
man:+PetscIntStackTop++PetscIntStackTop++++man+https://petsc.org/release/manualpages/Log/PetscIntStackTop.html#PetscIntStackTop
man:+PetscIntStackPush++PetscIntStackPush++++man+https://petsc.org/release/manualpages/Log/PetscIntStackPush.html#PetscIntStackPush
man:+PetscIntStackPop++PetscIntStackPop++++man+https://petsc.org/release/manualpages/Log/PetscIntStackPop.html#PetscIntStackPop
man:+PetscIntStackCreate++PetscIntStackCreate++++man+https://petsc.org/release/manualpages/Log/PetscIntStackCreate.html#PetscIntStackCreate
man:+PetscLogStateCreate++PetscLogStateCreate++++man+https://petsc.org/release/manualpages/Log/PetscLogStateCreate.html#PetscLogStateCreate
man:+PetscLogStateDestroy++PetscLogStateDestroy++++man+https://petsc.org/release/manualpages/Log/PetscLogStateDestroy.html#PetscLogStateDestroy
man:+PetscLogStateStagePush++PetscLogStateStagePush++++man+https://petsc.org/release/manualpages/Log/PetscLogStateStagePush.html#PetscLogStateStagePush
man:+PetscLogStateStagePop++PetscLogStateStagePop++++man+https://petsc.org/release/manualpages/Log/PetscLogStateStagePop.html#PetscLogStateStagePop
man:+PetscLogStateGetCurrentStage++PetscLogStateGetCurrentStage++++man+https://petsc.org/release/manualpages/Log/PetscLogStateGetCurrentStage.html#PetscLogStateGetCurrentStage
man:+PetscLogStateStageRegister++PetscLogStateStageRegister++++man+https://petsc.org/release/manualpages/Log/PetscLogStateStageRegister.html#PetscLogStateStageRegister
man:+PetscLogStateEventRegister++PetscLogStateEventRegister++++man+https://petsc.org/release/manualpages/Log/PetscLogStateEventRegister.html#PetscLogStateEventRegister
man:+PetscLogStateEventSetCollective++PetscLogStateEventSetCollective++++man+https://petsc.org/release/manualpages/Log/PetscLogStateEventSetCollective.html#PetscLogStateEventSetCollective
man:+PetscLogStateStageSetActive++PetscLogStateStageSetActive++++man+https://petsc.org/release/manualpages/Log/PetscLogStateStageSetActive.html#PetscLogStateStageSetActive
man:+PetscLogStateStageGetActive++PetscLogStateStageGetActive++++man+https://petsc.org/release/manualpages/Log/PetscLogStateStageGetActive.html#PetscLogStateStageGetActive
man:+PetscLogStateEventSetActive++PetscLogStateEventSetActive++++man+https://petsc.org/release/manualpages/Log/PetscLogStateEventSetActive.html#PetscLogStateEventSetActive
man:+PetscLogStateEventSetActiveAll++PetscLogStateEventSetActiveAll++++man+https://petsc.org/release/manualpages/Log/PetscLogStateEventSetActiveAll.html#PetscLogStateEventSetActiveAll
man:+PetscLogStateClassSetActive++PetscLogStateClassSetActive++++man+https://petsc.org/release/manualpages/Log/PetscLogStateClassSetActive.html#PetscLogStateClassSetActive
man:+PetscLogStateClassSetActiveAll++PetscLogStateClassSetActiveAll++++man+https://petsc.org/release/manualpages/Log/PetscLogStateClassSetActiveAll.html#PetscLogStateClassSetActiveAll
man:+PetscLogStateEventGetActive++PetscLogStateEventGetActive++++man+https://petsc.org/release/manualpages/Log/PetscLogStateEventGetActive.html#PetscLogStateEventGetActive
man:+PetscLogStateGetEventFromName++PetscLogStateGetEventFromName++++man+https://petsc.org/release/manualpages/Log/PetscLogStateGetEventFromName.html#PetscLogStateGetEventFromName
man:+PetscLogStateGetStageFromName++PetscLogStateGetStageFromName++++man+https://petsc.org/release/manualpages/Log/PetscLogStateGetStageFromName.html#PetscLogStateGetStageFromName
man:+PetscLogStateGetClassFromName++PetscLogStateGetClassFromName++++man+https://petsc.org/release/manualpages/Log/PetscLogStateGetClassFromName.html#PetscLogStateGetClassFromName
man:+PetscLogStateGetClassFromClassId++PetscLogStateGetClassFromClassId++++man+https://petsc.org/release/manualpages/Log/PetscLogStateGetClassFromClassId.html#PetscLogStateGetClassFromClassId
man:+PetscLogStateGetNumEvents++PetscLogStateGetNumEvents++++man+https://petsc.org/release/manualpages/Log/PetscLogStateGetNumEvents.html#PetscLogStateGetNumEvents
man:+PetscLogStateGetNumStages++PetscLogStateGetNumStages++++man+https://petsc.org/release/manualpages/Log/PetscLogStateGetNumStages.html#PetscLogStateGetNumStages
man:+PetscLogStateGetNumClasses++PetscLogStateGetNumClasses++++man+https://petsc.org/release/manualpages/Log/PetscLogStateGetNumClasses.html#PetscLogStateGetNumClasses
man:+PetscLogStateEventGetInfo++PetscLogStateEventGetInfo++++man+https://petsc.org/release/manualpages/Log/PetscLogStateEventGetInfo.html#PetscLogStateEventGetInfo
man:+PetscLogStateStageGetInfo++PetscLogStateStageGetInfo++++man+https://petsc.org/release/manualpages/Log/PetscLogStateStageGetInfo.html#PetscLogStateStageGetInfo
man:+PetscLogStateClassRegister++PetscLogStateClassRegister++++man+https://petsc.org/release/manualpages/Log/PetscLogStateClassRegister.html#PetscLogStateClassRegister
man:+PetscLogStateClassGetInfo++PetscLogStateClassGetInfo++++man+https://petsc.org/release/manualpages/Log/PetscLogStateClassGetInfo.html#PetscLogStateClassGetInfo
man:+PetscSectionCreate++PetscSectionCreate++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionCreate.html#PetscSectionCreate
man:+PetscSectionCopy++PetscSectionCopy++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionCopy.html#PetscSectionCopy
man:+PetscSectionClone++PetscSectionClone++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionClone.html#PetscSectionClone
man:+PetscSectionSetFromOptions++PetscSectionSetFromOptions++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetFromOptions.html#PetscSectionSetFromOptions
man:+PetscSectionCompare++PetscSectionCompare++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionCompare.html#PetscSectionCompare
man:+PetscSectionGetNumFields++PetscSectionGetNumFields++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetNumFields.html#PetscSectionGetNumFields
man:+PetscSectionSetNumFields++PetscSectionSetNumFields++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetNumFields.html#PetscSectionSetNumFields
man:+PetscSectionGetFieldName++PetscSectionGetFieldName++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetFieldName.html#PetscSectionGetFieldName
man:+PetscSectionSetFieldName++PetscSectionSetFieldName++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetFieldName.html#PetscSectionSetFieldName
man:+PetscSectionGetComponentName++PetscSectionGetComponentName++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetComponentName.html#PetscSectionGetComponentName
man:+PetscSectionSetComponentName++PetscSectionSetComponentName++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetComponentName.html#PetscSectionSetComponentName
man:+PetscSectionGetFieldComponents++PetscSectionGetFieldComponents++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetFieldComponents.html#PetscSectionGetFieldComponents
man:+PetscSectionSetFieldComponents++PetscSectionSetFieldComponents++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetFieldComponents.html#PetscSectionSetFieldComponents
man:+PetscSectionGetChart++PetscSectionGetChart++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetChart.html#PetscSectionGetChart
man:+PetscSectionSetChart++PetscSectionSetChart++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetChart.html#PetscSectionSetChart
man:+PetscSectionGetPermutation++PetscSectionGetPermutation++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetPermutation.html#PetscSectionGetPermutation
man:+PetscSectionSetPermutation++PetscSectionSetPermutation++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetPermutation.html#PetscSectionSetPermutation
man:+PetscSectionGetBlockStarts++PetscSectionGetBlockStarts++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetBlockStarts.html#PetscSectionGetBlockStarts
man:+PetscSectionSetBlockStarts++PetscSectionSetBlockStarts++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetBlockStarts.html#PetscSectionSetBlockStarts
man:+PetscSectionGetPointMajor++PetscSectionGetPointMajor++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetPointMajor.html#PetscSectionGetPointMajor
man:+PetscSectionSetPointMajor++PetscSectionSetPointMajor++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetPointMajor.html#PetscSectionSetPointMajor
man:+PetscSectionGetIncludesConstraints++PetscSectionGetIncludesConstraints++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetIncludesConstraints.html#PetscSectionGetIncludesConstraints
man:+PetscSectionSetIncludesConstraints++PetscSectionSetIncludesConstraints++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetIncludesConstraints.html#PetscSectionSetIncludesConstraints
man:+PetscSectionGetDof++PetscSectionGetDof++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetDof.html#PetscSectionGetDof
man:+PetscSectionSetDof++PetscSectionSetDof++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetDof.html#PetscSectionSetDof
man:+PetscSectionAddDof++PetscSectionAddDof++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionAddDof.html#PetscSectionAddDof
man:+PetscSectionGetFieldDof++PetscSectionGetFieldDof++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetFieldDof.html#PetscSectionGetFieldDof
man:+PetscSectionSetFieldDof++PetscSectionSetFieldDof++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetFieldDof.html#PetscSectionSetFieldDof
man:+PetscSectionAddFieldDof++PetscSectionAddFieldDof++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionAddFieldDof.html#PetscSectionAddFieldDof
man:+PetscSectionGetConstraintDof++PetscSectionGetConstraintDof++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetConstraintDof.html#PetscSectionGetConstraintDof
man:+PetscSectionSetConstraintDof++PetscSectionSetConstraintDof++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetConstraintDof.html#PetscSectionSetConstraintDof
man:+PetscSectionAddConstraintDof++PetscSectionAddConstraintDof++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionAddConstraintDof.html#PetscSectionAddConstraintDof
man:+PetscSectionGetFieldConstraintDof++PetscSectionGetFieldConstraintDof++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetFieldConstraintDof.html#PetscSectionGetFieldConstraintDof
man:+PetscSectionSetFieldConstraintDof++PetscSectionSetFieldConstraintDof++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetFieldConstraintDof.html#PetscSectionSetFieldConstraintDof
man:+PetscSectionAddFieldConstraintDof++PetscSectionAddFieldConstraintDof++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionAddFieldConstraintDof.html#PetscSectionAddFieldConstraintDof
man:+PetscSectionSetUpBC++PetscSectionSetUpBC++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetUpBC.html#PetscSectionSetUpBC
man:+PetscSectionSetUp++PetscSectionSetUp++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetUp.html#PetscSectionSetUp
man:+PetscSectionGetMaxDof++PetscSectionGetMaxDof++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetMaxDof.html#PetscSectionGetMaxDof
man:+PetscSectionGetStorageSize++PetscSectionGetStorageSize++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetStorageSize.html#PetscSectionGetStorageSize
man:+PetscSectionGetConstrainedStorageSize++PetscSectionGetConstrainedStorageSize++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetConstrainedStorageSize.html#PetscSectionGetConstrainedStorageSize
man:+PetscSectionCreateGlobalSection++PetscSectionCreateGlobalSection++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionCreateGlobalSection.html#PetscSectionCreateGlobalSection
man:+PetscSectionCreateGlobalSectionCensored++PetscSectionCreateGlobalSectionCensored++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionCreateGlobalSectionCensored.html#PetscSectionCreateGlobalSectionCensored
man:+PetscSectionGetPointLayout++PetscSectionGetPointLayout++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetPointLayout.html#PetscSectionGetPointLayout
man:+PetscSectionGetValueLayout++PetscSectionGetValueLayout++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetValueLayout.html#PetscSectionGetValueLayout
man:+PetscSectionGetOffset++PetscSectionGetOffset++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetOffset.html#PetscSectionGetOffset
man:+PetscSectionSetOffset++PetscSectionSetOffset++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetOffset.html#PetscSectionSetOffset
man:+PetscSectionGetFieldOffset++PetscSectionGetFieldOffset++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetFieldOffset.html#PetscSectionGetFieldOffset
man:+PetscSectionSetFieldOffset++PetscSectionSetFieldOffset++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetFieldOffset.html#PetscSectionSetFieldOffset
man:+PetscSectionGetFieldPointOffset++PetscSectionGetFieldPointOffset++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetFieldPointOffset.html#PetscSectionGetFieldPointOffset
man:+PetscSectionGetOffsetRange++PetscSectionGetOffsetRange++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetOffsetRange.html#PetscSectionGetOffsetRange
man:+PetscSectionCreateSubsection++PetscSectionCreateSubsection++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionCreateSubsection.html#PetscSectionCreateSubsection
man:+PetscSectionCreateComponentSubsection++PetscSectionCreateComponentSubsection++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionCreateComponentSubsection.html#PetscSectionCreateComponentSubsection
man:+PetscSectionCreateSupersection++PetscSectionCreateSupersection++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionCreateSupersection.html#PetscSectionCreateSupersection
man:+PetscSectionCreateSubmeshSection++PetscSectionCreateSubmeshSection++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionCreateSubmeshSection.html#PetscSectionCreateSubmeshSection
man:+PetscSectionCreateSubdomainSection++PetscSectionCreateSubdomainSection++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionCreateSubdomainSection.html#PetscSectionCreateSubdomainSection
man:+PetscSectionViewFromOptions++PetscSectionViewFromOptions++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionViewFromOptions.html#PetscSectionViewFromOptions
man:+PetscSectionView++PetscSectionView++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionView.html#PetscSectionView
man:+PetscSectionLoad++PetscSectionLoad++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionLoad.html#PetscSectionLoad
man:+PetscSectionResetClosurePermutation++PetscSectionResetClosurePermutation++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionResetClosurePermutation.html#PetscSectionResetClosurePermutation
man:+PetscSectionReset++PetscSectionReset++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionReset.html#PetscSectionReset
man:+PetscSectionDestroy++PetscSectionDestroy++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionDestroy.html#PetscSectionDestroy
man:+PetscSectionHasConstraints++PetscSectionHasConstraints++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionHasConstraints.html#PetscSectionHasConstraints
man:+PetscSectionGetConstraintIndices++PetscSectionGetConstraintIndices++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetConstraintIndices.html#PetscSectionGetConstraintIndices
man:+PetscSectionSetConstraintIndices++PetscSectionSetConstraintIndices++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetConstraintIndices.html#PetscSectionSetConstraintIndices
man:+PetscSectionGetFieldConstraintIndices++PetscSectionGetFieldConstraintIndices++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetFieldConstraintIndices.html#PetscSectionGetFieldConstraintIndices
man:+PetscSectionSetFieldConstraintIndices++PetscSectionSetFieldConstraintIndices++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetFieldConstraintIndices.html#PetscSectionSetFieldConstraintIndices
man:+PetscSectionPermute++PetscSectionPermute++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionPermute.html#PetscSectionPermute
man:+PetscSectionSetClosureIndex++PetscSectionSetClosureIndex++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetClosureIndex.html#PetscSectionSetClosureIndex
man:+PetscSectionGetClosureIndex++PetscSectionGetClosureIndex++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetClosureIndex.html#PetscSectionGetClosureIndex
man:+PetscSectionSetClosurePermutation++PetscSectionSetClosurePermutation++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetClosurePermutation.html#PetscSectionSetClosurePermutation
man:+PetscSectionGetClosurePermutation++PetscSectionGetClosurePermutation++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetClosurePermutation.html#PetscSectionGetClosurePermutation
man:+PetscSectionGetClosureInversePermutation++PetscSectionGetClosureInversePermutation++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetClosureInversePermutation.html#PetscSectionGetClosureInversePermutation
man:+PetscSectionGetField++PetscSectionGetField++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetField.html#PetscSectionGetField
man:+PetscSectionSymCreate++PetscSectionSymCreate++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSymCreate.html#PetscSectionSymCreate
man:+PetscSectionSymSetType++PetscSectionSymSetType++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSymSetType.html#PetscSectionSymSetType
man:+PetscSectionSymGetType++PetscSectionSymGetType++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSymGetType.html#PetscSectionSymGetType
man:+PetscSectionSymRegister++PetscSectionSymRegister++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSymRegister.html#PetscSectionSymRegister
man:+PetscSectionSymDestroy++PetscSectionSymDestroy++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSymDestroy.html#PetscSectionSymDestroy
man:+PetscSectionSymView++PetscSectionSymView++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSymView.html#PetscSectionSymView
man:+PetscSectionSetSym++PetscSectionSetSym++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetSym.html#PetscSectionSetSym
man:+PetscSectionGetSym++PetscSectionGetSym++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetSym.html#PetscSectionGetSym
man:+PetscSectionSetFieldSym++PetscSectionSetFieldSym++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetFieldSym.html#PetscSectionSetFieldSym
man:+PetscSectionGetFieldSym++PetscSectionGetFieldSym++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetFieldSym.html#PetscSectionGetFieldSym
man:+PetscSectionGetPointSyms++PetscSectionGetPointSyms++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetPointSyms.html#PetscSectionGetPointSyms
man:+PetscSectionRestorePointSyms++PetscSectionRestorePointSyms++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionRestorePointSyms.html#PetscSectionRestorePointSyms
man:+PetscSectionGetFieldPointSyms++PetscSectionGetFieldPointSyms++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetFieldPointSyms.html#PetscSectionGetFieldPointSyms
man:+PetscSectionRestoreFieldPointSyms++PetscSectionRestoreFieldPointSyms++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionRestoreFieldPointSyms.html#PetscSectionRestoreFieldPointSyms
man:+PetscSectionSymCopy++PetscSectionSymCopy++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSymCopy.html#PetscSectionSymCopy
man:+PetscSectionSymDistribute++PetscSectionSymDistribute++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSymDistribute.html#PetscSectionSymDistribute
man:+PetscSectionGetUseFieldOffsets++PetscSectionGetUseFieldOffsets++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionGetUseFieldOffsets.html#PetscSectionGetUseFieldOffsets
man:+PetscSectionSetUseFieldOffsets++PetscSectionSetUseFieldOffsets++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionSetUseFieldOffsets.html#PetscSectionSetUseFieldOffsets
man:+PetscSectionExtractDofsFromArray++PetscSectionExtractDofsFromArray++++man+https://petsc.org/release/manualpages/PetscSection/PetscSectionExtractDofsFromArray.html#PetscSectionExtractDofsFromArray
man:+ISCreate++ISCreate++++man+https://petsc.org/release/manualpages/IS/ISCreate.html#ISCreate
man:+ISSetType++ISSetType++++man+https://petsc.org/release/manualpages/IS/ISSetType.html#ISSetType
man:+ISGetType++ISGetType++++man+https://petsc.org/release/manualpages/IS/ISGetType.html#ISGetType
man:+ISRegister++ISRegister++++man+https://petsc.org/release/manualpages/IS/ISRegister.html#ISRegister
man:+ISRenumber++ISRenumber++++man+https://petsc.org/release/manualpages/IS/ISRenumber.html#ISRenumber
man:+ISCreateSubIS++ISCreateSubIS++++man+https://petsc.org/release/manualpages/IS/ISCreateSubIS.html#ISCreateSubIS
man:+ISClearInfoCache++ISClearInfoCache++++man+https://petsc.org/release/manualpages/IS/ISClearInfoCache.html#ISClearInfoCache
man:+ISSetInfo++ISSetInfo++++man+https://petsc.org/release/manualpages/IS/ISSetInfo.html#ISSetInfo
man:+ISGetInfo++ISGetInfo++++man+https://petsc.org/release/manualpages/IS/ISGetInfo.html#ISGetInfo
man:+ISIdentity++ISIdentity++++man+https://petsc.org/release/manualpages/IS/ISIdentity.html#ISIdentity
man:+ISSetIdentity++ISSetIdentity++++man+https://petsc.org/release/manualpages/IS/ISSetIdentity.html#ISSetIdentity
man:+ISContiguousLocal++ISContiguousLocal++++man+https://petsc.org/release/manualpages/IS/ISContiguousLocal.html#ISContiguousLocal
man:+ISPermutation++ISPermutation++++man+https://petsc.org/release/manualpages/IS/ISPermutation.html#ISPermutation
man:+ISSetPermutation++ISSetPermutation++++man+https://petsc.org/release/manualpages/IS/ISSetPermutation.html#ISSetPermutation
man:+ISDestroy++ISDestroy++++man+https://petsc.org/release/manualpages/IS/ISDestroy.html#ISDestroy
man:+ISInvertPermutation++ISInvertPermutation++++man+https://petsc.org/release/manualpages/IS/ISInvertPermutation.html#ISInvertPermutation
man:+ISGetSize++ISGetSize++++man+https://petsc.org/release/manualpages/IS/ISGetSize.html#ISGetSize
man:+ISGetLocalSize++ISGetLocalSize++++man+https://petsc.org/release/manualpages/IS/ISGetLocalSize.html#ISGetLocalSize
man:+ISGetLayout++ISGetLayout++++man+https://petsc.org/release/manualpages/IS/ISGetLayout.html#ISGetLayout
man:+ISSetLayout++ISSetLayout++++man+https://petsc.org/release/manualpages/IS/ISSetLayout.html#ISSetLayout
man:+ISGetIndices++ISGetIndices++++man+https://petsc.org/release/manualpages/IS/ISGetIndices.html#ISGetIndices
man:+ISGetMinMax++ISGetMinMax++++man+https://petsc.org/release/manualpages/IS/ISGetMinMax.html#ISGetMinMax
man:+ISLocate++ISLocate++++man+https://petsc.org/release/manualpages/IS/ISLocate.html#ISLocate
man:+ISRestoreIndices++ISRestoreIndices++++man+https://petsc.org/release/manualpages/IS/ISRestoreIndices.html#ISRestoreIndices
man:+ISGetTotalIndices++ISGetTotalIndices++++man+https://petsc.org/release/manualpages/IS/ISGetTotalIndices.html#ISGetTotalIndices
man:+ISRestoreTotalIndices++ISRestoreTotalIndices++++man+https://petsc.org/release/manualpages/IS/ISRestoreTotalIndices.html#ISRestoreTotalIndices
man:+ISGetNonlocalIndices++ISGetNonlocalIndices++++man+https://petsc.org/release/manualpages/IS/ISGetNonlocalIndices.html#ISGetNonlocalIndices
man:+ISRestoreNonlocalIndices++ISRestoreNonlocalIndices++++man+https://petsc.org/release/manualpages/IS/ISRestoreNonlocalIndices.html#ISRestoreNonlocalIndices
man:+ISGetNonlocalIS++ISGetNonlocalIS++++man+https://petsc.org/release/manualpages/IS/ISGetNonlocalIS.html#ISGetNonlocalIS
man:+ISRestoreNonlocalIS++ISRestoreNonlocalIS++++man+https://petsc.org/release/manualpages/IS/ISRestoreNonlocalIS.html#ISRestoreNonlocalIS
man:+ISViewFromOptions++ISViewFromOptions++++man+https://petsc.org/release/manualpages/IS/ISViewFromOptions.html#ISViewFromOptions
man:+ISView++ISView++++man+https://petsc.org/release/manualpages/IS/ISView.html#ISView
man:+ISLoad++ISLoad++++man+https://petsc.org/release/manualpages/IS/ISLoad.html#ISLoad
man:+ISSort++ISSort++++man+https://petsc.org/release/manualpages/IS/ISSort.html#ISSort
man:+ISSortRemoveDups++ISSortRemoveDups++++man+https://petsc.org/release/manualpages/IS/ISSortRemoveDups.html#ISSortRemoveDups
man:+ISToGeneral++ISToGeneral++++man+https://petsc.org/release/manualpages/IS/ISToGeneral.html#ISToGeneral
man:+ISSorted++ISSorted++++man+https://petsc.org/release/manualpages/IS/ISSorted.html#ISSorted
man:+ISDuplicate++ISDuplicate++++man+https://petsc.org/release/manualpages/IS/ISDuplicate.html#ISDuplicate
man:+ISCopy++ISCopy++++man+https://petsc.org/release/manualpages/IS/ISCopy.html#ISCopy
man:+ISShift++ISShift++++man+https://petsc.org/release/manualpages/IS/ISShift.html#ISShift
man:+ISOnComm++ISOnComm++++man+https://petsc.org/release/manualpages/IS/ISOnComm.html#ISOnComm
man:+ISSetBlockSize++ISSetBlockSize++++man+https://petsc.org/release/manualpages/IS/ISSetBlockSize.html#ISSetBlockSize
man:+ISGetBlockSize++ISGetBlockSize++++man+https://petsc.org/release/manualpages/IS/ISGetBlockSize.html#ISGetBlockSize
man:+ISSetCompressOutput++ISSetCompressOutput++++man+https://petsc.org/release/manualpages/IS/ISSetCompressOutput.html#ISSetCompressOutput
man:+ISGetCompressOutput++ISGetCompressOutput++++man+https://petsc.org/release/manualpages/IS/ISGetCompressOutput.html#ISGetCompressOutput
man:+ISRegisterAll++ISRegisterAll++++man+https://petsc.org/release/manualpages/IS/ISRegisterAll.html#ISRegisterAll
man:+ISCreateGeneral++ISCreateGeneral++++man+https://petsc.org/release/manualpages/IS/ISCreateGeneral.html#ISCreateGeneral
man:+ISGeneralSetIndices++ISGeneralSetIndices++++man+https://petsc.org/release/manualpages/IS/ISGeneralSetIndices.html#ISGeneralSetIndices
man:+ISGeneralSetIndicesFromMask++ISGeneralSetIndicesFromMask++++man+https://petsc.org/release/manualpages/IS/ISGeneralSetIndicesFromMask.html#ISGeneralSetIndicesFromMask
man:+ISGeneralFilter++ISGeneralFilter++++man+https://petsc.org/release/manualpages/IS/ISGeneralFilter.html#ISGeneralFilter
man:+ISStrideGetInfo++ISStrideGetInfo++++man+https://petsc.org/release/manualpages/IS/ISStrideGetInfo.html#ISStrideGetInfo
man:+ISStrideSetStride++ISStrideSetStride++++man+https://petsc.org/release/manualpages/IS/ISStrideSetStride.html#ISStrideSetStride
man:+ISCreateStride++ISCreateStride++++man+https://petsc.org/release/manualpages/IS/ISCreateStride.html#ISCreateStride
man:+ISBlockSetIndices++ISBlockSetIndices++++man+https://petsc.org/release/manualpages/IS/ISBlockSetIndices.html#ISBlockSetIndices
man:+ISCreateBlock++ISCreateBlock++++man+https://petsc.org/release/manualpages/IS/ISCreateBlock.html#ISCreateBlock
man:+ISBlockGetIndices++ISBlockGetIndices++++man+https://petsc.org/release/manualpages/IS/ISBlockGetIndices.html#ISBlockGetIndices
man:+ISBlockRestoreIndices++ISBlockRestoreIndices++++man+https://petsc.org/release/manualpages/IS/ISBlockRestoreIndices.html#ISBlockRestoreIndices
man:+ISBlockGetLocalSize++ISBlockGetLocalSize++++man+https://petsc.org/release/manualpages/IS/ISBlockGetLocalSize.html#ISBlockGetLocalSize
man:+ISBlockGetSize++ISBlockGetSize++++man+https://petsc.org/release/manualpages/IS/ISBlockGetSize.html#ISBlockGetSize
man:+ISColoringSetType++ISColoringSetType++++man+https://petsc.org/release/manualpages/IS/ISColoringSetType.html#ISColoringSetType
man:+ISColoringGetType++ISColoringGetType++++man+https://petsc.org/release/manualpages/IS/ISColoringGetType.html#ISColoringGetType
man:+ISColoringDestroy++ISColoringDestroy++++man+https://petsc.org/release/manualpages/IS/ISColoringDestroy.html#ISColoringDestroy
man:+ISColoringViewFromOptions++ISColoringViewFromOptions++++man+https://petsc.org/release/manualpages/IS/ISColoringViewFromOptions.html#ISColoringViewFromOptions
man:+ISColoringView++ISColoringView++++man+https://petsc.org/release/manualpages/IS/ISColoringView.html#ISColoringView
man:+ISColoringGetColors++ISColoringGetColors++++man+https://petsc.org/release/manualpages/IS/ISColoringGetColors.html#ISColoringGetColors
man:+ISColoringGetIS++ISColoringGetIS++++man+https://petsc.org/release/manualpages/IS/ISColoringGetIS.html#ISColoringGetIS
man:+ISColoringRestoreIS++ISColoringRestoreIS++++man+https://petsc.org/release/manualpages/IS/ISColoringRestoreIS.html#ISColoringRestoreIS
man:+ISColoringCreate++ISColoringCreate++++man+https://petsc.org/release/manualpages/IS/ISColoringCreate.html#ISColoringCreate
man:+ISBuildTwoSided++ISBuildTwoSided++++man+https://petsc.org/release/manualpages/IS/ISBuildTwoSided.html#ISBuildTwoSided
man:+ISPartitioningToNumbering++ISPartitioningToNumbering++++man+https://petsc.org/release/manualpages/IS/ISPartitioningToNumbering.html#ISPartitioningToNumbering
man:+ISPartitioningCount++ISPartitioningCount++++man+https://petsc.org/release/manualpages/IS/ISPartitioningCount.html#ISPartitioningCount
man:+ISAllGather++ISAllGather++++man+https://petsc.org/release/manualpages/IS/ISAllGather.html#ISAllGather
man:+ISAllGatherColors++ISAllGatherColors++++man+https://petsc.org/release/manualpages/IS/ISAllGatherColors.html#ISAllGatherColors
man:+ISComplement++ISComplement++++man+https://petsc.org/release/manualpages/IS/ISComplement.html#ISComplement
man:+ISCompressIndicesGeneral++ISCompressIndicesGeneral++++man+https://petsc.org/release/manualpages/IS/ISCompressIndicesGeneral.html#ISCompressIndicesGeneral
man:+ISExpandIndicesGeneral++ISExpandIndicesGeneral++++man+https://petsc.org/release/manualpages/IS/ISExpandIndicesGeneral.html#ISExpandIndicesGeneral
man:+ISDifference++ISDifference++++man+https://petsc.org/release/manualpages/IS/ISDifference.html#ISDifference
man:+ISSum++ISSum++++man+https://petsc.org/release/manualpages/IS/ISSum.html#ISSum
man:+ISExpand++ISExpand++++man+https://petsc.org/release/manualpages/IS/ISExpand.html#ISExpand
man:+ISIntersect++ISIntersect++++man+https://petsc.org/release/manualpages/IS/ISIntersect.html#ISIntersect
man:+ISConcatenate++ISConcatenate++++man+https://petsc.org/release/manualpages/IS/ISConcatenate.html#ISConcatenate
man:+ISListToPair++ISListToPair++++man+https://petsc.org/release/manualpages/IS/ISListToPair.html#ISListToPair
man:+ISPairToList++ISPairToList++++man+https://petsc.org/release/manualpages/IS/ISPairToList.html#ISPairToList
man:+ISEmbed++ISEmbed++++man+https://petsc.org/release/manualpages/IS/ISEmbed.html#ISEmbed
man:+ISSortPermutation++ISSortPermutation++++man+https://petsc.org/release/manualpages/IS/ISSortPermutation.html#ISSortPermutation
man:+ISEqual++ISEqual++++man+https://petsc.org/release/manualpages/IS/ISEqual.html#ISEqual
man:+ISEqualUnsorted++ISEqualUnsorted++++man+https://petsc.org/release/manualpages/IS/ISEqualUnsorted.html#ISEqualUnsorted
man:+PetscParallelSortInt++PetscParallelSortInt++++man+https://petsc.org/release/manualpages/IS/PetscParallelSortInt.html#PetscParallelSortInt
man:+PetscViewerHDF5Load++PetscViewerHDF5Load++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5Load.html#PetscViewerHDF5Load
man:+PetscViewerHDF5ReadSizes++PetscViewerHDF5ReadSizes++++man+https://petsc.org/release/manualpages/Viewer/PetscViewerHDF5ReadSizes.html#PetscViewerHDF5ReadSizes
man:+ISGetPointRange++ISGetPointRange++++man+https://petsc.org/release/manualpages/IS/ISGetPointRange.html#ISGetPointRange
man:+ISRestorePointRange++ISRestorePointRange++++man+https://petsc.org/release/manualpages/IS/ISRestorePointRange.html#ISRestorePointRange
man:+ISGetPointSubrange++ISGetPointSubrange++++man+https://petsc.org/release/manualpages/IS/ISGetPointSubrange.html#ISGetPointSubrange
man:+ISLocalToGlobalMappingDuplicate++ISLocalToGlobalMappingDuplicate++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingDuplicate.html#ISLocalToGlobalMappingDuplicate
man:+ISLocalToGlobalMappingGetSize++ISLocalToGlobalMappingGetSize++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingGetSize.html#ISLocalToGlobalMappingGetSize
man:+ISLocalToGlobalMappingViewFromOptions++ISLocalToGlobalMappingViewFromOptions++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingViewFromOptions.html#ISLocalToGlobalMappingViewFromOptions
man:+ISLocalToGlobalMappingView++ISLocalToGlobalMappingView++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingView.html#ISLocalToGlobalMappingView
man:+ISLocalToGlobalMappingLoad++ISLocalToGlobalMappingLoad++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingLoad.html#ISLocalToGlobalMappingLoad
man:+ISLocalToGlobalMappingCreateIS++ISLocalToGlobalMappingCreateIS++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingCreateIS.html#ISLocalToGlobalMappingCreateIS
man:+ISLocalToGlobalMappingCreateSF++ISLocalToGlobalMappingCreateSF++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingCreateSF.html#ISLocalToGlobalMappingCreateSF
man:+ISLocalToGlobalMappingSetBlockSize++ISLocalToGlobalMappingSetBlockSize++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingSetBlockSize.html#ISLocalToGlobalMappingSetBlockSize
man:+ISLocalToGlobalMappingGetBlockSize++ISLocalToGlobalMappingGetBlockSize++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingGetBlockSize.html#ISLocalToGlobalMappingGetBlockSize
man:+ISLocalToGlobalMappingCreate++ISLocalToGlobalMappingCreate++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingCreate.html#ISLocalToGlobalMappingCreate
man:+ISLocalToGlobalMappingSetFromOptions++ISLocalToGlobalMappingSetFromOptions++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingSetFromOptions.html#ISLocalToGlobalMappingSetFromOptions
man:+ISLocalToGlobalMappingDestroy++ISLocalToGlobalMappingDestroy++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingDestroy.html#ISLocalToGlobalMappingDestroy
man:+ISLocalToGlobalMappingApplyIS++ISLocalToGlobalMappingApplyIS++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingApplyIS.html#ISLocalToGlobalMappingApplyIS
man:+ISLocalToGlobalMappingApply++ISLocalToGlobalMappingApply++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingApply.html#ISLocalToGlobalMappingApply
man:+ISLocalToGlobalMappingApplyBlock++ISLocalToGlobalMappingApplyBlock++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingApplyBlock.html#ISLocalToGlobalMappingApplyBlock
man:+ISGlobalToLocalMappingApply++ISGlobalToLocalMappingApply++++man+https://petsc.org/release/manualpages/IS/ISGlobalToLocalMappingApply.html#ISGlobalToLocalMappingApply
man:+ISGlobalToLocalMappingApplyIS++ISGlobalToLocalMappingApplyIS++++man+https://petsc.org/release/manualpages/IS/ISGlobalToLocalMappingApplyIS.html#ISGlobalToLocalMappingApplyIS
man:+ISGlobalToLocalMappingApplyBlock++ISGlobalToLocalMappingApplyBlock++++man+https://petsc.org/release/manualpages/IS/ISGlobalToLocalMappingApplyBlock.html#ISGlobalToLocalMappingApplyBlock
man:+ISLocalToGlobalMappingGetBlockInfo++ISLocalToGlobalMappingGetBlockInfo++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingGetBlockInfo.html#ISLocalToGlobalMappingGetBlockInfo
man:+ISLocalToGlobalMappingGetBlockNodeInfo++ISLocalToGlobalMappingGetBlockNodeInfo++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingGetBlockNodeInfo.html#ISLocalToGlobalMappingGetBlockNodeInfo
man:+ISLocalToGlobalMappingRestoreBlockNodeInfo++ISLocalToGlobalMappingRestoreBlockNodeInfo++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingRestoreBlockNodeInfo.html#ISLocalToGlobalMappingRestoreBlockNodeInfo
man:+ISLocalToGlobalMappingGetBlockMultiLeavesSF++ISLocalToGlobalMappingGetBlockMultiLeavesSF++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingGetBlockMultiLeavesSF.html#ISLocalToGlobalMappingGetBlockMultiLeavesSF
man:+ISLocalToGlobalMappingRestoreBlockInfo++ISLocalToGlobalMappingRestoreBlockInfo++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingRestoreBlockInfo.html#ISLocalToGlobalMappingRestoreBlockInfo
man:+ISLocalToGlobalMappingGetInfo++ISLocalToGlobalMappingGetInfo++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingGetInfo.html#ISLocalToGlobalMappingGetInfo
man:+ISLocalToGlobalMappingRestoreInfo++ISLocalToGlobalMappingRestoreInfo++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingRestoreInfo.html#ISLocalToGlobalMappingRestoreInfo
man:+ISLocalToGlobalMappingGetNodeInfo++ISLocalToGlobalMappingGetNodeInfo++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingGetNodeInfo.html#ISLocalToGlobalMappingGetNodeInfo
man:+ISLocalToGlobalMappingRestoreNodeInfo++ISLocalToGlobalMappingRestoreNodeInfo++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingRestoreNodeInfo.html#ISLocalToGlobalMappingRestoreNodeInfo
man:+ISLocalToGlobalMappingGetIndices++ISLocalToGlobalMappingGetIndices++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingGetIndices.html#ISLocalToGlobalMappingGetIndices
man:+ISLocalToGlobalMappingRestoreIndices++ISLocalToGlobalMappingRestoreIndices++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingRestoreIndices.html#ISLocalToGlobalMappingRestoreIndices
man:+ISLocalToGlobalMappingGetBlockIndices++ISLocalToGlobalMappingGetBlockIndices++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingGetBlockIndices.html#ISLocalToGlobalMappingGetBlockIndices
man:+ISLocalToGlobalMappingRestoreBlockIndices++ISLocalToGlobalMappingRestoreBlockIndices++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingRestoreBlockIndices.html#ISLocalToGlobalMappingRestoreBlockIndices
man:+ISLocalToGlobalMappingConcatenate++ISLocalToGlobalMappingConcatenate++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingConcatenate.html#ISLocalToGlobalMappingConcatenate
man:+ISLOCALTOGLOBALMAPPINGBASIC++ISLOCALTOGLOBALMAPPINGBASIC++++man+https://petsc.org/release/manualpages/IS/ISLOCALTOGLOBALMAPPINGBASIC.html#ISLOCALTOGLOBALMAPPINGBASIC
man:+ISLOCALTOGLOBALMAPPINGHASH++ISLOCALTOGLOBALMAPPINGHASH++++man+https://petsc.org/release/manualpages/IS/ISLOCALTOGLOBALMAPPINGHASH.html#ISLOCALTOGLOBALMAPPINGHASH
man:+ISLocalToGlobalMappingRegister++ISLocalToGlobalMappingRegister++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingRegister.html#ISLocalToGlobalMappingRegister
man:+ISLocalToGlobalMappingSetType++ISLocalToGlobalMappingSetType++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingSetType.html#ISLocalToGlobalMappingSetType
man:+ISLocalToGlobalMappingGetType++ISLocalToGlobalMappingGetType++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingGetType.html#ISLocalToGlobalMappingGetType
man:+ISLocalToGlobalMappingRegisterAll++ISLocalToGlobalMappingRegisterAll++++man+https://petsc.org/release/manualpages/IS/ISLocalToGlobalMappingRegisterAll.html#ISLocalToGlobalMappingRegisterAll
man:+PetscKDTreeDestroy++PetscKDTreeDestroy++++man+https://petsc.org/release/manualpages/IS/PetscKDTreeDestroy.html#PetscKDTreeDestroy
man:+PetscKDTreeCreate++PetscKDTreeCreate++++man+https://petsc.org/release/manualpages/IS/PetscKDTreeCreate.html#PetscKDTreeCreate
man:+PetscKDTreeQueryPointsNearestNeighbor++PetscKDTreeQueryPointsNearestNeighbor++++man+https://petsc.org/release/manualpages/IS/PetscKDTreeQueryPointsNearestNeighbor.html#PetscKDTreeQueryPointsNearestNeighbor
man:+PetscKDTreeView++PetscKDTreeView++++man+https://petsc.org/release/manualpages/IS/PetscKDTreeView.html#PetscKDTreeView
man:+PetscLayoutCreate++PetscLayoutCreate++++man+https://petsc.org/release/manualpages/IS/PetscLayoutCreate.html#PetscLayoutCreate
man:+PetscLayoutCreateFromSizes++PetscLayoutCreateFromSizes++++man+https://petsc.org/release/manualpages/IS/PetscLayoutCreateFromSizes.html#PetscLayoutCreateFromSizes
man:+PetscLayoutDestroy++PetscLayoutDestroy++++man+https://petsc.org/release/manualpages/IS/PetscLayoutDestroy.html#PetscLayoutDestroy
man:+PetscLayoutCreateFromRanges++PetscLayoutCreateFromRanges++++man+https://petsc.org/release/manualpages/IS/PetscLayoutCreateFromRanges.html#PetscLayoutCreateFromRanges
man:+PetscLayoutSetUp++PetscLayoutSetUp++++man+https://petsc.org/release/manualpages/IS/PetscLayoutSetUp.html#PetscLayoutSetUp
man:+PetscLayoutDuplicate++PetscLayoutDuplicate++++man+https://petsc.org/release/manualpages/IS/PetscLayoutDuplicate.html#PetscLayoutDuplicate
man:+PetscLayoutReference++PetscLayoutReference++++man+https://petsc.org/release/manualpages/IS/PetscLayoutReference.html#PetscLayoutReference
man:+PetscLayoutSetISLocalToGlobalMapping++PetscLayoutSetISLocalToGlobalMapping++++man+https://petsc.org/release/manualpages/IS/PetscLayoutSetISLocalToGlobalMapping.html#PetscLayoutSetISLocalToGlobalMapping
man:+PetscLayoutSetLocalSize++PetscLayoutSetLocalSize++++man+https://petsc.org/release/manualpages/IS/PetscLayoutSetLocalSize.html#PetscLayoutSetLocalSize
man:+PetscLayoutGetLocalSize++PetscLayoutGetLocalSize++++man+https://petsc.org/release/manualpages/IS/PetscLayoutGetLocalSize.html#PetscLayoutGetLocalSize
man:+PetscLayoutSetSize++PetscLayoutSetSize++++man+https://petsc.org/release/manualpages/IS/PetscLayoutSetSize.html#PetscLayoutSetSize
man:+PetscLayoutGetSize++PetscLayoutGetSize++++man+https://petsc.org/release/manualpages/IS/PetscLayoutGetSize.html#PetscLayoutGetSize
man:+PetscLayoutSetBlockSize++PetscLayoutSetBlockSize++++man+https://petsc.org/release/manualpages/IS/PetscLayoutSetBlockSize.html#PetscLayoutSetBlockSize
man:+PetscLayoutGetBlockSize++PetscLayoutGetBlockSize++++man+https://petsc.org/release/manualpages/IS/PetscLayoutGetBlockSize.html#PetscLayoutGetBlockSize
man:+PetscLayoutGetRange++PetscLayoutGetRange++++man+https://petsc.org/release/manualpages/IS/PetscLayoutGetRange.html#PetscLayoutGetRange
man:+PetscLayoutGetRanges++PetscLayoutGetRanges++++man+https://petsc.org/release/manualpages/IS/PetscLayoutGetRanges.html#PetscLayoutGetRanges
man:+PetscLayoutCompare++PetscLayoutCompare++++man+https://petsc.org/release/manualpages/IS/PetscLayoutCompare.html#PetscLayoutCompare
man:+PetscLayoutFindOwner++PetscLayoutFindOwner++++man+https://petsc.org/release/manualpages/IS/PetscLayoutFindOwner.html#PetscLayoutFindOwner
man:+PetscLayoutFindOwnerIndex++PetscLayoutFindOwnerIndex++++man+https://petsc.org/release/manualpages/IS/PetscLayoutFindOwnerIndex.html#PetscLayoutFindOwnerIndex
man:+PetscSFCreate++PetscSFCreate++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFCreate.html#PetscSFCreate
man:+PetscSFReset++PetscSFReset++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFReset.html#PetscSFReset
man:+PetscSFSetType++PetscSFSetType++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFSetType.html#PetscSFSetType
man:+PetscSFGetType++PetscSFGetType++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFGetType.html#PetscSFGetType
man:+PetscSFDestroy++PetscSFDestroy++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFDestroy.html#PetscSFDestroy
man:+PetscSFSetUp++PetscSFSetUp++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFSetUp.html#PetscSFSetUp
man:+PetscSFSetFromOptions++PetscSFSetFromOptions++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFSetFromOptions.html#PetscSFSetFromOptions
man:+PetscSFSetRankOrder++PetscSFSetRankOrder++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFSetRankOrder.html#PetscSFSetRankOrder
man:+PetscSFSetGraph++PetscSFSetGraph++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFSetGraph.html#PetscSFSetGraph
man:+PetscSFSetGraphWithPattern++PetscSFSetGraphWithPattern++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFSetGraphWithPattern.html#PetscSFSetGraphWithPattern
man:+PetscSFCreateInverseSF++PetscSFCreateInverseSF++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFCreateInverseSF.html#PetscSFCreateInverseSF
man:+PetscSFDuplicate++PetscSFDuplicate++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFDuplicate.html#PetscSFDuplicate
man:+PetscSFGetGraph++PetscSFGetGraph++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFGetGraph.html#PetscSFGetGraph
man:+PetscSFGetLeafRange++PetscSFGetLeafRange++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFGetLeafRange.html#PetscSFGetLeafRange
man:+PetscSFViewFromOptions++PetscSFViewFromOptions++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFViewFromOptions.html#PetscSFViewFromOptions
man:+PetscSFView++PetscSFView++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFView.html#PetscSFView
man:+PetscSFGetRootRanks++PetscSFGetRootRanks++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFGetRootRanks.html#PetscSFGetRootRanks
man:+PetscSFGetLeafRanks++PetscSFGetLeafRanks++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFGetLeafRanks.html#PetscSFGetLeafRanks
man:+PetscSFSetUpRanks++PetscSFSetUpRanks++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFSetUpRanks.html#PetscSFSetUpRanks
man:+PetscSFGetGroups++PetscSFGetGroups++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFGetGroups.html#PetscSFGetGroups
man:+PetscSFGetRanksSF++PetscSFGetRanksSF++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFGetRanksSF.html#PetscSFGetRanksSF
man:+PetscSFGetMultiSF++PetscSFGetMultiSF++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFGetMultiSF.html#PetscSFGetMultiSF
man:+PetscSFCreateEmbeddedRootSF++PetscSFCreateEmbeddedRootSF++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFCreateEmbeddedRootSF.html#PetscSFCreateEmbeddedRootSF
man:+PetscSFCreateEmbeddedLeafSF++PetscSFCreateEmbeddedLeafSF++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFCreateEmbeddedLeafSF.html#PetscSFCreateEmbeddedLeafSF
man:+PetscSFBcastBegin++PetscSFBcastBegin++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFBcastBegin.html#PetscSFBcastBegin
man:+PetscSFBcastWithMemTypeBegin++PetscSFBcastWithMemTypeBegin++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFBcastWithMemTypeBegin.html#PetscSFBcastWithMemTypeBegin
man:+PetscSFBcastEnd++PetscSFBcastEnd++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFBcastEnd.html#PetscSFBcastEnd
man:+PetscSFReduceBegin++PetscSFReduceBegin++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFReduceBegin.html#PetscSFReduceBegin
man:+PetscSFReduceWithMemTypeBegin++PetscSFReduceWithMemTypeBegin++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFReduceWithMemTypeBegin.html#PetscSFReduceWithMemTypeBegin
man:+PetscSFReduceEnd++PetscSFReduceEnd++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFReduceEnd.html#PetscSFReduceEnd
man:+PetscSFFetchAndOpBegin++PetscSFFetchAndOpBegin++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFFetchAndOpBegin.html#PetscSFFetchAndOpBegin
man:+PetscSFFetchAndOpWithMemTypeBegin++PetscSFFetchAndOpWithMemTypeBegin++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFFetchAndOpWithMemTypeBegin.html#PetscSFFetchAndOpWithMemTypeBegin
man:+PetscSFFetchAndOpEnd++PetscSFFetchAndOpEnd++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFFetchAndOpEnd.html#PetscSFFetchAndOpEnd
man:+PetscSFComputeDegreeBegin++PetscSFComputeDegreeBegin++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFComputeDegreeBegin.html#PetscSFComputeDegreeBegin
man:+PetscSFComputeDegreeEnd++PetscSFComputeDegreeEnd++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFComputeDegreeEnd.html#PetscSFComputeDegreeEnd
man:+PetscSFComputeMultiRootOriginalNumbering++PetscSFComputeMultiRootOriginalNumbering++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFComputeMultiRootOriginalNumbering.html#PetscSFComputeMultiRootOriginalNumbering
man:+PetscSFGatherBegin++PetscSFGatherBegin++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFGatherBegin.html#PetscSFGatherBegin
man:+PetscSFGatherEnd++PetscSFGatherEnd++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFGatherEnd.html#PetscSFGatherEnd
man:+PetscSFScatterBegin++PetscSFScatterBegin++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFScatterBegin.html#PetscSFScatterBegin
man:+PetscSFScatterEnd++PetscSFScatterEnd++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFScatterEnd.html#PetscSFScatterEnd
man:+PetscSFCompose++PetscSFCompose++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFCompose.html#PetscSFCompose
man:+PetscSFComposeInverse++PetscSFComposeInverse++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFComposeInverse.html#PetscSFComposeInverse
man:+PetscSFConcatenate++PetscSFConcatenate++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFConcatenate.html#PetscSFConcatenate
man:+PetscSFRegisterPersistent++PetscSFRegisterPersistent++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFRegisterPersistent.html#PetscSFRegisterPersistent
man:+PetscSFDeregisterPersistent++PetscSFDeregisterPersistent++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFDeregisterPersistent.html#PetscSFDeregisterPersistent
man:+PetscSFRegisterAll++PetscSFRegisterAll++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFRegisterAll.html#PetscSFRegisterAll
man:+PetscSFRegister++PetscSFRegister++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFRegister.html#PetscSFRegister
man:+PetscSFInitializePackage++PetscSFInitializePackage++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFInitializePackage.html#PetscSFInitializePackage
man:+PetscSFFinalizePackage++PetscSFFinalizePackage++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFFinalizePackage.html#PetscSFFinalizePackage
man:+PetscSFWindowSetFlavorType++PetscSFWindowSetFlavorType++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowSetFlavorType.html#PetscSFWindowSetFlavorType
man:+PetscSFWindowGetFlavorType++PetscSFWindowGetFlavorType++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowGetFlavorType.html#PetscSFWindowGetFlavorType
man:+PetscSFWindowSetSyncType++PetscSFWindowSetSyncType++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowSetSyncType.html#PetscSFWindowSetSyncType
man:+PetscSFWindowGetSyncType++PetscSFWindowGetSyncType++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowGetSyncType.html#PetscSFWindowGetSyncType
man:+PetscSFWindowSetInfo++PetscSFWindowSetInfo++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowSetInfo.html#PetscSFWindowSetInfo
man:+PetscSFWindowGetInfo++PetscSFWindowGetInfo++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFWindowGetInfo.html#PetscSFWindowGetInfo
man:+PetscSFSetGraphFromCoordinates++PetscSFSetGraphFromCoordinates++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFSetGraphFromCoordinates.html#PetscSFSetGraphFromCoordinates
man:+PetscSFSetGraphLayout++PetscSFSetGraphLayout++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFSetGraphLayout.html#PetscSFSetGraphLayout
man:+PetscSFGetGraphLayout++PetscSFGetGraphLayout++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFGetGraphLayout.html#PetscSFGetGraphLayout
man:+PetscSFSetGraphSection++PetscSFSetGraphSection++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFSetGraphSection.html#PetscSFSetGraphSection
man:+PetscSFDistributeSection++PetscSFDistributeSection++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFDistributeSection.html#PetscSFDistributeSection
man:+PetscSFCreateRemoteOffsets++PetscSFCreateRemoteOffsets++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFCreateRemoteOffsets.html#PetscSFCreateRemoteOffsets
man:+PetscSFCreateSectionSF++PetscSFCreateSectionSF++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFCreateSectionSF.html#PetscSFCreateSectionSF
man:+PetscSFCreateFromLayouts++PetscSFCreateFromLayouts++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFCreateFromLayouts.html#PetscSFCreateFromLayouts
man:+PetscSFCreateByMatchingIndices++PetscSFCreateByMatchingIndices++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFCreateByMatchingIndices.html#PetscSFCreateByMatchingIndices
man:+PetscSFMerge++PetscSFMerge++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFMerge.html#PetscSFMerge
man:+PetscSFCreateStridedSF++PetscSFCreateStridedSF++++man+https://petsc.org/release/manualpages/PetscSF/PetscSFCreateStridedSF.html#PetscSFCreateStridedSF
man:+AOFinalizePackage++AOFinalizePackage++++man+https://petsc.org/release/manualpages/AO/AOFinalizePackage.html#AOFinalizePackage
man:+AOInitializePackage++AOInitializePackage++++man+https://petsc.org/release/manualpages/AO/AOInitializePackage.html#AOInitializePackage
man:+AOSetType++AOSetType++++man+https://petsc.org/release/manualpages/AO/AOSetType.html#AOSetType
man:+AOGetType++AOGetType++++man+https://petsc.org/release/manualpages/AO/AOGetType.html#AOGetType
man:+AORegister++AORegister++++man+https://petsc.org/release/manualpages/AO/AORegister.html#AORegister
man:+AORegisterAll++AORegisterAll++++man+https://petsc.org/release/manualpages/AO/AORegisterAll.html#AORegisterAll
man:+AOView++AOView++++man+https://petsc.org/release/manualpages/AO/AOView.html#AOView
man:+AOViewFromOptions++AOViewFromOptions++++man+https://petsc.org/release/manualpages/AO/AOViewFromOptions.html#AOViewFromOptions
man:+AODestroy++AODestroy++++man+https://petsc.org/release/manualpages/AO/AODestroy.html#AODestroy
man:+AOPetscToApplicationIS++AOPetscToApplicationIS++++man+https://petsc.org/release/manualpages/AO/AOPetscToApplicationIS.html#AOPetscToApplicationIS
man:+AOApplicationToPetscIS++AOApplicationToPetscIS++++man+https://petsc.org/release/manualpages/AO/AOApplicationToPetscIS.html#AOApplicationToPetscIS
man:+AOPetscToApplication++AOPetscToApplication++++man+https://petsc.org/release/manualpages/AO/AOPetscToApplication.html#AOPetscToApplication
man:+AOApplicationToPetsc++AOApplicationToPetsc++++man+https://petsc.org/release/manualpages/AO/AOApplicationToPetsc.html#AOApplicationToPetsc
man:+AOPetscToApplicationPermuteInt++AOPetscToApplicationPermuteInt++++man+https://petsc.org/release/manualpages/AO/AOPetscToApplicationPermuteInt.html#AOPetscToApplicationPermuteInt
man:+AOApplicationToPetscPermuteInt++AOApplicationToPetscPermuteInt++++man+https://petsc.org/release/manualpages/AO/AOApplicationToPetscPermuteInt.html#AOApplicationToPetscPermuteInt
man:+AOPetscToApplicationPermuteReal++AOPetscToApplicationPermuteReal++++man+https://petsc.org/release/manualpages/AO/AOPetscToApplicationPermuteReal.html#AOPetscToApplicationPermuteReal
man:+AOApplicationToPetscPermuteReal++AOApplicationToPetscPermuteReal++++man+https://petsc.org/release/manualpages/AO/AOApplicationToPetscPermuteReal.html#AOApplicationToPetscPermuteReal
man:+AOSetFromOptions++AOSetFromOptions++++man+https://petsc.org/release/manualpages/AO/AOSetFromOptions.html#AOSetFromOptions
man:+AOSetIS++AOSetIS++++man+https://petsc.org/release/manualpages/AO/AOSetIS.html#AOSetIS
man:+AOCreate++AOCreate++++man+https://petsc.org/release/manualpages/AO/AOCreate.html#AOCreate
man:+AOMappingHasApplicationIndex++AOMappingHasApplicationIndex++++man+https://petsc.org/release/manualpages/AO/AOMappingHasApplicationIndex.html#AOMappingHasApplicationIndex
man:+AOMappingHasPetscIndex++AOMappingHasPetscIndex++++man+https://petsc.org/release/manualpages/AO/AOMappingHasPetscIndex.html#AOMappingHasPetscIndex
man:+AOCreateMapping++AOCreateMapping++++man+https://petsc.org/release/manualpages/AO/AOCreateMapping.html#AOCreateMapping
man:+AOCreateMappingIS++AOCreateMappingIS++++man+https://petsc.org/release/manualpages/AO/AOCreateMappingIS.html#AOCreateMappingIS
man:+AOCreateMemoryScalable++AOCreateMemoryScalable++++man+https://petsc.org/release/manualpages/AO/AOCreateMemoryScalable.html#AOCreateMemoryScalable
man:+AOCreateMemoryScalableIS++AOCreateMemoryScalableIS++++man+https://petsc.org/release/manualpages/AO/AOCreateMemoryScalableIS.html#AOCreateMemoryScalableIS
man:+AOCreateBasic++AOCreateBasic++++man+https://petsc.org/release/manualpages/AO/AOCreateBasic.html#AOCreateBasic
man:+AOCreateBasicIS++AOCreateBasicIS++++man+https://petsc.org/release/manualpages/AO/AOCreateBasicIS.html#AOCreateBasicIS
man:+VecMaxPointwiseDivide++VecMaxPointwiseDivide++++man+https://petsc.org/release/manualpages/Vec/VecMaxPointwiseDivide.html#VecMaxPointwiseDivide
man:+VecDot++VecDot++++man+https://petsc.org/release/manualpages/Vec/VecDot.html#VecDot
man:+VecDotRealPart++VecDotRealPart++++man+https://petsc.org/release/manualpages/Vec/VecDotRealPart.html#VecDotRealPart
man:+VecNorm++VecNorm++++man+https://petsc.org/release/manualpages/Vec/VecNorm.html#VecNorm
man:+VecNormAvailable++VecNormAvailable++++man+https://petsc.org/release/manualpages/Vec/VecNormAvailable.html#VecNormAvailable
man:+VecNormalize++VecNormalize++++man+https://petsc.org/release/manualpages/Vec/VecNormalize.html#VecNormalize
man:+VecMax++VecMax++++man+https://petsc.org/release/manualpages/Vec/VecMax.html#VecMax
man:+VecMin++VecMin++++man+https://petsc.org/release/manualpages/Vec/VecMin.html#VecMin
man:+VecTDot++VecTDot++++man+https://petsc.org/release/manualpages/Vec/VecTDot.html#VecTDot
man:+VecScale++VecScale++++man+https://petsc.org/release/manualpages/Vec/VecScale.html#VecScale
man:+VecSet++VecSet++++man+https://petsc.org/release/manualpages/Vec/VecSet.html#VecSet
man:+VecAXPY++VecAXPY++++man+https://petsc.org/release/manualpages/Vec/VecAXPY.html#VecAXPY
man:+VecAYPX++VecAYPX++++man+https://petsc.org/release/manualpages/Vec/VecAYPX.html#VecAYPX
man:+VecAXPBY++VecAXPBY++++man+https://petsc.org/release/manualpages/Vec/VecAXPBY.html#VecAXPBY
man:+VecAXPBYPCZ++VecAXPBYPCZ++++man+https://petsc.org/release/manualpages/Vec/VecAXPBYPCZ.html#VecAXPBYPCZ
man:+VecWAXPY++VecWAXPY++++man+https://petsc.org/release/manualpages/Vec/VecWAXPY.html#VecWAXPY
man:+VecSetValues++VecSetValues++++man+https://petsc.org/release/manualpages/Vec/VecSetValues.html#VecSetValues
man:+VecGetValues++VecGetValues++++man+https://petsc.org/release/manualpages/Vec/VecGetValues.html#VecGetValues
man:+VecSetValuesBlocked++VecSetValuesBlocked++++man+https://petsc.org/release/manualpages/Vec/VecSetValuesBlocked.html#VecSetValuesBlocked
man:+VecSetValuesLocal++VecSetValuesLocal++++man+https://petsc.org/release/manualpages/Vec/VecSetValuesLocal.html#VecSetValuesLocal
man:+VecSetValuesBlockedLocal++VecSetValuesBlockedLocal++++man+https://petsc.org/release/manualpages/Vec/VecSetValuesBlockedLocal.html#VecSetValuesBlockedLocal
man:+VecMTDot++VecMTDot++++man+https://petsc.org/release/manualpages/Vec/VecMTDot.html#VecMTDot
man:+VecMDot++VecMDot++++man+https://petsc.org/release/manualpages/Vec/VecMDot.html#VecMDot
man:+VecMAXPY++VecMAXPY++++man+https://petsc.org/release/manualpages/Vec/VecMAXPY.html#VecMAXPY
man:+VecMAXPBY++VecMAXPBY++++man+https://petsc.org/release/manualpages/Vec/VecMAXPBY.html#VecMAXPBY
man:+VecConcatenate++VecConcatenate++++man+https://petsc.org/release/manualpages/Vec/VecConcatenate.html#VecConcatenate
man:+VecGetSubVector++VecGetSubVector++++man+https://petsc.org/release/manualpages/Vec/VecGetSubVector.html#VecGetSubVector
man:+VecRestoreSubVector++VecRestoreSubVector++++man+https://petsc.org/release/manualpages/Vec/VecRestoreSubVector.html#VecRestoreSubVector
man:+VecCreateLocalVector++VecCreateLocalVector++++man+https://petsc.org/release/manualpages/Vec/VecCreateLocalVector.html#VecCreateLocalVector
man:+VecGetLocalVectorRead++VecGetLocalVectorRead++++man+https://petsc.org/release/manualpages/Vec/VecGetLocalVectorRead.html#VecGetLocalVectorRead
man:+VecRestoreLocalVectorRead++VecRestoreLocalVectorRead++++man+https://petsc.org/release/manualpages/Vec/VecRestoreLocalVectorRead.html#VecRestoreLocalVectorRead
man:+VecGetLocalVector++VecGetLocalVector++++man+https://petsc.org/release/manualpages/Vec/VecGetLocalVector.html#VecGetLocalVector
man:+VecRestoreLocalVector++VecRestoreLocalVector++++man+https://petsc.org/release/manualpages/Vec/VecRestoreLocalVector.html#VecRestoreLocalVector
man:+VecGetArray++VecGetArray++++man+https://petsc.org/release/manualpages/Vec/VecGetArray.html#VecGetArray
man:+VecRestoreArray++VecRestoreArray++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArray.html#VecRestoreArray
man:+VecGetArrayRead++VecGetArrayRead++++man+https://petsc.org/release/manualpages/Vec/VecGetArrayRead.html#VecGetArrayRead
man:+VecRestoreArrayRead++VecRestoreArrayRead++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArrayRead.html#VecRestoreArrayRead
man:+VecGetArrayWrite++VecGetArrayWrite++++man+https://petsc.org/release/manualpages/Vec/VecGetArrayWrite.html#VecGetArrayWrite
man:+VecRestoreArrayWrite++VecRestoreArrayWrite++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArrayWrite.html#VecRestoreArrayWrite
man:+VecGetArrays++VecGetArrays++++man+https://petsc.org/release/manualpages/Vec/VecGetArrays.html#VecGetArrays
man:+VecRestoreArrays++VecRestoreArrays++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArrays.html#VecRestoreArrays
man:+VecGetArrayAndMemType++VecGetArrayAndMemType++++man+https://petsc.org/release/manualpages/Vec/VecGetArrayAndMemType.html#VecGetArrayAndMemType
man:+VecRestoreArrayAndMemType++VecRestoreArrayAndMemType++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArrayAndMemType.html#VecRestoreArrayAndMemType
man:+VecGetArrayReadAndMemType++VecGetArrayReadAndMemType++++man+https://petsc.org/release/manualpages/Vec/VecGetArrayReadAndMemType.html#VecGetArrayReadAndMemType
man:+VecRestoreArrayReadAndMemType++VecRestoreArrayReadAndMemType++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArrayReadAndMemType.html#VecRestoreArrayReadAndMemType
man:+VecGetArrayWriteAndMemType++VecGetArrayWriteAndMemType++++man+https://petsc.org/release/manualpages/Vec/VecGetArrayWriteAndMemType.html#VecGetArrayWriteAndMemType
man:+VecRestoreArrayWriteAndMemType++VecRestoreArrayWriteAndMemType++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArrayWriteAndMemType.html#VecRestoreArrayWriteAndMemType
man:+VecPlaceArray++VecPlaceArray++++man+https://petsc.org/release/manualpages/Vec/VecPlaceArray.html#VecPlaceArray
man:+VecReplaceArray++VecReplaceArray++++man+https://petsc.org/release/manualpages/Vec/VecReplaceArray.html#VecReplaceArray
man:+VecGetArray2d++VecGetArray2d++++man+https://petsc.org/release/manualpages/Vec/VecGetArray2d.html#VecGetArray2d
man:+VecGetArray2dWrite++VecGetArray2dWrite++++man+https://petsc.org/release/manualpages/Vec/VecGetArray2dWrite.html#VecGetArray2dWrite
man:+VecRestoreArray2d++VecRestoreArray2d++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArray2d.html#VecRestoreArray2d
man:+VecRestoreArray2dWrite++VecRestoreArray2dWrite++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArray2dWrite.html#VecRestoreArray2dWrite
man:+VecGetArray1d++VecGetArray1d++++man+https://petsc.org/release/manualpages/Vec/VecGetArray1d.html#VecGetArray1d
man:+VecGetArray1dWrite++VecGetArray1dWrite++++man+https://petsc.org/release/manualpages/Vec/VecGetArray1dWrite.html#VecGetArray1dWrite
man:+VecRestoreArray1d++VecRestoreArray1d++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArray1d.html#VecRestoreArray1d
man:+VecRestoreArray1dWrite++VecRestoreArray1dWrite++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArray1dWrite.html#VecRestoreArray1dWrite
man:+VecGetArray3d++VecGetArray3d++++man+https://petsc.org/release/manualpages/Vec/VecGetArray3d.html#VecGetArray3d
man:+VecGetArray3dWrite++VecGetArray3dWrite++++man+https://petsc.org/release/manualpages/Vec/VecGetArray3dWrite.html#VecGetArray3dWrite
man:+VecRestoreArray3d++VecRestoreArray3d++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArray3d.html#VecRestoreArray3d
man:+VecRestoreArray3dWrite++VecRestoreArray3dWrite++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArray3dWrite.html#VecRestoreArray3dWrite
man:+VecGetArray4d++VecGetArray4d++++man+https://petsc.org/release/manualpages/Vec/VecGetArray4d.html#VecGetArray4d
man:+VecGetArray4dWrite++VecGetArray4dWrite++++man+https://petsc.org/release/manualpages/Vec/VecGetArray4dWrite.html#VecGetArray4dWrite
man:+VecRestoreArray4d++VecRestoreArray4d++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArray4d.html#VecRestoreArray4d
man:+VecRestoreArray4dWrite++VecRestoreArray4dWrite++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArray4dWrite.html#VecRestoreArray4dWrite
man:+VecGetArray2dRead++VecGetArray2dRead++++man+https://petsc.org/release/manualpages/Vec/VecGetArray2dRead.html#VecGetArray2dRead
man:+VecRestoreArray2dRead++VecRestoreArray2dRead++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArray2dRead.html#VecRestoreArray2dRead
man:+VecGetArray1dRead++VecGetArray1dRead++++man+https://petsc.org/release/manualpages/Vec/VecGetArray1dRead.html#VecGetArray1dRead
man:+VecRestoreArray1dRead++VecRestoreArray1dRead++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArray1dRead.html#VecRestoreArray1dRead
man:+VecGetArray3dRead++VecGetArray3dRead++++man+https://petsc.org/release/manualpages/Vec/VecGetArray3dRead.html#VecGetArray3dRead
man:+VecRestoreArray3dRead++VecRestoreArray3dRead++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArray3dRead.html#VecRestoreArray3dRead
man:+VecGetArray4dRead++VecGetArray4dRead++++man+https://petsc.org/release/manualpages/Vec/VecGetArray4dRead.html#VecGetArray4dRead
man:+VecRestoreArray4dRead++VecRestoreArray4dRead++++man+https://petsc.org/release/manualpages/Vec/VecRestoreArray4dRead.html#VecRestoreArray4dRead
man:+VecLockGet++VecLockGet++++man+https://petsc.org/release/manualpages/Vec/VecLockGet.html#VecLockGet
man:+VecLockReadPush++VecLockReadPush++++man+https://petsc.org/release/manualpages/Vec/VecLockReadPush.html#VecLockReadPush
man:+VecLockReadPop++VecLockReadPop++++man+https://petsc.org/release/manualpages/Vec/VecLockReadPop.html#VecLockReadPop
man:+VecLockWriteSet++VecLockWriteSet++++man+https://petsc.org/release/manualpages/Vec/VecLockWriteSet.html#VecLockWriteSet
man:+VecStashGetInfo++VecStashGetInfo++++man+https://petsc.org/release/manualpages/Vec/VecStashGetInfo.html#VecStashGetInfo
man:+VecSetLocalToGlobalMapping++VecSetLocalToGlobalMapping++++man+https://petsc.org/release/manualpages/Vec/VecSetLocalToGlobalMapping.html#VecSetLocalToGlobalMapping
man:+VecGetLocalToGlobalMapping++VecGetLocalToGlobalMapping++++man+https://petsc.org/release/manualpages/Vec/VecGetLocalToGlobalMapping.html#VecGetLocalToGlobalMapping
man:+VecAssemblyBegin++VecAssemblyBegin++++man+https://petsc.org/release/manualpages/Vec/VecAssemblyBegin.html#VecAssemblyBegin
man:+VecAssemblyEnd++VecAssemblyEnd++++man+https://petsc.org/release/manualpages/Vec/VecAssemblyEnd.html#VecAssemblyEnd
man:+VecSetPreallocationCOO++VecSetPreallocationCOO++++man+https://petsc.org/release/manualpages/Vec/VecSetPreallocationCOO.html#VecSetPreallocationCOO
man:+VecSetPreallocationCOOLocal++VecSetPreallocationCOOLocal++++man+https://petsc.org/release/manualpages/Vec/VecSetPreallocationCOOLocal.html#VecSetPreallocationCOOLocal
man:+VecSetValuesCOO++VecSetValuesCOO++++man+https://petsc.org/release/manualpages/Vec/VecSetValuesCOO.html#VecSetValuesCOO
man:+VecPointwiseMax++VecPointwiseMax++++man+https://petsc.org/release/manualpages/Vec/VecPointwiseMax.html#VecPointwiseMax
man:+VecPointwiseMin++VecPointwiseMin++++man+https://petsc.org/release/manualpages/Vec/VecPointwiseMin.html#VecPointwiseMin
man:+VecPointwiseMaxAbs++VecPointwiseMaxAbs++++man+https://petsc.org/release/manualpages/Vec/VecPointwiseMaxAbs.html#VecPointwiseMaxAbs
man:+VecPointwiseDivide++VecPointwiseDivide++++man+https://petsc.org/release/manualpages/Vec/VecPointwiseDivide.html#VecPointwiseDivide
man:+VecPointwiseMult++VecPointwiseMult++++man+https://petsc.org/release/manualpages/Vec/VecPointwiseMult.html#VecPointwiseMult
man:+VecDuplicate++VecDuplicate++++man+https://petsc.org/release/manualpages/Vec/VecDuplicate.html#VecDuplicate
man:+VecDestroy++VecDestroy++++man+https://petsc.org/release/manualpages/Vec/VecDestroy.html#VecDestroy
man:+VecDuplicateVecs++VecDuplicateVecs++++man+https://petsc.org/release/manualpages/Vec/VecDuplicateVecs.html#VecDuplicateVecs
man:+VecDestroyVecs++VecDestroyVecs++++man+https://petsc.org/release/manualpages/Vec/VecDestroyVecs.html#VecDestroyVecs
man:+VecViewFromOptions++VecViewFromOptions++++man+https://petsc.org/release/manualpages/Vec/VecViewFromOptions.html#VecViewFromOptions
man:+VecView++VecView++++man+https://petsc.org/release/manualpages/Vec/VecView.html#VecView
man:+VecViewNative++VecViewNative++++man+https://petsc.org/release/manualpages/Vec/VecViewNative.html#VecViewNative
man:+VecGetSize++VecGetSize++++man+https://petsc.org/release/manualpages/Vec/VecGetSize.html#VecGetSize
man:+VecGetLocalSize++VecGetLocalSize++++man+https://petsc.org/release/manualpages/Vec/VecGetLocalSize.html#VecGetLocalSize
man:+VecGetOwnershipRange++VecGetOwnershipRange++++man+https://petsc.org/release/manualpages/Vec/VecGetOwnershipRange.html#VecGetOwnershipRange
man:+VecGetOwnershipRanges++VecGetOwnershipRanges++++man+https://petsc.org/release/manualpages/Vec/VecGetOwnershipRanges.html#VecGetOwnershipRanges
man:+VecSetOption++VecSetOption++++man+https://petsc.org/release/manualpages/Vec/VecSetOption.html#VecSetOption
man:+VecResetArray++VecResetArray++++man+https://petsc.org/release/manualpages/Vec/VecResetArray.html#VecResetArray
man:+VecLoad++VecLoad++++man+https://petsc.org/release/manualpages/Vec/VecLoad.html#VecLoad
man:+VecReciprocal++VecReciprocal++++man+https://petsc.org/release/manualpages/Vec/VecReciprocal.html#VecReciprocal
man:+VecSetOperation++VecSetOperation++++man+https://petsc.org/release/manualpages/Vec/VecSetOperation.html#VecSetOperation
man:+VecStashSetInitialSize++VecStashSetInitialSize++++man+https://petsc.org/release/manualpages/Vec/VecStashSetInitialSize.html#VecStashSetInitialSize
man:+VecSetRandom++VecSetRandom++++man+https://petsc.org/release/manualpages/Vec/VecSetRandom.html#VecSetRandom
man:+VecZeroEntries++VecZeroEntries++++man+https://petsc.org/release/manualpages/Vec/VecZeroEntries.html#VecZeroEntries
man:+VecSetFromOptions++VecSetFromOptions++++man+https://petsc.org/release/manualpages/Vec/VecSetFromOptions.html#VecSetFromOptions
man:+VecSetSizes++VecSetSizes++++man+https://petsc.org/release/manualpages/Vec/VecSetSizes.html#VecSetSizes
man:+VecSetBlockSize++VecSetBlockSize++++man+https://petsc.org/release/manualpages/Vec/VecSetBlockSize.html#VecSetBlockSize
man:+VecGetBlockSize++VecGetBlockSize++++man+https://petsc.org/release/manualpages/Vec/VecGetBlockSize.html#VecGetBlockSize
man:+VecSetOptionsPrefix++VecSetOptionsPrefix++++man+https://petsc.org/release/manualpages/Vec/VecSetOptionsPrefix.html#VecSetOptionsPrefix
man:+VecAppendOptionsPrefix++VecAppendOptionsPrefix++++man+https://petsc.org/release/manualpages/Vec/VecAppendOptionsPrefix.html#VecAppendOptionsPrefix
man:+VecGetOptionsPrefix++VecGetOptionsPrefix++++man+https://petsc.org/release/manualpages/Vec/VecGetOptionsPrefix.html#VecGetOptionsPrefix
man:+VecGetState++VecGetState++++man+https://petsc.org/release/manualpages/Vec/VecGetState.html#VecGetState
man:+VecSetUp++VecSetUp++++man+https://petsc.org/release/manualpages/Vec/VecSetUp.html#VecSetUp
man:+VecCopy++VecCopy++++man+https://petsc.org/release/manualpages/Vec/VecCopy.html#VecCopy
man:+VecSwap++VecSwap++++man+https://petsc.org/release/manualpages/Vec/VecSwap.html#VecSwap
man:+VecStashViewFromOptions++VecStashViewFromOptions++++man+https://petsc.org/release/manualpages/Vec/VecStashViewFromOptions.html#VecStashViewFromOptions
man:+VecStashView++VecStashView++++man+https://petsc.org/release/manualpages/Vec/VecStashView.html#VecStashView
man:+VecGetLayout++VecGetLayout++++man+https://petsc.org/release/manualpages/Vec/VecGetLayout.html#VecGetLayout
man:+VecSetLayout++VecSetLayout++++man+https://petsc.org/release/manualpages/Vec/VecSetLayout.html#VecSetLayout
man:+VecFlag++VecFlag++++man+https://petsc.org/release/manualpages/Vec/VecFlag.html#VecFlag
man:+VecSetInf++VecSetInf++++man+https://petsc.org/release/manualpages/Vec/VecSetInf.html#VecSetInf
man:+VecBindToCPU++VecBindToCPU++++man+https://petsc.org/release/manualpages/Vec/VecBindToCPU.html#VecBindToCPU
man:+VecBoundToCPU++VecBoundToCPU++++man+https://petsc.org/release/manualpages/Vec/VecBoundToCPU.html#VecBoundToCPU
man:+VecSetBindingPropagates++VecSetBindingPropagates++++man+https://petsc.org/release/manualpages/Vec/VecSetBindingPropagates.html#VecSetBindingPropagates
man:+VecGetBindingPropagates++VecGetBindingPropagates++++man+https://petsc.org/release/manualpages/Vec/VecGetBindingPropagates.html#VecGetBindingPropagates
man:+VecSetPinnedMemoryMin++VecSetPinnedMemoryMin++++man+https://petsc.org/release/manualpages/Vec/VecSetPinnedMemoryMin.html#VecSetPinnedMemoryMin
man:+VecGetPinnedMemoryMin++VecGetPinnedMemoryMin++++man+https://petsc.org/release/manualpages/Vec/VecGetPinnedMemoryMin.html#VecGetPinnedMemoryMin
man:+VecGetOffloadMask++VecGetOffloadMask++++man+https://petsc.org/release/manualpages/Vec/VecGetOffloadMask.html#VecGetOffloadMask
man:+VecErrorWeightedNorms++VecErrorWeightedNorms++++man+https://petsc.org/release/manualpages/Vec/VecErrorWeightedNorms.html#VecErrorWeightedNorms
man:+VecRegisterAll++VecRegisterAll++++man+https://petsc.org/release/manualpages/Vec/VecRegisterAll.html#VecRegisterAll
man:+VecSetType++VecSetType++++man+https://petsc.org/release/manualpages/Vec/VecSetType.html#VecSetType
man:+VecGetType++VecGetType++++man+https://petsc.org/release/manualpages/Vec/VecGetType.html#VecGetType
man:+VecRegister++VecRegister++++man+https://petsc.org/release/manualpages/Vec/VecRegister.html#VecRegister
man:+ISFinalizePackage++ISFinalizePackage++++man+https://petsc.org/release/manualpages/Vec/ISFinalizePackage.html#ISFinalizePackage
man:+ISInitializePackage++ISInitializePackage++++man+https://petsc.org/release/manualpages/Vec/ISInitializePackage.html#ISInitializePackage
man:+VecInitializePackage++VecInitializePackage++++man+https://petsc.org/release/manualpages/Vec/VecInitializePackage.html#VecInitializePackage
man:+VecFinalizePackage++VecFinalizePackage++++man+https://petsc.org/release/manualpages/Vec/VecFinalizePackage.html#VecFinalizePackage
man:+VecCreate++VecCreate++++man+https://petsc.org/release/manualpages/Vec/VecCreate.html#VecCreate
man:+VecCreateFromOptions++VecCreateFromOptions++++man+https://petsc.org/release/manualpages/Vec/VecCreateFromOptions.html#VecCreateFromOptions
man:+VecCreateMPI++VecCreateMPI++++man+https://petsc.org/release/manualpages/Vec/VecCreateMPI.html#VecCreateMPI
man:+VecGhostGetLocalForm++VecGhostGetLocalForm++++man+https://petsc.org/release/manualpages/Vec/VecGhostGetLocalForm.html#VecGhostGetLocalForm
man:+VecGhostIsLocalForm++VecGhostIsLocalForm++++man+https://petsc.org/release/manualpages/Vec/VecGhostIsLocalForm.html#VecGhostIsLocalForm
man:+VecGhostRestoreLocalForm++VecGhostRestoreLocalForm++++man+https://petsc.org/release/manualpages/Vec/VecGhostRestoreLocalForm.html#VecGhostRestoreLocalForm
man:+VecGhostUpdateBegin++VecGhostUpdateBegin++++man+https://petsc.org/release/manualpages/Vec/VecGhostUpdateBegin.html#VecGhostUpdateBegin
man:+VecGhostUpdateEnd++VecGhostUpdateEnd++++man+https://petsc.org/release/manualpages/Vec/VecGhostUpdateEnd.html#VecGhostUpdateEnd
man:+VECMPI++VECMPI++++man+https://petsc.org/release/manualpages/Vec/VECMPI.html#VECMPI
man:+VECSTANDARD++VECSTANDARD++++man+https://petsc.org/release/manualpages/Vec/VECSTANDARD.html#VECSTANDARD
man:+VecCreateMPIWithArray++VecCreateMPIWithArray++++man+https://petsc.org/release/manualpages/Vec/VecCreateMPIWithArray.html#VecCreateMPIWithArray
man:+VecCreateGhostWithArray++VecCreateGhostWithArray++++man+https://petsc.org/release/manualpages/Vec/VecCreateGhostWithArray.html#VecCreateGhostWithArray
man:+VecGhostGetGhostIS++VecGhostGetGhostIS++++man+https://petsc.org/release/manualpages/Vec/VecGhostGetGhostIS.html#VecGhostGetGhostIS
man:+VecCreateGhost++VecCreateGhost++++man+https://petsc.org/release/manualpages/Vec/VecCreateGhost.html#VecCreateGhost
man:+VecMPISetGhost++VecMPISetGhost++++man+https://petsc.org/release/manualpages/Vec/VecMPISetGhost.html#VecMPISetGhost
man:+VecCreateGhostBlockWithArray++VecCreateGhostBlockWithArray++++man+https://petsc.org/release/manualpages/Vec/VecCreateGhostBlockWithArray.html#VecCreateGhostBlockWithArray
man:+VecCreateGhostBlock++VecCreateGhostBlock++++man+https://petsc.org/release/manualpages/Vec/VecCreateGhostBlock.html#VecCreateGhostBlock
man:+VecCreateSeq++VecCreateSeq++++man+https://petsc.org/release/manualpages/Vec/VecCreateSeq.html#VecCreateSeq
man:+VecCreateSeqWithArray++VecCreateSeqWithArray++++man+https://petsc.org/release/manualpages/Vec/VecCreateSeqWithArray.html#VecCreateSeqWithArray
man:+VECSEQ++VECSEQ++++man+https://petsc.org/release/manualpages/Vec/VECSEQ.html#VECSEQ
man:+VecCreateShared++VecCreateShared++++man+https://petsc.org/release/manualpages/Vec/VecCreateShared.html#VecCreateShared
man:+VecNestGetSubVec++VecNestGetSubVec++++man+https://petsc.org/release/manualpages/Vec/VecNestGetSubVec.html#VecNestGetSubVec
man:+VecNestGetSubVecs++VecNestGetSubVecs++++man+https://petsc.org/release/manualpages/Vec/VecNestGetSubVecs.html#VecNestGetSubVecs
man:+VecNestSetSubVec++VecNestSetSubVec++++man+https://petsc.org/release/manualpages/Vec/VecNestSetSubVec.html#VecNestSetSubVec
man:+VecNestSetSubVecs++VecNestSetSubVecs++++man+https://petsc.org/release/manualpages/Vec/VecNestSetSubVecs.html#VecNestSetSubVecs
man:+VecNestGetSize++VecNestGetSize++++man+https://petsc.org/release/manualpages/Vec/VecNestGetSize.html#VecNestGetSize
man:+VECNEST++VECNEST++++man+https://petsc.org/release/manualpages/Vec/VECNEST.html#VECNEST
man:+VecCreateNest++VecCreateNest++++man+https://petsc.org/release/manualpages/Vec/VecCreateNest.html#VecCreateNest
man:+PetscCommSplitReductionBegin++PetscCommSplitReductionBegin++++man+https://petsc.org/release/manualpages/Vec/PetscCommSplitReductionBegin.html#PetscCommSplitReductionBegin
man:+VecDotBegin++VecDotBegin++++man+https://petsc.org/release/manualpages/Vec/VecDotBegin.html#VecDotBegin
man:+VecDotEnd++VecDotEnd++++man+https://petsc.org/release/manualpages/Vec/VecDotEnd.html#VecDotEnd
man:+VecTDotBegin++VecTDotBegin++++man+https://petsc.org/release/manualpages/Vec/VecTDotBegin.html#VecTDotBegin
man:+VecTDotEnd++VecTDotEnd++++man+https://petsc.org/release/manualpages/Vec/VecTDotEnd.html#VecTDotEnd
man:+VecNormBegin++VecNormBegin++++man+https://petsc.org/release/manualpages/Vec/VecNormBegin.html#VecNormBegin
man:+VecNormEnd++VecNormEnd++++man+https://petsc.org/release/manualpages/Vec/VecNormEnd.html#VecNormEnd
man:+VecMDotBegin++VecMDotBegin++++man+https://petsc.org/release/manualpages/Vec/VecMDotBegin.html#VecMDotBegin
man:+VecMDotEnd++VecMDotEnd++++man+https://petsc.org/release/manualpages/Vec/VecMDotEnd.html#VecMDotEnd
man:+VecMTDotBegin++VecMTDotBegin++++man+https://petsc.org/release/manualpages/Vec/VecMTDotBegin.html#VecMTDotBegin
man:+VecMTDotEnd++VecMTDotEnd++++man+https://petsc.org/release/manualpages/Vec/VecMTDotEnd.html#VecMTDotEnd
man:+VecStrideSet++VecStrideSet++++man+https://petsc.org/release/manualpages/Vec/VecStrideSet.html#VecStrideSet
man:+VecStrideScale++VecStrideScale++++man+https://petsc.org/release/manualpages/Vec/VecStrideScale.html#VecStrideScale
man:+VecStrideNorm++VecStrideNorm++++man+https://petsc.org/release/manualpages/Vec/VecStrideNorm.html#VecStrideNorm
man:+VecStrideMax++VecStrideMax++++man+https://petsc.org/release/manualpages/Vec/VecStrideMax.html#VecStrideMax
man:+VecStrideMin++VecStrideMin++++man+https://petsc.org/release/manualpages/Vec/VecStrideMin.html#VecStrideMin
man:+VecStrideSum++VecStrideSum++++man+https://petsc.org/release/manualpages/Vec/VecStrideSum.html#VecStrideSum
man:+VecStrideScaleAll++VecStrideScaleAll++++man+https://petsc.org/release/manualpages/Vec/VecStrideScaleAll.html#VecStrideScaleAll
man:+VecStrideNormAll++VecStrideNormAll++++man+https://petsc.org/release/manualpages/Vec/VecStrideNormAll.html#VecStrideNormAll
man:+VecStrideMaxAll++VecStrideMaxAll++++man+https://petsc.org/release/manualpages/Vec/VecStrideMaxAll.html#VecStrideMaxAll
man:+VecStrideMinAll++VecStrideMinAll++++man+https://petsc.org/release/manualpages/Vec/VecStrideMinAll.html#VecStrideMinAll
man:+VecStrideSumAll++VecStrideSumAll++++man+https://petsc.org/release/manualpages/Vec/VecStrideSumAll.html#VecStrideSumAll
man:+VecStrideGatherAll++VecStrideGatherAll++++man+https://petsc.org/release/manualpages/Vec/VecStrideGatherAll.html#VecStrideGatherAll
man:+VecStrideScatterAll++VecStrideScatterAll++++man+https://petsc.org/release/manualpages/Vec/VecStrideScatterAll.html#VecStrideScatterAll
man:+VecStrideGather++VecStrideGather++++man+https://petsc.org/release/manualpages/Vec/VecStrideGather.html#VecStrideGather
man:+VecStrideScatter++VecStrideScatter++++man+https://petsc.org/release/manualpages/Vec/VecStrideScatter.html#VecStrideScatter
man:+VecStrideSubSetGather++VecStrideSubSetGather++++man+https://petsc.org/release/manualpages/Vec/VecStrideSubSetGather.html#VecStrideSubSetGather
man:+VecStrideSubSetScatter++VecStrideSubSetScatter++++man+https://petsc.org/release/manualpages/Vec/VecStrideSubSetScatter.html#VecStrideSubSetScatter
man:+VecExp++VecExp++++man+https://petsc.org/release/manualpages/Vec/VecExp.html#VecExp
man:+VecLog++VecLog++++man+https://petsc.org/release/manualpages/Vec/VecLog.html#VecLog
man:+VecAbs++VecAbs++++man+https://petsc.org/release/manualpages/Vec/VecAbs.html#VecAbs
man:+VecConjugate++VecConjugate++++man+https://petsc.org/release/manualpages/Vec/VecConjugate.html#VecConjugate
man:+VecSqrtAbs++VecSqrtAbs++++man+https://petsc.org/release/manualpages/Vec/VecSqrtAbs.html#VecSqrtAbs
man:+VecImaginaryPart++VecImaginaryPart++++man+https://petsc.org/release/manualpages/Vec/VecImaginaryPart.html#VecImaginaryPart
man:+VecRealPart++VecRealPart++++man+https://petsc.org/release/manualpages/Vec/VecRealPart.html#VecRealPart
man:+VecDotNorm2++VecDotNorm2++++man+https://petsc.org/release/manualpages/Vec/VecDotNorm2.html#VecDotNorm2
man:+VecSum++VecSum++++man+https://petsc.org/release/manualpages/Vec/VecSum.html#VecSum
man:+VecMean++VecMean++++man+https://petsc.org/release/manualpages/Vec/VecMean.html#VecMean
man:+VecShift++VecShift++++man+https://petsc.org/release/manualpages/Vec/VecShift.html#VecShift
man:+VecPermute++VecPermute++++man+https://petsc.org/release/manualpages/Vec/VecPermute.html#VecPermute
man:+VecEqual++VecEqual++++man+https://petsc.org/release/manualpages/Vec/VecEqual.html#VecEqual
man:+VecUniqueEntries++VecUniqueEntries++++man+https://petsc.org/release/manualpages/Vec/VecUniqueEntries.html#VecUniqueEntries
man:+VecScatterSetUp++VecScatterSetUp++++man+https://petsc.org/release/manualpages/Vec/VecScatterSetUp.html#VecScatterSetUp
man:+VecScatterSetType++VecScatterSetType++++man+https://petsc.org/release/manualpages/Vec/VecScatterSetType.html#VecScatterSetType
man:+VecScatterGetType++VecScatterGetType++++man+https://petsc.org/release/manualpages/Vec/VecScatterGetType.html#VecScatterGetType
man:+VecScatterRegister++VecScatterRegister++++man+https://petsc.org/release/manualpages/Vec/VecScatterRegister.html#VecScatterRegister
man:+VecScatterGetMerged++VecScatterGetMerged++++man+https://petsc.org/release/manualpages/Vec/VecScatterGetMerged.html#VecScatterGetMerged
man:+VecScatterDestroy++VecScatterDestroy++++man+https://petsc.org/release/manualpages/Vec/VecScatterDestroy.html#VecScatterDestroy
man:+VecScatterCopy++VecScatterCopy++++man+https://petsc.org/release/manualpages/Vec/VecScatterCopy.html#VecScatterCopy
man:+VecScatterViewFromOptions++VecScatterViewFromOptions++++man+https://petsc.org/release/manualpages/Vec/VecScatterViewFromOptions.html#VecScatterViewFromOptions
man:+VecScatterView++VecScatterView++++man+https://petsc.org/release/manualpages/Vec/VecScatterView.html#VecScatterView
man:+VecScatterRemap++VecScatterRemap++++man+https://petsc.org/release/manualpages/Vec/VecScatterRemap.html#VecScatterRemap
man:+VecScatterSetFromOptions++VecScatterSetFromOptions++++man+https://petsc.org/release/manualpages/Vec/VecScatterSetFromOptions.html#VecScatterSetFromOptions
man:+VecScatterCreate++VecScatterCreate++++man+https://petsc.org/release/manualpages/Vec/VecScatterCreate.html#VecScatterCreate
man:+VecScatterCreateToAll++VecScatterCreateToAll++++man+https://petsc.org/release/manualpages/Vec/VecScatterCreateToAll.html#VecScatterCreateToAll
man:+VecScatterCreateToZero++VecScatterCreateToZero++++man+https://petsc.org/release/manualpages/Vec/VecScatterCreateToZero.html#VecScatterCreateToZero
man:+VecScatterBegin++VecScatterBegin++++man+https://petsc.org/release/manualpages/Vec/VecScatterBegin.html#VecScatterBegin
man:+VecScatterEnd++VecScatterEnd++++man+https://petsc.org/release/manualpages/Vec/VecScatterEnd.html#VecScatterEnd
man:+VecFilter++VecFilter++++man+https://petsc.org/release/manualpages/Vec/VecFilter.html#VecFilter
man:+VecWhichEqual++VecWhichEqual++++man+https://petsc.org/release/manualpages/Vec/VecWhichEqual.html#VecWhichEqual
man:+VecWhichLessThan++VecWhichLessThan++++man+https://petsc.org/release/manualpages/Vec/VecWhichLessThan.html#VecWhichLessThan
man:+VecWhichGreaterThan++VecWhichGreaterThan++++man+https://petsc.org/release/manualpages/Vec/VecWhichGreaterThan.html#VecWhichGreaterThan
man:+VecWhichBetween++VecWhichBetween++++man+https://petsc.org/release/manualpages/Vec/VecWhichBetween.html#VecWhichBetween
man:+VecWhichBetweenOrEqual++VecWhichBetweenOrEqual++++man+https://petsc.org/release/manualpages/Vec/VecWhichBetweenOrEqual.html#VecWhichBetweenOrEqual
man:+VecWhichInactive++VecWhichInactive++++man+https://petsc.org/release/manualpages/Vec/VecWhichInactive.html#VecWhichInactive
man:+VecISAXPY++VecISAXPY++++man+https://petsc.org/release/manualpages/Vec/VecISAXPY.html#VecISAXPY
man:+VecISCopy++VecISCopy++++man+https://petsc.org/release/manualpages/Vec/VecISCopy.html#VecISCopy
man:+ISComplementVec++ISComplementVec++++man+https://petsc.org/release/manualpages/Vec/ISComplementVec.html#ISComplementVec
man:+VecISSet++VecISSet++++man+https://petsc.org/release/manualpages/Vec/VecISSet.html#VecISSet
man:+VecISShift++VecISShift++++man+https://petsc.org/release/manualpages/Vec/VecISShift.html#VecISShift
man:+VecBoundGradientProjection++VecBoundGradientProjection++++man+https://petsc.org/release/manualpages/Vec/VecBoundGradientProjection.html#VecBoundGradientProjection
man:+VecStepMaxBounded++VecStepMaxBounded++++man+https://petsc.org/release/manualpages/Vec/VecStepMaxBounded.html#VecStepMaxBounded
man:+VecStepBoundInfo++VecStepBoundInfo++++man+https://petsc.org/release/manualpages/Vec/VecStepBoundInfo.html#VecStepBoundInfo
man:+VecStepMax++VecStepMax++++man+https://petsc.org/release/manualpages/Vec/VecStepMax.html#VecStepMax
man:+VecPow++VecPow++++man+https://petsc.org/release/manualpages/Vec/VecPow.html#VecPow
man:+VecMedian++VecMedian++++man+https://petsc.org/release/manualpages/Vec/VecMedian.html#VecMedian
man:+PetscSectionVecView++PetscSectionVecView++++man+https://petsc.org/release/manualpages/Vec/PetscSectionVecView.html#PetscSectionVecView
man:+VecGetValuesSection++VecGetValuesSection++++man+https://petsc.org/release/manualpages/Vec/VecGetValuesSection.html#VecGetValuesSection
man:+VecSetValuesSection++VecSetValuesSection++++man+https://petsc.org/release/manualpages/Vec/VecSetValuesSection.html#VecSetValuesSection
man:+PetscSectionVecNorm++PetscSectionVecNorm++++man+https://petsc.org/release/manualpages/Vec/PetscSectionVecNorm.html#PetscSectionVecNorm
man:+VecTaggerCreate++VecTaggerCreate++++man+https://petsc.org/release/manualpages/Vec/VecTaggerCreate.html#VecTaggerCreate
man:+VecTaggerSetType++VecTaggerSetType++++man+https://petsc.org/release/manualpages/Vec/VecTaggerSetType.html#VecTaggerSetType
man:+VecTaggerGetType++VecTaggerGetType++++man+https://petsc.org/release/manualpages/Vec/VecTaggerGetType.html#VecTaggerGetType
man:+VecTaggerDestroy++VecTaggerDestroy++++man+https://petsc.org/release/manualpages/Vec/VecTaggerDestroy.html#VecTaggerDestroy
man:+VecTaggerSetUp++VecTaggerSetUp++++man+https://petsc.org/release/manualpages/Vec/VecTaggerSetUp.html#VecTaggerSetUp
man:+VecTaggerSetFromOptions++VecTaggerSetFromOptions++++man+https://petsc.org/release/manualpages/Vec/VecTaggerSetFromOptions.html#VecTaggerSetFromOptions
man:+VecTaggerSetBlockSize++VecTaggerSetBlockSize++++man+https://petsc.org/release/manualpages/Vec/VecTaggerSetBlockSize.html#VecTaggerSetBlockSize
man:+VecTaggerGetBlockSize++VecTaggerGetBlockSize++++man+https://petsc.org/release/manualpages/Vec/VecTaggerGetBlockSize.html#VecTaggerGetBlockSize
man:+VecTaggerSetInvert++VecTaggerSetInvert++++man+https://petsc.org/release/manualpages/Vec/VecTaggerSetInvert.html#VecTaggerSetInvert
man:+VecTaggerGetInvert++VecTaggerGetInvert++++man+https://petsc.org/release/manualpages/Vec/VecTaggerGetInvert.html#VecTaggerGetInvert
man:+VecTaggerView++VecTaggerView++++man+https://petsc.org/release/manualpages/Vec/VecTaggerView.html#VecTaggerView
man:+VecTaggerComputeBoxes++VecTaggerComputeBoxes++++man+https://petsc.org/release/manualpages/Vec/VecTaggerComputeBoxes.html#VecTaggerComputeBoxes
man:+VecTaggerComputeIS++VecTaggerComputeIS++++man+https://petsc.org/release/manualpages/Vec/VecTaggerComputeIS.html#VecTaggerComputeIS
man:+VecTaggerInitializePackage++VecTaggerInitializePackage++++man+https://petsc.org/release/manualpages/Vec/VecTaggerInitializePackage.html#VecTaggerInitializePackage
man:+VecTaggerFinalizePackage++VecTaggerFinalizePackage++++man+https://petsc.org/release/manualpages/Vec/VecTaggerFinalizePackage.html#VecTaggerFinalizePackage
man:+VecTaggerRegisterAll++VecTaggerRegisterAll++++man+https://petsc.org/release/manualpages/Vec/VecTaggerRegisterAll.html#VecTaggerRegisterAll
man:+VecTaggerRegister++VecTaggerRegister++++man+https://petsc.org/release/manualpages/Vec/VecTaggerRegister.html#VecTaggerRegister
man:+VecTaggerOrGetSubs++VecTaggerOrGetSubs++++man+https://petsc.org/release/manualpages/Vec/VecTaggerOrGetSubs.html#VecTaggerOrGetSubs
man:+VecTaggerOrSetSubs++VecTaggerOrSetSubs++++man+https://petsc.org/release/manualpages/Vec/VecTaggerOrSetSubs.html#VecTaggerOrSetSubs
man:+VecTaggerCDFSetMethod++VecTaggerCDFSetMethod++++man+https://petsc.org/release/manualpages/Vec/VecTaggerCDFSetMethod.html#VecTaggerCDFSetMethod
man:+VecTaggerCDFGetMethod++VecTaggerCDFGetMethod++++man+https://petsc.org/release/manualpages/Vec/VecTaggerCDFGetMethod.html#VecTaggerCDFGetMethod
man:+VecTaggerCDFIterativeSetTolerances++VecTaggerCDFIterativeSetTolerances++++man+https://petsc.org/release/manualpages/Vec/VecTaggerCDFIterativeSetTolerances.html#VecTaggerCDFIterativeSetTolerances
man:+VecTaggerCDFIterativeGetTolerances++VecTaggerCDFIterativeGetTolerances++++man+https://petsc.org/release/manualpages/Vec/VecTaggerCDFIterativeGetTolerances.html#VecTaggerCDFIterativeGetTolerances
man:+VecTaggerCDFSetBox++VecTaggerCDFSetBox++++man+https://petsc.org/release/manualpages/Vec/VecTaggerCDFSetBox.html#VecTaggerCDFSetBox
man:+VecTaggerCDFGetBox++VecTaggerCDFGetBox++++man+https://petsc.org/release/manualpages/Vec/VecTaggerCDFGetBox.html#VecTaggerCDFGetBox
man:+VecTaggerRelativeSetBox++VecTaggerRelativeSetBox++++man+https://petsc.org/release/manualpages/Vec/VecTaggerRelativeSetBox.html#VecTaggerRelativeSetBox
man:+VecTaggerRelativeGetBox++VecTaggerRelativeGetBox++++man+https://petsc.org/release/manualpages/Vec/VecTaggerRelativeGetBox.html#VecTaggerRelativeGetBox
man:+VecTaggerAndGetSubs++VecTaggerAndGetSubs++++man+https://petsc.org/release/manualpages/Vec/VecTaggerAndGetSubs.html#VecTaggerAndGetSubs
man:+VecTaggerAndSetSubs++VecTaggerAndSetSubs++++man+https://petsc.org/release/manualpages/Vec/VecTaggerAndSetSubs.html#VecTaggerAndSetSubs
man:+VecTaggerAbsoluteSetBox++VecTaggerAbsoluteSetBox++++man+https://petsc.org/release/manualpages/Vec/VecTaggerAbsoluteSetBox.html#VecTaggerAbsoluteSetBox
man:+VecTaggerAbsoluteGetBox++VecTaggerAbsoluteGetBox++++man+https://petsc.org/release/manualpages/Vec/VecTaggerAbsoluteGetBox.html#VecTaggerAbsoluteGetBox
man:+PFRegisterAll++PFRegisterAll++++man+https://petsc.org/release/manualpages/PF/PFRegisterAll.html#PFRegisterAll
man:+PFSet++PFSet++++man+https://petsc.org/release/manualpages/PF/PFSet.html#PFSet
man:+PFDestroy++PFDestroy++++man+https://petsc.org/release/manualpages/PF/PFDestroy.html#PFDestroy
man:+PFCreate++PFCreate++++man+https://petsc.org/release/manualpages/PF/PFCreate.html#PFCreate
man:+PFApplyVec++PFApplyVec++++man+https://petsc.org/release/manualpages/PF/PFApplyVec.html#PFApplyVec
man:+PFApply++PFApply++++man+https://petsc.org/release/manualpages/PF/PFApply.html#PFApply
man:+PFViewFromOptions++PFViewFromOptions++++man+https://petsc.org/release/manualpages/PF/PFViewFromOptions.html#PFViewFromOptions
man:+PFView++PFView++++man+https://petsc.org/release/manualpages/PF/PFView.html#PFView
man:+PFRegister++PFRegister++++man+https://petsc.org/release/manualpages/PF/PFRegister.html#PFRegister
man:+PFGetType++PFGetType++++man+https://petsc.org/release/manualpages/PF/PFGetType.html#PFGetType
man:+PFSetType++PFSetType++++man+https://petsc.org/release/manualpages/PF/PFSetType.html#PFSetType
man:+PFSetFromOptions++PFSetFromOptions++++man+https://petsc.org/release/manualpages/PF/PFSetFromOptions.html#PFSetFromOptions
man:+PFFinalizePackage++PFFinalizePackage++++man+https://petsc.org/release/manualpages/PF/PFFinalizePackage.html#PFFinalizePackage
man:+PFInitializePackage++PFInitializePackage++++man+https://petsc.org/release/manualpages/PF/PFInitializePackage.html#PFInitializePackage
man:+PFStringSetFunction++PFStringSetFunction++++man+https://petsc.org/release/manualpages/PF/PFStringSetFunction.html#PFStringSetFunction
man:+DMCreateSectionSubDM++DMCreateSectionSubDM++++man+https://petsc.org/release/manualpages/DM/DMCreateSectionSubDM.html#DMCreateSectionSubDM
man:+DMCreateSectionSuperDM++DMCreateSectionSuperDM++++man+https://petsc.org/release/manualpages/DM/DMCreateSectionSuperDM.html#DMCreateSectionSuperDM
man:+DMCreate++DMCreate++++man+https://petsc.org/release/manualpages/DM/DMCreate.html#DMCreate
man:+DMClone++DMClone++++man+https://petsc.org/release/manualpages/DM/DMClone.html#DMClone
man:+DMSetVecType++DMSetVecType++++man+https://petsc.org/release/manualpages/DM/DMSetVecType.html#DMSetVecType
man:+DMGetVecType++DMGetVecType++++man+https://petsc.org/release/manualpages/DM/DMGetVecType.html#DMGetVecType
man:+VecGetDM++VecGetDM++++man+https://petsc.org/release/manualpages/DM/VecGetDM.html#VecGetDM
man:+VecSetDM++VecSetDM++++man+https://petsc.org/release/manualpages/DM/VecSetDM.html#VecSetDM
man:+DMSetISColoringType++DMSetISColoringType++++man+https://petsc.org/release/manualpages/DM/DMSetISColoringType.html#DMSetISColoringType
man:+DMGetISColoringType++DMGetISColoringType++++man+https://petsc.org/release/manualpages/DM/DMGetISColoringType.html#DMGetISColoringType
man:+DMSetMatType++DMSetMatType++++man+https://petsc.org/release/manualpages/DM/DMSetMatType.html#DMSetMatType
man:+DMGetMatType++DMGetMatType++++man+https://petsc.org/release/manualpages/DM/DMGetMatType.html#DMGetMatType
man:+MatGetDM++MatGetDM++++man+https://petsc.org/release/manualpages/DM/MatGetDM.html#MatGetDM
man:+MatSetDM++MatSetDM++++man+https://petsc.org/release/manualpages/DM/MatSetDM.html#MatSetDM
man:+DMSetOptionsPrefix++DMSetOptionsPrefix++++man+https://petsc.org/release/manualpages/DM/DMSetOptionsPrefix.html#DMSetOptionsPrefix
man:+DMAppendOptionsPrefix++DMAppendOptionsPrefix++++man+https://petsc.org/release/manualpages/DM/DMAppendOptionsPrefix.html#DMAppendOptionsPrefix
man:+DMGetOptionsPrefix++DMGetOptionsPrefix++++man+https://petsc.org/release/manualpages/DM/DMGetOptionsPrefix.html#DMGetOptionsPrefix
man:+DMDestroy++DMDestroy++++man+https://petsc.org/release/manualpages/DM/DMDestroy.html#DMDestroy
man:+DMSetUp++DMSetUp++++man+https://petsc.org/release/manualpages/DM/DMSetUp.html#DMSetUp
man:+DMSetFromOptions++DMSetFromOptions++++man+https://petsc.org/release/manualpages/DM/DMSetFromOptions.html#DMSetFromOptions
man:+DMViewFromOptions++DMViewFromOptions++++man+https://petsc.org/release/manualpages/DM/DMViewFromOptions.html#DMViewFromOptions
man:+DMView++DMView++++man+https://petsc.org/release/manualpages/DM/DMView.html#DMView
man:+DMCreateGlobalVector++DMCreateGlobalVector++++man+https://petsc.org/release/manualpages/DM/DMCreateGlobalVector.html#DMCreateGlobalVector
man:+DMCreateLocalVector++DMCreateLocalVector++++man+https://petsc.org/release/manualpages/DM/DMCreateLocalVector.html#DMCreateLocalVector
man:+DMGetLocalToGlobalMapping++DMGetLocalToGlobalMapping++++man+https://petsc.org/release/manualpages/DM/DMGetLocalToGlobalMapping.html#DMGetLocalToGlobalMapping
man:+DMGetBlockSize++DMGetBlockSize++++man+https://petsc.org/release/manualpages/DM/DMGetBlockSize.html#DMGetBlockSize
man:+DMCreateInterpolation++DMCreateInterpolation++++man+https://petsc.org/release/manualpages/DM/DMCreateInterpolation.html#DMCreateInterpolation
man:+DMCreateInterpolationScale++DMCreateInterpolationScale++++man+https://petsc.org/release/manualpages/DM/DMCreateInterpolationScale.html#DMCreateInterpolationScale
man:+DMCreateRestriction++DMCreateRestriction++++man+https://petsc.org/release/manualpages/DM/DMCreateRestriction.html#DMCreateRestriction
man:+DMCreateInjection++DMCreateInjection++++man+https://petsc.org/release/manualpages/DM/DMCreateInjection.html#DMCreateInjection
man:+DMCreateMassMatrix++DMCreateMassMatrix++++man+https://petsc.org/release/manualpages/DM/DMCreateMassMatrix.html#DMCreateMassMatrix
man:+DMCreateMassMatrixLumped++DMCreateMassMatrixLumped++++man+https://petsc.org/release/manualpages/DM/DMCreateMassMatrixLumped.html#DMCreateMassMatrixLumped
man:+DMCreateColoring++DMCreateColoring++++man+https://petsc.org/release/manualpages/DM/DMCreateColoring.html#DMCreateColoring
man:+DMCreateMatrix++DMCreateMatrix++++man+https://petsc.org/release/manualpages/DM/DMCreateMatrix.html#DMCreateMatrix
man:+DMSetMatrixPreallocateSkip++DMSetMatrixPreallocateSkip++++man+https://petsc.org/release/manualpages/DM/DMSetMatrixPreallocateSkip.html#DMSetMatrixPreallocateSkip
man:+DMSetMatrixPreallocateOnly++DMSetMatrixPreallocateOnly++++man+https://petsc.org/release/manualpages/DM/DMSetMatrixPreallocateOnly.html#DMSetMatrixPreallocateOnly
man:+DMSetMatrixStructureOnly++DMSetMatrixStructureOnly++++man+https://petsc.org/release/manualpages/DM/DMSetMatrixStructureOnly.html#DMSetMatrixStructureOnly
man:+DMSetBlockingType++DMSetBlockingType++++man+https://petsc.org/release/manualpages/DM/DMSetBlockingType.html#DMSetBlockingType
man:+DMGetBlockingType++DMGetBlockingType++++man+https://petsc.org/release/manualpages/DM/DMGetBlockingType.html#DMGetBlockingType
man:+DMGetWorkArray++DMGetWorkArray++++man+https://petsc.org/release/manualpages/DM/DMGetWorkArray.html#DMGetWorkArray
man:+DMRestoreWorkArray++DMRestoreWorkArray++++man+https://petsc.org/release/manualpages/DM/DMRestoreWorkArray.html#DMRestoreWorkArray
man:+DMSetNullSpaceConstructor++DMSetNullSpaceConstructor++++man+https://petsc.org/release/manualpages/DM/DMSetNullSpaceConstructor.html#DMSetNullSpaceConstructor
man:+DMGetNullSpaceConstructor++DMGetNullSpaceConstructor++++man+https://petsc.org/release/manualpages/DM/DMGetNullSpaceConstructor.html#DMGetNullSpaceConstructor
man:+DMSetNearNullSpaceConstructor++DMSetNearNullSpaceConstructor++++man+https://petsc.org/release/manualpages/DM/DMSetNearNullSpaceConstructor.html#DMSetNearNullSpaceConstructor
man:+DMGetNearNullSpaceConstructor++DMGetNearNullSpaceConstructor++++man+https://petsc.org/release/manualpages/DM/DMGetNearNullSpaceConstructor.html#DMGetNearNullSpaceConstructor
man:+DMCreateFieldIS++DMCreateFieldIS++++man+https://petsc.org/release/manualpages/DM/DMCreateFieldIS.html#DMCreateFieldIS
man:+DMCreateFieldDecomposition++DMCreateFieldDecomposition++++man+https://petsc.org/release/manualpages/DM/DMCreateFieldDecomposition.html#DMCreateFieldDecomposition
man:+DMCreateSubDM++DMCreateSubDM++++man+https://petsc.org/release/manualpages/DM/DMCreateSubDM.html#DMCreateSubDM
man:+DMCreateSuperDM++DMCreateSuperDM++++man+https://petsc.org/release/manualpages/DM/DMCreateSuperDM.html#DMCreateSuperDM
man:+DMCreateDomainDecomposition++DMCreateDomainDecomposition++++man+https://petsc.org/release/manualpages/DM/DMCreateDomainDecomposition.html#DMCreateDomainDecomposition
man:+DMCreateDomainDecompositionScatters++DMCreateDomainDecompositionScatters++++man+https://petsc.org/release/manualpages/DM/DMCreateDomainDecompositionScatters.html#DMCreateDomainDecompositionScatters
man:+DMRefine++DMRefine++++man+https://petsc.org/release/manualpages/DM/DMRefine.html#DMRefine
man:+DMRefineHookAdd++DMRefineHookAdd++++man+https://petsc.org/release/manualpages/DM/DMRefineHookAdd.html#DMRefineHookAdd
man:+DMRefineHookRemove++DMRefineHookRemove++++man+https://petsc.org/release/manualpages/DM/DMRefineHookRemove.html#DMRefineHookRemove
man:+DMInterpolate++DMInterpolate++++man+https://petsc.org/release/manualpages/DM/DMInterpolate.html#DMInterpolate
man:+DMInterpolateSolution++DMInterpolateSolution++++man+https://petsc.org/release/manualpages/DM/DMInterpolateSolution.html#DMInterpolateSolution
man:+DMGetRefineLevel++DMGetRefineLevel++++man+https://petsc.org/release/manualpages/DM/DMGetRefineLevel.html#DMGetRefineLevel
man:+DMSetRefineLevel++DMSetRefineLevel++++man+https://petsc.org/release/manualpages/DM/DMSetRefineLevel.html#DMSetRefineLevel
man:+DMExtrude++DMExtrude++++man+https://petsc.org/release/manualpages/DM/DMExtrude.html#DMExtrude
man:+DMHasBasisTransform++DMHasBasisTransform++++man+https://petsc.org/release/manualpages/DM/DMHasBasisTransform.html#DMHasBasisTransform
man:+DMGlobalToLocalHookAdd++DMGlobalToLocalHookAdd++++man+https://petsc.org/release/manualpages/DM/DMGlobalToLocalHookAdd.html#DMGlobalToLocalHookAdd
man:+DMGlobalToLocal++DMGlobalToLocal++++man+https://petsc.org/release/manualpages/DM/DMGlobalToLocal.html#DMGlobalToLocal
man:+DMGlobalToLocalBegin++DMGlobalToLocalBegin++++man+https://petsc.org/release/manualpages/DM/DMGlobalToLocalBegin.html#DMGlobalToLocalBegin
man:+DMGlobalToLocalEnd++DMGlobalToLocalEnd++++man+https://petsc.org/release/manualpages/DM/DMGlobalToLocalEnd.html#DMGlobalToLocalEnd
man:+DMLocalToGlobalHookAdd++DMLocalToGlobalHookAdd++++man+https://petsc.org/release/manualpages/DM/DMLocalToGlobalHookAdd.html#DMLocalToGlobalHookAdd
man:+DMLocalToGlobal++DMLocalToGlobal++++man+https://petsc.org/release/manualpages/DM/DMLocalToGlobal.html#DMLocalToGlobal
man:+DMLocalToGlobalBegin++DMLocalToGlobalBegin++++man+https://petsc.org/release/manualpages/DM/DMLocalToGlobalBegin.html#DMLocalToGlobalBegin
man:+DMLocalToGlobalEnd++DMLocalToGlobalEnd++++man+https://petsc.org/release/manualpages/DM/DMLocalToGlobalEnd.html#DMLocalToGlobalEnd
man:+DMLocalToLocalBegin++DMLocalToLocalBegin++++man+https://petsc.org/release/manualpages/DM/DMLocalToLocalBegin.html#DMLocalToLocalBegin
man:+DMLocalToLocalEnd++DMLocalToLocalEnd++++man+https://petsc.org/release/manualpages/DM/DMLocalToLocalEnd.html#DMLocalToLocalEnd
man:+DMCoarsen++DMCoarsen++++man+https://petsc.org/release/manualpages/DM/DMCoarsen.html#DMCoarsen
man:+DMCoarsenHookAdd++DMCoarsenHookAdd++++man+https://petsc.org/release/manualpages/DM/DMCoarsenHookAdd.html#DMCoarsenHookAdd
man:+DMCoarsenHookRemove++DMCoarsenHookRemove++++man+https://petsc.org/release/manualpages/DM/DMCoarsenHookRemove.html#DMCoarsenHookRemove
man:+DMRestrict++DMRestrict++++man+https://petsc.org/release/manualpages/DM/DMRestrict.html#DMRestrict
man:+DMSubDomainHookAdd++DMSubDomainHookAdd++++man+https://petsc.org/release/manualpages/DM/DMSubDomainHookAdd.html#DMSubDomainHookAdd
man:+DMSubDomainHookRemove++DMSubDomainHookRemove++++man+https://petsc.org/release/manualpages/DM/DMSubDomainHookRemove.html#DMSubDomainHookRemove
man:+DMSubDomainRestrict++DMSubDomainRestrict++++man+https://petsc.org/release/manualpages/DM/DMSubDomainRestrict.html#DMSubDomainRestrict
man:+DMGetCoarsenLevel++DMGetCoarsenLevel++++man+https://petsc.org/release/manualpages/DM/DMGetCoarsenLevel.html#DMGetCoarsenLevel
man:+DMSetCoarsenLevel++DMSetCoarsenLevel++++man+https://petsc.org/release/manualpages/DM/DMSetCoarsenLevel.html#DMSetCoarsenLevel
man:+DMRefineHierarchy++DMRefineHierarchy++++man+https://petsc.org/release/manualpages/DM/DMRefineHierarchy.html#DMRefineHierarchy
man:+DMCoarsenHierarchy++DMCoarsenHierarchy++++man+https://petsc.org/release/manualpages/DM/DMCoarsenHierarchy.html#DMCoarsenHierarchy
man:+DMSetApplicationContextDestroy++DMSetApplicationContextDestroy++++man+https://petsc.org/release/manualpages/DM/DMSetApplicationContextDestroy.html#DMSetApplicationContextDestroy
man:+DMSetApplicationContext++DMSetApplicationContext++++man+https://petsc.org/release/manualpages/DM/DMSetApplicationContext.html#DMSetApplicationContext
man:+DMGetApplicationContext++DMGetApplicationContext++++man+https://petsc.org/release/manualpages/DM/DMGetApplicationContext.html#DMGetApplicationContext
man:+DMSetVariableBounds++DMSetVariableBounds++++man+https://petsc.org/release/manualpages/DM/DMSetVariableBounds.html#DMSetVariableBounds
man:+DMHasVariableBounds++DMHasVariableBounds++++man+https://petsc.org/release/manualpages/DM/DMHasVariableBounds.html#DMHasVariableBounds
man:+DMComputeVariableBounds++DMComputeVariableBounds++++man+https://petsc.org/release/manualpages/DM/DMComputeVariableBounds.html#DMComputeVariableBounds
man:+DMHasColoring++DMHasColoring++++man+https://petsc.org/release/manualpages/DM/DMHasColoring.html#DMHasColoring
man:+DMHasCreateRestriction++DMHasCreateRestriction++++man+https://petsc.org/release/manualpages/DM/DMHasCreateRestriction.html#DMHasCreateRestriction
man:+DMHasCreateInjection++DMHasCreateInjection++++man+https://petsc.org/release/manualpages/DM/DMHasCreateInjection.html#DMHasCreateInjection
man:+DMSetType++DMSetType++++man+https://petsc.org/release/manualpages/DM/DMSetType.html#DMSetType
man:+DMGetType++DMGetType++++man+https://petsc.org/release/manualpages/DM/DMGetType.html#DMGetType
man:+DMConvert++DMConvert++++man+https://petsc.org/release/manualpages/DM/DMConvert.html#DMConvert
man:+DMRegister++DMRegister++++man+https://petsc.org/release/manualpages/DM/DMRegister.html#DMRegister
man:+DMLoad++DMLoad++++man+https://petsc.org/release/manualpages/DM/DMLoad.html#DMLoad
man:+DMGetLocalSection++DMGetLocalSection++++man+https://petsc.org/release/manualpages/DM/DMGetLocalSection.html#DMGetLocalSection
man:+DMSetLocalSection++DMSetLocalSection++++man+https://petsc.org/release/manualpages/DM/DMSetLocalSection.html#DMSetLocalSection
man:+DMCreateSectionPermutation++DMCreateSectionPermutation++++man+https://petsc.org/release/manualpages/DM/DMCreateSectionPermutation.html#DMCreateSectionPermutation
man:+DMGetDefaultConstraints++DMGetDefaultConstraints++++man+https://petsc.org/release/manualpages/DM/DMGetDefaultConstraints.html#DMGetDefaultConstraints
man:+DMSetDefaultConstraints++DMSetDefaultConstraints++++man+https://petsc.org/release/manualpages/DM/DMSetDefaultConstraints.html#DMSetDefaultConstraints
man:+DMGetGlobalSection++DMGetGlobalSection++++man+https://petsc.org/release/manualpages/DM/DMGetGlobalSection.html#DMGetGlobalSection
man:+DMSetGlobalSection++DMSetGlobalSection++++man+https://petsc.org/release/manualpages/DM/DMSetGlobalSection.html#DMSetGlobalSection
man:+DMGetSectionSF++DMGetSectionSF++++man+https://petsc.org/release/manualpages/DM/DMGetSectionSF.html#DMGetSectionSF
man:+DMSetSectionSF++DMSetSectionSF++++man+https://petsc.org/release/manualpages/DM/DMSetSectionSF.html#DMSetSectionSF
man:+DMCreateSectionSF++DMCreateSectionSF++++man+https://petsc.org/release/manualpages/DM/DMCreateSectionSF.html#DMCreateSectionSF
man:+DMGetPointSF++DMGetPointSF++++man+https://petsc.org/release/manualpages/DM/DMGetPointSF.html#DMGetPointSF
man:+DMSetPointSF++DMSetPointSF++++man+https://petsc.org/release/manualpages/DM/DMSetPointSF.html#DMSetPointSF
man:+DMGetNaturalSF++DMGetNaturalSF++++man+https://petsc.org/release/manualpages/DM/DMGetNaturalSF.html#DMGetNaturalSF
man:+DMSetNaturalSF++DMSetNaturalSF++++man+https://petsc.org/release/manualpages/DM/DMSetNaturalSF.html#DMSetNaturalSF
man:+DMClearFields++DMClearFields++++man+https://petsc.org/release/manualpages/DM/DMClearFields.html#DMClearFields
man:+DMGetNumFields++DMGetNumFields++++man+https://petsc.org/release/manualpages/DM/DMGetNumFields.html#DMGetNumFields
man:+DMSetNumFields++DMSetNumFields++++man+https://petsc.org/release/manualpages/DM/DMSetNumFields.html#DMSetNumFields
man:+DMGetField++DMGetField++++man+https://petsc.org/release/manualpages/DM/DMGetField.html#DMGetField
man:+DMSetField++DMSetField++++man+https://petsc.org/release/manualpages/DM/DMSetField.html#DMSetField
man:+DMAddField++DMAddField++++man+https://petsc.org/release/manualpages/DM/DMAddField.html#DMAddField
man:+DMSetFieldAvoidTensor++DMSetFieldAvoidTensor++++man+https://petsc.org/release/manualpages/DM/DMSetFieldAvoidTensor.html#DMSetFieldAvoidTensor
man:+DMGetFieldAvoidTensor++DMGetFieldAvoidTensor++++man+https://petsc.org/release/manualpages/DM/DMGetFieldAvoidTensor.html#DMGetFieldAvoidTensor
man:+DMCopyFields++DMCopyFields++++man+https://petsc.org/release/manualpages/DM/DMCopyFields.html#DMCopyFields
man:+DMGetAdjacency++DMGetAdjacency++++man+https://petsc.org/release/manualpages/DM/DMGetAdjacency.html#DMGetAdjacency
man:+DMSetAdjacency++DMSetAdjacency++++man+https://petsc.org/release/manualpages/DM/DMSetAdjacency.html#DMSetAdjacency
man:+DMGetBasicAdjacency++DMGetBasicAdjacency++++man+https://petsc.org/release/manualpages/DM/DMGetBasicAdjacency.html#DMGetBasicAdjacency
man:+DMSetBasicAdjacency++DMSetBasicAdjacency++++man+https://petsc.org/release/manualpages/DM/DMSetBasicAdjacency.html#DMSetBasicAdjacency
man:+DMGetNumDS++DMGetNumDS++++man+https://petsc.org/release/manualpages/DM/DMGetNumDS.html#DMGetNumDS
man:+DMClearDS++DMClearDS++++man+https://petsc.org/release/manualpages/DM/DMClearDS.html#DMClearDS
man:+DMGetDS++DMGetDS++++man+https://petsc.org/release/manualpages/DM/DMGetDS.html#DMGetDS
man:+DMGetCellDS++DMGetCellDS++++man+https://petsc.org/release/manualpages/DM/DMGetCellDS.html#DMGetCellDS
man:+DMGetRegionDS++DMGetRegionDS++++man+https://petsc.org/release/manualpages/DM/DMGetRegionDS.html#DMGetRegionDS
man:+DMSetRegionDS++DMSetRegionDS++++man+https://petsc.org/release/manualpages/DM/DMSetRegionDS.html#DMSetRegionDS
man:+DMGetRegionNumDS++DMGetRegionNumDS++++man+https://petsc.org/release/manualpages/DM/DMGetRegionNumDS.html#DMGetRegionNumDS
man:+DMSetRegionNumDS++DMSetRegionNumDS++++man+https://petsc.org/release/manualpages/DM/DMSetRegionNumDS.html#DMSetRegionNumDS
man:+DMFindRegionNum++DMFindRegionNum++++man+https://petsc.org/release/manualpages/DM/DMFindRegionNum.html#DMFindRegionNum
man:+DMCreateFEDefault++DMCreateFEDefault++++man+https://petsc.org/release/manualpages/DM/DMCreateFEDefault.html#DMCreateFEDefault
man:+DMCreateDS++DMCreateDS++++man+https://petsc.org/release/manualpages/DM/DMCreateDS.html#DMCreateDS
man:+DMUseTensorOrder++DMUseTensorOrder++++man+https://petsc.org/release/manualpages/DM/DMUseTensorOrder.html#DMUseTensorOrder
man:+DMComputeExactSolution++DMComputeExactSolution++++man+https://petsc.org/release/manualpages/DM/DMComputeExactSolution.html#DMComputeExactSolution
man:+DMCopyDS++DMCopyDS++++man+https://petsc.org/release/manualpages/DM/DMCopyDS.html#DMCopyDS
man:+DMCopyDisc++DMCopyDisc++++man+https://petsc.org/release/manualpages/DM/DMCopyDisc.html#DMCopyDisc
man:+DMGetDimension++DMGetDimension++++man+https://petsc.org/release/manualpages/DM/DMGetDimension.html#DMGetDimension
man:+DMSetDimension++DMSetDimension++++man+https://petsc.org/release/manualpages/DM/DMSetDimension.html#DMSetDimension
man:+DMGetDimPoints++DMGetDimPoints++++man+https://petsc.org/release/manualpages/DM/DMGetDimPoints.html#DMGetDimPoints
man:+DMGetOutputDM++DMGetOutputDM++++man+https://petsc.org/release/manualpages/DM/DMGetOutputDM.html#DMGetOutputDM
man:+DMGetOutputSequenceNumber++DMGetOutputSequenceNumber++++man+https://petsc.org/release/manualpages/DM/DMGetOutputSequenceNumber.html#DMGetOutputSequenceNumber
man:+DMSetOutputSequenceNumber++DMSetOutputSequenceNumber++++man+https://petsc.org/release/manualpages/DM/DMSetOutputSequenceNumber.html#DMSetOutputSequenceNumber
man:+DMOutputSequenceLoad++DMOutputSequenceLoad++++man+https://petsc.org/release/manualpages/DM/DMOutputSequenceLoad.html#DMOutputSequenceLoad
man:+DMGetOutputSequenceLength++DMGetOutputSequenceLength++++man+https://petsc.org/release/manualpages/DM/DMGetOutputSequenceLength.html#DMGetOutputSequenceLength
man:+DMGetUseNatural++DMGetUseNatural++++man+https://petsc.org/release/manualpages/DM/DMGetUseNatural.html#DMGetUseNatural
man:+DMSetUseNatural++DMSetUseNatural++++man+https://petsc.org/release/manualpages/DM/DMSetUseNatural.html#DMSetUseNatural
man:+DMCreateLabel++DMCreateLabel++++man+https://petsc.org/release/manualpages/DM/DMCreateLabel.html#DMCreateLabel
man:+DMCreateLabelAtIndex++DMCreateLabelAtIndex++++man+https://petsc.org/release/manualpages/DM/DMCreateLabelAtIndex.html#DMCreateLabelAtIndex
man:+DMGetLabelValue++DMGetLabelValue++++man+https://petsc.org/release/manualpages/DM/DMGetLabelValue.html#DMGetLabelValue
man:+DMSetLabelValue++DMSetLabelValue++++man+https://petsc.org/release/manualpages/DM/DMSetLabelValue.html#DMSetLabelValue
man:+DMClearLabelValue++DMClearLabelValue++++man+https://petsc.org/release/manualpages/DM/DMClearLabelValue.html#DMClearLabelValue
man:+DMGetLabelSize++DMGetLabelSize++++man+https://petsc.org/release/manualpages/DM/DMGetLabelSize.html#DMGetLabelSize
man:+DMGetLabelIdIS++DMGetLabelIdIS++++man+https://petsc.org/release/manualpages/DM/DMGetLabelIdIS.html#DMGetLabelIdIS
man:+DMGetStratumSize++DMGetStratumSize++++man+https://petsc.org/release/manualpages/DM/DMGetStratumSize.html#DMGetStratumSize
man:+DMGetStratumIS++DMGetStratumIS++++man+https://petsc.org/release/manualpages/DM/DMGetStratumIS.html#DMGetStratumIS
man:+DMSetStratumIS++DMSetStratumIS++++man+https://petsc.org/release/manualpages/DM/DMSetStratumIS.html#DMSetStratumIS
man:+DMClearLabelStratum++DMClearLabelStratum++++man+https://petsc.org/release/manualpages/DM/DMClearLabelStratum.html#DMClearLabelStratum
man:+DMGetNumLabels++DMGetNumLabels++++man+https://petsc.org/release/manualpages/DM/DMGetNumLabels.html#DMGetNumLabels
man:+DMGetLabelName++DMGetLabelName++++man+https://petsc.org/release/manualpages/DM/DMGetLabelName.html#DMGetLabelName
man:+DMHasLabel++DMHasLabel++++man+https://petsc.org/release/manualpages/DM/DMHasLabel.html#DMHasLabel
man:+DMGetLabel++DMGetLabel++++man+https://petsc.org/release/manualpages/DM/DMGetLabel.html#DMGetLabel
man:+DMGetLabelByNum++DMGetLabelByNum++++man+https://petsc.org/release/manualpages/DM/DMGetLabelByNum.html#DMGetLabelByNum
man:+DMAddLabel++DMAddLabel++++man+https://petsc.org/release/manualpages/DM/DMAddLabel.html#DMAddLabel
man:+DMSetLabel++DMSetLabel++++man+https://petsc.org/release/manualpages/DM/DMSetLabel.html#DMSetLabel
man:+DMRemoveLabel++DMRemoveLabel++++man+https://petsc.org/release/manualpages/DM/DMRemoveLabel.html#DMRemoveLabel
man:+DMRemoveLabelBySelf++DMRemoveLabelBySelf++++man+https://petsc.org/release/manualpages/DM/DMRemoveLabelBySelf.html#DMRemoveLabelBySelf
man:+DMGetLabelOutput++DMGetLabelOutput++++man+https://petsc.org/release/manualpages/DM/DMGetLabelOutput.html#DMGetLabelOutput
man:+DMSetLabelOutput++DMSetLabelOutput++++man+https://petsc.org/release/manualpages/DM/DMSetLabelOutput.html#DMSetLabelOutput
man:+DMCopyLabels++DMCopyLabels++++man+https://petsc.org/release/manualpages/DM/DMCopyLabels.html#DMCopyLabels
man:+DMCompareLabels++DMCompareLabels++++man+https://petsc.org/release/manualpages/DM/DMCompareLabels.html#DMCompareLabels
man:+DMGetCoarseDM++DMGetCoarseDM++++man+https://petsc.org/release/manualpages/DM/DMGetCoarseDM.html#DMGetCoarseDM
man:+DMSetCoarseDM++DMSetCoarseDM++++man+https://petsc.org/release/manualpages/DM/DMSetCoarseDM.html#DMSetCoarseDM
man:+DMGetFineDM++DMGetFineDM++++man+https://petsc.org/release/manualpages/DM/DMGetFineDM.html#DMGetFineDM
man:+DMSetFineDM++DMSetFineDM++++man+https://petsc.org/release/manualpages/DM/DMSetFineDM.html#DMSetFineDM
man:+DMAddBoundary++DMAddBoundary++++man+https://petsc.org/release/manualpages/DM/DMAddBoundary.html#DMAddBoundary
man:+DMProjectFunction++DMProjectFunction++++man+https://petsc.org/release/manualpages/DM/DMProjectFunction.html#DMProjectFunction
man:+DMProjectFunctionLocal++DMProjectFunctionLocal++++man+https://petsc.org/release/manualpages/DM/DMProjectFunctionLocal.html#DMProjectFunctionLocal
man:+DMProjectFunctionLabel++DMProjectFunctionLabel++++man+https://petsc.org/release/manualpages/DM/DMProjectFunctionLabel.html#DMProjectFunctionLabel
man:+DMProjectFunctionLabelLocal++DMProjectFunctionLabelLocal++++man+https://petsc.org/release/manualpages/DM/DMProjectFunctionLabelLocal.html#DMProjectFunctionLabelLocal
man:+DMProjectFieldLocal++DMProjectFieldLocal++++man+https://petsc.org/release/manualpages/DM/DMProjectFieldLocal.html#DMProjectFieldLocal
man:+DMProjectFieldLabelLocal++DMProjectFieldLabelLocal++++man+https://petsc.org/release/manualpages/DM/DMProjectFieldLabelLocal.html#DMProjectFieldLabelLocal
man:+DMProjectFieldLabel++DMProjectFieldLabel++++man+https://petsc.org/release/manualpages/DM/DMProjectFieldLabel.html#DMProjectFieldLabel
man:+DMProjectBdFieldLabelLocal++DMProjectBdFieldLabelLocal++++man+https://petsc.org/release/manualpages/DM/DMProjectBdFieldLabelLocal.html#DMProjectBdFieldLabelLocal
man:+DMComputeL2Diff++DMComputeL2Diff++++man+https://petsc.org/release/manualpages/DM/DMComputeL2Diff.html#DMComputeL2Diff
man:+DMComputeL2GradientDiff++DMComputeL2GradientDiff++++man+https://petsc.org/release/manualpages/DM/DMComputeL2GradientDiff.html#DMComputeL2GradientDiff
man:+DMComputeL2FieldDiff++DMComputeL2FieldDiff++++man+https://petsc.org/release/manualpages/DM/DMComputeL2FieldDiff.html#DMComputeL2FieldDiff
man:+DMGetNeighbors++DMGetNeighbors++++man+https://petsc.org/release/manualpages/DM/DMGetNeighbors.html#DMGetNeighbors
man:+MatFDColoringUseDM++MatFDColoringUseDM++++man+https://petsc.org/release/manualpages/DM/MatFDColoringUseDM.html#MatFDColoringUseDM
man:+DMGetCompatibility++DMGetCompatibility++++man+https://petsc.org/release/manualpages/DM/DMGetCompatibility.html#DMGetCompatibility
man:+DMMonitorSet++DMMonitorSet++++man+https://petsc.org/release/manualpages/DM/DMMonitorSet.html#DMMonitorSet
man:+DMMonitorCancel++DMMonitorCancel++++man+https://petsc.org/release/manualpages/DM/DMMonitorCancel.html#DMMonitorCancel
man:+DMMonitorSetFromOptions++DMMonitorSetFromOptions++++man+https://petsc.org/release/manualpages/DM/DMMonitorSetFromOptions.html#DMMonitorSetFromOptions
man:+DMMonitor++DMMonitor++++man+https://petsc.org/release/manualpages/DM/DMMonitor.html#DMMonitor
man:+DMComputeError++DMComputeError++++man+https://petsc.org/release/manualpages/DM/DMComputeError.html#DMComputeError
man:+DMGetNumAuxiliaryVec++DMGetNumAuxiliaryVec++++man+https://petsc.org/release/manualpages/DM/DMGetNumAuxiliaryVec.html#DMGetNumAuxiliaryVec
man:+DMGetAuxiliaryVec++DMGetAuxiliaryVec++++man+https://petsc.org/release/manualpages/DM/DMGetAuxiliaryVec.html#DMGetAuxiliaryVec
man:+DMSetAuxiliaryVec++DMSetAuxiliaryVec++++man+https://petsc.org/release/manualpages/DM/DMSetAuxiliaryVec.html#DMSetAuxiliaryVec
man:+DMGetAuxiliaryLabels++DMGetAuxiliaryLabels++++man+https://petsc.org/release/manualpages/DM/DMGetAuxiliaryLabels.html#DMGetAuxiliaryLabels
man:+DMCopyAuxiliaryVec++DMCopyAuxiliaryVec++++man+https://petsc.org/release/manualpages/DM/DMCopyAuxiliaryVec.html#DMCopyAuxiliaryVec
man:+DMClearAuxiliaryVec++DMClearAuxiliaryVec++++man+https://petsc.org/release/manualpages/DM/DMClearAuxiliaryVec.html#DMClearAuxiliaryVec
man:+DMPolytopeMatchOrientation++DMPolytopeMatchOrientation++++man+https://petsc.org/release/manualpages/DM/DMPolytopeMatchOrientation.html#DMPolytopeMatchOrientation
man:+DMPolytopeGetOrientation++DMPolytopeGetOrientation++++man+https://petsc.org/release/manualpages/DM/DMPolytopeGetOrientation.html#DMPolytopeGetOrientation
man:+DMPolytopeMatchVertexOrientation++DMPolytopeMatchVertexOrientation++++man+https://petsc.org/release/manualpages/DM/DMPolytopeMatchVertexOrientation.html#DMPolytopeMatchVertexOrientation
man:+DMPolytopeGetVertexOrientation++DMPolytopeGetVertexOrientation++++man+https://petsc.org/release/manualpages/DM/DMPolytopeGetVertexOrientation.html#DMPolytopeGetVertexOrientation
man:+DMPolytopeInCellTest++DMPolytopeInCellTest++++man+https://petsc.org/release/manualpages/DM/DMPolytopeInCellTest.html#DMPolytopeInCellTest
man:+DMReorderSectionSetDefault++DMReorderSectionSetDefault++++man+https://petsc.org/release/manualpages/DM/DMReorderSectionSetDefault.html#DMReorderSectionSetDefault
man:+DMReorderSectionGetDefault++DMReorderSectionGetDefault++++man+https://petsc.org/release/manualpages/DM/DMReorderSectionGetDefault.html#DMReorderSectionGetDefault
man:+DMReorderSectionSetType++DMReorderSectionSetType++++man+https://petsc.org/release/manualpages/DM/DMReorderSectionSetType.html#DMReorderSectionSetType
man:+DMReorderSectionGetType++DMReorderSectionGetType++++man+https://petsc.org/release/manualpages/DM/DMReorderSectionGetType.html#DMReorderSectionGetType
man:+DMGetLocalVector++DMGetLocalVector++++man+https://petsc.org/release/manualpages/DM/DMGetLocalVector.html#DMGetLocalVector
man:+DMRestoreLocalVector++DMRestoreLocalVector++++man+https://petsc.org/release/manualpages/DM/DMRestoreLocalVector.html#DMRestoreLocalVector
man:+DMGetGlobalVector++DMGetGlobalVector++++man+https://petsc.org/release/manualpages/DM/DMGetGlobalVector.html#DMGetGlobalVector
man:+DMClearGlobalVectors++DMClearGlobalVectors++++man+https://petsc.org/release/manualpages/DM/DMClearGlobalVectors.html#DMClearGlobalVectors
man:+DMClearLocalVectors++DMClearLocalVectors++++man+https://petsc.org/release/manualpages/DM/DMClearLocalVectors.html#DMClearLocalVectors
man:+DMRestoreGlobalVector++DMRestoreGlobalVector++++man+https://petsc.org/release/manualpages/DM/DMRestoreGlobalVector.html#DMRestoreGlobalVector
man:+DMClearNamedGlobalVectors++DMClearNamedGlobalVectors++++man+https://petsc.org/release/manualpages/DM/DMClearNamedGlobalVectors.html#DMClearNamedGlobalVectors
man:+DMClearNamedLocalVectors++DMClearNamedLocalVectors++++man+https://petsc.org/release/manualpages/DM/DMClearNamedLocalVectors.html#DMClearNamedLocalVectors
man:+DMHasNamedGlobalVector++DMHasNamedGlobalVector++++man+https://petsc.org/release/manualpages/DM/DMHasNamedGlobalVector.html#DMHasNamedGlobalVector
man:+DMGetNamedGlobalVector++DMGetNamedGlobalVector++++man+https://petsc.org/release/manualpages/DM/DMGetNamedGlobalVector.html#DMGetNamedGlobalVector
man:+DMRestoreNamedGlobalVector++DMRestoreNamedGlobalVector++++man+https://petsc.org/release/manualpages/DM/DMRestoreNamedGlobalVector.html#DMRestoreNamedGlobalVector
man:+DMHasNamedLocalVector++DMHasNamedLocalVector++++man+https://petsc.org/release/manualpages/DM/DMHasNamedLocalVector.html#DMHasNamedLocalVector
man:+DMGetNamedLocalVector++DMGetNamedLocalVector++++man+https://petsc.org/release/manualpages/DM/DMGetNamedLocalVector.html#DMGetNamedLocalVector
man:+DMRestoreNamedLocalVector++DMRestoreNamedLocalVector++++man+https://petsc.org/release/manualpages/DM/DMRestoreNamedLocalVector.html#DMRestoreNamedLocalVector
man:+DMFinalizePackage++DMFinalizePackage++++man+https://petsc.org/release/manualpages/DM/DMFinalizePackage.html#DMFinalizePackage
man:+DMInitializePackage++DMInitializePackage++++man+https://petsc.org/release/manualpages/DM/DMInitializePackage.html#DMInitializePackage
man:+PetscFEFinalizePackage++PetscFEFinalizePackage++++man+https://petsc.org/release/manualpages/DM/PetscFEFinalizePackage.html#PetscFEFinalizePackage
man:+PetscFEInitializePackage++PetscFEInitializePackage++++man+https://petsc.org/release/manualpages/DM/PetscFEInitializePackage.html#PetscFEInitializePackage
man:+PetscFVFinalizePackage++PetscFVFinalizePackage++++man+https://petsc.org/release/manualpages/DM/PetscFVFinalizePackage.html#PetscFVFinalizePackage
man:+PetscFVInitializePackage++PetscFVInitializePackage++++man+https://petsc.org/release/manualpages/DM/PetscFVInitializePackage.html#PetscFVInitializePackage
man:+PetscDSFinalizePackage++PetscDSFinalizePackage++++man+https://petsc.org/release/manualpages/DM/PetscDSFinalizePackage.html#PetscDSFinalizePackage
man:+PetscDSInitializePackage++PetscDSInitializePackage++++man+https://petsc.org/release/manualpages/DM/PetscDSInitializePackage.html#PetscDSInitializePackage
man:+DMGetCeed++DMGetCeed++++man+https://petsc.org/release/manualpages/DM/DMGetCeed.html#DMGetCeed
man:+DMGetCoordinateDM++DMGetCoordinateDM++++man+https://petsc.org/release/manualpages/DM/DMGetCoordinateDM.html#DMGetCoordinateDM
man:+DMSetCoordinateDM++DMSetCoordinateDM++++man+https://petsc.org/release/manualpages/DM/DMSetCoordinateDM.html#DMSetCoordinateDM
man:+DMGetCellCoordinateDM++DMGetCellCoordinateDM++++man+https://petsc.org/release/manualpages/DM/DMGetCellCoordinateDM.html#DMGetCellCoordinateDM
man:+DMSetCellCoordinateDM++DMSetCellCoordinateDM++++man+https://petsc.org/release/manualpages/DM/DMSetCellCoordinateDM.html#DMSetCellCoordinateDM
man:+DMGetCoordinateDim++DMGetCoordinateDim++++man+https://petsc.org/release/manualpages/DM/DMGetCoordinateDim.html#DMGetCoordinateDim
man:+DMSetCoordinateDim++DMSetCoordinateDim++++man+https://petsc.org/release/manualpages/DM/DMSetCoordinateDim.html#DMSetCoordinateDim
man:+DMGetCoordinateSection++DMGetCoordinateSection++++man+https://petsc.org/release/manualpages/DM/DMGetCoordinateSection.html#DMGetCoordinateSection
man:+DMSetCoordinateSection++DMSetCoordinateSection++++man+https://petsc.org/release/manualpages/DM/DMSetCoordinateSection.html#DMSetCoordinateSection
man:+DMGetCellCoordinateSection++DMGetCellCoordinateSection++++man+https://petsc.org/release/manualpages/DM/DMGetCellCoordinateSection.html#DMGetCellCoordinateSection
man:+DMSetCellCoordinateSection++DMSetCellCoordinateSection++++man+https://petsc.org/release/manualpages/DM/DMSetCellCoordinateSection.html#DMSetCellCoordinateSection
man:+DMGetCoordinates++DMGetCoordinates++++man+https://petsc.org/release/manualpages/DM/DMGetCoordinates.html#DMGetCoordinates
man:+DMSetCoordinates++DMSetCoordinates++++man+https://petsc.org/release/manualpages/DM/DMSetCoordinates.html#DMSetCoordinates
man:+DMGetCellCoordinates++DMGetCellCoordinates++++man+https://petsc.org/release/manualpages/DM/DMGetCellCoordinates.html#DMGetCellCoordinates
man:+DMSetCellCoordinates++DMSetCellCoordinates++++man+https://petsc.org/release/manualpages/DM/DMSetCellCoordinates.html#DMSetCellCoordinates
man:+DMGetCoordinatesLocalSetUp++DMGetCoordinatesLocalSetUp++++man+https://petsc.org/release/manualpages/DM/DMGetCoordinatesLocalSetUp.html#DMGetCoordinatesLocalSetUp
man:+DMGetCoordinatesLocal++DMGetCoordinatesLocal++++man+https://petsc.org/release/manualpages/DM/DMGetCoordinatesLocal.html#DMGetCoordinatesLocal
man:+DMGetCoordinatesLocalNoncollective++DMGetCoordinatesLocalNoncollective++++man+https://petsc.org/release/manualpages/DM/DMGetCoordinatesLocalNoncollective.html#DMGetCoordinatesLocalNoncollective
man:+DMGetCoordinatesLocalTuple++DMGetCoordinatesLocalTuple++++man+https://petsc.org/release/manualpages/DM/DMGetCoordinatesLocalTuple.html#DMGetCoordinatesLocalTuple
man:+DMSetCoordinatesLocal++DMSetCoordinatesLocal++++man+https://petsc.org/release/manualpages/DM/DMSetCoordinatesLocal.html#DMSetCoordinatesLocal
man:+DMGetCellCoordinatesLocalSetUp++DMGetCellCoordinatesLocalSetUp++++man+https://petsc.org/release/manualpages/DM/DMGetCellCoordinatesLocalSetUp.html#DMGetCellCoordinatesLocalSetUp
man:+DMGetCellCoordinatesLocal++DMGetCellCoordinatesLocal++++man+https://petsc.org/release/manualpages/DM/DMGetCellCoordinatesLocal.html#DMGetCellCoordinatesLocal
man:+DMGetCellCoordinatesLocalNoncollective++DMGetCellCoordinatesLocalNoncollective++++man+https://petsc.org/release/manualpages/DM/DMGetCellCoordinatesLocalNoncollective.html#DMGetCellCoordinatesLocalNoncollective
man:+DMSetCellCoordinatesLocal++DMSetCellCoordinatesLocal++++man+https://petsc.org/release/manualpages/DM/DMSetCellCoordinatesLocal.html#DMSetCellCoordinatesLocal
man:+DMGetLocalBoundingBox++DMGetLocalBoundingBox++++man+https://petsc.org/release/manualpages/DM/DMGetLocalBoundingBox.html#DMGetLocalBoundingBox
man:+DMGetBoundingBox++DMGetBoundingBox++++man+https://petsc.org/release/manualpages/DM/DMGetBoundingBox.html#DMGetBoundingBox
man:+DMSetCoordinateDisc++DMSetCoordinateDisc++++man+https://petsc.org/release/manualpages/DM/DMSetCoordinateDisc.html#DMSetCoordinateDisc
man:+DMLocatePoints++DMLocatePoints++++man+https://petsc.org/release/manualpages/DM/DMLocatePoints.html#DMLocatePoints
man:+DMRegisterAll++DMRegisterAll++++man+https://petsc.org/release/manualpages/DM/DMRegisterAll.html#DMRegisterAll
man:+PetscSpaceRegisterAll++PetscSpaceRegisterAll++++man+https://petsc.org/release/manualpages/DM/PetscSpaceRegisterAll.html#PetscSpaceRegisterAll
man:+PetscDualSpaceRegisterAll++PetscDualSpaceRegisterAll++++man+https://petsc.org/release/manualpages/DM/PetscDualSpaceRegisterAll.html#PetscDualSpaceRegisterAll
man:+PetscFERegisterAll++PetscFERegisterAll++++man+https://petsc.org/release/manualpages/DM/PetscFERegisterAll.html#PetscFERegisterAll
man:+PetscLimiterRegisterAll++PetscLimiterRegisterAll++++man+https://petsc.org/release/manualpages/DM/PetscLimiterRegisterAll.html#PetscLimiterRegisterAll
man:+PetscFVRegisterAll++PetscFVRegisterAll++++man+https://petsc.org/release/manualpages/DM/PetscFVRegisterAll.html#PetscFVRegisterAll
man:+PetscDSRegisterAll++PetscDSRegisterAll++++man+https://petsc.org/release/manualpages/DM/PetscDSRegisterAll.html#PetscDSRegisterAll
man:+DMGeomModelRegisterAll++DMGeomModelRegisterAll++++man+https://petsc.org/release/manualpages/DM/DMGeomModelRegisterAll.html#DMGeomModelRegisterAll
man:+DMGeomModelRegister++DMGeomModelRegister++++man+https://petsc.org/release/manualpages/DM/DMGeomModelRegister.html#DMGeomModelRegister
man:+DMSetSnapToGeomModel++DMSetSnapToGeomModel++++man+https://petsc.org/release/manualpages/DM/DMSetSnapToGeomModel.html#DMSetSnapToGeomModel
man:+DMSnapToGeomModel++DMSnapToGeomModel++++man+https://petsc.org/release/manualpages/DM/DMSnapToGeomModel.html#DMSnapToGeomModel
man:+DMGenerateRegisterAll++DMGenerateRegisterAll++++man+https://petsc.org/release/manualpages/DM/DMGenerateRegisterAll.html#DMGenerateRegisterAll
man:+DMGenerateRegister++DMGenerateRegister++++man+https://petsc.org/release/manualpages/DM/DMGenerateRegister.html#DMGenerateRegister
man:+DMAdaptLabel++DMAdaptLabel++++man+https://petsc.org/release/manualpages/DM/DMAdaptLabel.html#DMAdaptLabel
man:+DMAdaptMetric++DMAdaptMetric++++man+https://petsc.org/release/manualpages/DM/DMAdaptMetric.html#DMAdaptMetric
man:+DMGetPeriodicity++DMGetPeriodicity++++man+https://petsc.org/release/manualpages/DM/DMGetPeriodicity.html#DMGetPeriodicity
man:+DMSetPeriodicity++DMSetPeriodicity++++man+https://petsc.org/release/manualpages/DM/DMSetPeriodicity.html#DMSetPeriodicity
man:+DMLocalizeCoordinate++DMLocalizeCoordinate++++man+https://petsc.org/release/manualpages/DM/DMLocalizeCoordinate.html#DMLocalizeCoordinate
man:+DMGetCoordinatesLocalizedLocal++DMGetCoordinatesLocalizedLocal++++man+https://petsc.org/release/manualpages/DM/DMGetCoordinatesLocalizedLocal.html#DMGetCoordinatesLocalizedLocal
man:+DMGetCoordinatesLocalized++DMGetCoordinatesLocalized++++man+https://petsc.org/release/manualpages/DM/DMGetCoordinatesLocalized.html#DMGetCoordinatesLocalized
man:+DMGetSparseLocalize++DMGetSparseLocalize++++man+https://petsc.org/release/manualpages/DM/DMGetSparseLocalize.html#DMGetSparseLocalize
man:+DMSetSparseLocalize++DMSetSparseLocalize++++man+https://petsc.org/release/manualpages/DM/DMSetSparseLocalize.html#DMSetSparseLocalize
man:+DMLocalizeCoordinates++DMLocalizeCoordinates++++man+https://petsc.org/release/manualpages/DM/DMLocalizeCoordinates.html#DMLocalizeCoordinates
man:+PetscDTAltV++PetscDTAltV++++man+https://petsc.org/release/manualpages/DT/PetscDTAltV.html#PetscDTAltV
man:+PetscDTAltVApply++PetscDTAltVApply++++man+https://petsc.org/release/manualpages/DT/PetscDTAltVApply.html#PetscDTAltVApply
man:+PetscDTAltVWedge++PetscDTAltVWedge++++man+https://petsc.org/release/manualpages/DT/PetscDTAltVWedge.html#PetscDTAltVWedge
man:+PetscDTAltVWedgeMatrix++PetscDTAltVWedgeMatrix++++man+https://petsc.org/release/manualpages/DT/PetscDTAltVWedgeMatrix.html#PetscDTAltVWedgeMatrix
man:+PetscDTAltVPullback++PetscDTAltVPullback++++man+https://petsc.org/release/manualpages/DT/PetscDTAltVPullback.html#PetscDTAltVPullback
man:+PetscDTAltVPullbackMatrix++PetscDTAltVPullbackMatrix++++man+https://petsc.org/release/manualpages/DT/PetscDTAltVPullbackMatrix.html#PetscDTAltVPullbackMatrix
man:+PetscDTAltVInterior++PetscDTAltVInterior++++man+https://petsc.org/release/manualpages/DT/PetscDTAltVInterior.html#PetscDTAltVInterior
man:+PetscDTAltVInteriorMatrix++PetscDTAltVInteriorMatrix++++man+https://petsc.org/release/manualpages/DT/PetscDTAltVInteriorMatrix.html#PetscDTAltVInteriorMatrix
man:+PetscDTAltVInteriorPattern++PetscDTAltVInteriorPattern++++man+https://petsc.org/release/manualpages/DT/PetscDTAltVInteriorPattern.html#PetscDTAltVInteriorPattern
man:+PetscDTAltVStar++PetscDTAltVStar++++man+https://petsc.org/release/manualpages/DT/PetscDTAltVStar.html#PetscDTAltVStar
man:+PetscPDFMaxwellBoltzmann1D++PetscPDFMaxwellBoltzmann1D++++man+https://petsc.org/release/manualpages/DT/PetscPDFMaxwellBoltzmann1D.html#PetscPDFMaxwellBoltzmann1D
man:+PetscCDFMaxwellBoltzmann1D++PetscCDFMaxwellBoltzmann1D++++man+https://petsc.org/release/manualpages/DT/PetscCDFMaxwellBoltzmann1D.html#PetscCDFMaxwellBoltzmann1D
man:+PetscPDFMaxwellBoltzmann2D++PetscPDFMaxwellBoltzmann2D++++man+https://petsc.org/release/manualpages/DT/PetscPDFMaxwellBoltzmann2D.html#PetscPDFMaxwellBoltzmann2D
man:+PetscCDFMaxwellBoltzmann2D++PetscCDFMaxwellBoltzmann2D++++man+https://petsc.org/release/manualpages/DT/PetscCDFMaxwellBoltzmann2D.html#PetscCDFMaxwellBoltzmann2D
man:+PetscPDFMaxwellBoltzmann3D++PetscPDFMaxwellBoltzmann3D++++man+https://petsc.org/release/manualpages/DT/PetscPDFMaxwellBoltzmann3D.html#PetscPDFMaxwellBoltzmann3D
man:+PetscCDFMaxwellBoltzmann3D++PetscCDFMaxwellBoltzmann3D++++man+https://petsc.org/release/manualpages/DT/PetscCDFMaxwellBoltzmann3D.html#PetscCDFMaxwellBoltzmann3D
man:+PetscPDFGaussian1D++PetscPDFGaussian1D++++man+https://petsc.org/release/manualpages/DT/PetscPDFGaussian1D.html#PetscPDFGaussian1D
man:+PetscPDFSampleGaussian1D++PetscPDFSampleGaussian1D++++man+https://petsc.org/release/manualpages/DT/PetscPDFSampleGaussian1D.html#PetscPDFSampleGaussian1D
man:+PetscPDFGaussian2D++PetscPDFGaussian2D++++man+https://petsc.org/release/manualpages/DT/PetscPDFGaussian2D.html#PetscPDFGaussian2D
man:+PetscPDFSampleGaussian2D++PetscPDFSampleGaussian2D++++man+https://petsc.org/release/manualpages/DT/PetscPDFSampleGaussian2D.html#PetscPDFSampleGaussian2D
man:+PetscPDFGaussian3D++PetscPDFGaussian3D++++man+https://petsc.org/release/manualpages/DT/PetscPDFGaussian3D.html#PetscPDFGaussian3D
man:+PetscPDFSampleGaussian3D++PetscPDFSampleGaussian3D++++man+https://petsc.org/release/manualpages/DT/PetscPDFSampleGaussian3D.html#PetscPDFSampleGaussian3D
man:+PetscPDFConstant1D++PetscPDFConstant1D++++man+https://petsc.org/release/manualpages/DT/PetscPDFConstant1D.html#PetscPDFConstant1D
man:+PetscCDFConstant1D++PetscCDFConstant1D++++man+https://petsc.org/release/manualpages/DT/PetscCDFConstant1D.html#PetscCDFConstant1D
man:+PetscPDFSampleConstant1D++PetscPDFSampleConstant1D++++man+https://petsc.org/release/manualpages/DT/PetscPDFSampleConstant1D.html#PetscPDFSampleConstant1D
man:+PetscPDFConstant2D++PetscPDFConstant2D++++man+https://petsc.org/release/manualpages/DT/PetscPDFConstant2D.html#PetscPDFConstant2D
man:+PetscCDFConstant2D++PetscCDFConstant2D++++man+https://petsc.org/release/manualpages/DT/PetscCDFConstant2D.html#PetscCDFConstant2D
man:+PetscPDFSampleConstant2D++PetscPDFSampleConstant2D++++man+https://petsc.org/release/manualpages/DT/PetscPDFSampleConstant2D.html#PetscPDFSampleConstant2D
man:+PetscPDFConstant3D++PetscPDFConstant3D++++man+https://petsc.org/release/manualpages/DT/PetscPDFConstant3D.html#PetscPDFConstant3D
man:+PetscCDFConstant3D++PetscCDFConstant3D++++man+https://petsc.org/release/manualpages/DT/PetscCDFConstant3D.html#PetscCDFConstant3D
man:+PetscPDFSampleConstant3D++PetscPDFSampleConstant3D++++man+https://petsc.org/release/manualpages/DT/PetscPDFSampleConstant3D.html#PetscPDFSampleConstant3D
man:+PetscProbCreateFromOptions++PetscProbCreateFromOptions++++man+https://petsc.org/release/manualpages/DT/PetscProbCreateFromOptions.html#PetscProbCreateFromOptions
man:+PetscProbComputeKSStatistic++PetscProbComputeKSStatistic++++man+https://petsc.org/release/manualpages/DT/PetscProbComputeKSStatistic.html#PetscProbComputeKSStatistic
man:+PetscProbComputeKSStatisticWeighted++PetscProbComputeKSStatisticWeighted++++man+https://petsc.org/release/manualpages/DT/PetscProbComputeKSStatisticWeighted.html#PetscProbComputeKSStatisticWeighted
man:+PetscProbComputeKSStatisticMagnitude++PetscProbComputeKSStatisticMagnitude++++man+https://petsc.org/release/manualpages/DT/PetscProbComputeKSStatisticMagnitude.html#PetscProbComputeKSStatisticMagnitude
man:+PetscDSRegister++PetscDSRegister++++man+https://petsc.org/release/manualpages/DT/PetscDSRegister.html#PetscDSRegister
man:+PetscDSSetType++PetscDSSetType++++man+https://petsc.org/release/manualpages/DT/PetscDSSetType.html#PetscDSSetType
man:+PetscDSGetType++PetscDSGetType++++man+https://petsc.org/release/manualpages/DT/PetscDSGetType.html#PetscDSGetType
man:+PetscDSViewFromOptions++PetscDSViewFromOptions++++man+https://petsc.org/release/manualpages/DT/PetscDSViewFromOptions.html#PetscDSViewFromOptions
man:+PetscDSView++PetscDSView++++man+https://petsc.org/release/manualpages/DT/PetscDSView.html#PetscDSView
man:+PetscDSSetFromOptions++PetscDSSetFromOptions++++man+https://petsc.org/release/manualpages/DT/PetscDSSetFromOptions.html#PetscDSSetFromOptions
man:+PetscDSSetUp++PetscDSSetUp++++man+https://petsc.org/release/manualpages/DT/PetscDSSetUp.html#PetscDSSetUp
man:+PetscDSDestroy++PetscDSDestroy++++man+https://petsc.org/release/manualpages/DT/PetscDSDestroy.html#PetscDSDestroy
man:+PetscDSCreate++PetscDSCreate++++man+https://petsc.org/release/manualpages/DT/PetscDSCreate.html#PetscDSCreate
man:+PetscDSGetNumFields++PetscDSGetNumFields++++man+https://petsc.org/release/manualpages/DT/PetscDSGetNumFields.html#PetscDSGetNumFields
man:+PetscDSGetSpatialDimension++PetscDSGetSpatialDimension++++man+https://petsc.org/release/manualpages/DT/PetscDSGetSpatialDimension.html#PetscDSGetSpatialDimension
man:+PetscDSGetCoordinateDimension++PetscDSGetCoordinateDimension++++man+https://petsc.org/release/manualpages/DT/PetscDSGetCoordinateDimension.html#PetscDSGetCoordinateDimension
man:+PetscDSSetCoordinateDimension++PetscDSSetCoordinateDimension++++man+https://petsc.org/release/manualpages/DT/PetscDSSetCoordinateDimension.html#PetscDSSetCoordinateDimension
man:+PetscDSGetForceQuad++PetscDSGetForceQuad++++man+https://petsc.org/release/manualpages/DT/PetscDSGetForceQuad.html#PetscDSGetForceQuad
man:+PetscDSSetForceQuad++PetscDSSetForceQuad++++man+https://petsc.org/release/manualpages/DT/PetscDSSetForceQuad.html#PetscDSSetForceQuad
man:+PetscDSIsCohesive++PetscDSIsCohesive++++man+https://petsc.org/release/manualpages/DT/PetscDSIsCohesive.html#PetscDSIsCohesive
man:+PetscDSGetNumCohesive++PetscDSGetNumCohesive++++man+https://petsc.org/release/manualpages/DT/PetscDSGetNumCohesive.html#PetscDSGetNumCohesive
man:+PetscDSGetCohesive++PetscDSGetCohesive++++man+https://petsc.org/release/manualpages/DT/PetscDSGetCohesive.html#PetscDSGetCohesive
man:+PetscDSSetCohesive++PetscDSSetCohesive++++man+https://petsc.org/release/manualpages/DT/PetscDSSetCohesive.html#PetscDSSetCohesive
man:+PetscDSGetTotalDimension++PetscDSGetTotalDimension++++man+https://petsc.org/release/manualpages/DT/PetscDSGetTotalDimension.html#PetscDSGetTotalDimension
man:+PetscDSGetTotalComponents++PetscDSGetTotalComponents++++man+https://petsc.org/release/manualpages/DT/PetscDSGetTotalComponents.html#PetscDSGetTotalComponents
man:+PetscDSGetDiscretization++PetscDSGetDiscretization++++man+https://petsc.org/release/manualpages/DT/PetscDSGetDiscretization.html#PetscDSGetDiscretization
man:+PetscDSSetDiscretization++PetscDSSetDiscretization++++man+https://petsc.org/release/manualpages/DT/PetscDSSetDiscretization.html#PetscDSSetDiscretization
man:+PetscDSGetWeakForm++PetscDSGetWeakForm++++man+https://petsc.org/release/manualpages/DT/PetscDSGetWeakForm.html#PetscDSGetWeakForm
man:+PetscDSSetWeakForm++PetscDSSetWeakForm++++man+https://petsc.org/release/manualpages/DT/PetscDSSetWeakForm.html#PetscDSSetWeakForm
man:+PetscDSAddDiscretization++PetscDSAddDiscretization++++man+https://petsc.org/release/manualpages/DT/PetscDSAddDiscretization.html#PetscDSAddDiscretization
man:+PetscDSGetQuadrature++PetscDSGetQuadrature++++man+https://petsc.org/release/manualpages/DT/PetscDSGetQuadrature.html#PetscDSGetQuadrature
man:+PetscDSGetImplicit++PetscDSGetImplicit++++man+https://petsc.org/release/manualpages/DT/PetscDSGetImplicit.html#PetscDSGetImplicit
man:+PetscDSSetImplicit++PetscDSSetImplicit++++man+https://petsc.org/release/manualpages/DT/PetscDSSetImplicit.html#PetscDSSetImplicit
man:+PetscDSGetJetDegree++PetscDSGetJetDegree++++man+https://petsc.org/release/manualpages/DT/PetscDSGetJetDegree.html#PetscDSGetJetDegree
man:+PetscDSSetJetDegree++PetscDSSetJetDegree++++man+https://petsc.org/release/manualpages/DT/PetscDSSetJetDegree.html#PetscDSSetJetDegree
man:+PetscDSGetObjective++PetscDSGetObjective++++man+https://petsc.org/release/manualpages/DT/PetscDSGetObjective.html#PetscDSGetObjective
man:+PetscDSSetObjective++PetscDSSetObjective++++man+https://petsc.org/release/manualpages/DT/PetscDSSetObjective.html#PetscDSSetObjective
man:+PetscDSGetResidual++PetscDSGetResidual++++man+https://petsc.org/release/manualpages/DT/PetscDSGetResidual.html#PetscDSGetResidual
man:+PetscDSSetResidual++PetscDSSetResidual++++man+https://petsc.org/release/manualpages/DT/PetscDSSetResidual.html#PetscDSSetResidual
man:+PetscDSGetRHSResidual++PetscDSGetRHSResidual++++man+https://petsc.org/release/manualpages/DT/PetscDSGetRHSResidual.html#PetscDSGetRHSResidual
man:+PetscDSSetRHSResidual++PetscDSSetRHSResidual++++man+https://petsc.org/release/manualpages/DT/PetscDSSetRHSResidual.html#PetscDSSetRHSResidual
man:+PetscDSHasJacobian++PetscDSHasJacobian++++man+https://petsc.org/release/manualpages/DT/PetscDSHasJacobian.html#PetscDSHasJacobian
man:+PetscDSGetJacobian++PetscDSGetJacobian++++man+https://petsc.org/release/manualpages/DT/PetscDSGetJacobian.html#PetscDSGetJacobian
man:+PetscDSSetJacobian++PetscDSSetJacobian++++man+https://petsc.org/release/manualpages/DT/PetscDSSetJacobian.html#PetscDSSetJacobian
man:+PetscDSUseJacobianPreconditioner++PetscDSUseJacobianPreconditioner++++man+https://petsc.org/release/manualpages/DT/PetscDSUseJacobianPreconditioner.html#PetscDSUseJacobianPreconditioner
man:+PetscDSHasJacobianPreconditioner++PetscDSHasJacobianPreconditioner++++man+https://petsc.org/release/manualpages/DT/PetscDSHasJacobianPreconditioner.html#PetscDSHasJacobianPreconditioner
man:+PetscDSGetJacobianPreconditioner++PetscDSGetJacobianPreconditioner++++man+https://petsc.org/release/manualpages/DT/PetscDSGetJacobianPreconditioner.html#PetscDSGetJacobianPreconditioner
man:+PetscDSSetJacobianPreconditioner++PetscDSSetJacobianPreconditioner++++man+https://petsc.org/release/manualpages/DT/PetscDSSetJacobianPreconditioner.html#PetscDSSetJacobianPreconditioner
man:+PetscDSHasDynamicJacobian++PetscDSHasDynamicJacobian++++man+https://petsc.org/release/manualpages/DT/PetscDSHasDynamicJacobian.html#PetscDSHasDynamicJacobian
man:+PetscDSGetDynamicJacobian++PetscDSGetDynamicJacobian++++man+https://petsc.org/release/manualpages/DT/PetscDSGetDynamicJacobian.html#PetscDSGetDynamicJacobian
man:+PetscDSSetDynamicJacobian++PetscDSSetDynamicJacobian++++man+https://petsc.org/release/manualpages/DT/PetscDSSetDynamicJacobian.html#PetscDSSetDynamicJacobian
man:+PetscDSGetRiemannSolver++PetscDSGetRiemannSolver++++man+https://petsc.org/release/manualpages/DT/PetscDSGetRiemannSolver.html#PetscDSGetRiemannSolver
man:+PetscDSSetRiemannSolver++PetscDSSetRiemannSolver++++man+https://petsc.org/release/manualpages/DT/PetscDSSetRiemannSolver.html#PetscDSSetRiemannSolver
man:+PetscDSGetUpdate++PetscDSGetUpdate++++man+https://petsc.org/release/manualpages/DT/PetscDSGetUpdate.html#PetscDSGetUpdate
man:+PetscDSSetUpdate++PetscDSSetUpdate++++man+https://petsc.org/release/manualpages/DT/PetscDSSetUpdate.html#PetscDSSetUpdate
man:+PetscDSGetBdResidual++PetscDSGetBdResidual++++man+https://petsc.org/release/manualpages/DT/PetscDSGetBdResidual.html#PetscDSGetBdResidual
man:+PetscDSSetBdResidual++PetscDSSetBdResidual++++man+https://petsc.org/release/manualpages/DT/PetscDSSetBdResidual.html#PetscDSSetBdResidual
man:+PetscDSHasBdJacobian++PetscDSHasBdJacobian++++man+https://petsc.org/release/manualpages/DT/PetscDSHasBdJacobian.html#PetscDSHasBdJacobian
man:+PetscDSGetBdJacobian++PetscDSGetBdJacobian++++man+https://petsc.org/release/manualpages/DT/PetscDSGetBdJacobian.html#PetscDSGetBdJacobian
man:+PetscDSSetBdJacobian++PetscDSSetBdJacobian++++man+https://petsc.org/release/manualpages/DT/PetscDSSetBdJacobian.html#PetscDSSetBdJacobian
man:+PetscDSHasBdJacobianPreconditioner++PetscDSHasBdJacobianPreconditioner++++man+https://petsc.org/release/manualpages/DT/PetscDSHasBdJacobianPreconditioner.html#PetscDSHasBdJacobianPreconditioner
man:+PetscDSGetBdJacobianPreconditioner++PetscDSGetBdJacobianPreconditioner++++man+https://petsc.org/release/manualpages/DT/PetscDSGetBdJacobianPreconditioner.html#PetscDSGetBdJacobianPreconditioner
man:+PetscDSSetBdJacobianPreconditioner++PetscDSSetBdJacobianPreconditioner++++man+https://petsc.org/release/manualpages/DT/PetscDSSetBdJacobianPreconditioner.html#PetscDSSetBdJacobianPreconditioner
man:+PetscDSGetExactSolution++PetscDSGetExactSolution++++man+https://petsc.org/release/manualpages/DT/PetscDSGetExactSolution.html#PetscDSGetExactSolution
man:+PetscDSSetExactSolution++PetscDSSetExactSolution++++man+https://petsc.org/release/manualpages/DT/PetscDSSetExactSolution.html#PetscDSSetExactSolution
man:+PetscDSGetExactSolutionTimeDerivative++PetscDSGetExactSolutionTimeDerivative++++man+https://petsc.org/release/manualpages/DT/PetscDSGetExactSolutionTimeDerivative.html#PetscDSGetExactSolutionTimeDerivative
man:+PetscDSSetExactSolutionTimeDerivative++PetscDSSetExactSolutionTimeDerivative++++man+https://petsc.org/release/manualpages/DT/PetscDSSetExactSolutionTimeDerivative.html#PetscDSSetExactSolutionTimeDerivative
man:+PetscDSGetLowerBound++PetscDSGetLowerBound++++man+https://petsc.org/release/manualpages/DT/PetscDSGetLowerBound.html#PetscDSGetLowerBound
man:+PetscDSSetLowerBound++PetscDSSetLowerBound++++man+https://petsc.org/release/manualpages/DT/PetscDSSetLowerBound.html#PetscDSSetLowerBound
man:+PetscDSGetUpperBound++PetscDSGetUpperBound++++man+https://petsc.org/release/manualpages/DT/PetscDSGetUpperBound.html#PetscDSGetUpperBound
man:+PetscDSSetUpperBound++PetscDSSetUpperBound++++man+https://petsc.org/release/manualpages/DT/PetscDSSetUpperBound.html#PetscDSSetUpperBound
man:+PetscDSGetConstants++PetscDSGetConstants++++man+https://petsc.org/release/manualpages/DT/PetscDSGetConstants.html#PetscDSGetConstants
man:+PetscDSSetConstants++PetscDSSetConstants++++man+https://petsc.org/release/manualpages/DT/PetscDSSetConstants.html#PetscDSSetConstants
man:+PetscDSSetIntegrationParameters++PetscDSSetIntegrationParameters++++man+https://petsc.org/release/manualpages/DT/PetscDSSetIntegrationParameters.html#PetscDSSetIntegrationParameters
man:+PetscDSSetCellParameters++PetscDSSetCellParameters++++man+https://petsc.org/release/manualpages/DT/PetscDSSetCellParameters.html#PetscDSSetCellParameters
man:+PetscDSGetFieldIndex++PetscDSGetFieldIndex++++man+https://petsc.org/release/manualpages/DT/PetscDSGetFieldIndex.html#PetscDSGetFieldIndex
man:+PetscDSGetFieldSize++PetscDSGetFieldSize++++man+https://petsc.org/release/manualpages/DT/PetscDSGetFieldSize.html#PetscDSGetFieldSize
man:+PetscDSGetFieldOffset++PetscDSGetFieldOffset++++man+https://petsc.org/release/manualpages/DT/PetscDSGetFieldOffset.html#PetscDSGetFieldOffset
man:+PetscDSGetFieldOffsetCohesive++PetscDSGetFieldOffsetCohesive++++man+https://petsc.org/release/manualpages/DT/PetscDSGetFieldOffsetCohesive.html#PetscDSGetFieldOffsetCohesive
man:+PetscDSGetDimensions++PetscDSGetDimensions++++man+https://petsc.org/release/manualpages/DT/PetscDSGetDimensions.html#PetscDSGetDimensions
man:+PetscDSGetComponents++PetscDSGetComponents++++man+https://petsc.org/release/manualpages/DT/PetscDSGetComponents.html#PetscDSGetComponents
man:+PetscDSGetComponentOffset++PetscDSGetComponentOffset++++man+https://petsc.org/release/manualpages/DT/PetscDSGetComponentOffset.html#PetscDSGetComponentOffset
man:+PetscDSGetComponentOffsets++PetscDSGetComponentOffsets++++man+https://petsc.org/release/manualpages/DT/PetscDSGetComponentOffsets.html#PetscDSGetComponentOffsets
man:+PetscDSGetComponentDerivativeOffsets++PetscDSGetComponentDerivativeOffsets++++man+https://petsc.org/release/manualpages/DT/PetscDSGetComponentDerivativeOffsets.html#PetscDSGetComponentDerivativeOffsets
man:+PetscDSGetComponentOffsetsCohesive++PetscDSGetComponentOffsetsCohesive++++man+https://petsc.org/release/manualpages/DT/PetscDSGetComponentOffsetsCohesive.html#PetscDSGetComponentOffsetsCohesive
man:+PetscDSGetComponentDerivativeOffsetsCohesive++PetscDSGetComponentDerivativeOffsetsCohesive++++man+https://petsc.org/release/manualpages/DT/PetscDSGetComponentDerivativeOffsetsCohesive.html#PetscDSGetComponentDerivativeOffsetsCohesive
man:+PetscDSGetTabulation++PetscDSGetTabulation++++man+https://petsc.org/release/manualpages/DT/PetscDSGetTabulation.html#PetscDSGetTabulation
man:+PetscDSGetFaceTabulation++PetscDSGetFaceTabulation++++man+https://petsc.org/release/manualpages/DT/PetscDSGetFaceTabulation.html#PetscDSGetFaceTabulation
man:+PetscDSAddBoundary++PetscDSAddBoundary++++man+https://petsc.org/release/manualpages/DT/PetscDSAddBoundary.html#PetscDSAddBoundary
man:+PetscDSAddBoundaryByName++PetscDSAddBoundaryByName++++man+https://petsc.org/release/manualpages/DT/PetscDSAddBoundaryByName.html#PetscDSAddBoundaryByName
man:+PetscDSUpdateBoundary++PetscDSUpdateBoundary++++man+https://petsc.org/release/manualpages/DT/PetscDSUpdateBoundary.html#PetscDSUpdateBoundary
man:+PetscDSGetNumBoundary++PetscDSGetNumBoundary++++man+https://petsc.org/release/manualpages/DT/PetscDSGetNumBoundary.html#PetscDSGetNumBoundary
man:+PetscDSGetBoundary++PetscDSGetBoundary++++man+https://petsc.org/release/manualpages/DT/PetscDSGetBoundary.html#PetscDSGetBoundary
man:+PetscDSUpdateBoundaryLabels++PetscDSUpdateBoundaryLabels++++man+https://petsc.org/release/manualpages/DT/PetscDSUpdateBoundaryLabels.html#PetscDSUpdateBoundaryLabels
man:+PetscDSCopyBoundary++PetscDSCopyBoundary++++man+https://petsc.org/release/manualpages/DT/PetscDSCopyBoundary.html#PetscDSCopyBoundary
man:+PetscDSDestroyBoundary++PetscDSDestroyBoundary++++man+https://petsc.org/release/manualpages/DT/PetscDSDestroyBoundary.html#PetscDSDestroyBoundary
man:+PetscDSSelectDiscretizations++PetscDSSelectDiscretizations++++man+https://petsc.org/release/manualpages/DT/PetscDSSelectDiscretizations.html#PetscDSSelectDiscretizations
man:+PetscDSSelectEquations++PetscDSSelectEquations++++man+https://petsc.org/release/manualpages/DT/PetscDSSelectEquations.html#PetscDSSelectEquations
man:+PetscDSCopyEquations++PetscDSCopyEquations++++man+https://petsc.org/release/manualpages/DT/PetscDSCopyEquations.html#PetscDSCopyEquations
man:+PetscDSCopyConstants++PetscDSCopyConstants++++man+https://petsc.org/release/manualpages/DT/PetscDSCopyConstants.html#PetscDSCopyConstants
man:+PetscDSCopyExactSolutions++PetscDSCopyExactSolutions++++man+https://petsc.org/release/manualpages/DT/PetscDSCopyExactSolutions.html#PetscDSCopyExactSolutions
man:+PetscDSCopyBounds++PetscDSCopyBounds++++man+https://petsc.org/release/manualpages/DT/PetscDSCopyBounds.html#PetscDSCopyBounds
man:+PETSCDSBASIC++PETSCDSBASIC++++man+https://petsc.org/release/manualpages/DT/PETSCDSBASIC.html#PETSCDSBASIC
man:+PetscFormKeySort++PetscFormKeySort++++man+https://petsc.org/release/manualpages/DT/PetscFormKeySort.html#PetscFormKeySort
man:+PetscWeakFormCopy++PetscWeakFormCopy++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormCopy.html#PetscWeakFormCopy
man:+PetscWeakFormClear++PetscWeakFormClear++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormClear.html#PetscWeakFormClear
man:+PetscWeakFormRewriteKeys++PetscWeakFormRewriteKeys++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormRewriteKeys.html#PetscWeakFormRewriteKeys
man:+PetscWeakFormReplaceLabel++PetscWeakFormReplaceLabel++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormReplaceLabel.html#PetscWeakFormReplaceLabel
man:+PetscWeakFormGetNumFields++PetscWeakFormGetNumFields++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormGetNumFields.html#PetscWeakFormGetNumFields
man:+PetscWeakFormSetNumFields++PetscWeakFormSetNumFields++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormSetNumFields.html#PetscWeakFormSetNumFields
man:+PetscWeakFormDestroy++PetscWeakFormDestroy++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormDestroy.html#PetscWeakFormDestroy
man:+PetscWeakFormView++PetscWeakFormView++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormView.html#PetscWeakFormView
man:+PetscWeakFormCreate++PetscWeakFormCreate++++man+https://petsc.org/release/manualpages/DT/PetscWeakFormCreate.html#PetscWeakFormCreate
man:+PetscQuadratureCreate++PetscQuadratureCreate++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureCreate.html#PetscQuadratureCreate
man:+PetscQuadratureDuplicate++PetscQuadratureDuplicate++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureDuplicate.html#PetscQuadratureDuplicate
man:+PetscQuadratureDestroy++PetscQuadratureDestroy++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureDestroy.html#PetscQuadratureDestroy
man:+PetscQuadratureGetCellType++PetscQuadratureGetCellType++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureGetCellType.html#PetscQuadratureGetCellType
man:+PetscQuadratureSetCellType++PetscQuadratureSetCellType++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureSetCellType.html#PetscQuadratureSetCellType
man:+PetscQuadratureGetOrder++PetscQuadratureGetOrder++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureGetOrder.html#PetscQuadratureGetOrder
man:+PetscQuadratureSetOrder++PetscQuadratureSetOrder++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureSetOrder.html#PetscQuadratureSetOrder
man:+PetscQuadratureGetNumComponents++PetscQuadratureGetNumComponents++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureGetNumComponents.html#PetscQuadratureGetNumComponents
man:+PetscQuadratureSetNumComponents++PetscQuadratureSetNumComponents++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureSetNumComponents.html#PetscQuadratureSetNumComponents
man:+PetscQuadratureGetData++PetscQuadratureGetData++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureGetData.html#PetscQuadratureGetData
man:+PetscQuadratureEqual++PetscQuadratureEqual++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureEqual.html#PetscQuadratureEqual
man:+PetscQuadraturePushForward++PetscQuadraturePushForward++++man+https://petsc.org/release/manualpages/DT/PetscQuadraturePushForward.html#PetscQuadraturePushForward
man:+PetscQuadratureSetData++PetscQuadratureSetData++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureSetData.html#PetscQuadratureSetData
man:+PetscQuadratureView++PetscQuadratureView++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureView.html#PetscQuadratureView
man:+PetscQuadratureExpandComposite++PetscQuadratureExpandComposite++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureExpandComposite.html#PetscQuadratureExpandComposite
man:+PetscDTJacobiNorm++PetscDTJacobiNorm++++man+https://petsc.org/release/manualpages/DT/PetscDTJacobiNorm.html#PetscDTJacobiNorm
man:+PetscDTJacobiEvalJet++PetscDTJacobiEvalJet++++man+https://petsc.org/release/manualpages/DT/PetscDTJacobiEvalJet.html#PetscDTJacobiEvalJet
man:+PetscDTJacobiEval++PetscDTJacobiEval++++man+https://petsc.org/release/manualpages/DT/PetscDTJacobiEval.html#PetscDTJacobiEval
man:+PetscDTLegendreEval++PetscDTLegendreEval++++man+https://petsc.org/release/manualpages/DT/PetscDTLegendreEval.html#PetscDTLegendreEval
man:+PetscDTIndexToGradedOrder++PetscDTIndexToGradedOrder++++man+https://petsc.org/release/manualpages/DT/PetscDTIndexToGradedOrder.html#PetscDTIndexToGradedOrder
man:+PetscDTGradedOrderToIndex++PetscDTGradedOrderToIndex++++man+https://petsc.org/release/manualpages/DT/PetscDTGradedOrderToIndex.html#PetscDTGradedOrderToIndex
man:+PetscDTPKDEvalJet++PetscDTPKDEvalJet++++man+https://petsc.org/release/manualpages/DT/PetscDTPKDEvalJet.html#PetscDTPKDEvalJet
man:+PetscDTPTrimmedSize++PetscDTPTrimmedSize++++man+https://petsc.org/release/manualpages/DT/PetscDTPTrimmedSize.html#PetscDTPTrimmedSize
man:+PetscDTPTrimmedEvalJet++PetscDTPTrimmedEvalJet++++man+https://petsc.org/release/manualpages/DT/PetscDTPTrimmedEvalJet.html#PetscDTPTrimmedEvalJet
man:+PetscDTGaussJacobiQuadrature++PetscDTGaussJacobiQuadrature++++man+https://petsc.org/release/manualpages/DT/PetscDTGaussJacobiQuadrature.html#PetscDTGaussJacobiQuadrature
man:+PetscDTGaussLobattoJacobiQuadrature++PetscDTGaussLobattoJacobiQuadrature++++man+https://petsc.org/release/manualpages/DT/PetscDTGaussLobattoJacobiQuadrature.html#PetscDTGaussLobattoJacobiQuadrature
man:+PetscDTGaussQuadrature++PetscDTGaussQuadrature++++man+https://petsc.org/release/manualpages/DT/PetscDTGaussQuadrature.html#PetscDTGaussQuadrature
man:+PetscDTGaussLobattoLegendreQuadrature++PetscDTGaussLobattoLegendreQuadrature++++man+https://petsc.org/release/manualpages/DT/PetscDTGaussLobattoLegendreQuadrature.html#PetscDTGaussLobattoLegendreQuadrature
man:+PetscDTGaussTensorQuadrature++PetscDTGaussTensorQuadrature++++man+https://petsc.org/release/manualpages/DT/PetscDTGaussTensorQuadrature.html#PetscDTGaussTensorQuadrature
man:+PetscDTStroudConicalQuadrature++PetscDTStroudConicalQuadrature++++man+https://petsc.org/release/manualpages/DT/PetscDTStroudConicalQuadrature.html#PetscDTStroudConicalQuadrature
man:+PetscDTSimplexQuadrature++PetscDTSimplexQuadrature++++man+https://petsc.org/release/manualpages/DT/PetscDTSimplexQuadrature.html#PetscDTSimplexQuadrature
man:+PetscDTTanhSinhTensorQuadrature++PetscDTTanhSinhTensorQuadrature++++man+https://petsc.org/release/manualpages/DT/PetscDTTanhSinhTensorQuadrature.html#PetscDTTanhSinhTensorQuadrature
man:+PetscDTTensorQuadratureCreate++PetscDTTensorQuadratureCreate++++man+https://petsc.org/release/manualpages/DT/PetscDTTensorQuadratureCreate.html#PetscDTTensorQuadratureCreate
man:+PetscDTReconstructPoly++PetscDTReconstructPoly++++man+https://petsc.org/release/manualpages/DT/PetscDTReconstructPoly.html#PetscDTReconstructPoly
man:+PetscGaussLobattoLegendreIntegrate++PetscGaussLobattoLegendreIntegrate++++man+https://petsc.org/release/manualpages/DT/PetscGaussLobattoLegendreIntegrate.html#PetscGaussLobattoLegendreIntegrate
man:+PetscGaussLobattoLegendreElementLaplacianCreate++PetscGaussLobattoLegendreElementLaplacianCreate++++man+https://petsc.org/release/manualpages/DT/PetscGaussLobattoLegendreElementLaplacianCreate.html#PetscGaussLobattoLegendreElementLaplacianCreate
man:+PetscGaussLobattoLegendreElementLaplacianDestroy++PetscGaussLobattoLegendreElementLaplacianDestroy++++man+https://petsc.org/release/manualpages/DT/PetscGaussLobattoLegendreElementLaplacianDestroy.html#PetscGaussLobattoLegendreElementLaplacianDestroy
man:+PetscGaussLobattoLegendreElementGradientCreate++PetscGaussLobattoLegendreElementGradientCreate++++man+https://petsc.org/release/manualpages/DT/PetscGaussLobattoLegendreElementGradientCreate.html#PetscGaussLobattoLegendreElementGradientCreate
man:+PetscGaussLobattoLegendreElementGradientDestroy++PetscGaussLobattoLegendreElementGradientDestroy++++man+https://petsc.org/release/manualpages/DT/PetscGaussLobattoLegendreElementGradientDestroy.html#PetscGaussLobattoLegendreElementGradientDestroy
man:+PetscGaussLobattoLegendreElementAdvectionCreate++PetscGaussLobattoLegendreElementAdvectionCreate++++man+https://petsc.org/release/manualpages/DT/PetscGaussLobattoLegendreElementAdvectionCreate.html#PetscGaussLobattoLegendreElementAdvectionCreate
man:+PetscGaussLobattoLegendreElementAdvectionDestroy++PetscGaussLobattoLegendreElementAdvectionDestroy++++man+https://petsc.org/release/manualpages/DT/PetscGaussLobattoLegendreElementAdvectionDestroy.html#PetscGaussLobattoLegendreElementAdvectionDestroy
man:+PetscDTIndexToBary++PetscDTIndexToBary++++man+https://petsc.org/release/manualpages/DT/PetscDTIndexToBary.html#PetscDTIndexToBary
man:+PetscDTBaryToIndex++PetscDTBaryToIndex++++man+https://petsc.org/release/manualpages/DT/PetscDTBaryToIndex.html#PetscDTBaryToIndex
man:+PetscQuadratureComputePermutations++PetscQuadratureComputePermutations++++man+https://petsc.org/release/manualpages/DT/PetscQuadratureComputePermutations.html#PetscQuadratureComputePermutations
man:+PetscDTCreateDefaultQuadrature++PetscDTCreateDefaultQuadrature++++man+https://petsc.org/release/manualpages/DT/PetscDTCreateDefaultQuadrature.html#PetscDTCreateDefaultQuadrature
man:+PetscFVSetCeed++PetscFVSetCeed++++man+https://petsc.org/release/manualpages/FV/PetscFVSetCeed.html#PetscFVSetCeed
man:+PetscFVGetCeedBasis++PetscFVGetCeedBasis++++man+https://petsc.org/release/manualpages/FV/PetscFVGetCeedBasis.html#PetscFVGetCeedBasis
man:+PetscLimiterRegister++PetscLimiterRegister++++man+https://petsc.org/release/manualpages/FV/PetscLimiterRegister.html#PetscLimiterRegister
man:+PetscLimiterSetType++PetscLimiterSetType++++man+https://petsc.org/release/manualpages/FV/PetscLimiterSetType.html#PetscLimiterSetType
man:+PetscLimiterGetType++PetscLimiterGetType++++man+https://petsc.org/release/manualpages/FV/PetscLimiterGetType.html#PetscLimiterGetType
man:+PetscLimiterViewFromOptions++PetscLimiterViewFromOptions++++man+https://petsc.org/release/manualpages/FV/PetscLimiterViewFromOptions.html#PetscLimiterViewFromOptions
man:+PetscLimiterView++PetscLimiterView++++man+https://petsc.org/release/manualpages/FV/PetscLimiterView.html#PetscLimiterView
man:+PetscLimiterSetFromOptions++PetscLimiterSetFromOptions++++man+https://petsc.org/release/manualpages/FV/PetscLimiterSetFromOptions.html#PetscLimiterSetFromOptions
man:+PetscLimiterSetUp++PetscLimiterSetUp++++man+https://petsc.org/release/manualpages/FV/PetscLimiterSetUp.html#PetscLimiterSetUp
man:+PetscLimiterDestroy++PetscLimiterDestroy++++man+https://petsc.org/release/manualpages/FV/PetscLimiterDestroy.html#PetscLimiterDestroy
man:+PetscLimiterCreate++PetscLimiterCreate++++man+https://petsc.org/release/manualpages/FV/PetscLimiterCreate.html#PetscLimiterCreate
man:+PetscLimiterLimit++PetscLimiterLimit++++man+https://petsc.org/release/manualpages/FV/PetscLimiterLimit.html#PetscLimiterLimit
man:+PETSCLIMITERSIN++PETSCLIMITERSIN++++man+https://petsc.org/release/manualpages/FV/PETSCLIMITERSIN.html#PETSCLIMITERSIN
man:+PETSCLIMITERZERO++PETSCLIMITERZERO++++man+https://petsc.org/release/manualpages/FV/PETSCLIMITERZERO.html#PETSCLIMITERZERO
man:+PETSCLIMITERNONE++PETSCLIMITERNONE++++man+https://petsc.org/release/manualpages/FV/PETSCLIMITERNONE.html#PETSCLIMITERNONE
man:+PETSCLIMITERMINMOD++PETSCLIMITERMINMOD++++man+https://petsc.org/release/manualpages/FV/PETSCLIMITERMINMOD.html#PETSCLIMITERMINMOD
man:+PETSCLIMITERVANLEER++PETSCLIMITERVANLEER++++man+https://petsc.org/release/manualpages/FV/PETSCLIMITERVANLEER.html#PETSCLIMITERVANLEER
man:+PETSCLIMITERVANALBADA++PETSCLIMITERVANALBADA++++man+https://petsc.org/release/manualpages/FV/PETSCLIMITERVANALBADA.html#PETSCLIMITERVANALBADA
man:+PETSCLIMITERSUPERBEE++PETSCLIMITERSUPERBEE++++man+https://petsc.org/release/manualpages/FV/PETSCLIMITERSUPERBEE.html#PETSCLIMITERSUPERBEE
man:+PETSCLIMITERMC++PETSCLIMITERMC++++man+https://petsc.org/release/manualpages/FV/PETSCLIMITERMC.html#PETSCLIMITERMC
man:+PetscFVRegister++PetscFVRegister++++man+https://petsc.org/release/manualpages/FV/PetscFVRegister.html#PetscFVRegister
man:+PetscFVSetType++PetscFVSetType++++man+https://petsc.org/release/manualpages/FV/PetscFVSetType.html#PetscFVSetType
man:+PetscFVGetType++PetscFVGetType++++man+https://petsc.org/release/manualpages/FV/PetscFVGetType.html#PetscFVGetType
man:+PetscFVViewFromOptions++PetscFVViewFromOptions++++man+https://petsc.org/release/manualpages/FV/PetscFVViewFromOptions.html#PetscFVViewFromOptions
man:+PetscFVView++PetscFVView++++man+https://petsc.org/release/manualpages/FV/PetscFVView.html#PetscFVView
man:+PetscFVSetFromOptions++PetscFVSetFromOptions++++man+https://petsc.org/release/manualpages/FV/PetscFVSetFromOptions.html#PetscFVSetFromOptions
man:+PetscFVSetUp++PetscFVSetUp++++man+https://petsc.org/release/manualpages/FV/PetscFVSetUp.html#PetscFVSetUp
man:+PetscFVDestroy++PetscFVDestroy++++man+https://petsc.org/release/manualpages/FV/PetscFVDestroy.html#PetscFVDestroy
man:+PetscFVCreate++PetscFVCreate++++man+https://petsc.org/release/manualpages/FV/PetscFVCreate.html#PetscFVCreate
man:+PetscFVSetLimiter++PetscFVSetLimiter++++man+https://petsc.org/release/manualpages/FV/PetscFVSetLimiter.html#PetscFVSetLimiter
man:+PetscFVGetLimiter++PetscFVGetLimiter++++man+https://petsc.org/release/manualpages/FV/PetscFVGetLimiter.html#PetscFVGetLimiter
man:+PetscFVSetNumComponents++PetscFVSetNumComponents++++man+https://petsc.org/release/manualpages/FV/PetscFVSetNumComponents.html#PetscFVSetNumComponents
man:+PetscFVGetNumComponents++PetscFVGetNumComponents++++man+https://petsc.org/release/manualpages/FV/PetscFVGetNumComponents.html#PetscFVGetNumComponents
man:+PetscFVSetComponentName++PetscFVSetComponentName++++man+https://petsc.org/release/manualpages/FV/PetscFVSetComponentName.html#PetscFVSetComponentName
man:+PetscFVGetComponentName++PetscFVGetComponentName++++man+https://petsc.org/release/manualpages/FV/PetscFVGetComponentName.html#PetscFVGetComponentName
man:+PetscFVSetSpatialDimension++PetscFVSetSpatialDimension++++man+https://petsc.org/release/manualpages/FV/PetscFVSetSpatialDimension.html#PetscFVSetSpatialDimension
man:+PetscFVGetSpatialDimension++PetscFVGetSpatialDimension++++man+https://petsc.org/release/manualpages/FV/PetscFVGetSpatialDimension.html#PetscFVGetSpatialDimension
man:+PetscFVSetComputeGradients++PetscFVSetComputeGradients++++man+https://petsc.org/release/manualpages/FV/PetscFVSetComputeGradients.html#PetscFVSetComputeGradients
man:+PetscFVGetComputeGradients++PetscFVGetComputeGradients++++man+https://petsc.org/release/manualpages/FV/PetscFVGetComputeGradients.html#PetscFVGetComputeGradients
man:+PetscFVSetQuadrature++PetscFVSetQuadrature++++man+https://petsc.org/release/manualpages/FV/PetscFVSetQuadrature.html#PetscFVSetQuadrature
man:+PetscFVGetQuadrature++PetscFVGetQuadrature++++man+https://petsc.org/release/manualpages/FV/PetscFVGetQuadrature.html#PetscFVGetQuadrature
man:+PetscFVCreateDualSpace++PetscFVCreateDualSpace++++man+https://petsc.org/release/manualpages/FV/PetscFVCreateDualSpace.html#PetscFVCreateDualSpace
man:+PetscFVGetDualSpace++PetscFVGetDualSpace++++man+https://petsc.org/release/manualpages/FV/PetscFVGetDualSpace.html#PetscFVGetDualSpace
man:+PetscFVSetDualSpace++PetscFVSetDualSpace++++man+https://petsc.org/release/manualpages/FV/PetscFVSetDualSpace.html#PetscFVSetDualSpace
man:+PetscFVGetCellTabulation++PetscFVGetCellTabulation++++man+https://petsc.org/release/manualpages/FV/PetscFVGetCellTabulation.html#PetscFVGetCellTabulation
man:+PetscFVCreateTabulation++PetscFVCreateTabulation++++man+https://petsc.org/release/manualpages/FV/PetscFVCreateTabulation.html#PetscFVCreateTabulation
man:+PetscFVComputeGradient++PetscFVComputeGradient++++man+https://petsc.org/release/manualpages/FV/PetscFVComputeGradient.html#PetscFVComputeGradient
man:+PetscFVIntegrateRHSFunction++PetscFVIntegrateRHSFunction++++man+https://petsc.org/release/manualpages/FV/PetscFVIntegrateRHSFunction.html#PetscFVIntegrateRHSFunction
man:+PetscFVClone++PetscFVClone++++man+https://petsc.org/release/manualpages/FV/PetscFVClone.html#PetscFVClone
man:+PetscFVRefine++PetscFVRefine++++man+https://petsc.org/release/manualpages/FV/PetscFVRefine.html#PetscFVRefine
man:+PETSCFVUPWIND++PETSCFVUPWIND++++man+https://petsc.org/release/manualpages/FV/PETSCFVUPWIND.html#PETSCFVUPWIND
man:+PETSCFVLEASTSQUARES++PETSCFVLEASTSQUARES++++man+https://petsc.org/release/manualpages/FV/PETSCFVLEASTSQUARES.html#PETSCFVLEASTSQUARES
man:+PetscFVLeastSquaresSetMaxFaces++PetscFVLeastSquaresSetMaxFaces++++man+https://petsc.org/release/manualpages/FV/PetscFVLeastSquaresSetMaxFaces.html#PetscFVLeastSquaresSetMaxFaces
man:+PetscFERegister++PetscFERegister++++man+https://petsc.org/release/manualpages/FE/PetscFERegister.html#PetscFERegister
man:+PetscFESetType++PetscFESetType++++man+https://petsc.org/release/manualpages/FE/PetscFESetType.html#PetscFESetType
man:+PetscFEGetType++PetscFEGetType++++man+https://petsc.org/release/manualpages/FE/PetscFEGetType.html#PetscFEGetType
man:+PetscFEViewFromOptions++PetscFEViewFromOptions++++man+https://petsc.org/release/manualpages/FE/PetscFEViewFromOptions.html#PetscFEViewFromOptions
man:+PetscFEView++PetscFEView++++man+https://petsc.org/release/manualpages/FE/PetscFEView.html#PetscFEView
man:+PetscFESetFromOptions++PetscFESetFromOptions++++man+https://petsc.org/release/manualpages/FE/PetscFESetFromOptions.html#PetscFESetFromOptions
man:+PetscFESetUp++PetscFESetUp++++man+https://petsc.org/release/manualpages/FE/PetscFESetUp.html#PetscFESetUp
man:+PetscFEDestroy++PetscFEDestroy++++man+https://petsc.org/release/manualpages/FE/PetscFEDestroy.html#PetscFEDestroy
man:+PetscFECreate++PetscFECreate++++man+https://petsc.org/release/manualpages/FE/PetscFECreate.html#PetscFECreate
man:+PetscFEGetSpatialDimension++PetscFEGetSpatialDimension++++man+https://petsc.org/release/manualpages/FE/PetscFEGetSpatialDimension.html#PetscFEGetSpatialDimension
man:+PetscFESetNumComponents++PetscFESetNumComponents++++man+https://petsc.org/release/manualpages/FE/PetscFESetNumComponents.html#PetscFESetNumComponents
man:+PetscFEGetNumComponents++PetscFEGetNumComponents++++man+https://petsc.org/release/manualpages/FE/PetscFEGetNumComponents.html#PetscFEGetNumComponents
man:+PetscFESetTileSizes++PetscFESetTileSizes++++man+https://petsc.org/release/manualpages/FE/PetscFESetTileSizes.html#PetscFESetTileSizes
man:+PetscFEGetTileSizes++PetscFEGetTileSizes++++man+https://petsc.org/release/manualpages/FE/PetscFEGetTileSizes.html#PetscFEGetTileSizes
man:+PetscFEGetBasisSpace++PetscFEGetBasisSpace++++man+https://petsc.org/release/manualpages/FE/PetscFEGetBasisSpace.html#PetscFEGetBasisSpace
man:+PetscFESetBasisSpace++PetscFESetBasisSpace++++man+https://petsc.org/release/manualpages/FE/PetscFESetBasisSpace.html#PetscFESetBasisSpace
man:+PetscFEGetDualSpace++PetscFEGetDualSpace++++man+https://petsc.org/release/manualpages/FE/PetscFEGetDualSpace.html#PetscFEGetDualSpace
man:+PetscFESetDualSpace++PetscFESetDualSpace++++man+https://petsc.org/release/manualpages/FE/PetscFESetDualSpace.html#PetscFESetDualSpace
man:+PetscFEGetQuadrature++PetscFEGetQuadrature++++man+https://petsc.org/release/manualpages/FE/PetscFEGetQuadrature.html#PetscFEGetQuadrature
man:+PetscFESetQuadrature++PetscFESetQuadrature++++man+https://petsc.org/release/manualpages/FE/PetscFESetQuadrature.html#PetscFESetQuadrature
man:+PetscFEGetFaceQuadrature++PetscFEGetFaceQuadrature++++man+https://petsc.org/release/manualpages/FE/PetscFEGetFaceQuadrature.html#PetscFEGetFaceQuadrature
man:+PetscFESetFaceQuadrature++PetscFESetFaceQuadrature++++man+https://petsc.org/release/manualpages/FE/PetscFESetFaceQuadrature.html#PetscFESetFaceQuadrature
man:+PetscFECopyQuadrature++PetscFECopyQuadrature++++man+https://petsc.org/release/manualpages/FE/PetscFECopyQuadrature.html#PetscFECopyQuadrature
man:+PetscFEGetNumDof++PetscFEGetNumDof++++man+https://petsc.org/release/manualpages/FE/PetscFEGetNumDof.html#PetscFEGetNumDof
man:+PetscFEGetCellTabulation++PetscFEGetCellTabulation++++man+https://petsc.org/release/manualpages/FE/PetscFEGetCellTabulation.html#PetscFEGetCellTabulation
man:+PetscFEGetFaceTabulation++PetscFEGetFaceTabulation++++man+https://petsc.org/release/manualpages/FE/PetscFEGetFaceTabulation.html#PetscFEGetFaceTabulation
man:+PetscFEGetFaceCentroidTabulation++PetscFEGetFaceCentroidTabulation++++man+https://petsc.org/release/manualpages/FE/PetscFEGetFaceCentroidTabulation.html#PetscFEGetFaceCentroidTabulation
man:+PetscFECreateTabulation++PetscFECreateTabulation++++man+https://petsc.org/release/manualpages/FE/PetscFECreateTabulation.html#PetscFECreateTabulation
man:+PetscFEComputeTabulation++PetscFEComputeTabulation++++man+https://petsc.org/release/manualpages/FE/PetscFEComputeTabulation.html#PetscFEComputeTabulation
man:+PetscTabulationDestroy++PetscTabulationDestroy++++man+https://petsc.org/release/manualpages/FE/PetscTabulationDestroy.html#PetscTabulationDestroy
man:+PetscFEGetDimension++PetscFEGetDimension++++man+https://petsc.org/release/manualpages/FE/PetscFEGetDimension.html#PetscFEGetDimension
man:+PetscFEPushforward++PetscFEPushforward++++man+https://petsc.org/release/manualpages/FE/PetscFEPushforward.html#PetscFEPushforward
man:+PetscFEPushforwardGradient++PetscFEPushforwardGradient++++man+https://petsc.org/release/manualpages/FE/PetscFEPushforwardGradient.html#PetscFEPushforwardGradient
man:+PetscFEPushforwardHessian++PetscFEPushforwardHessian++++man+https://petsc.org/release/manualpages/FE/PetscFEPushforwardHessian.html#PetscFEPushforwardHessian
man:+PetscFEIntegrate++PetscFEIntegrate++++man+https://petsc.org/release/manualpages/FE/PetscFEIntegrate.html#PetscFEIntegrate
man:+PetscFEIntegrateBd++PetscFEIntegrateBd++++man+https://petsc.org/release/manualpages/FE/PetscFEIntegrateBd.html#PetscFEIntegrateBd
man:+PetscFEIntegrateResidual++PetscFEIntegrateResidual++++man+https://petsc.org/release/manualpages/FE/PetscFEIntegrateResidual.html#PetscFEIntegrateResidual
man:+PetscFEIntegrateBdResidual++PetscFEIntegrateBdResidual++++man+https://petsc.org/release/manualpages/FE/PetscFEIntegrateBdResidual.html#PetscFEIntegrateBdResidual
man:+PetscFEIntegrateHybridResidual++PetscFEIntegrateHybridResidual++++man+https://petsc.org/release/manualpages/FE/PetscFEIntegrateHybridResidual.html#PetscFEIntegrateHybridResidual
man:+PetscFEIntegrateJacobian++PetscFEIntegrateJacobian++++man+https://petsc.org/release/manualpages/FE/PetscFEIntegrateJacobian.html#PetscFEIntegrateJacobian
man:+PetscFEIntegrateBdJacobian++PetscFEIntegrateBdJacobian++++man+https://petsc.org/release/manualpages/FE/PetscFEIntegrateBdJacobian.html#PetscFEIntegrateBdJacobian
man:+PetscFEIntegrateHybridJacobian++PetscFEIntegrateHybridJacobian++++man+https://petsc.org/release/manualpages/FE/PetscFEIntegrateHybridJacobian.html#PetscFEIntegrateHybridJacobian
man:+PetscFEGetHeightSubspace++PetscFEGetHeightSubspace++++man+https://petsc.org/release/manualpages/FE/PetscFEGetHeightSubspace.html#PetscFEGetHeightSubspace
man:+PetscFERefine++PetscFERefine++++man+https://petsc.org/release/manualpages/FE/PetscFERefine.html#PetscFERefine
man:+PetscFECreateFromSpaces++PetscFECreateFromSpaces++++man+https://petsc.org/release/manualpages/FE/PetscFECreateFromSpaces.html#PetscFECreateFromSpaces
man:+PetscFECreateDefault++PetscFECreateDefault++++man+https://petsc.org/release/manualpages/FE/PetscFECreateDefault.html#PetscFECreateDefault
man:+PetscFECreateByCell++PetscFECreateByCell++++man+https://petsc.org/release/manualpages/FE/PetscFECreateByCell.html#PetscFECreateByCell
man:+PetscFECreateLagrange++PetscFECreateLagrange++++man+https://petsc.org/release/manualpages/FE/PetscFECreateLagrange.html#PetscFECreateLagrange
man:+PetscFECreateLagrangeByCell++PetscFECreateLagrangeByCell++++man+https://petsc.org/release/manualpages/FE/PetscFECreateLagrangeByCell.html#PetscFECreateLagrangeByCell
man:+PetscFELimitDegree++PetscFELimitDegree++++man+https://petsc.org/release/manualpages/FE/PetscFELimitDegree.html#PetscFELimitDegree
man:+PetscFESetName++PetscFESetName++++man+https://petsc.org/release/manualpages/FE/PetscFESetName.html#PetscFESetName
man:+PetscFESetCeed++PetscFESetCeed++++man+https://petsc.org/release/manualpages/FE/PetscFESetCeed.html#PetscFESetCeed
man:+PetscFEGetCeedBasis++PetscFEGetCeedBasis++++man+https://petsc.org/release/manualpages/FE/PetscFEGetCeedBasis.html#PetscFEGetCeedBasis
man:+PetscFEGeomCreate++PetscFEGeomCreate++++man+https://petsc.org/release/manualpages/FE/PetscFEGeomCreate.html#PetscFEGeomCreate
man:+PetscFEGeomDestroy++PetscFEGeomDestroy++++man+https://petsc.org/release/manualpages/FE/PetscFEGeomDestroy.html#PetscFEGeomDestroy
man:+PetscFEGeomGetChunk++PetscFEGeomGetChunk++++man+https://petsc.org/release/manualpages/FE/PetscFEGeomGetChunk.html#PetscFEGeomGetChunk
man:+PetscFEGeomRestoreChunk++PetscFEGeomRestoreChunk++++man+https://petsc.org/release/manualpages/FE/PetscFEGeomRestoreChunk.html#PetscFEGeomRestoreChunk
man:+PetscFEGeomGetPoint++PetscFEGeomGetPoint++++man+https://petsc.org/release/manualpages/FE/PetscFEGeomGetPoint.html#PetscFEGeomGetPoint
man:+PetscFEGeomGetCellPoint++PetscFEGeomGetCellPoint++++man+https://petsc.org/release/manualpages/FE/PetscFEGeomGetCellPoint.html#PetscFEGeomGetCellPoint
man:+PetscFEGeomComplete++PetscFEGeomComplete++++man+https://petsc.org/release/manualpages/FE/PetscFEGeomComplete.html#PetscFEGeomComplete
man:+PETSCFEBASIC++PETSCFEBASIC++++man+https://petsc.org/release/manualpages/FE/PETSCFEBASIC.html#PETSCFEBASIC
man:+PETSCFECOMPOSITE++PETSCFECOMPOSITE++++man+https://petsc.org/release/manualpages/FE/PETSCFECOMPOSITE.html#PETSCFECOMPOSITE
man:+PetscFECompositeGetMapping++PetscFECompositeGetMapping++++man+https://petsc.org/release/manualpages/FE/PetscFECompositeGetMapping.html#PetscFECompositeGetMapping
man:+PETSCFEOPENCL++PETSCFEOPENCL++++man+https://petsc.org/release/manualpages/FE/PETSCFEOPENCL.html#PETSCFEOPENCL
man:+PetscFEOpenCLSetRealType++PetscFEOpenCLSetRealType++++man+https://petsc.org/release/manualpages/FE/PetscFEOpenCLSetRealType.html#PetscFEOpenCLSetRealType
man:+PetscFEOpenCLGetRealType++PetscFEOpenCLGetRealType++++man+https://petsc.org/release/manualpages/FE/PetscFEOpenCLGetRealType.html#PetscFEOpenCLGetRealType
man:+PETSCFEVECTOR++PETSCFEVECTOR++++man+https://petsc.org/release/manualpages/FE/PETSCFEVECTOR.html#PETSCFEVECTOR
man:+PetscFECreateVector++PetscFECreateVector++++man+https://petsc.org/release/manualpages/FE/PetscFECreateVector.html#PetscFECreateVector
man:+PetscDualSpaceRegister++PetscDualSpaceRegister++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceRegister.html#PetscDualSpaceRegister
man:+PetscDualSpaceSetType++PetscDualSpaceSetType++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSetType.html#PetscDualSpaceSetType
man:+PetscDualSpaceGetType++PetscDualSpaceGetType++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetType.html#PetscDualSpaceGetType
man:+PetscDualSpaceViewFromOptions++PetscDualSpaceViewFromOptions++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceViewFromOptions.html#PetscDualSpaceViewFromOptions
man:+PetscDualSpaceView++PetscDualSpaceView++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceView.html#PetscDualSpaceView
man:+PetscDualSpaceSetFromOptions++PetscDualSpaceSetFromOptions++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSetFromOptions.html#PetscDualSpaceSetFromOptions
man:+PetscDualSpaceSetUp++PetscDualSpaceSetUp++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSetUp.html#PetscDualSpaceSetUp
man:+PetscDualSpaceDestroy++PetscDualSpaceDestroy++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceDestroy.html#PetscDualSpaceDestroy
man:+PetscDualSpaceCreate++PetscDualSpaceCreate++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceCreate.html#PetscDualSpaceCreate
man:+PetscDualSpaceDuplicate++PetscDualSpaceDuplicate++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceDuplicate.html#PetscDualSpaceDuplicate
man:+PetscDualSpaceGetDM++PetscDualSpaceGetDM++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetDM.html#PetscDualSpaceGetDM
man:+PetscDualSpaceSetDM++PetscDualSpaceSetDM++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSetDM.html#PetscDualSpaceSetDM
man:+PetscDualSpaceGetOrder++PetscDualSpaceGetOrder++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetOrder.html#PetscDualSpaceGetOrder
man:+PetscDualSpaceSetOrder++PetscDualSpaceSetOrder++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSetOrder.html#PetscDualSpaceSetOrder
man:+PetscDualSpaceGetNumComponents++PetscDualSpaceGetNumComponents++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetNumComponents.html#PetscDualSpaceGetNumComponents
man:+PetscDualSpaceSetNumComponents++PetscDualSpaceSetNumComponents++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSetNumComponents.html#PetscDualSpaceSetNumComponents
man:+PetscDualSpaceGetFunctional++PetscDualSpaceGetFunctional++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetFunctional.html#PetscDualSpaceGetFunctional
man:+PetscDualSpaceGetDimension++PetscDualSpaceGetDimension++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetDimension.html#PetscDualSpaceGetDimension
man:+PetscDualSpaceGetInteriorDimension++PetscDualSpaceGetInteriorDimension++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetInteriorDimension.html#PetscDualSpaceGetInteriorDimension
man:+PetscDualSpaceGetUniform++PetscDualSpaceGetUniform++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetUniform.html#PetscDualSpaceGetUniform
man:+PetscDualSpaceGetNumDof++PetscDualSpaceGetNumDof++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetNumDof.html#PetscDualSpaceGetNumDof
man:+PetscDualSpaceGetSection++PetscDualSpaceGetSection++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetSection.html#PetscDualSpaceGetSection
man:+PetscDualSpaceGetInteriorSection++PetscDualSpaceGetInteriorSection++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetInteriorSection.html#PetscDualSpaceGetInteriorSection
man:+PetscDualSpaceApply++PetscDualSpaceApply++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceApply.html#PetscDualSpaceApply
man:+PetscDualSpaceApplyAll++PetscDualSpaceApplyAll++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceApplyAll.html#PetscDualSpaceApplyAll
man:+PetscDualSpaceApplyInterior++PetscDualSpaceApplyInterior++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceApplyInterior.html#PetscDualSpaceApplyInterior
man:+PetscDualSpaceApplyDefault++PetscDualSpaceApplyDefault++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceApplyDefault.html#PetscDualSpaceApplyDefault
man:+PetscDualSpaceApplyAllDefault++PetscDualSpaceApplyAllDefault++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceApplyAllDefault.html#PetscDualSpaceApplyAllDefault
man:+PetscDualSpaceApplyInteriorDefault++PetscDualSpaceApplyInteriorDefault++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceApplyInteriorDefault.html#PetscDualSpaceApplyInteriorDefault
man:+PetscDualSpaceGetAllData++PetscDualSpaceGetAllData++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetAllData.html#PetscDualSpaceGetAllData
man:+PetscDualSpaceCreateAllDataDefault++PetscDualSpaceCreateAllDataDefault++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceCreateAllDataDefault.html#PetscDualSpaceCreateAllDataDefault
man:+PetscDualSpaceGetInteriorData++PetscDualSpaceGetInteriorData++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetInteriorData.html#PetscDualSpaceGetInteriorData
man:+PetscDualSpaceCreateInteriorDataDefault++PetscDualSpaceCreateInteriorDataDefault++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceCreateInteriorDataDefault.html#PetscDualSpaceCreateInteriorDataDefault
man:+PetscDualSpaceEqual++PetscDualSpaceEqual++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceEqual.html#PetscDualSpaceEqual
man:+PetscDualSpaceApplyFVM++PetscDualSpaceApplyFVM++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceApplyFVM.html#PetscDualSpaceApplyFVM
man:+PetscDualSpaceGetHeightSubspace++PetscDualSpaceGetHeightSubspace++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetHeightSubspace.html#PetscDualSpaceGetHeightSubspace
man:+PetscDualSpaceGetPointSubspace++PetscDualSpaceGetPointSubspace++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetPointSubspace.html#PetscDualSpaceGetPointSubspace
man:+PetscDualSpaceGetSymmetries++PetscDualSpaceGetSymmetries++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetSymmetries.html#PetscDualSpaceGetSymmetries
man:+PetscDualSpaceGetFormDegree++PetscDualSpaceGetFormDegree++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetFormDegree.html#PetscDualSpaceGetFormDegree
man:+PetscDualSpaceSetFormDegree++PetscDualSpaceSetFormDegree++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSetFormDegree.html#PetscDualSpaceSetFormDegree
man:+PetscDualSpaceGetDeRahm++PetscDualSpaceGetDeRahm++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceGetDeRahm.html#PetscDualSpaceGetDeRahm
man:+PetscDualSpaceTransform++PetscDualSpaceTransform++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceTransform.html#PetscDualSpaceTransform
man:+PetscDualSpaceTransformGradient++PetscDualSpaceTransformGradient++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceTransformGradient.html#PetscDualSpaceTransformGradient
man:+PetscDualSpaceTransformHessian++PetscDualSpaceTransformHessian++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceTransformHessian.html#PetscDualSpaceTransformHessian
man:+PetscDualSpacePullback++PetscDualSpacePullback++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpacePullback.html#PetscDualSpacePullback
man:+PetscDualSpacePushforward++PetscDualSpacePushforward++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpacePushforward.html#PetscDualSpacePushforward
man:+PetscDualSpacePushforwardGradient++PetscDualSpacePushforwardGradient++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpacePushforwardGradient.html#PetscDualSpacePushforwardGradient
man:+PetscDualSpacePushforwardHessian++PetscDualSpacePushforwardHessian++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpacePushforwardHessian.html#PetscDualSpacePushforwardHessian
man:+PetscDualSpaceSimpleSetDimension++PetscDualSpaceSimpleSetDimension++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSimpleSetDimension.html#PetscDualSpaceSimpleSetDimension
man:+PetscDualSpaceSimpleSetFunctional++PetscDualSpaceSimpleSetFunctional++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSimpleSetFunctional.html#PetscDualSpaceSimpleSetFunctional
man:+PETSCDUALSPACESIMPLE++PETSCDUALSPACESIMPLE++++man+https://petsc.org/release/manualpages/DUALSPACE/PETSCDUALSPACESIMPLE.html#PETSCDUALSPACESIMPLE
man:+PetscDualSpaceLagrangeGetContinuity++PetscDualSpaceLagrangeGetContinuity++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceLagrangeGetContinuity.html#PetscDualSpaceLagrangeGetContinuity
man:+PetscDualSpaceLagrangeSetContinuity++PetscDualSpaceLagrangeSetContinuity++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceLagrangeSetContinuity.html#PetscDualSpaceLagrangeSetContinuity
man:+PetscDualSpaceLagrangeGetTensor++PetscDualSpaceLagrangeGetTensor++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceLagrangeGetTensor.html#PetscDualSpaceLagrangeGetTensor
man:+PetscDualSpaceLagrangeSetTensor++PetscDualSpaceLagrangeSetTensor++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceLagrangeSetTensor.html#PetscDualSpaceLagrangeSetTensor
man:+PetscDualSpaceLagrangeGetTrimmed++PetscDualSpaceLagrangeGetTrimmed++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceLagrangeGetTrimmed.html#PetscDualSpaceLagrangeGetTrimmed
man:+PetscDualSpaceLagrangeSetTrimmed++PetscDualSpaceLagrangeSetTrimmed++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceLagrangeSetTrimmed.html#PetscDualSpaceLagrangeSetTrimmed
man:+PetscDualSpaceLagrangeGetNodeType++PetscDualSpaceLagrangeGetNodeType++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceLagrangeGetNodeType.html#PetscDualSpaceLagrangeGetNodeType
man:+PetscDualSpaceLagrangeSetNodeType++PetscDualSpaceLagrangeSetNodeType++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceLagrangeSetNodeType.html#PetscDualSpaceLagrangeSetNodeType
man:+PetscDualSpaceLagrangeGetUseMoments++PetscDualSpaceLagrangeGetUseMoments++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceLagrangeGetUseMoments.html#PetscDualSpaceLagrangeGetUseMoments
man:+PetscDualSpaceLagrangeSetUseMoments++PetscDualSpaceLagrangeSetUseMoments++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceLagrangeSetUseMoments.html#PetscDualSpaceLagrangeSetUseMoments
man:+PetscDualSpaceLagrangeGetMomentOrder++PetscDualSpaceLagrangeGetMomentOrder++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceLagrangeGetMomentOrder.html#PetscDualSpaceLagrangeGetMomentOrder
man:+PetscDualSpaceLagrangeSetMomentOrder++PetscDualSpaceLagrangeSetMomentOrder++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceLagrangeSetMomentOrder.html#PetscDualSpaceLagrangeSetMomentOrder
man:+PETSCDUALSPACELAGRANGE++PETSCDUALSPACELAGRANGE++++man+https://petsc.org/release/manualpages/DUALSPACE/PETSCDUALSPACELAGRANGE.html#PETSCDUALSPACELAGRANGE
man:+PetscDualSpaceSumGetNumSubspaces++PetscDualSpaceSumGetNumSubspaces++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSumGetNumSubspaces.html#PetscDualSpaceSumGetNumSubspaces
man:+PetscDualSpaceSumSetNumSubspaces++PetscDualSpaceSumSetNumSubspaces++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSumSetNumSubspaces.html#PetscDualSpaceSumSetNumSubspaces
man:+PetscDualSpaceSumGetConcatenate++PetscDualSpaceSumGetConcatenate++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSumGetConcatenate.html#PetscDualSpaceSumGetConcatenate
man:+PetscDualSpaceSumSetConcatenate++PetscDualSpaceSumSetConcatenate++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSumSetConcatenate.html#PetscDualSpaceSumSetConcatenate
man:+PetscDualSpaceSumGetSubspace++PetscDualSpaceSumGetSubspace++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSumGetSubspace.html#PetscDualSpaceSumGetSubspace
man:+PetscDualSpaceSumSetSubspace++PetscDualSpaceSumSetSubspace++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSumSetSubspace.html#PetscDualSpaceSumSetSubspace
man:+PetscDualSpaceSumSetInterleave++PetscDualSpaceSumSetInterleave++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSumSetInterleave.html#PetscDualSpaceSumSetInterleave
man:+PetscDualSpaceSumGetInterleave++PetscDualSpaceSumGetInterleave++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceSumGetInterleave.html#PetscDualSpaceSumGetInterleave
man:+PETSCDUALSPACESUM++PETSCDUALSPACESUM++++man+https://petsc.org/release/manualpages/DUALSPACE/PETSCDUALSPACESUM.html#PETSCDUALSPACESUM
man:+PetscDualSpaceCreateSum++PetscDualSpaceCreateSum++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceCreateSum.html#PetscDualSpaceCreateSum
man:+PetscDualSpaceRefinedSetCellSpaces++PetscDualSpaceRefinedSetCellSpaces++++man+https://petsc.org/release/manualpages/DUALSPACE/PetscDualSpaceRefinedSetCellSpaces.html#PetscDualSpaceRefinedSetCellSpaces
man:+PETSCDUALSPACEREFINED++PETSCDUALSPACEREFINED++++man+https://petsc.org/release/manualpages/DUALSPACE/PETSCDUALSPACEREFINED.html#PETSCDUALSPACEREFINED
man:+PetscSpaceRegister++PetscSpaceRegister++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceRegister.html#PetscSpaceRegister
man:+PetscSpaceSetType++PetscSpaceSetType++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceSetType.html#PetscSpaceSetType
man:+PetscSpaceGetType++PetscSpaceGetType++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceGetType.html#PetscSpaceGetType
man:+PetscSpaceViewFromOptions++PetscSpaceViewFromOptions++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceViewFromOptions.html#PetscSpaceViewFromOptions
man:+PetscSpaceView++PetscSpaceView++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceView.html#PetscSpaceView
man:+PetscSpaceSetFromOptions++PetscSpaceSetFromOptions++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceSetFromOptions.html#PetscSpaceSetFromOptions
man:+PetscSpaceSetUp++PetscSpaceSetUp++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceSetUp.html#PetscSpaceSetUp
man:+PetscSpaceDestroy++PetscSpaceDestroy++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceDestroy.html#PetscSpaceDestroy
man:+PetscSpaceCreate++PetscSpaceCreate++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceCreate.html#PetscSpaceCreate
man:+PetscSpaceGetDimension++PetscSpaceGetDimension++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceGetDimension.html#PetscSpaceGetDimension
man:+PetscSpaceGetDegree++PetscSpaceGetDegree++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceGetDegree.html#PetscSpaceGetDegree
man:+PetscSpaceSetDegree++PetscSpaceSetDegree++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceSetDegree.html#PetscSpaceSetDegree
man:+PetscSpaceGetNumComponents++PetscSpaceGetNumComponents++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceGetNumComponents.html#PetscSpaceGetNumComponents
man:+PetscSpaceSetNumComponents++PetscSpaceSetNumComponents++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceSetNumComponents.html#PetscSpaceSetNumComponents
man:+PetscSpaceSetNumVariables++PetscSpaceSetNumVariables++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceSetNumVariables.html#PetscSpaceSetNumVariables
man:+PetscSpaceGetNumVariables++PetscSpaceGetNumVariables++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceGetNumVariables.html#PetscSpaceGetNumVariables
man:+PetscSpaceEvaluate++PetscSpaceEvaluate++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceEvaluate.html#PetscSpaceEvaluate
man:+PetscSpaceGetHeightSubspace++PetscSpaceGetHeightSubspace++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceGetHeightSubspace.html#PetscSpaceGetHeightSubspace
man:+PetscSpaceCreateSubspace++PetscSpaceCreateSubspace++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceCreateSubspace.html#PetscSpaceCreateSubspace
man:+PETSCSPACEPOINT++PETSCSPACEPOINT++++man+https://petsc.org/release/manualpages/SPACE/PETSCSPACEPOINT.html#PETSCSPACEPOINT
man:+PetscSpacePointSetPoints++PetscSpacePointSetPoints++++man+https://petsc.org/release/manualpages/SPACE/PetscSpacePointSetPoints.html#PetscSpacePointSetPoints
man:+PetscSpacePointGetPoints++PetscSpacePointGetPoints++++man+https://petsc.org/release/manualpages/SPACE/PetscSpacePointGetPoints.html#PetscSpacePointGetPoints
man:+PetscSpaceSumGetNumSubspaces++PetscSpaceSumGetNumSubspaces++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceSumGetNumSubspaces.html#PetscSpaceSumGetNumSubspaces
man:+PetscSpaceSumSetNumSubspaces++PetscSpaceSumSetNumSubspaces++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceSumSetNumSubspaces.html#PetscSpaceSumSetNumSubspaces
man:+PetscSpaceSumGetConcatenate++PetscSpaceSumGetConcatenate++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceSumGetConcatenate.html#PetscSpaceSumGetConcatenate
man:+PetscSpaceSumSetConcatenate++PetscSpaceSumSetConcatenate++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceSumSetConcatenate.html#PetscSpaceSumSetConcatenate
man:+PetscSpaceSumGetSubspace++PetscSpaceSumGetSubspace++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceSumGetSubspace.html#PetscSpaceSumGetSubspace
man:+PetscSpaceSumSetSubspace++PetscSpaceSumSetSubspace++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceSumSetSubspace.html#PetscSpaceSumSetSubspace
man:+PetscSpaceSumSetInterleave++PetscSpaceSumSetInterleave++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceSumSetInterleave.html#PetscSpaceSumSetInterleave
man:+PetscSpaceSumGetInterleave++PetscSpaceSumGetInterleave++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceSumGetInterleave.html#PetscSpaceSumGetInterleave
man:+PETSCSPACESUM++PETSCSPACESUM++++man+https://petsc.org/release/manualpages/SPACE/PETSCSPACESUM.html#PETSCSPACESUM
man:+PetscSpaceTensorSetNumSubspaces++PetscSpaceTensorSetNumSubspaces++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceTensorSetNumSubspaces.html#PetscSpaceTensorSetNumSubspaces
man:+PetscSpaceTensorGetNumSubspaces++PetscSpaceTensorGetNumSubspaces++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceTensorGetNumSubspaces.html#PetscSpaceTensorGetNumSubspaces
man:+PetscSpaceTensorSetSubspace++PetscSpaceTensorSetSubspace++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceTensorSetSubspace.html#PetscSpaceTensorSetSubspace
man:+PetscSpaceTensorGetSubspace++PetscSpaceTensorGetSubspace++++man+https://petsc.org/release/manualpages/SPACE/PetscSpaceTensorGetSubspace.html#PetscSpaceTensorGetSubspace
man:+PETSCSPACETENSOR++PETSCSPACETENSOR++++man+https://petsc.org/release/manualpages/SPACE/PETSCSPACETENSOR.html#PETSCSPACETENSOR
man:+PetscSpacePTrimmedSetFormDegree++PetscSpacePTrimmedSetFormDegree++++man+https://petsc.org/release/manualpages/SPACE/PetscSpacePTrimmedSetFormDegree.html#PetscSpacePTrimmedSetFormDegree
man:+PetscSpacePTrimmedGetFormDegree++PetscSpacePTrimmedGetFormDegree++++man+https://petsc.org/release/manualpages/SPACE/PetscSpacePTrimmedGetFormDegree.html#PetscSpacePTrimmedGetFormDegree
man:+PETSCSPACEPTRIMMED++PETSCSPACEPTRIMMED++++man+https://petsc.org/release/manualpages/SPACE/PETSCSPACEPTRIMMED.html#PETSCSPACEPTRIMMED
man:+PETSCSPACEWXY++PETSCSPACEWXY++++man+https://petsc.org/release/manualpages/SPACE/PETSCSPACEWXY.html#PETSCSPACEWXY
man:+PetscSpacePolynomialSetTensor++PetscSpacePolynomialSetTensor++++man+https://petsc.org/release/manualpages/SPACE/PetscSpacePolynomialSetTensor.html#PetscSpacePolynomialSetTensor
man:+PetscSpacePolynomialGetTensor++PetscSpacePolynomialGetTensor++++man+https://petsc.org/release/manualpages/SPACE/PetscSpacePolynomialGetTensor.html#PetscSpacePolynomialGetTensor
man:+PETSCSPACEPOLYNOMIAL++PETSCSPACEPOLYNOMIAL++++man+https://petsc.org/release/manualpages/SPACE/PETSCSPACEPOLYNOMIAL.html#PETSCSPACEPOLYNOMIAL
man:+PetscPartitionerRegister++PetscPartitionerRegister++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerRegister.html#PetscPartitionerRegister
man:+PetscPartitionerRegisterAll++PetscPartitionerRegisterAll++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerRegisterAll.html#PetscPartitionerRegisterAll
man:+PetscPartitionerFinalizePackage++PetscPartitionerFinalizePackage++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerFinalizePackage.html#PetscPartitionerFinalizePackage
man:+PetscPartitionerInitializePackage++PetscPartitionerInitializePackage++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerInitializePackage.html#PetscPartitionerInitializePackage
man:+PetscPartitionerSetType++PetscPartitionerSetType++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerSetType.html#PetscPartitionerSetType
man:+PetscPartitionerGetType++PetscPartitionerGetType++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerGetType.html#PetscPartitionerGetType
man:+PetscPartitionerViewFromOptions++PetscPartitionerViewFromOptions++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerViewFromOptions.html#PetscPartitionerViewFromOptions
man:+PetscPartitionerView++PetscPartitionerView++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerView.html#PetscPartitionerView
man:+PetscPartitionerSetFromOptions++PetscPartitionerSetFromOptions++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerSetFromOptions.html#PetscPartitionerSetFromOptions
man:+PetscPartitionerSetUp++PetscPartitionerSetUp++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerSetUp.html#PetscPartitionerSetUp
man:+PetscPartitionerReset++PetscPartitionerReset++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerReset.html#PetscPartitionerReset
man:+PetscPartitionerDestroy++PetscPartitionerDestroy++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerDestroy.html#PetscPartitionerDestroy
man:+PetscPartitionerPartition++PetscPartitionerPartition++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerPartition.html#PetscPartitionerPartition
man:+PetscPartitionerCreate++PetscPartitionerCreate++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerCreate.html#PetscPartitionerCreate
man:+PETSCPARTITIONERPTSCOTCH++PETSCPARTITIONERPTSCOTCH++++man+https://petsc.org/release/manualpages/MatGraphOperations/PETSCPARTITIONERPTSCOTCH.html#PETSCPARTITIONERPTSCOTCH
man:+PETSCPARTITIONERGATHER++PETSCPARTITIONERGATHER++++man+https://petsc.org/release/manualpages/MatGraphOperations/PETSCPARTITIONERGATHER.html#PETSCPARTITIONERGATHER
man:+PETSCPARTITIONERSHELL++PETSCPARTITIONERSHELL++++man+https://petsc.org/release/manualpages/MatGraphOperations/PETSCPARTITIONERSHELL.html#PETSCPARTITIONERSHELL
man:+PetscPartitionerShellSetPartition++PetscPartitionerShellSetPartition++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerShellSetPartition.html#PetscPartitionerShellSetPartition
man:+PetscPartitionerShellSetRandom++PetscPartitionerShellSetRandom++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerShellSetRandom.html#PetscPartitionerShellSetRandom
man:+PetscPartitionerShellGetRandom++PetscPartitionerShellGetRandom++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerShellGetRandom.html#PetscPartitionerShellGetRandom
man:+PETSCPARTITIONERCHACO++PETSCPARTITIONERCHACO++++man+https://petsc.org/release/manualpages/MatGraphOperations/PETSCPARTITIONERCHACO.html#PETSCPARTITIONERCHACO
man:+PETSCPARTITIONERPARMETIS++PETSCPARTITIONERPARMETIS++++man+https://petsc.org/release/manualpages/MatGraphOperations/PETSCPARTITIONERPARMETIS.html#PETSCPARTITIONERPARMETIS
man:+PETSCPARTITIONERSIMPLE++PETSCPARTITIONERSIMPLE++++man+https://petsc.org/release/manualpages/MatGraphOperations/PETSCPARTITIONERSIMPLE.html#PETSCPARTITIONERSIMPLE
man:+PetscPartitionerMatPartitioningGetMatPartitioning++PetscPartitionerMatPartitioningGetMatPartitioning++++man+https://petsc.org/release/manualpages/MatGraphOperations/PetscPartitionerMatPartitioningGetMatPartitioning.html#PetscPartitionerMatPartitioningGetMatPartitioning
man:+PETSCPARTITIONERMATPARTITIONING++PETSCPARTITIONERMATPARTITIONING++++man+https://petsc.org/release/manualpages/MatGraphOperations/PETSCPARTITIONERMATPARTITIONING.html#PETSCPARTITIONERMATPARTITIONING
man:+DMLabelCreate++DMLabelCreate++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelCreate.html#DMLabelCreate
man:+DMLabelSetUp++DMLabelSetUp++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelSetUp.html#DMLabelSetUp
man:+DMLabelAddStratum++DMLabelAddStratum++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelAddStratum.html#DMLabelAddStratum
man:+DMLabelAddStrata++DMLabelAddStrata++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelAddStrata.html#DMLabelAddStrata
man:+DMLabelAddStrataIS++DMLabelAddStrataIS++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelAddStrataIS.html#DMLabelAddStrataIS
man:+DMLabelView++DMLabelView++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelView.html#DMLabelView
man:+DMLabelReset++DMLabelReset++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelReset.html#DMLabelReset
man:+DMLabelDestroy++DMLabelDestroy++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelDestroy.html#DMLabelDestroy
man:+DMLabelDuplicate++DMLabelDuplicate++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelDuplicate.html#DMLabelDuplicate
man:+DMLabelCompare++DMLabelCompare++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelCompare.html#DMLabelCompare
man:+DMLabelComputeIndex++DMLabelComputeIndex++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelComputeIndex.html#DMLabelComputeIndex
man:+DMLabelCreateIndex++DMLabelCreateIndex++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelCreateIndex.html#DMLabelCreateIndex
man:+DMLabelDestroyIndex++DMLabelDestroyIndex++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelDestroyIndex.html#DMLabelDestroyIndex
man:+DMLabelGetBounds++DMLabelGetBounds++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelGetBounds.html#DMLabelGetBounds
man:+DMLabelHasValue++DMLabelHasValue++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelHasValue.html#DMLabelHasValue
man:+DMLabelHasPoint++DMLabelHasPoint++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelHasPoint.html#DMLabelHasPoint
man:+DMLabelStratumHasPoint++DMLabelStratumHasPoint++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelStratumHasPoint.html#DMLabelStratumHasPoint
man:+DMLabelGetDefaultValue++DMLabelGetDefaultValue++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelGetDefaultValue.html#DMLabelGetDefaultValue
man:+DMLabelSetDefaultValue++DMLabelSetDefaultValue++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelSetDefaultValue.html#DMLabelSetDefaultValue
man:+DMLabelGetValue++DMLabelGetValue++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelGetValue.html#DMLabelGetValue
man:+DMLabelSetValue++DMLabelSetValue++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelSetValue.html#DMLabelSetValue
man:+DMLabelClearValue++DMLabelClearValue++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelClearValue.html#DMLabelClearValue
man:+DMLabelInsertIS++DMLabelInsertIS++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelInsertIS.html#DMLabelInsertIS
man:+DMLabelGetNumValues++DMLabelGetNumValues++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelGetNumValues.html#DMLabelGetNumValues
man:+DMLabelGetValueIS++DMLabelGetValueIS++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelGetValueIS.html#DMLabelGetValueIS
man:+DMLabelGetValueBounds++DMLabelGetValueBounds++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelGetValueBounds.html#DMLabelGetValueBounds
man:+DMLabelGetNonEmptyStratumValuesIS++DMLabelGetNonEmptyStratumValuesIS++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelGetNonEmptyStratumValuesIS.html#DMLabelGetNonEmptyStratumValuesIS
man:+DMLabelGetValueIndex++DMLabelGetValueIndex++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelGetValueIndex.html#DMLabelGetValueIndex
man:+DMLabelHasStratum++DMLabelHasStratum++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelHasStratum.html#DMLabelHasStratum
man:+DMLabelGetStratumSize++DMLabelGetStratumSize++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelGetStratumSize.html#DMLabelGetStratumSize
man:+DMLabelGetStratumBounds++DMLabelGetStratumBounds++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelGetStratumBounds.html#DMLabelGetStratumBounds
man:+DMLabelGetStratumIS++DMLabelGetStratumIS++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelGetStratumIS.html#DMLabelGetStratumIS
man:+DMLabelSetStratumIS++DMLabelSetStratumIS++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelSetStratumIS.html#DMLabelSetStratumIS
man:+DMLabelClearStratum++DMLabelClearStratum++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelClearStratum.html#DMLabelClearStratum
man:+DMLabelSetStratumBounds++DMLabelSetStratumBounds++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelSetStratumBounds.html#DMLabelSetStratumBounds
man:+DMLabelGetStratumPointIndex++DMLabelGetStratumPointIndex++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelGetStratumPointIndex.html#DMLabelGetStratumPointIndex
man:+DMLabelFilter++DMLabelFilter++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelFilter.html#DMLabelFilter
man:+DMLabelPermute++DMLabelPermute++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelPermute.html#DMLabelPermute
man:+DMLabelPermuteValues++DMLabelPermuteValues++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelPermuteValues.html#DMLabelPermuteValues
man:+DMLabelRewriteValues++DMLabelRewriteValues++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelRewriteValues.html#DMLabelRewriteValues
man:+DMLabelDistribute++DMLabelDistribute++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelDistribute.html#DMLabelDistribute
man:+DMLabelGather++DMLabelGather++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelGather.html#DMLabelGather
man:+DMLabelPropagateBegin++DMLabelPropagateBegin++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelPropagateBegin.html#DMLabelPropagateBegin
man:+DMLabelPropagateEnd++DMLabelPropagateEnd++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelPropagateEnd.html#DMLabelPropagateEnd
man:+DMLabelPropagatePush++DMLabelPropagatePush++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelPropagatePush.html#DMLabelPropagatePush
man:+DMLabelConvertToSection++DMLabelConvertToSection++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelConvertToSection.html#DMLabelConvertToSection
man:+DMLabelRegister++DMLabelRegister++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelRegister.html#DMLabelRegister
man:+DMLabelRegisterAll++DMLabelRegisterAll++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelRegisterAll.html#DMLabelRegisterAll
man:+DMLabelRegisterDestroy++DMLabelRegisterDestroy++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelRegisterDestroy.html#DMLabelRegisterDestroy
man:+DMLabelSetType++DMLabelSetType++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelSetType.html#DMLabelSetType
man:+DMLabelGetType++DMLabelGetType++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelGetType.html#DMLabelGetType
man:+PetscSectionCreateGlobalSectionLabel++PetscSectionCreateGlobalSectionLabel++++man+https://petsc.org/release/manualpages/DMLabel/PetscSectionCreateGlobalSectionLabel.html#PetscSectionCreateGlobalSectionLabel
man:+PetscSectionSymLabelSetLabel++PetscSectionSymLabelSetLabel++++man+https://petsc.org/release/manualpages/DMLabel/PetscSectionSymLabelSetLabel.html#PetscSectionSymLabelSetLabel
man:+PetscSectionSymLabelGetStratum++PetscSectionSymLabelGetStratum++++man+https://petsc.org/release/manualpages/DMLabel/PetscSectionSymLabelGetStratum.html#PetscSectionSymLabelGetStratum
man:+PetscSectionSymLabelSetStratum++PetscSectionSymLabelSetStratum++++man+https://petsc.org/release/manualpages/DMLabel/PetscSectionSymLabelSetStratum.html#PetscSectionSymLabelSetStratum
man:+PetscSectionSymCreateLabel++PetscSectionSymCreateLabel++++man+https://petsc.org/release/manualpages/DMLabel/PetscSectionSymCreateLabel.html#PetscSectionSymCreateLabel
man:+DMLABELEPHEMERAL++DMLABELEPHEMERAL++++man+https://petsc.org/release/manualpages/DMLabel/DMLABELEPHEMERAL.html#DMLABELEPHEMERAL
man:+DMLabelEphemeralGetLabel++DMLabelEphemeralGetLabel++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelEphemeralGetLabel.html#DMLabelEphemeralGetLabel
man:+DMLabelEphemeralSetLabel++DMLabelEphemeralSetLabel++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelEphemeralSetLabel.html#DMLabelEphemeralSetLabel
man:+DMLabelEphemeralGetTransform++DMLabelEphemeralGetTransform++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelEphemeralGetTransform.html#DMLabelEphemeralGetTransform
man:+DMLabelEphemeralSetTransform++DMLabelEphemeralSetTransform++++man+https://petsc.org/release/manualpages/DMLabel/DMLabelEphemeralSetTransform.html#DMLabelEphemeralSetTransform
man:+DMForestRegisterType++DMForestRegisterType++++man+https://petsc.org/release/manualpages/DMForest/DMForestRegisterType.html#DMForestRegisterType
man:+DMIsForest++DMIsForest++++man+https://petsc.org/release/manualpages/DMForest/DMIsForest.html#DMIsForest
man:+DMForestTemplate++DMForestTemplate++++man+https://petsc.org/release/manualpages/DMForest/DMForestTemplate.html#DMForestTemplate
man:+DMForestSetTopology++DMForestSetTopology++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetTopology.html#DMForestSetTopology
man:+DMForestGetTopology++DMForestGetTopology++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetTopology.html#DMForestGetTopology
man:+DMForestSetBaseDM++DMForestSetBaseDM++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetBaseDM.html#DMForestSetBaseDM
man:+DMForestGetBaseDM++DMForestGetBaseDM++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetBaseDM.html#DMForestGetBaseDM
man:+DMForestSetAdaptivityForest++DMForestSetAdaptivityForest++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetAdaptivityForest.html#DMForestSetAdaptivityForest
man:+DMForestGetAdaptivityForest++DMForestGetAdaptivityForest++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetAdaptivityForest.html#DMForestGetAdaptivityForest
man:+DMForestSetAdaptivityPurpose++DMForestSetAdaptivityPurpose++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetAdaptivityPurpose.html#DMForestSetAdaptivityPurpose
man:+DMForestGetAdaptivityPurpose++DMForestGetAdaptivityPurpose++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetAdaptivityPurpose.html#DMForestGetAdaptivityPurpose
man:+DMForestSetAdjacencyDimension++DMForestSetAdjacencyDimension++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetAdjacencyDimension.html#DMForestSetAdjacencyDimension
man:+DMForestSetAdjacencyCodimension++DMForestSetAdjacencyCodimension++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetAdjacencyCodimension.html#DMForestSetAdjacencyCodimension
man:+DMForestGetAdjacencyDimension++DMForestGetAdjacencyDimension++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetAdjacencyDimension.html#DMForestGetAdjacencyDimension
man:+DMForestGetAdjacencyCodimension++DMForestGetAdjacencyCodimension++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetAdjacencyCodimension.html#DMForestGetAdjacencyCodimension
man:+DMForestSetPartitionOverlap++DMForestSetPartitionOverlap++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetPartitionOverlap.html#DMForestSetPartitionOverlap
man:+DMForestGetPartitionOverlap++DMForestGetPartitionOverlap++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetPartitionOverlap.html#DMForestGetPartitionOverlap
man:+DMForestSetMinimumRefinement++DMForestSetMinimumRefinement++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetMinimumRefinement.html#DMForestSetMinimumRefinement
man:+DMForestGetMinimumRefinement++DMForestGetMinimumRefinement++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetMinimumRefinement.html#DMForestGetMinimumRefinement
man:+DMForestSetInitialRefinement++DMForestSetInitialRefinement++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetInitialRefinement.html#DMForestSetInitialRefinement
man:+DMForestGetInitialRefinement++DMForestGetInitialRefinement++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetInitialRefinement.html#DMForestGetInitialRefinement
man:+DMForestSetMaximumRefinement++DMForestSetMaximumRefinement++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetMaximumRefinement.html#DMForestSetMaximumRefinement
man:+DMForestGetMaximumRefinement++DMForestGetMaximumRefinement++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetMaximumRefinement.html#DMForestGetMaximumRefinement
man:+DMForestSetAdaptivityStrategy++DMForestSetAdaptivityStrategy++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetAdaptivityStrategy.html#DMForestSetAdaptivityStrategy
man:+DMForestGetAdaptivityStrategy++DMForestGetAdaptivityStrategy++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetAdaptivityStrategy.html#DMForestGetAdaptivityStrategy
man:+DMForestGetAdaptivitySuccess++DMForestGetAdaptivitySuccess++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetAdaptivitySuccess.html#DMForestGetAdaptivitySuccess
man:+DMForestSetComputeAdaptivitySF++DMForestSetComputeAdaptivitySF++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetComputeAdaptivitySF.html#DMForestSetComputeAdaptivitySF
man:+DMForestGetComputeAdaptivitySF++DMForestGetComputeAdaptivitySF++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetComputeAdaptivitySF.html#DMForestGetComputeAdaptivitySF
man:+DMForestGetAdaptivitySF++DMForestGetAdaptivitySF++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetAdaptivitySF.html#DMForestGetAdaptivitySF
man:+DMForestSetGradeFactor++DMForestSetGradeFactor++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetGradeFactor.html#DMForestSetGradeFactor
man:+DMForestGetGradeFactor++DMForestGetGradeFactor++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetGradeFactor.html#DMForestGetGradeFactor
man:+DMForestSetCellWeightFactor++DMForestSetCellWeightFactor++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetCellWeightFactor.html#DMForestSetCellWeightFactor
man:+DMForestGetCellWeightFactor++DMForestGetCellWeightFactor++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetCellWeightFactor.html#DMForestGetCellWeightFactor
man:+DMForestGetCellChart++DMForestGetCellChart++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetCellChart.html#DMForestGetCellChart
man:+DMForestGetCellSF++DMForestGetCellSF++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetCellSF.html#DMForestGetCellSF
man:+DMForestSetAdaptivityLabel++DMForestSetAdaptivityLabel++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetAdaptivityLabel.html#DMForestSetAdaptivityLabel
man:+DMForestGetAdaptivityLabel++DMForestGetAdaptivityLabel++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetAdaptivityLabel.html#DMForestGetAdaptivityLabel
man:+DMForestSetCellWeights++DMForestSetCellWeights++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetCellWeights.html#DMForestSetCellWeights
man:+DMForestGetCellWeights++DMForestGetCellWeights++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetCellWeights.html#DMForestGetCellWeights
man:+DMForestSetWeightCapacity++DMForestSetWeightCapacity++++man+https://petsc.org/release/manualpages/DMForest/DMForestSetWeightCapacity.html#DMForestSetWeightCapacity
man:+DMForestGetWeightCapacity++DMForestGetWeightCapacity++++man+https://petsc.org/release/manualpages/DMForest/DMForestGetWeightCapacity.html#DMForestGetWeightCapacity
man:+DMFOREST++DMFOREST++++man+https://petsc.org/release/manualpages/DMForest/DMFOREST.html#DMFOREST
man:+DMSwarmCellDMDestroy++DMSwarmCellDMDestroy++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCellDMDestroy.html#DMSwarmCellDMDestroy
man:+DMSwarmCellDMView++DMSwarmCellDMView++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCellDMView.html#DMSwarmCellDMView
man:+DMSwarmCellDMGetDM++DMSwarmCellDMGetDM++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCellDMGetDM.html#DMSwarmCellDMGetDM
man:+DMSwarmCellDMGetFields++DMSwarmCellDMGetFields++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCellDMGetFields.html#DMSwarmCellDMGetFields
man:+DMSwarmCellDMGetCoordinateFields++DMSwarmCellDMGetCoordinateFields++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCellDMGetCoordinateFields.html#DMSwarmCellDMGetCoordinateFields
man:+DMSwarmCellDMGetCellID++DMSwarmCellDMGetCellID++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCellDMGetCellID.html#DMSwarmCellDMGetCellID
man:+DMSwarmCellDMGetSort++DMSwarmCellDMGetSort++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCellDMGetSort.html#DMSwarmCellDMGetSort
man:+DMSwarmCellDMSetSort++DMSwarmCellDMSetSort++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCellDMSetSort.html#DMSwarmCellDMSetSort
man:+DMSwarmCellDMGetBlockSize++DMSwarmCellDMGetBlockSize++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCellDMGetBlockSize.html#DMSwarmCellDMGetBlockSize
man:+DMSwarmCellDMCreate++DMSwarmCellDMCreate++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCellDMCreate.html#DMSwarmCellDMCreate
man:+DMSwarmSetPointsUniformCoordinates++DMSwarmSetPointsUniformCoordinates++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSetPointsUniformCoordinates.html#DMSwarmSetPointsUniformCoordinates
man:+DMSwarmSetPointCoordinates++DMSwarmSetPointCoordinates++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSetPointCoordinates.html#DMSwarmSetPointCoordinates
man:+DMSwarmInsertPointsUsingCellDM++DMSwarmInsertPointsUsingCellDM++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmInsertPointsUsingCellDM.html#DMSwarmInsertPointsUsingCellDM
man:+DMSwarmSetPointCoordinatesCellwise++DMSwarmSetPointCoordinatesCellwise++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSetPointCoordinatesCellwise.html#DMSwarmSetPointCoordinatesCellwise
man:+DMSwarmCreatePointPerCellCount++DMSwarmCreatePointPerCellCount++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCreatePointPerCellCount.html#DMSwarmCreatePointPerCellCount
man:+DMSwarmGetNumSpecies++DMSwarmGetNumSpecies++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmGetNumSpecies.html#DMSwarmGetNumSpecies
man:+DMSwarmSetNumSpecies++DMSwarmSetNumSpecies++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSetNumSpecies.html#DMSwarmSetNumSpecies
man:+DMSwarmGetCoordinateFunction++DMSwarmGetCoordinateFunction++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmGetCoordinateFunction.html#DMSwarmGetCoordinateFunction
man:+DMSwarmSetCoordinateFunction++DMSwarmSetCoordinateFunction++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSetCoordinateFunction.html#DMSwarmSetCoordinateFunction
man:+DMSwarmGetVelocityFunction++DMSwarmGetVelocityFunction++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmGetVelocityFunction.html#DMSwarmGetVelocityFunction
man:+DMSwarmSetVelocityFunction++DMSwarmSetVelocityFunction++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSetVelocityFunction.html#DMSwarmSetVelocityFunction
man:+DMSwarmComputeLocalSize++DMSwarmComputeLocalSize++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmComputeLocalSize.html#DMSwarmComputeLocalSize
man:+DMSwarmComputeLocalSizeFromOptions++DMSwarmComputeLocalSizeFromOptions++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmComputeLocalSizeFromOptions.html#DMSwarmComputeLocalSizeFromOptions
man:+DMSwarmInitializeCoordinates++DMSwarmInitializeCoordinates++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmInitializeCoordinates.html#DMSwarmInitializeCoordinates
man:+DMSwarmInitializeVelocities++DMSwarmInitializeVelocities++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmInitializeVelocities.html#DMSwarmInitializeVelocities
man:+DMSwarmInitializeVelocitiesFromOptions++DMSwarmInitializeVelocitiesFromOptions++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmInitializeVelocitiesFromOptions.html#DMSwarmInitializeVelocitiesFromOptions
man:+DMSwarmSortGetNumberOfPointsPerCell++DMSwarmSortGetNumberOfPointsPerCell++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSortGetNumberOfPointsPerCell.html#DMSwarmSortGetNumberOfPointsPerCell
man:+DMSwarmSortGetPointsPerCell++DMSwarmSortGetPointsPerCell++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSortGetPointsPerCell.html#DMSwarmSortGetPointsPerCell
man:+DMSwarmSortRestorePointsPerCell++DMSwarmSortRestorePointsPerCell++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSortRestorePointsPerCell.html#DMSwarmSortRestorePointsPerCell
man:+DMSwarmSortGetAccess++DMSwarmSortGetAccess++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSortGetAccess.html#DMSwarmSortGetAccess
man:+DMSwarmSortRestoreAccess++DMSwarmSortRestoreAccess++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSortRestoreAccess.html#DMSwarmSortRestoreAccess
man:+DMSwarmSortGetIsValid++DMSwarmSortGetIsValid++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSortGetIsValid.html#DMSwarmSortGetIsValid
man:+DMSwarmSortGetSizes++DMSwarmSortGetSizes++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSortGetSizes.html#DMSwarmSortGetSizes
man:+DMSwarmGetMigrateType++DMSwarmGetMigrateType++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmGetMigrateType.html#DMSwarmGetMigrateType
man:+DMSwarmSetMigrateType++DMSwarmSetMigrateType++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSetMigrateType.html#DMSwarmSetMigrateType
man:+DMSwarmViewFieldsXDMF++DMSwarmViewFieldsXDMF++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmViewFieldsXDMF.html#DMSwarmViewFieldsXDMF
man:+DMSwarmViewXDMF++DMSwarmViewXDMF++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmViewXDMF.html#DMSwarmViewXDMF
man:+DMSwarmVectorGetField++DMSwarmVectorGetField++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmVectorGetField.html#DMSwarmVectorGetField
man:+DMSwarmVectorDefineField++DMSwarmVectorDefineField++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmVectorDefineField.html#DMSwarmVectorDefineField
man:+DMSwarmVectorDefineFields++DMSwarmVectorDefineFields++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmVectorDefineFields.html#DMSwarmVectorDefineFields
man:+DMSwarmCreateMassMatrixSquare++DMSwarmCreateMassMatrixSquare++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCreateMassMatrixSquare.html#DMSwarmCreateMassMatrixSquare
man:+DMSwarmCreateGlobalVectorFromField++DMSwarmCreateGlobalVectorFromField++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCreateGlobalVectorFromField.html#DMSwarmCreateGlobalVectorFromField
man:+DMSwarmDestroyGlobalVectorFromField++DMSwarmDestroyGlobalVectorFromField++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmDestroyGlobalVectorFromField.html#DMSwarmDestroyGlobalVectorFromField
man:+DMSwarmCreateLocalVectorFromField++DMSwarmCreateLocalVectorFromField++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCreateLocalVectorFromField.html#DMSwarmCreateLocalVectorFromField
man:+DMSwarmDestroyLocalVectorFromField++DMSwarmDestroyLocalVectorFromField++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmDestroyLocalVectorFromField.html#DMSwarmDestroyLocalVectorFromField
man:+DMSwarmCreateGlobalVectorFromFields++DMSwarmCreateGlobalVectorFromFields++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCreateGlobalVectorFromFields.html#DMSwarmCreateGlobalVectorFromFields
man:+DMSwarmDestroyGlobalVectorFromFields++DMSwarmDestroyGlobalVectorFromFields++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmDestroyGlobalVectorFromFields.html#DMSwarmDestroyGlobalVectorFromFields
man:+DMSwarmCreateLocalVectorFromFields++DMSwarmCreateLocalVectorFromFields++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCreateLocalVectorFromFields.html#DMSwarmCreateLocalVectorFromFields
man:+DMSwarmDestroyLocalVectorFromFields++DMSwarmDestroyLocalVectorFromFields++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmDestroyLocalVectorFromFields.html#DMSwarmDestroyLocalVectorFromFields
man:+DMSwarmInitializeFieldRegister++DMSwarmInitializeFieldRegister++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmInitializeFieldRegister.html#DMSwarmInitializeFieldRegister
man:+DMSwarmFinalizeFieldRegister++DMSwarmFinalizeFieldRegister++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmFinalizeFieldRegister.html#DMSwarmFinalizeFieldRegister
man:+DMSwarmSetLocalSizes++DMSwarmSetLocalSizes++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSetLocalSizes.html#DMSwarmSetLocalSizes
man:+DMSwarmSetCellDM++DMSwarmSetCellDM++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSetCellDM.html#DMSwarmSetCellDM
man:+DMSwarmGetCellDM++DMSwarmGetCellDM++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmGetCellDM.html#DMSwarmGetCellDM
man:+DMSwarmGetCellDMNames++DMSwarmGetCellDMNames++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmGetCellDMNames.html#DMSwarmGetCellDMNames
man:+DMSwarmSetCellDMActive++DMSwarmSetCellDMActive++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSetCellDMActive.html#DMSwarmSetCellDMActive
man:+DMSwarmGetCellDMActive++DMSwarmGetCellDMActive++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmGetCellDMActive.html#DMSwarmGetCellDMActive
man:+DMSwarmGetCellDMByName++DMSwarmGetCellDMByName++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmGetCellDMByName.html#DMSwarmGetCellDMByName
man:+DMSwarmAddCellDM++DMSwarmAddCellDM++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmAddCellDM.html#DMSwarmAddCellDM
man:+DMSwarmGetLocalSize++DMSwarmGetLocalSize++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmGetLocalSize.html#DMSwarmGetLocalSize
man:+DMSwarmGetSize++DMSwarmGetSize++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmGetSize.html#DMSwarmGetSize
man:+DMSwarmRegisterPetscDatatypeField++DMSwarmRegisterPetscDatatypeField++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmRegisterPetscDatatypeField.html#DMSwarmRegisterPetscDatatypeField
man:+DMSwarmRegisterUserStructField++DMSwarmRegisterUserStructField++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmRegisterUserStructField.html#DMSwarmRegisterUserStructField
man:+DMSwarmRegisterUserDatatypeField++DMSwarmRegisterUserDatatypeField++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmRegisterUserDatatypeField.html#DMSwarmRegisterUserDatatypeField
man:+DMSwarmGetField++DMSwarmGetField++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmGetField.html#DMSwarmGetField
man:+DMSwarmRestoreField++DMSwarmRestoreField++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmRestoreField.html#DMSwarmRestoreField
man:+DMSwarmAddPoint++DMSwarmAddPoint++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmAddPoint.html#DMSwarmAddPoint
man:+DMSwarmAddNPoints++DMSwarmAddNPoints++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmAddNPoints.html#DMSwarmAddNPoints
man:+DMSwarmRemovePoint++DMSwarmRemovePoint++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmRemovePoint.html#DMSwarmRemovePoint
man:+DMSwarmRemovePointAtIndex++DMSwarmRemovePointAtIndex++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmRemovePointAtIndex.html#DMSwarmRemovePointAtIndex
man:+DMSwarmCopyPoint++DMSwarmCopyPoint++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCopyPoint.html#DMSwarmCopyPoint
man:+DMSwarmMigrate++DMSwarmMigrate++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmMigrate.html#DMSwarmMigrate
man:+DMSwarmCollectViewCreate++DMSwarmCollectViewCreate++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCollectViewCreate.html#DMSwarmCollectViewCreate
man:+DMSwarmCollectViewDestroy++DMSwarmCollectViewDestroy++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmCollectViewDestroy.html#DMSwarmCollectViewDestroy
man:+DMSwarmSetPointCoordinatesRandom++DMSwarmSetPointCoordinatesRandom++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSetPointCoordinatesRandom.html#DMSwarmSetPointCoordinatesRandom
man:+DMSwarmGetType++DMSwarmGetType++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmGetType.html#DMSwarmGetType
man:+DMSwarmSetType++DMSwarmSetType++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmSetType.html#DMSwarmSetType
man:+DMSwarmGetCellSwarm++DMSwarmGetCellSwarm++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmGetCellSwarm.html#DMSwarmGetCellSwarm
man:+DMSwarmRestoreCellSwarm++DMSwarmRestoreCellSwarm++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmRestoreCellSwarm.html#DMSwarmRestoreCellSwarm
man:+DMSwarmComputeMoments++DMSwarmComputeMoments++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmComputeMoments.html#DMSwarmComputeMoments
man:+DMSWARM++DMSWARM++++man+https://petsc.org/release/manualpages/DMSwarm/DMSWARM.html#DMSWARM
man:+DMSwarmDuplicate++DMSwarmDuplicate++++man+https://petsc.org/release/manualpages/DMSwarm/DMSwarmDuplicate.html#DMSwarmDuplicate
man:+DMDAGetElementsCorners++DMDAGetElementsCorners++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetElementsCorners.html#DMDAGetElementsCorners
man:+DMDAGetElementsSizes++DMDAGetElementsSizes++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetElementsSizes.html#DMDAGetElementsSizes
man:+DMDASetElementType++DMDASetElementType++++man+https://petsc.org/release/manualpages/DMDA/DMDASetElementType.html#DMDASetElementType
man:+DMDAGetElementType++DMDAGetElementType++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetElementType.html#DMDAGetElementType
man:+DMDAGetElements++DMDAGetElements++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetElements.html#DMDAGetElements
man:+DMDAGetSubdomainCornersIS++DMDAGetSubdomainCornersIS++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetSubdomainCornersIS.html#DMDAGetSubdomainCornersIS
man:+DMDARestoreElements++DMDARestoreElements++++man+https://petsc.org/release/manualpages/DMDA/DMDARestoreElements.html#DMDARestoreElements
man:+DMDARestoreSubdomainCornersIS++DMDARestoreSubdomainCornersIS++++man+https://petsc.org/release/manualpages/DMDA/DMDARestoreSubdomainCornersIS.html#DMDARestoreSubdomainCornersIS
man:+DMDAVecGetArray++DMDAVecGetArray++++man+https://petsc.org/release/manualpages/DMDA/DMDAVecGetArray.html#DMDAVecGetArray
man:+DMDAVecRestoreArray++DMDAVecRestoreArray++++man+https://petsc.org/release/manualpages/DMDA/DMDAVecRestoreArray.html#DMDAVecRestoreArray
man:+DMDAVecGetArrayWrite++DMDAVecGetArrayWrite++++man+https://petsc.org/release/manualpages/DMDA/DMDAVecGetArrayWrite.html#DMDAVecGetArrayWrite
man:+DMDAVecRestoreArrayWrite++DMDAVecRestoreArrayWrite++++man+https://petsc.org/release/manualpages/DMDA/DMDAVecRestoreArrayWrite.html#DMDAVecRestoreArrayWrite
man:+DMDAVecGetArrayDOF++DMDAVecGetArrayDOF++++man+https://petsc.org/release/manualpages/DMDA/DMDAVecGetArrayDOF.html#DMDAVecGetArrayDOF
man:+DMDAVecRestoreArrayDOF++DMDAVecRestoreArrayDOF++++man+https://petsc.org/release/manualpages/DMDA/DMDAVecRestoreArrayDOF.html#DMDAVecRestoreArrayDOF
man:+DMDAVecGetArrayRead++DMDAVecGetArrayRead++++man+https://petsc.org/release/manualpages/DMDA/DMDAVecGetArrayRead.html#DMDAVecGetArrayRead
man:+DMDAVecRestoreArrayRead++DMDAVecRestoreArrayRead++++man+https://petsc.org/release/manualpages/DMDA/DMDAVecRestoreArrayRead.html#DMDAVecRestoreArrayRead
man:+DMDAVecGetArrayDOFRead++DMDAVecGetArrayDOFRead++++man+https://petsc.org/release/manualpages/DMDA/DMDAVecGetArrayDOFRead.html#DMDAVecGetArrayDOFRead
man:+DMDAVecRestoreArrayDOFRead++DMDAVecRestoreArrayDOFRead++++man+https://petsc.org/release/manualpages/DMDA/DMDAVecRestoreArrayDOFRead.html#DMDAVecRestoreArrayDOFRead
man:+DMDAVecGetArrayDOFWrite++DMDAVecGetArrayDOFWrite++++man+https://petsc.org/release/manualpages/DMDA/DMDAVecGetArrayDOFWrite.html#DMDAVecGetArrayDOFWrite
man:+DMDAVecRestoreArrayDOFWrite++DMDAVecRestoreArrayDOFWrite++++man+https://petsc.org/release/manualpages/DMDA/DMDAVecRestoreArrayDOFWrite.html#DMDAVecRestoreArrayDOFWrite
man:+DMDAGlobalToNaturalBegin++DMDAGlobalToNaturalBegin++++man+https://petsc.org/release/manualpages/DMDA/DMDAGlobalToNaturalBegin.html#DMDAGlobalToNaturalBegin
man:+DMDAGlobalToNaturalEnd++DMDAGlobalToNaturalEnd++++man+https://petsc.org/release/manualpages/DMDA/DMDAGlobalToNaturalEnd.html#DMDAGlobalToNaturalEnd
man:+DMDANaturalToGlobalBegin++DMDANaturalToGlobalBegin++++man+https://petsc.org/release/manualpages/DMDA/DMDANaturalToGlobalBegin.html#DMDANaturalToGlobalBegin
man:+DMDANaturalToGlobalEnd++DMDANaturalToGlobalEnd++++man+https://petsc.org/release/manualpages/DMDA/DMDANaturalToGlobalEnd.html#DMDANaturalToGlobalEnd
man:+DMDAGlobalToNaturalAllCreate++DMDAGlobalToNaturalAllCreate++++man+https://petsc.org/release/manualpages/DMDA/DMDAGlobalToNaturalAllCreate.html#DMDAGlobalToNaturalAllCreate
man:+DMDANaturalAllToGlobalCreate++DMDANaturalAllToGlobalCreate++++man+https://petsc.org/release/manualpages/DMDA/DMDANaturalAllToGlobalCreate.html#DMDANaturalAllToGlobalCreate
man:+DMDACreateNaturalVector++DMDACreateNaturalVector++++man+https://petsc.org/release/manualpages/DMDA/DMDACreateNaturalVector.html#DMDACreateNaturalVector
man:+DMDACreate1d++DMDACreate1d++++man+https://petsc.org/release/manualpages/DMDA/DMDACreate1d.html#DMDACreate1d
man:+DMDASetAOType++DMDASetAOType++++man+https://petsc.org/release/manualpages/DMDA/DMDASetAOType.html#DMDASetAOType
man:+DMDAGetAO++DMDAGetAO++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetAO.html#DMDAGetAO
man:+DMDASetUniformCoordinates++DMDASetUniformCoordinates++++man+https://petsc.org/release/manualpages/DMDA/DMDASetUniformCoordinates.html#DMDASetUniformCoordinates
man:+DMDAGetInfo++DMDAGetInfo++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetInfo.html#DMDAGetInfo
man:+DMDAGetLocalInfo++DMDAGetLocalInfo++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetLocalInfo.html#DMDAGetLocalInfo
man:+DMDACreate2d++DMDACreate2d++++man+https://petsc.org/release/manualpages/DMDA/DMDACreate2d.html#DMDACreate2d
man:+DMDAGetScatter++DMDAGetScatter++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetScatter.html#DMDAGetScatter
man:+DMDAGetNumCells++DMDAGetNumCells++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetNumCells.html#DMDAGetNumCells
man:+DMDAGetCellPoint++DMDAGetCellPoint++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetCellPoint.html#DMDAGetCellPoint
man:+DMDAGetHeightStratum++DMDAGetHeightStratum++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetHeightStratum.html#DMDAGetHeightStratum
man:+DMDAGetDepthStratum++DMDAGetDepthStratum++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetDepthStratum.html#DMDAGetDepthStratum
man:+DMDASetVertexCoordinates++DMDASetVertexCoordinates++++man+https://petsc.org/release/manualpages/DMDA/DMDASetVertexCoordinates.html#DMDASetVertexCoordinates
man:+DMDAGetArray++DMDAGetArray++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetArray.html#DMDAGetArray
man:+DMDARestoreArray++DMDARestoreArray++++man+https://petsc.org/release/manualpages/DMDA/DMDARestoreArray.html#DMDARestoreArray
man:+DMDASetSizes++DMDASetSizes++++man+https://petsc.org/release/manualpages/DMDA/DMDASetSizes.html#DMDASetSizes
man:+DMDASetNumProcs++DMDASetNumProcs++++man+https://petsc.org/release/manualpages/DMDA/DMDASetNumProcs.html#DMDASetNumProcs
man:+DMDAGetBoundaryType++DMDAGetBoundaryType++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetBoundaryType.html#DMDAGetBoundaryType
man:+DMDASetBoundaryType++DMDASetBoundaryType++++man+https://petsc.org/release/manualpages/DMDA/DMDASetBoundaryType.html#DMDASetBoundaryType
man:+DMDASetDof++DMDASetDof++++man+https://petsc.org/release/manualpages/DMDA/DMDASetDof.html#DMDASetDof
man:+DMDAGetDof++DMDAGetDof++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetDof.html#DMDAGetDof
man:+DMDAGetOverlap++DMDAGetOverlap++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetOverlap.html#DMDAGetOverlap
man:+DMDASetOverlap++DMDASetOverlap++++man+https://petsc.org/release/manualpages/DMDA/DMDASetOverlap.html#DMDASetOverlap
man:+DMDAGetNumLocalSubDomains++DMDAGetNumLocalSubDomains++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetNumLocalSubDomains.html#DMDAGetNumLocalSubDomains
man:+DMDASetNumLocalSubDomains++DMDASetNumLocalSubDomains++++man+https://petsc.org/release/manualpages/DMDA/DMDASetNumLocalSubDomains.html#DMDASetNumLocalSubDomains
man:+DMDASetOffset++DMDASetOffset++++man+https://petsc.org/release/manualpages/DMDA/DMDASetOffset.html#DMDASetOffset
man:+DMDAGetOffset++DMDAGetOffset++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetOffset.html#DMDAGetOffset
man:+DMDAGetNonOverlappingRegion++DMDAGetNonOverlappingRegion++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetNonOverlappingRegion.html#DMDAGetNonOverlappingRegion
man:+DMDASetNonOverlappingRegion++DMDASetNonOverlappingRegion++++man+https://petsc.org/release/manualpages/DMDA/DMDASetNonOverlappingRegion.html#DMDASetNonOverlappingRegion
man:+DMDASetStencilType++DMDASetStencilType++++man+https://petsc.org/release/manualpages/DMDA/DMDASetStencilType.html#DMDASetStencilType
man:+DMDAGetStencilType++DMDAGetStencilType++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetStencilType.html#DMDAGetStencilType
man:+DMDASetStencilWidth++DMDASetStencilWidth++++man+https://petsc.org/release/manualpages/DMDA/DMDASetStencilWidth.html#DMDASetStencilWidth
man:+DMDAGetStencilWidth++DMDAGetStencilWidth++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetStencilWidth.html#DMDAGetStencilWidth
man:+DMDASetOwnershipRanges++DMDASetOwnershipRanges++++man+https://petsc.org/release/manualpages/DMDA/DMDASetOwnershipRanges.html#DMDASetOwnershipRanges
man:+DMDASetInterpolationType++DMDASetInterpolationType++++man+https://petsc.org/release/manualpages/DMDA/DMDASetInterpolationType.html#DMDASetInterpolationType
man:+DMDAGetInterpolationType++DMDAGetInterpolationType++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetInterpolationType.html#DMDAGetInterpolationType
man:+DMDAGetNeighbors++DMDAGetNeighbors++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetNeighbors.html#DMDAGetNeighbors
man:+DMDAGetOwnershipRanges++DMDAGetOwnershipRanges++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetOwnershipRanges.html#DMDAGetOwnershipRanges
man:+DMDASetRefinementFactor++DMDASetRefinementFactor++++man+https://petsc.org/release/manualpages/DMDA/DMDASetRefinementFactor.html#DMDASetRefinementFactor
man:+DMDAGetRefinementFactor++DMDAGetRefinementFactor++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetRefinementFactor.html#DMDAGetRefinementFactor
man:+DMDASetGetMatrix++DMDASetGetMatrix++++man+https://petsc.org/release/manualpages/DMDA/DMDASetGetMatrix.html#DMDASetGetMatrix
man:+DMDAMapMatStencilToGlobal++DMDAMapMatStencilToGlobal++++man+https://petsc.org/release/manualpages/DMDA/DMDAMapMatStencilToGlobal.html#DMDAMapMatStencilToGlobal
man:+DMDASetGLLCoordinates++DMDASetGLLCoordinates++++man+https://petsc.org/release/manualpages/DMDA/DMDASetGLLCoordinates.html#DMDASetGLLCoordinates
man:+DMDACreatePatchIS++DMDACreatePatchIS++++man+https://petsc.org/release/manualpages/DMDA/DMDACreatePatchIS.html#DMDACreatePatchIS
man:+DMDACreatePF++DMDACreatePF++++man+https://petsc.org/release/manualpages/DMDA/DMDACreatePF.html#DMDACreatePF
man:+DMDAVTKWriteAll++DMDAVTKWriteAll++++man+https://petsc.org/release/manualpages/DMDA/DMDAVTKWriteAll.html#DMDAVTKWriteAll
man:+DMDACreate3d++DMDACreate3d++++man+https://petsc.org/release/manualpages/DMDA/DMDACreate3d.html#DMDACreate3d
man:+DMDASetBlockFills++DMDASetBlockFills++++man+https://petsc.org/release/manualpages/DMDA/DMDASetBlockFills.html#DMDASetBlockFills
man:+DMDASetBlockFillsSparse++DMDASetBlockFillsSparse++++man+https://petsc.org/release/manualpages/DMDA/DMDASetBlockFillsSparse.html#DMDASetBlockFillsSparse
man:+DMDASetFieldName++DMDASetFieldName++++man+https://petsc.org/release/manualpages/DMDA/DMDASetFieldName.html#DMDASetFieldName
man:+DMDAGetFieldNames++DMDAGetFieldNames++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetFieldNames.html#DMDAGetFieldNames
man:+DMDASetFieldNames++DMDASetFieldNames++++man+https://petsc.org/release/manualpages/DMDA/DMDASetFieldNames.html#DMDASetFieldNames
man:+DMDAGetFieldName++DMDAGetFieldName++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetFieldName.html#DMDAGetFieldName
man:+DMDASetCoordinateName++DMDASetCoordinateName++++man+https://petsc.org/release/manualpages/DMDA/DMDASetCoordinateName.html#DMDASetCoordinateName
man:+DMDAGetCoordinateName++DMDAGetCoordinateName++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetCoordinateName.html#DMDAGetCoordinateName
man:+DMDAGetCorners++DMDAGetCorners++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetCorners.html#DMDAGetCorners
man:+DMDAGetReducedDMDA++DMDAGetReducedDMDA++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetReducedDMDA.html#DMDAGetReducedDMDA
man:+DMDACreateCompatibleDMDA++DMDACreateCompatibleDMDA++++man+https://petsc.org/release/manualpages/DMDA/DMDACreateCompatibleDMDA.html#DMDACreateCompatibleDMDA
man:+DMDAGetCoordinateArray++DMDAGetCoordinateArray++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetCoordinateArray.html#DMDAGetCoordinateArray
man:+DMDARestoreCoordinateArray++DMDARestoreCoordinateArray++++man+https://petsc.org/release/manualpages/DMDA/DMDARestoreCoordinateArray.html#DMDARestoreCoordinateArray
man:+MATHYPRESTRUCT++MATHYPRESTRUCT++++man+https://petsc.org/release/manualpages/DMDA/MATHYPRESTRUCT.html#MATHYPRESTRUCT
man:+MATHYPRESSTRUCT++MATHYPRESSTRUCT++++man+https://petsc.org/release/manualpages/DMDA/MATHYPRESSTRUCT.html#MATHYPRESSTRUCT
man:+DMDA++DMDA++++man+https://petsc.org/release/manualpages/DMDA/DMDA.html#DMDA
man:+DMDACreate++DMDACreate++++man+https://petsc.org/release/manualpages/DMDA/DMDACreate.html#DMDACreate
man:+DMDAConvertToCell++DMDAConvertToCell++++man+https://petsc.org/release/manualpages/DMDA/DMDAConvertToCell.html#DMDAConvertToCell
man:+DMDAGetLogicalCoordinate++DMDAGetLogicalCoordinate++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetLogicalCoordinate.html#DMDAGetLogicalCoordinate
man:+DMDAGetRay++DMDAGetRay++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetRay.html#DMDAGetRay
man:+DMDAGetProcessorSubset++DMDAGetProcessorSubset++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetProcessorSubset.html#DMDAGetProcessorSubset
man:+DMDAGetProcessorSubsets++DMDAGetProcessorSubsets++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetProcessorSubsets.html#DMDAGetProcessorSubsets
man:+DMDAGetGhostCorners++DMDAGetGhostCorners++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetGhostCorners.html#DMDAGetGhostCorners
man:+DMDASetPreallocationCenterDimension++DMDASetPreallocationCenterDimension++++man+https://petsc.org/release/manualpages/DMDA/DMDASetPreallocationCenterDimension.html#DMDASetPreallocationCenterDimension
man:+DMDAGetPreallocationCenterDimension++DMDAGetPreallocationCenterDimension++++man+https://petsc.org/release/manualpages/DMDA/DMDAGetPreallocationCenterDimension.html#DMDAGetPreallocationCenterDimension
man:+DMCreateAggregates++DMCreateAggregates++++man+https://petsc.org/release/manualpages/DMDA/DMCreateAggregates.html#DMCreateAggregates
man:+DMDACreateAggregates++DMDACreateAggregates++++man+https://petsc.org/release/manualpages/DMDA/DMDACreateAggregates.html#DMDACreateAggregates
man:+DMGlobalToLocalBeginDefaultShell++DMGlobalToLocalBeginDefaultShell++++man+https://petsc.org/release/manualpages/DM/DMGlobalToLocalBeginDefaultShell.html#DMGlobalToLocalBeginDefaultShell
man:+DMGlobalToLocalEndDefaultShell++DMGlobalToLocalEndDefaultShell++++man+https://petsc.org/release/manualpages/DM/DMGlobalToLocalEndDefaultShell.html#DMGlobalToLocalEndDefaultShell
man:+DMLocalToGlobalBeginDefaultShell++DMLocalToGlobalBeginDefaultShell++++man+https://petsc.org/release/manualpages/DM/DMLocalToGlobalBeginDefaultShell.html#DMLocalToGlobalBeginDefaultShell
man:+DMLocalToGlobalEndDefaultShell++DMLocalToGlobalEndDefaultShell++++man+https://petsc.org/release/manualpages/DM/DMLocalToGlobalEndDefaultShell.html#DMLocalToGlobalEndDefaultShell
man:+DMLocalToLocalBeginDefaultShell++DMLocalToLocalBeginDefaultShell++++man+https://petsc.org/release/manualpages/DM/DMLocalToLocalBeginDefaultShell.html#DMLocalToLocalBeginDefaultShell
man:+DMLocalToLocalEndDefaultShell++DMLocalToLocalEndDefaultShell++++man+https://petsc.org/release/manualpages/DM/DMLocalToLocalEndDefaultShell.html#DMLocalToLocalEndDefaultShell
man:+DMShellSetDestroyContext++DMShellSetDestroyContext++++man+https://petsc.org/release/manualpages/DM/DMShellSetDestroyContext.html#DMShellSetDestroyContext
man:+DMShellSetContext++DMShellSetContext++++man+https://petsc.org/release/manualpages/DM/DMShellSetContext.html#DMShellSetContext
man:+DMShellGetContext++DMShellGetContext++++man+https://petsc.org/release/manualpages/DM/DMShellGetContext.html#DMShellGetContext
man:+DMShellSetMatrix++DMShellSetMatrix++++man+https://petsc.org/release/manualpages/DM/DMShellSetMatrix.html#DMShellSetMatrix
man:+DMShellSetCreateMatrix++DMShellSetCreateMatrix++++man+https://petsc.org/release/manualpages/DM/DMShellSetCreateMatrix.html#DMShellSetCreateMatrix
man:+DMShellSetGlobalVector++DMShellSetGlobalVector++++man+https://petsc.org/release/manualpages/DM/DMShellSetGlobalVector.html#DMShellSetGlobalVector
man:+DMShellGetGlobalVector++DMShellGetGlobalVector++++man+https://petsc.org/release/manualpages/DM/DMShellGetGlobalVector.html#DMShellGetGlobalVector
man:+DMShellSetCreateGlobalVector++DMShellSetCreateGlobalVector++++man+https://petsc.org/release/manualpages/DM/DMShellSetCreateGlobalVector.html#DMShellSetCreateGlobalVector
man:+DMShellSetLocalVector++DMShellSetLocalVector++++man+https://petsc.org/release/manualpages/DM/DMShellSetLocalVector.html#DMShellSetLocalVector
man:+DMShellSetCreateLocalVector++DMShellSetCreateLocalVector++++man+https://petsc.org/release/manualpages/DM/DMShellSetCreateLocalVector.html#DMShellSetCreateLocalVector
man:+DMShellSetGlobalToLocal++DMShellSetGlobalToLocal++++man+https://petsc.org/release/manualpages/DM/DMShellSetGlobalToLocal.html#DMShellSetGlobalToLocal
man:+DMShellSetLocalToGlobal++DMShellSetLocalToGlobal++++man+https://petsc.org/release/manualpages/DM/DMShellSetLocalToGlobal.html#DMShellSetLocalToGlobal
man:+DMShellSetLocalToLocal++DMShellSetLocalToLocal++++man+https://petsc.org/release/manualpages/DM/DMShellSetLocalToLocal.html#DMShellSetLocalToLocal
man:+DMShellSetGlobalToLocalVecScatter++DMShellSetGlobalToLocalVecScatter++++man+https://petsc.org/release/manualpages/DM/DMShellSetGlobalToLocalVecScatter.html#DMShellSetGlobalToLocalVecScatter
man:+DMShellSetLocalToGlobalVecScatter++DMShellSetLocalToGlobalVecScatter++++man+https://petsc.org/release/manualpages/DM/DMShellSetLocalToGlobalVecScatter.html#DMShellSetLocalToGlobalVecScatter
man:+DMShellSetLocalToLocalVecScatter++DMShellSetLocalToLocalVecScatter++++man+https://petsc.org/release/manualpages/DM/DMShellSetLocalToLocalVecScatter.html#DMShellSetLocalToLocalVecScatter
man:+DMShellSetCoarsen++DMShellSetCoarsen++++man+https://petsc.org/release/manualpages/DM/DMShellSetCoarsen.html#DMShellSetCoarsen
man:+DMShellGetCoarsen++DMShellGetCoarsen++++man+https://petsc.org/release/manualpages/DM/DMShellGetCoarsen.html#DMShellGetCoarsen
man:+DMShellSetRefine++DMShellSetRefine++++man+https://petsc.org/release/manualpages/DM/DMShellSetRefine.html#DMShellSetRefine
man:+DMShellGetRefine++DMShellGetRefine++++man+https://petsc.org/release/manualpages/DM/DMShellGetRefine.html#DMShellGetRefine
man:+DMShellSetCreateInterpolation++DMShellSetCreateInterpolation++++man+https://petsc.org/release/manualpages/DM/DMShellSetCreateInterpolation.html#DMShellSetCreateInterpolation
man:+DMShellGetCreateInterpolation++DMShellGetCreateInterpolation++++man+https://petsc.org/release/manualpages/DM/DMShellGetCreateInterpolation.html#DMShellGetCreateInterpolation
man:+DMShellSetCreateRestriction++DMShellSetCreateRestriction++++man+https://petsc.org/release/manualpages/DM/DMShellSetCreateRestriction.html#DMShellSetCreateRestriction
man:+DMShellGetCreateRestriction++DMShellGetCreateRestriction++++man+https://petsc.org/release/manualpages/DM/DMShellGetCreateRestriction.html#DMShellGetCreateRestriction
man:+DMShellSetCreateInjection++DMShellSetCreateInjection++++man+https://petsc.org/release/manualpages/DM/DMShellSetCreateInjection.html#DMShellSetCreateInjection
man:+DMShellGetCreateInjection++DMShellGetCreateInjection++++man+https://petsc.org/release/manualpages/DM/DMShellGetCreateInjection.html#DMShellGetCreateInjection
man:+DMShellSetCreateFieldDecomposition++DMShellSetCreateFieldDecomposition++++man+https://petsc.org/release/manualpages/DM/DMShellSetCreateFieldDecomposition.html#DMShellSetCreateFieldDecomposition
man:+DMShellSetCreateDomainDecomposition++DMShellSetCreateDomainDecomposition++++man+https://petsc.org/release/manualpages/DM/DMShellSetCreateDomainDecomposition.html#DMShellSetCreateDomainDecomposition
man:+DMShellSetCreateDomainDecompositionScatters++DMShellSetCreateDomainDecompositionScatters++++man+https://petsc.org/release/manualpages/DM/DMShellSetCreateDomainDecompositionScatters.html#DMShellSetCreateDomainDecompositionScatters
man:+DMShellSetCreateSubDM++DMShellSetCreateSubDM++++man+https://petsc.org/release/manualpages/DM/DMShellSetCreateSubDM.html#DMShellSetCreateSubDM
man:+DMShellGetCreateSubDM++DMShellGetCreateSubDM++++man+https://petsc.org/release/manualpages/DM/DMShellGetCreateSubDM.html#DMShellGetCreateSubDM
man:+DMShellCreate++DMShellCreate++++man+https://petsc.org/release/manualpages/DM/DMShellCreate.html#DMShellCreate
man:+DMNetworkGetPlex++DMNetworkGetPlex++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetPlex.html#DMNetworkGetPlex
man:+DMNetworkGetNumSubNetworks++DMNetworkGetNumSubNetworks++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetNumSubNetworks.html#DMNetworkGetNumSubNetworks
man:+DMNetworkSetNumSubNetworks++DMNetworkSetNumSubNetworks++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkSetNumSubNetworks.html#DMNetworkSetNumSubNetworks
man:+DMNetworkAddSubnetwork++DMNetworkAddSubnetwork++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkAddSubnetwork.html#DMNetworkAddSubnetwork
man:+DMNetworkSharedVertexGetInfo++DMNetworkSharedVertexGetInfo++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkSharedVertexGetInfo.html#DMNetworkSharedVertexGetInfo
man:+DMNetworkLayoutSetUp++DMNetworkLayoutSetUp++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkLayoutSetUp.html#DMNetworkLayoutSetUp
man:+DMNetworkGetSubnetwork++DMNetworkGetSubnetwork++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetSubnetwork.html#DMNetworkGetSubnetwork
man:+DMNetworkAddSharedVertices++DMNetworkAddSharedVertices++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkAddSharedVertices.html#DMNetworkAddSharedVertices
man:+DMNetworkGetSharedVertices++DMNetworkGetSharedVertices++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetSharedVertices.html#DMNetworkGetSharedVertices
man:+DMNetworkRegisterComponent++DMNetworkRegisterComponent++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkRegisterComponent.html#DMNetworkRegisterComponent
man:+DMNetworkGetNumVertices++DMNetworkGetNumVertices++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetNumVertices.html#DMNetworkGetNumVertices
man:+DMNetworkGetNumEdges++DMNetworkGetNumEdges++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetNumEdges.html#DMNetworkGetNumEdges
man:+DMNetworkGetVertexRange++DMNetworkGetVertexRange++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetVertexRange.html#DMNetworkGetVertexRange
man:+DMNetworkGetEdgeRange++DMNetworkGetEdgeRange++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetEdgeRange.html#DMNetworkGetEdgeRange
man:+DMNetworkGetGlobalEdgeIndex++DMNetworkGetGlobalEdgeIndex++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetGlobalEdgeIndex.html#DMNetworkGetGlobalEdgeIndex
man:+DMNetworkGetGlobalVertexIndex++DMNetworkGetGlobalVertexIndex++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetGlobalVertexIndex.html#DMNetworkGetGlobalVertexIndex
man:+DMNetworkGetNumComponents++DMNetworkGetNumComponents++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetNumComponents.html#DMNetworkGetNumComponents
man:+DMNetworkGetLocalVecOffset++DMNetworkGetLocalVecOffset++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetLocalVecOffset.html#DMNetworkGetLocalVecOffset
man:+DMNetworkGetGlobalVecOffset++DMNetworkGetGlobalVecOffset++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetGlobalVecOffset.html#DMNetworkGetGlobalVecOffset
man:+DMNetworkGetEdgeOffset++DMNetworkGetEdgeOffset++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetEdgeOffset.html#DMNetworkGetEdgeOffset
man:+DMNetworkGetVertexOffset++DMNetworkGetVertexOffset++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetVertexOffset.html#DMNetworkGetVertexOffset
man:+DMNetworkAddComponent++DMNetworkAddComponent++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkAddComponent.html#DMNetworkAddComponent
man:+DMNetworkGetComponent++DMNetworkGetComponent++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetComponent.html#DMNetworkGetComponent
man:+DMNetworkAssembleGraphStructures++DMNetworkAssembleGraphStructures++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkAssembleGraphStructures.html#DMNetworkAssembleGraphStructures
man:+DMNetworkDistribute++DMNetworkDistribute++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkDistribute.html#DMNetworkDistribute
man:+PetscSFGetSubSF++PetscSFGetSubSF++++man+https://petsc.org/release/manualpages/DMNetwork/PetscSFGetSubSF.html#PetscSFGetSubSF
man:+DMNetworkGetSupportingEdges++DMNetworkGetSupportingEdges++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetSupportingEdges.html#DMNetworkGetSupportingEdges
man:+DMNetworkGetConnectedVertices++DMNetworkGetConnectedVertices++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetConnectedVertices.html#DMNetworkGetConnectedVertices
man:+DMNetworkIsSharedVertex++DMNetworkIsSharedVertex++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkIsSharedVertex.html#DMNetworkIsSharedVertex
man:+DMNetworkIsGhostVertex++DMNetworkIsGhostVertex++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkIsGhostVertex.html#DMNetworkIsGhostVertex
man:+DMNetworkHasJacobian++DMNetworkHasJacobian++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkHasJacobian.html#DMNetworkHasJacobian
man:+DMNetworkEdgeSetMatrix++DMNetworkEdgeSetMatrix++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkEdgeSetMatrix.html#DMNetworkEdgeSetMatrix
man:+DMNetworkVertexSetMatrix++DMNetworkVertexSetMatrix++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkVertexSetMatrix.html#DMNetworkVertexSetMatrix
man:+DMNetworkGetVertexLocalToGlobalOrdering++DMNetworkGetVertexLocalToGlobalOrdering++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkGetVertexLocalToGlobalOrdering.html#DMNetworkGetVertexLocalToGlobalOrdering
man:+DMNetworkSetVertexLocalToGlobalOrdering++DMNetworkSetVertexLocalToGlobalOrdering++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkSetVertexLocalToGlobalOrdering.html#DMNetworkSetVertexLocalToGlobalOrdering
man:+DMNetworkCreateIS++DMNetworkCreateIS++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkCreateIS.html#DMNetworkCreateIS
man:+DMNetworkCreateLocalIS++DMNetworkCreateLocalIS++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkCreateLocalIS.html#DMNetworkCreateLocalIS
man:+DMNetworkFinalizeComponents++DMNetworkFinalizeComponents++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkFinalizeComponents.html#DMNetworkFinalizeComponents
man:+DMNetworkMonitorCreate++DMNetworkMonitorCreate++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkMonitorCreate.html#DMNetworkMonitorCreate
man:+DMNetworkMonitorDestroy++DMNetworkMonitorDestroy++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkMonitorDestroy.html#DMNetworkMonitorDestroy
man:+DMNetworkMonitorPop++DMNetworkMonitorPop++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkMonitorPop.html#DMNetworkMonitorPop
man:+DMNetworkMonitorAdd++DMNetworkMonitorAdd++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkMonitorAdd.html#DMNetworkMonitorAdd
man:+DMNetworkMonitorView++DMNetworkMonitorView++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkMonitorView.html#DMNetworkMonitorView
man:+DMNETWORK++DMNETWORK++++man+https://petsc.org/release/manualpages/DMNetwork/DMNETWORK.html#DMNETWORK
man:+DMNetworkCreate++DMNetworkCreate++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkCreate.html#DMNetworkCreate
man:+DMNetworkViewSetShowRanks++DMNetworkViewSetShowRanks++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkViewSetShowRanks.html#DMNetworkViewSetShowRanks
man:+DMNetworkViewSetShowGlobal++DMNetworkViewSetShowGlobal++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkViewSetShowGlobal.html#DMNetworkViewSetShowGlobal
man:+DMNetworkViewSetShowVertices++DMNetworkViewSetShowVertices++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkViewSetShowVertices.html#DMNetworkViewSetShowVertices
man:+DMNetworkViewSetShowNumbering++DMNetworkViewSetShowNumbering++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkViewSetShowNumbering.html#DMNetworkViewSetShowNumbering
man:+DMNetworkViewSetViewRanks++DMNetworkViewSetViewRanks++++man+https://petsc.org/release/manualpages/DMNetwork/DMNetworkViewSetViewRanks.html#DMNetworkViewSetViewRanks
man:+DMProductGetDM++DMProductGetDM++++man+https://petsc.org/release/manualpages/DMPRODUCT/DMProductGetDM.html#DMProductGetDM
man:+DMProductSetDM++DMProductSetDM++++man+https://petsc.org/release/manualpages/DMPRODUCT/DMProductSetDM.html#DMProductSetDM
man:+DMProductSetDimensionIndex++DMProductSetDimensionIndex++++man+https://petsc.org/release/manualpages/DMPRODUCT/DMProductSetDimensionIndex.html#DMProductSetDimensionIndex
man:+DMProductGetDimensionIndex++DMProductGetDimensionIndex++++man+https://petsc.org/release/manualpages/DMPRODUCT/DMProductGetDimensionIndex.html#DMProductGetDimensionIndex
man:+DMPRODUCT++DMPRODUCT++++man+https://petsc.org/release/manualpages/DMPRODUCT/DMPRODUCT.html#DMPRODUCT
man:+DMCompositeSetCoupling++DMCompositeSetCoupling++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeSetCoupling.html#DMCompositeSetCoupling
man:+DMCompositeGetNumberDM++DMCompositeGetNumberDM++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeGetNumberDM.html#DMCompositeGetNumberDM
man:+DMCompositeGetAccess++DMCompositeGetAccess++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeGetAccess.html#DMCompositeGetAccess
man:+DMCompositeGetAccessArray++DMCompositeGetAccessArray++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeGetAccessArray.html#DMCompositeGetAccessArray
man:+DMCompositeGetLocalAccessArray++DMCompositeGetLocalAccessArray++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeGetLocalAccessArray.html#DMCompositeGetLocalAccessArray
man:+DMCompositeRestoreAccess++DMCompositeRestoreAccess++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeRestoreAccess.html#DMCompositeRestoreAccess
man:+DMCompositeRestoreAccessArray++DMCompositeRestoreAccessArray++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeRestoreAccessArray.html#DMCompositeRestoreAccessArray
man:+DMCompositeRestoreLocalAccessArray++DMCompositeRestoreLocalAccessArray++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeRestoreLocalAccessArray.html#DMCompositeRestoreLocalAccessArray
man:+DMCompositeScatter++DMCompositeScatter++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeScatter.html#DMCompositeScatter
man:+DMCompositeScatterArray++DMCompositeScatterArray++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeScatterArray.html#DMCompositeScatterArray
man:+DMCompositeGather++DMCompositeGather++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeGather.html#DMCompositeGather
man:+DMCompositeGatherArray++DMCompositeGatherArray++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeGatherArray.html#DMCompositeGatherArray
man:+DMCompositeAddDM++DMCompositeAddDM++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeAddDM.html#DMCompositeAddDM
man:+DMCompositeGetISLocalToGlobalMappings++DMCompositeGetISLocalToGlobalMappings++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeGetISLocalToGlobalMappings.html#DMCompositeGetISLocalToGlobalMappings
man:+DMCompositeGetLocalISs++DMCompositeGetLocalISs++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeGetLocalISs.html#DMCompositeGetLocalISs
man:+DMCompositeGetGlobalISs++DMCompositeGetGlobalISs++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeGetGlobalISs.html#DMCompositeGetGlobalISs
man:+DMCompositeGetLocalVectors++DMCompositeGetLocalVectors++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeGetLocalVectors.html#DMCompositeGetLocalVectors
man:+DMCompositeRestoreLocalVectors++DMCompositeRestoreLocalVectors++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeRestoreLocalVectors.html#DMCompositeRestoreLocalVectors
man:+DMCompositeGetEntries++DMCompositeGetEntries++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeGetEntries.html#DMCompositeGetEntries
man:+DMCompositeGetEntriesArray++DMCompositeGetEntriesArray++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeGetEntriesArray.html#DMCompositeGetEntriesArray
man:+DMCOMPOSITE++DMCOMPOSITE++++man+https://petsc.org/release/manualpages/DMComposite/DMCOMPOSITE.html#DMCOMPOSITE
man:+DMCompositeCreate++DMCompositeCreate++++man+https://petsc.org/release/manualpages/DMComposite/DMCompositeCreate.html#DMCompositeCreate
man:+DMStagCreate1d++DMStagCreate1d++++man+https://petsc.org/release/manualpages/DMStag/DMStagCreate1d.html#DMStagCreate1d
man:+DMStagVecSplitToDMDA++DMStagVecSplitToDMDA++++man+https://petsc.org/release/manualpages/DMStag/DMStagVecSplitToDMDA.html#DMStagVecSplitToDMDA
man:+DMSTAG++DMSTAG++++man+https://petsc.org/release/manualpages/DMStag/DMSTAG.html#DMSTAG
man:+DMStagCreateISFromStencils++DMStagCreateISFromStencils++++man+https://petsc.org/release/manualpages/DMStag/DMStagCreateISFromStencils.html#DMStagCreateISFromStencils
man:+DMStagGetLocationDOF++DMStagGetLocationDOF++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetLocationDOF.html#DMStagGetLocationDOF
man:+DMStagMatGetValuesStencil++DMStagMatGetValuesStencil++++man+https://petsc.org/release/manualpages/DMStag/DMStagMatGetValuesStencil.html#DMStagMatGetValuesStencil
man:+DMStagMatSetValuesStencil++DMStagMatSetValuesStencil++++man+https://petsc.org/release/manualpages/DMStag/DMStagMatSetValuesStencil.html#DMStagMatSetValuesStencil
man:+DMStagStencilToIndexLocal++DMStagStencilToIndexLocal++++man+https://petsc.org/release/manualpages/DMStag/DMStagStencilToIndexLocal.html#DMStagStencilToIndexLocal
man:+DMStagVecGetValuesStencil++DMStagVecGetValuesStencil++++man+https://petsc.org/release/manualpages/DMStag/DMStagVecGetValuesStencil.html#DMStagVecGetValuesStencil
man:+DMStagVecSetValuesStencil++DMStagVecSetValuesStencil++++man+https://petsc.org/release/manualpages/DMStag/DMStagVecSetValuesStencil.html#DMStagVecSetValuesStencil
man:+DMStagRestrictSimple++DMStagRestrictSimple++++man+https://petsc.org/release/manualpages/DMStag/DMStagRestrictSimple.html#DMStagRestrictSimple
man:+DMStagCreate3d++DMStagCreate3d++++man+https://petsc.org/release/manualpages/DMStag/DMStagCreate3d.html#DMStagCreate3d
man:+DMStagGetBoundaryTypes++DMStagGetBoundaryTypes++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetBoundaryTypes.html#DMStagGetBoundaryTypes
man:+DMStagGetProductCoordinateArrays++DMStagGetProductCoordinateArrays++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetProductCoordinateArrays.html#DMStagGetProductCoordinateArrays
man:+DMStagGetProductCoordinateArraysRead++DMStagGetProductCoordinateArraysRead++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetProductCoordinateArraysRead.html#DMStagGetProductCoordinateArraysRead
man:+DMStagGetProductCoordinateLocationSlot++DMStagGetProductCoordinateLocationSlot++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetProductCoordinateLocationSlot.html#DMStagGetProductCoordinateLocationSlot
man:+DMStagGetCorners++DMStagGetCorners++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetCorners.html#DMStagGetCorners
man:+DMStagGetDOF++DMStagGetDOF++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetDOF.html#DMStagGetDOF
man:+DMStagGetGhostCorners++DMStagGetGhostCorners++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetGhostCorners.html#DMStagGetGhostCorners
man:+DMStagGetGlobalSizes++DMStagGetGlobalSizes++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetGlobalSizes.html#DMStagGetGlobalSizes
man:+DMStagGetIsFirstRank++DMStagGetIsFirstRank++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetIsFirstRank.html#DMStagGetIsFirstRank
man:+DMStagGetIsLastRank++DMStagGetIsLastRank++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetIsLastRank.html#DMStagGetIsLastRank
man:+DMStagGetLocalSizes++DMStagGetLocalSizes++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetLocalSizes.html#DMStagGetLocalSizes
man:+DMStagGetNumRanks++DMStagGetNumRanks++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetNumRanks.html#DMStagGetNumRanks
man:+DMStagGetEntries++DMStagGetEntries++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetEntries.html#DMStagGetEntries
man:+DMStagGetEntriesLocal++DMStagGetEntriesLocal++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetEntriesLocal.html#DMStagGetEntriesLocal
man:+DMStagGetEntriesPerElement++DMStagGetEntriesPerElement++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetEntriesPerElement.html#DMStagGetEntriesPerElement
man:+DMStagGetStencilType++DMStagGetStencilType++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetStencilType.html#DMStagGetStencilType
man:+DMStagGetStencilWidth++DMStagGetStencilWidth++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetStencilWidth.html#DMStagGetStencilWidth
man:+DMStagGetOwnershipRanges++DMStagGetOwnershipRanges++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetOwnershipRanges.html#DMStagGetOwnershipRanges
man:+DMStagCreateCompatibleDMStag++DMStagCreateCompatibleDMStag++++man+https://petsc.org/release/manualpages/DMStag/DMStagCreateCompatibleDMStag.html#DMStagCreateCompatibleDMStag
man:+DMStagGetLocationSlot++DMStagGetLocationSlot++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetLocationSlot.html#DMStagGetLocationSlot
man:+DMStagGetRefinementFactor++DMStagGetRefinementFactor++++man+https://petsc.org/release/manualpages/DMStag/DMStagGetRefinementFactor.html#DMStagGetRefinementFactor
man:+DMStagMigrateVec++DMStagMigrateVec++++man+https://petsc.org/release/manualpages/DMStag/DMStagMigrateVec.html#DMStagMigrateVec
man:+DMStagPopulateLocalToGlobalInjective++DMStagPopulateLocalToGlobalInjective++++man+https://petsc.org/release/manualpages/DMStag/DMStagPopulateLocalToGlobalInjective.html#DMStagPopulateLocalToGlobalInjective
man:+DMStagRestoreProductCoordinateArrays++DMStagRestoreProductCoordinateArrays++++man+https://petsc.org/release/manualpages/DMStag/DMStagRestoreProductCoordinateArrays.html#DMStagRestoreProductCoordinateArrays
man:+DMStagRestoreProductCoordinateArraysRead++DMStagRestoreProductCoordinateArraysRead++++man+https://petsc.org/release/manualpages/DMStag/DMStagRestoreProductCoordinateArraysRead.html#DMStagRestoreProductCoordinateArraysRead
man:+DMStagSetBoundaryTypes++DMStagSetBoundaryTypes++++man+https://petsc.org/release/manualpages/DMStag/DMStagSetBoundaryTypes.html#DMStagSetBoundaryTypes
man:+DMStagSetCoordinateDMType++DMStagSetCoordinateDMType++++man+https://petsc.org/release/manualpages/DMStag/DMStagSetCoordinateDMType.html#DMStagSetCoordinateDMType
man:+DMStagSetDOF++DMStagSetDOF++++man+https://petsc.org/release/manualpages/DMStag/DMStagSetDOF.html#DMStagSetDOF
man:+DMStagSetNumRanks++DMStagSetNumRanks++++man+https://petsc.org/release/manualpages/DMStag/DMStagSetNumRanks.html#DMStagSetNumRanks
man:+DMStagSetStencilType++DMStagSetStencilType++++man+https://petsc.org/release/manualpages/DMStag/DMStagSetStencilType.html#DMStagSetStencilType
man:+DMStagSetStencilWidth++DMStagSetStencilWidth++++man+https://petsc.org/release/manualpages/DMStag/DMStagSetStencilWidth.html#DMStagSetStencilWidth
man:+DMStagSetGlobalSizes++DMStagSetGlobalSizes++++man+https://petsc.org/release/manualpages/DMStag/DMStagSetGlobalSizes.html#DMStagSetGlobalSizes
man:+DMStagSetOwnershipRanges++DMStagSetOwnershipRanges++++man+https://petsc.org/release/manualpages/DMStag/DMStagSetOwnershipRanges.html#DMStagSetOwnershipRanges
man:+DMStagSetRefinementFactor++DMStagSetRefinementFactor++++man+https://petsc.org/release/manualpages/DMStag/DMStagSetRefinementFactor.html#DMStagSetRefinementFactor
man:+DMStagSetUniformCoordinates++DMStagSetUniformCoordinates++++man+https://petsc.org/release/manualpages/DMStag/DMStagSetUniformCoordinates.html#DMStagSetUniformCoordinates
man:+DMStagSetUniformCoordinatesExplicit++DMStagSetUniformCoordinatesExplicit++++man+https://petsc.org/release/manualpages/DMStag/DMStagSetUniformCoordinatesExplicit.html#DMStagSetUniformCoordinatesExplicit
man:+DMStagSetUniformCoordinatesProduct++DMStagSetUniformCoordinatesProduct++++man+https://petsc.org/release/manualpages/DMStag/DMStagSetUniformCoordinatesProduct.html#DMStagSetUniformCoordinatesProduct
man:+DMStagVecGetArray++DMStagVecGetArray++++man+https://petsc.org/release/manualpages/DMStag/DMStagVecGetArray.html#DMStagVecGetArray
man:+DMStagVecGetArrayRead++DMStagVecGetArrayRead++++man+https://petsc.org/release/manualpages/DMStag/DMStagVecGetArrayRead.html#DMStagVecGetArrayRead
man:+DMStagVecRestoreArray++DMStagVecRestoreArray++++man+https://petsc.org/release/manualpages/DMStag/DMStagVecRestoreArray.html#DMStagVecRestoreArray
man:+DMStagVecRestoreArrayRead++DMStagVecRestoreArrayRead++++man+https://petsc.org/release/manualpages/DMStag/DMStagVecRestoreArrayRead.html#DMStagVecRestoreArrayRead
man:+DMStagCreate2d++DMStagCreate2d++++man+https://petsc.org/release/manualpages/DMStag/DMStagCreate2d.html#DMStagCreate2d
man:+DMPatchZoom++DMPatchZoom++++man+https://petsc.org/release/manualpages/DMPatch/DMPatchZoom.html#DMPatchZoom
man:+DMPatchCreate++DMPatchCreate++++man+https://petsc.org/release/manualpages/DMPatch/DMPatchCreate.html#DMPatchCreate
man:+DMRedundantSetSize++DMRedundantSetSize++++man+https://petsc.org/release/manualpages/DM/DMRedundantSetSize.html#DMRedundantSetSize
man:+DMRedundantGetSize++DMRedundantGetSize++++man+https://petsc.org/release/manualpages/DM/DMRedundantGetSize.html#DMRedundantGetSize
man:+DMREDUNDANT++DMREDUNDANT++++man+https://petsc.org/release/manualpages/DM/DMREDUNDANT.html#DMREDUNDANT
man:+DMRedundantCreate++DMRedundantCreate++++man+https://petsc.org/release/manualpages/DM/DMRedundantCreate.html#DMRedundantCreate
man:+DMPlexGetActivePoint++DMPlexGetActivePoint++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetActivePoint.html#DMPlexGetActivePoint
man:+DMPlexSetActivePoint++DMPlexSetActivePoint++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetActivePoint.html#DMPlexSetActivePoint
man:+DMGetFirstLabeledPoint++DMGetFirstLabeledPoint++++man+https://petsc.org/release/manualpages/DMPlex/DMGetFirstLabeledPoint.html#DMGetFirstLabeledPoint
man:+DMPlexSetMigrationSF++DMPlexSetMigrationSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetMigrationSF.html#DMPlexSetMigrationSF
man:+DMPlexGetMigrationSF++DMPlexGetMigrationSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetMigrationSF.html#DMPlexGetMigrationSF
man:+DMPlexCreateGlobalToNaturalSF++DMPlexCreateGlobalToNaturalSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateGlobalToNaturalSF.html#DMPlexCreateGlobalToNaturalSF
man:+DMPlexMigrateGlobalToNaturalSF++DMPlexMigrateGlobalToNaturalSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMigrateGlobalToNaturalSF.html#DMPlexMigrateGlobalToNaturalSF
man:+DMPlexGlobalToNaturalBegin++DMPlexGlobalToNaturalBegin++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGlobalToNaturalBegin.html#DMPlexGlobalToNaturalBegin
man:+DMPlexGlobalToNaturalEnd++DMPlexGlobalToNaturalEnd++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGlobalToNaturalEnd.html#DMPlexGlobalToNaturalEnd
man:+DMPlexNaturalToGlobalBegin++DMPlexNaturalToGlobalBegin++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexNaturalToGlobalBegin.html#DMPlexNaturalToGlobalBegin
man:+DMPlexNaturalToGlobalEnd++DMPlexNaturalToGlobalEnd++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexNaturalToGlobalEnd.html#DMPlexNaturalToGlobalEnd
man:+DMPlexCreateNaturalVector++DMPlexCreateNaturalVector++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateNaturalVector.html#DMPlexCreateNaturalVector
man:+DMPlexCreateProcessSF++DMPlexCreateProcessSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateProcessSF.html#DMPlexCreateProcessSF
man:+DMPlexCreateCoarsePointIS++DMPlexCreateCoarsePointIS++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateCoarsePointIS.html#DMPlexCreateCoarsePointIS
man:+DMPlexSetTransformType++DMPlexSetTransformType++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetTransformType.html#DMPlexSetTransformType
man:+DMPlexGetTransformType++DMPlexGetTransformType++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetTransformType.html#DMPlexGetTransformType
man:+DMPlexSetRefinementUniform++DMPlexSetRefinementUniform++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetRefinementUniform.html#DMPlexSetRefinementUniform
man:+DMPlexGetRefinementUniform++DMPlexGetRefinementUniform++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetRefinementUniform.html#DMPlexGetRefinementUniform
man:+DMPlexSetRefinementLimit++DMPlexSetRefinementLimit++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetRefinementLimit.html#DMPlexSetRefinementLimit
man:+DMPlexGetRefinementLimit++DMPlexGetRefinementLimit++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetRefinementLimit.html#DMPlexGetRefinementLimit
man:+DMPlexSetRefinementFunction++DMPlexSetRefinementFunction++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetRefinementFunction.html#DMPlexSetRefinementFunction
man:+DMPlexGetRefinementFunction++DMPlexGetRefinementFunction++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetRefinementFunction.html#DMPlexGetRefinementFunction
man:+DMPlexCreatePartitionerGraph++DMPlexCreatePartitionerGraph++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreatePartitionerGraph.html#DMPlexCreatePartitionerGraph
man:+DMPlexCreateNeighborCSR++DMPlexCreateNeighborCSR++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateNeighborCSR.html#DMPlexCreateNeighborCSR
man:+PetscPartitionerDMPlexPartition++PetscPartitionerDMPlexPartition++++man+https://petsc.org/release/manualpages/DMPlex/PetscPartitionerDMPlexPartition.html#PetscPartitionerDMPlexPartition
man:+DMPlexGetPartitioner++DMPlexGetPartitioner++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetPartitioner.html#DMPlexGetPartitioner
man:+DMPlexSetPartitioner++DMPlexSetPartitioner++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetPartitioner.html#DMPlexSetPartitioner
man:+DMPlexPartitionLabelClosure++DMPlexPartitionLabelClosure++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPartitionLabelClosure.html#DMPlexPartitionLabelClosure
man:+DMPlexPartitionLabelAdjacency++DMPlexPartitionLabelAdjacency++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPartitionLabelAdjacency.html#DMPlexPartitionLabelAdjacency
man:+DMPlexPartitionLabelPropagate++DMPlexPartitionLabelPropagate++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPartitionLabelPropagate.html#DMPlexPartitionLabelPropagate
man:+DMPlexPartitionLabelInvert++DMPlexPartitionLabelInvert++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPartitionLabelInvert.html#DMPlexPartitionLabelInvert
man:+DMPlexPartitionLabelCreateSF++DMPlexPartitionLabelCreateSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPartitionLabelCreateSF.html#DMPlexPartitionLabelCreateSF
man:+DMPlexRebalanceSharedPoints++DMPlexRebalanceSharedPoints++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRebalanceSharedPoints.html#DMPlexRebalanceSharedPoints
man:+DMPlexInterpolatePointSF++DMPlexInterpolatePointSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInterpolatePointSF.html#DMPlexInterpolatePointSF
man:+DMPlexInterpolate++DMPlexInterpolate++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInterpolate.html#DMPlexInterpolate
man:+DMPlexCopyCoordinates++DMPlexCopyCoordinates++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCopyCoordinates.html#DMPlexCopyCoordinates
man:+DMPlexUninterpolate++DMPlexUninterpolate++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexUninterpolate.html#DMPlexUninterpolate
man:+DMPlexIsInterpolated++DMPlexIsInterpolated++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexIsInterpolated.html#DMPlexIsInterpolated
man:+DMPlexIsInterpolatedCollective++DMPlexIsInterpolatedCollective++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexIsInterpolatedCollective.html#DMPlexIsInterpolatedCollective
man:+DMPlexGetInterpolatePreferTensor++DMPlexGetInterpolatePreferTensor++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetInterpolatePreferTensor.html#DMPlexGetInterpolatePreferTensor
man:+DMPlexSetInterpolatePreferTensor++DMPlexSetInterpolatePreferTensor++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetInterpolatePreferTensor.html#DMPlexSetInterpolatePreferTensor
man:+DMPlexMetricSetIsotropic++DMPlexMetricSetIsotropic++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetIsotropic.html#DMPlexMetricSetIsotropic
man:+DMPlexMetricIsIsotropic++DMPlexMetricIsIsotropic++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricIsIsotropic.html#DMPlexMetricIsIsotropic
man:+DMPlexMetricSetUniform++DMPlexMetricSetUniform++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetUniform.html#DMPlexMetricSetUniform
man:+DMPlexMetricIsUniform++DMPlexMetricIsUniform++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricIsUniform.html#DMPlexMetricIsUniform
man:+DMPlexMetricSetRestrictAnisotropyFirst++DMPlexMetricSetRestrictAnisotropyFirst++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetRestrictAnisotropyFirst.html#DMPlexMetricSetRestrictAnisotropyFirst
man:+DMPlexMetricRestrictAnisotropyFirst++DMPlexMetricRestrictAnisotropyFirst++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricRestrictAnisotropyFirst.html#DMPlexMetricRestrictAnisotropyFirst
man:+DMPlexMetricSetNoInsertion++DMPlexMetricSetNoInsertion++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetNoInsertion.html#DMPlexMetricSetNoInsertion
man:+DMPlexMetricNoInsertion++DMPlexMetricNoInsertion++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricNoInsertion.html#DMPlexMetricNoInsertion
man:+DMPlexMetricSetNoSwapping++DMPlexMetricSetNoSwapping++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetNoSwapping.html#DMPlexMetricSetNoSwapping
man:+DMPlexMetricNoSwapping++DMPlexMetricNoSwapping++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricNoSwapping.html#DMPlexMetricNoSwapping
man:+DMPlexMetricSetNoMovement++DMPlexMetricSetNoMovement++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetNoMovement.html#DMPlexMetricSetNoMovement
man:+DMPlexMetricNoMovement++DMPlexMetricNoMovement++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricNoMovement.html#DMPlexMetricNoMovement
man:+DMPlexMetricSetNoSurf++DMPlexMetricSetNoSurf++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetNoSurf.html#DMPlexMetricSetNoSurf
man:+DMPlexMetricNoSurf++DMPlexMetricNoSurf++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricNoSurf.html#DMPlexMetricNoSurf
man:+DMPlexMetricSetMinimumMagnitude++DMPlexMetricSetMinimumMagnitude++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetMinimumMagnitude.html#DMPlexMetricSetMinimumMagnitude
man:+DMPlexMetricGetMinimumMagnitude++DMPlexMetricGetMinimumMagnitude++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricGetMinimumMagnitude.html#DMPlexMetricGetMinimumMagnitude
man:+DMPlexMetricSetMaximumMagnitude++DMPlexMetricSetMaximumMagnitude++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetMaximumMagnitude.html#DMPlexMetricSetMaximumMagnitude
man:+DMPlexMetricGetMaximumMagnitude++DMPlexMetricGetMaximumMagnitude++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricGetMaximumMagnitude.html#DMPlexMetricGetMaximumMagnitude
man:+DMPlexMetricSetMaximumAnisotropy++DMPlexMetricSetMaximumAnisotropy++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetMaximumAnisotropy.html#DMPlexMetricSetMaximumAnisotropy
man:+DMPlexMetricGetMaximumAnisotropy++DMPlexMetricGetMaximumAnisotropy++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricGetMaximumAnisotropy.html#DMPlexMetricGetMaximumAnisotropy
man:+DMPlexMetricSetTargetComplexity++DMPlexMetricSetTargetComplexity++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetTargetComplexity.html#DMPlexMetricSetTargetComplexity
man:+DMPlexMetricGetTargetComplexity++DMPlexMetricGetTargetComplexity++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricGetTargetComplexity.html#DMPlexMetricGetTargetComplexity
man:+DMPlexMetricSetNormalizationOrder++DMPlexMetricSetNormalizationOrder++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetNormalizationOrder.html#DMPlexMetricSetNormalizationOrder
man:+DMPlexMetricGetNormalizationOrder++DMPlexMetricGetNormalizationOrder++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricGetNormalizationOrder.html#DMPlexMetricGetNormalizationOrder
man:+DMPlexMetricSetGradationFactor++DMPlexMetricSetGradationFactor++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetGradationFactor.html#DMPlexMetricSetGradationFactor
man:+DMPlexMetricGetGradationFactor++DMPlexMetricGetGradationFactor++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricGetGradationFactor.html#DMPlexMetricGetGradationFactor
man:+DMPlexMetricSetHausdorffNumber++DMPlexMetricSetHausdorffNumber++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetHausdorffNumber.html#DMPlexMetricSetHausdorffNumber
man:+DMPlexMetricGetHausdorffNumber++DMPlexMetricGetHausdorffNumber++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricGetHausdorffNumber.html#DMPlexMetricGetHausdorffNumber
man:+DMPlexMetricSetVerbosity++DMPlexMetricSetVerbosity++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetVerbosity.html#DMPlexMetricSetVerbosity
man:+DMPlexMetricGetVerbosity++DMPlexMetricGetVerbosity++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricGetVerbosity.html#DMPlexMetricGetVerbosity
man:+DMPlexMetricSetNumIterations++DMPlexMetricSetNumIterations++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricSetNumIterations.html#DMPlexMetricSetNumIterations
man:+DMPlexMetricGetNumIterations++DMPlexMetricGetNumIterations++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricGetNumIterations.html#DMPlexMetricGetNumIterations
man:+DMPlexMetricCreate++DMPlexMetricCreate++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricCreate.html#DMPlexMetricCreate
man:+DMPlexMetricCreateUniform++DMPlexMetricCreateUniform++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricCreateUniform.html#DMPlexMetricCreateUniform
man:+DMPlexMetricCreateIsotropic++DMPlexMetricCreateIsotropic++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricCreateIsotropic.html#DMPlexMetricCreateIsotropic
man:+DMPlexMetricDeterminantCreate++DMPlexMetricDeterminantCreate++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricDeterminantCreate.html#DMPlexMetricDeterminantCreate
man:+DMPlexMetricEnforceSPD++DMPlexMetricEnforceSPD++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricEnforceSPD.html#DMPlexMetricEnforceSPD
man:+DMPlexMetricNormalize++DMPlexMetricNormalize++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricNormalize.html#DMPlexMetricNormalize
man:+DMPlexMetricAverage++DMPlexMetricAverage++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricAverage.html#DMPlexMetricAverage
man:+DMPlexMetricAverage2++DMPlexMetricAverage2++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricAverage2.html#DMPlexMetricAverage2
man:+DMPlexMetricAverage3++DMPlexMetricAverage3++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricAverage3.html#DMPlexMetricAverage3
man:+DMPlexMetricIntersection++DMPlexMetricIntersection++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricIntersection.html#DMPlexMetricIntersection
man:+DMPlexMetricIntersection2++DMPlexMetricIntersection2++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricIntersection2.html#DMPlexMetricIntersection2
man:+DMPlexMetricIntersection3++DMPlexMetricIntersection3++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMetricIntersection3.html#DMPlexMetricIntersection3
man:+DMPlexCreateGmshFromFile++DMPlexCreateGmshFromFile++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateGmshFromFile.html#DMPlexCreateGmshFromFile
man:+DMPlexCreateGmsh++DMPlexCreateGmsh++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateGmsh.html#DMPlexCreateGmsh
man:+DMPlexCreateCGNSFromFile++DMPlexCreateCGNSFromFile++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateCGNSFromFile.html#DMPlexCreateCGNSFromFile
man:+DMPlexCreateCGNS++DMPlexCreateCGNS++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateCGNS.html#DMPlexCreateCGNS
man:+PetscViewerHDF5SetDMPlexStorageVersionWriting++PetscViewerHDF5SetDMPlexStorageVersionWriting++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerHDF5SetDMPlexStorageVersionWriting.html#PetscViewerHDF5SetDMPlexStorageVersionWriting
man:+PetscViewerHDF5GetDMPlexStorageVersionWriting++PetscViewerHDF5GetDMPlexStorageVersionWriting++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerHDF5GetDMPlexStorageVersionWriting.html#PetscViewerHDF5GetDMPlexStorageVersionWriting
man:+PetscViewerHDF5SetDMPlexStorageVersionReading++PetscViewerHDF5SetDMPlexStorageVersionReading++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerHDF5SetDMPlexStorageVersionReading.html#PetscViewerHDF5SetDMPlexStorageVersionReading
man:+PetscViewerHDF5GetDMPlexStorageVersionReading++PetscViewerHDF5GetDMPlexStorageVersionReading++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerHDF5GetDMPlexStorageVersionReading.html#PetscViewerHDF5GetDMPlexStorageVersionReading
man:+DMPlexCreateClosureIndex++DMPlexCreateClosureIndex++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateClosureIndex.html#DMPlexCreateClosureIndex
man:+DMPlexCreateFluentFromFile++DMPlexCreateFluentFromFile++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateFluentFromFile.html#DMPlexCreateFluentFromFile
man:+DMPlexCreateFluent++DMPlexCreateFluent++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateFluent.html#DMPlexCreateFluent
man:+DMPlexIsSimplex++DMPlexIsSimplex++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexIsSimplex.html#DMPlexIsSimplex
man:+DMPlexGetSimplexOrBoxCells++DMPlexGetSimplexOrBoxCells++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetSimplexOrBoxCells.html#DMPlexGetSimplexOrBoxCells
man:+DMPlexVecView1D++DMPlexVecView1D++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexVecView1D.html#DMPlexVecView1D
man:+DMPlexTopologyView++DMPlexTopologyView++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTopologyView.html#DMPlexTopologyView
man:+DMPlexCoordinatesView++DMPlexCoordinatesView++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCoordinatesView.html#DMPlexCoordinatesView
man:+DMPlexLabelsView++DMPlexLabelsView++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexLabelsView.html#DMPlexLabelsView
man:+DMPlexSectionView++DMPlexSectionView++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSectionView.html#DMPlexSectionView
man:+DMPlexGlobalVectorView++DMPlexGlobalVectorView++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGlobalVectorView.html#DMPlexGlobalVectorView
man:+DMPlexLocalVectorView++DMPlexLocalVectorView++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexLocalVectorView.html#DMPlexLocalVectorView
man:+DMPlexTopologyLoad++DMPlexTopologyLoad++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTopologyLoad.html#DMPlexTopologyLoad
man:+DMPlexCoordinatesLoad++DMPlexCoordinatesLoad++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCoordinatesLoad.html#DMPlexCoordinatesLoad
man:+DMPlexLabelsLoad++DMPlexLabelsLoad++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexLabelsLoad.html#DMPlexLabelsLoad
man:+DMPlexSectionLoad++DMPlexSectionLoad++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSectionLoad.html#DMPlexSectionLoad
man:+DMPlexGlobalVectorLoad++DMPlexGlobalVectorLoad++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGlobalVectorLoad.html#DMPlexGlobalVectorLoad
man:+DMPlexLocalVectorLoad++DMPlexLocalVectorLoad++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexLocalVectorLoad.html#DMPlexLocalVectorLoad
man:+DMPlexGetSubdomainSection++DMPlexGetSubdomainSection++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetSubdomainSection.html#DMPlexGetSubdomainSection
man:+DMPlexGetChart++DMPlexGetChart++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetChart.html#DMPlexGetChart
man:+DMPlexSetChart++DMPlexSetChart++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetChart.html#DMPlexSetChart
man:+DMPlexGetConeSize++DMPlexGetConeSize++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetConeSize.html#DMPlexGetConeSize
man:+DMPlexSetConeSize++DMPlexSetConeSize++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetConeSize.html#DMPlexSetConeSize
man:+DMPlexGetCone++DMPlexGetCone++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetCone.html#DMPlexGetCone
man:+DMPlexGetConeTuple++DMPlexGetConeTuple++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetConeTuple.html#DMPlexGetConeTuple
man:+DMPlexGetConeRecursiveVertices++DMPlexGetConeRecursiveVertices++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetConeRecursiveVertices.html#DMPlexGetConeRecursiveVertices
man:+DMPlexGetConeRecursive++DMPlexGetConeRecursive++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetConeRecursive.html#DMPlexGetConeRecursive
man:+DMPlexRestoreConeRecursive++DMPlexRestoreConeRecursive++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRestoreConeRecursive.html#DMPlexRestoreConeRecursive
man:+DMPlexSetCone++DMPlexSetCone++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetCone.html#DMPlexSetCone
man:+DMPlexGetConeOrientation++DMPlexGetConeOrientation++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetConeOrientation.html#DMPlexGetConeOrientation
man:+DMPlexSetConeOrientation++DMPlexSetConeOrientation++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetConeOrientation.html#DMPlexSetConeOrientation
man:+DMPlexInsertCone++DMPlexInsertCone++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInsertCone.html#DMPlexInsertCone
man:+DMPlexInsertConeOrientation++DMPlexInsertConeOrientation++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInsertConeOrientation.html#DMPlexInsertConeOrientation
man:+DMPlexGetOrientedCone++DMPlexGetOrientedCone++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetOrientedCone.html#DMPlexGetOrientedCone
man:+DMPlexRestoreOrientedCone++DMPlexRestoreOrientedCone++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRestoreOrientedCone.html#DMPlexRestoreOrientedCone
man:+DMPlexGetSupportSize++DMPlexGetSupportSize++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetSupportSize.html#DMPlexGetSupportSize
man:+DMPlexSetSupportSize++DMPlexSetSupportSize++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetSupportSize.html#DMPlexSetSupportSize
man:+DMPlexGetSupport++DMPlexGetSupport++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetSupport.html#DMPlexGetSupport
man:+DMPlexSetSupport++DMPlexSetSupport++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetSupport.html#DMPlexSetSupport
man:+DMPlexInsertSupport++DMPlexInsertSupport++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInsertSupport.html#DMPlexInsertSupport
man:+DMPlexGetTransitiveClosure++DMPlexGetTransitiveClosure++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetTransitiveClosure.html#DMPlexGetTransitiveClosure
man:+DMPlexRestoreTransitiveClosure++DMPlexRestoreTransitiveClosure++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRestoreTransitiveClosure.html#DMPlexRestoreTransitiveClosure
man:+DMPlexGetMaxSizes++DMPlexGetMaxSizes++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetMaxSizes.html#DMPlexGetMaxSizes
man:+DMPlexSymmetrize++DMPlexSymmetrize++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSymmetrize.html#DMPlexSymmetrize
man:+DMPlexStratify++DMPlexStratify++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexStratify.html#DMPlexStratify
man:+DMPlexComputeCellTypes++DMPlexComputeCellTypes++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeCellTypes.html#DMPlexComputeCellTypes
man:+DMPlexGetJoin++DMPlexGetJoin++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetJoin.html#DMPlexGetJoin
man:+DMPlexRestoreJoin++DMPlexRestoreJoin++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRestoreJoin.html#DMPlexRestoreJoin
man:+DMPlexGetFullJoin++DMPlexGetFullJoin++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetFullJoin.html#DMPlexGetFullJoin
man:+DMPlexGetMeet++DMPlexGetMeet++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetMeet.html#DMPlexGetMeet
man:+DMPlexRestoreMeet++DMPlexRestoreMeet++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRestoreMeet.html#DMPlexRestoreMeet
man:+DMPlexGetFullMeet++DMPlexGetFullMeet++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetFullMeet.html#DMPlexGetFullMeet
man:+DMPlexEqual++DMPlexEqual++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexEqual.html#DMPlexEqual
man:+DMPlexGetNumFaceVertices++DMPlexGetNumFaceVertices++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetNumFaceVertices.html#DMPlexGetNumFaceVertices
man:+DMPlexGetDepthLabel++DMPlexGetDepthLabel++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetDepthLabel.html#DMPlexGetDepthLabel
man:+DMPlexGetDepth++DMPlexGetDepth++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetDepth.html#DMPlexGetDepth
man:+DMPlexGetDepthStratum++DMPlexGetDepthStratum++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetDepthStratum.html#DMPlexGetDepthStratum
man:+DMPlexGetHeightStratum++DMPlexGetHeightStratum++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetHeightStratum.html#DMPlexGetHeightStratum
man:+DMPlexGetPointDepth++DMPlexGetPointDepth++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetPointDepth.html#DMPlexGetPointDepth
man:+DMPlexGetPointHeight++DMPlexGetPointHeight++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetPointHeight.html#DMPlexGetPointHeight
man:+DMPlexGetCellTypeLabel++DMPlexGetCellTypeLabel++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetCellTypeLabel.html#DMPlexGetCellTypeLabel
man:+DMPlexGetCellType++DMPlexGetCellType++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetCellType.html#DMPlexGetCellType
man:+DMPlexSetCellType++DMPlexSetCellType++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetCellType.html#DMPlexSetCellType
man:+DMPlexGetConeSection++DMPlexGetConeSection++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetConeSection.html#DMPlexGetConeSection
man:+DMPlexGetSupportSection++DMPlexGetSupportSection++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetSupportSection.html#DMPlexGetSupportSection
man:+DMPlexGetCones++DMPlexGetCones++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetCones.html#DMPlexGetCones
man:+DMPlexGetConeOrientations++DMPlexGetConeOrientations++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetConeOrientations.html#DMPlexGetConeOrientations
man:+DMPlexSetClosurePermutationTensor++DMPlexSetClosurePermutationTensor++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetClosurePermutationTensor.html#DMPlexSetClosurePermutationTensor
man:+DMPlexVecGetClosure++DMPlexVecGetClosure++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexVecGetClosure.html#DMPlexVecGetClosure
man:+DMPlexVecRestoreClosure++DMPlexVecRestoreClosure++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexVecRestoreClosure.html#DMPlexVecRestoreClosure
man:+DMPlexVecSetClosure++DMPlexVecSetClosure++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexVecSetClosure.html#DMPlexVecSetClosure
man:+DMPlexGetClosureIndices++DMPlexGetClosureIndices++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetClosureIndices.html#DMPlexGetClosureIndices
man:+DMPlexRestoreClosureIndices++DMPlexRestoreClosureIndices++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRestoreClosureIndices.html#DMPlexRestoreClosureIndices
man:+DMPlexMatSetClosure++DMPlexMatSetClosure++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMatSetClosure.html#DMPlexMatSetClosure
man:+DMPlexMatSetClosureGeneral++DMPlexMatSetClosureGeneral++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMatSetClosureGeneral.html#DMPlexMatSetClosureGeneral
man:+DMPlexGetVTKCellHeight++DMPlexGetVTKCellHeight++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetVTKCellHeight.html#DMPlexGetVTKCellHeight
man:+DMPlexSetVTKCellHeight++DMPlexSetVTKCellHeight++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetVTKCellHeight.html#DMPlexSetVTKCellHeight
man:+DMPlexGetCellTypeStratum++DMPlexGetCellTypeStratum++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetCellTypeStratum.html#DMPlexGetCellTypeStratum
man:+DMPlexGetDepthStratumGlobalSize++DMPlexGetDepthStratumGlobalSize++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetDepthStratumGlobalSize.html#DMPlexGetDepthStratumGlobalSize
man:+DMPlexCreateCellNumbering++DMPlexCreateCellNumbering++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateCellNumbering.html#DMPlexCreateCellNumbering
man:+DMPlexGetCellNumbering++DMPlexGetCellNumbering++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetCellNumbering.html#DMPlexGetCellNumbering
man:+DMPlexGetVertexNumbering++DMPlexGetVertexNumbering++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetVertexNumbering.html#DMPlexGetVertexNumbering
man:+DMPlexCreatePointNumbering++DMPlexCreatePointNumbering++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreatePointNumbering.html#DMPlexCreatePointNumbering
man:+DMPlexCreateEdgeNumbering++DMPlexCreateEdgeNumbering++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateEdgeNumbering.html#DMPlexCreateEdgeNumbering
man:+DMPlexCreateRankField++DMPlexCreateRankField++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateRankField.html#DMPlexCreateRankField
man:+DMPlexCreateLabelField++DMPlexCreateLabelField++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateLabelField.html#DMPlexCreateLabelField
man:+DMPlexCheckSymmetry++DMPlexCheckSymmetry++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCheckSymmetry.html#DMPlexCheckSymmetry
man:+DMPlexCheckSkeleton++DMPlexCheckSkeleton++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCheckSkeleton.html#DMPlexCheckSkeleton
man:+DMPlexCheckFaces++DMPlexCheckFaces++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCheckFaces.html#DMPlexCheckFaces
man:+DMPlexCheckGeometry++DMPlexCheckGeometry++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCheckGeometry.html#DMPlexCheckGeometry
man:+DMPlexCheckPointSF++DMPlexCheckPointSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCheckPointSF.html#DMPlexCheckPointSF
man:+DMPlexCheckOrphanVertices++DMPlexCheckOrphanVertices++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCheckOrphanVertices.html#DMPlexCheckOrphanVertices
man:+DMPlexCheck++DMPlexCheck++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCheck.html#DMPlexCheck
man:+DMPlexCheckCellShape++DMPlexCheckCellShape++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCheckCellShape.html#DMPlexCheckCellShape
man:+DMPlexComputeOrthogonalQuality++DMPlexComputeOrthogonalQuality++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeOrthogonalQuality.html#DMPlexComputeOrthogonalQuality
man:+DMPlexGetRegularRefinement++DMPlexGetRegularRefinement++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetRegularRefinement.html#DMPlexGetRegularRefinement
man:+DMPlexSetRegularRefinement++DMPlexSetRegularRefinement++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetRegularRefinement.html#DMPlexSetRegularRefinement
man:+DMPlexGetAnchors++DMPlexGetAnchors++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetAnchors.html#DMPlexGetAnchors
man:+DMPlexSetAnchors++DMPlexSetAnchors++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetAnchors.html#DMPlexSetAnchors
man:+DMPlexMonitorThroughput++DMPlexMonitorThroughput++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMonitorThroughput.html#DMPlexMonitorThroughput
man:+PETSC_VIEWER_EXODUSII_++PETSC_VIEWER_EXODUSII_++++man+https://petsc.org/release/manualpages/DMPlex/PETSC_VIEWER_EXODUSII_.html#PETSC_VIEWER_EXODUSII_
man:+PetscViewerExodusIISetZonalVariable++PetscViewerExodusIISetZonalVariable++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIISetZonalVariable.html#PetscViewerExodusIISetZonalVariable
man:+PetscViewerExodusIISetNodalVariable++PetscViewerExodusIISetNodalVariable++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIISetNodalVariable.html#PetscViewerExodusIISetNodalVariable
man:+PetscViewerExodusIIGetZonalVariable++PetscViewerExodusIIGetZonalVariable++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIIGetZonalVariable.html#PetscViewerExodusIIGetZonalVariable
man:+PetscViewerExodusIIGetNodalVariable++PetscViewerExodusIIGetNodalVariable++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIIGetNodalVariable.html#PetscViewerExodusIIGetNodalVariable
man:+PetscViewerExodusIISetZonalVariableName++PetscViewerExodusIISetZonalVariableName++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIISetZonalVariableName.html#PetscViewerExodusIISetZonalVariableName
man:+PetscViewerExodusIISetNodalVariableName++PetscViewerExodusIISetNodalVariableName++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIISetNodalVariableName.html#PetscViewerExodusIISetNodalVariableName
man:+PetscViewerExodusIIGetZonalVariableName++PetscViewerExodusIIGetZonalVariableName++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIIGetZonalVariableName.html#PetscViewerExodusIIGetZonalVariableName
man:+PetscViewerExodusIIGetNodalVariableName++PetscViewerExodusIIGetNodalVariableName++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIIGetNodalVariableName.html#PetscViewerExodusIIGetNodalVariableName
man:+PetscViewerExodusIISetZonalVariableNames++PetscViewerExodusIISetZonalVariableNames++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIISetZonalVariableNames.html#PetscViewerExodusIISetZonalVariableNames
man:+PetscViewerExodusIISetNodalVariableNames++PetscViewerExodusIISetNodalVariableNames++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIISetNodalVariableNames.html#PetscViewerExodusIISetNodalVariableNames
man:+PetscViewerExodusIIGetZonalVariableNames++PetscViewerExodusIIGetZonalVariableNames++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIIGetZonalVariableNames.html#PetscViewerExodusIIGetZonalVariableNames
man:+PetscViewerExodusIIGetNodalVariableNames++PetscViewerExodusIIGetNodalVariableNames++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIIGetNodalVariableNames.html#PetscViewerExodusIIGetNodalVariableNames
man:+PETSCVIEWEREXODUSII++PETSCVIEWEREXODUSII++++man+https://petsc.org/release/manualpages/DMPlex/PETSCVIEWEREXODUSII.html#PETSCVIEWEREXODUSII
man:+PetscViewerExodusIIGetNodalVariableIndex++PetscViewerExodusIIGetNodalVariableIndex++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIIGetNodalVariableIndex.html#PetscViewerExodusIIGetNodalVariableIndex
man:+PetscViewerExodusIIGetZonalVariableIndex++PetscViewerExodusIIGetZonalVariableIndex++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIIGetZonalVariableIndex.html#PetscViewerExodusIIGetZonalVariableIndex
man:+DMPlexCreateExodus++DMPlexCreateExodus++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateExodus.html#DMPlexCreateExodus
man:+DMPlexSetAdjacencyUser++DMPlexSetAdjacencyUser++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetAdjacencyUser.html#DMPlexSetAdjacencyUser
man:+DMPlexGetAdjacencyUser++DMPlexGetAdjacencyUser++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetAdjacencyUser.html#DMPlexGetAdjacencyUser
man:+DMPlexSetAdjacencyUseAnchors++DMPlexSetAdjacencyUseAnchors++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetAdjacencyUseAnchors.html#DMPlexSetAdjacencyUseAnchors
man:+DMPlexGetAdjacencyUseAnchors++DMPlexGetAdjacencyUseAnchors++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetAdjacencyUseAnchors.html#DMPlexGetAdjacencyUseAnchors
man:+DMPlexGetAdjacency++DMPlexGetAdjacency++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetAdjacency.html#DMPlexGetAdjacency
man:+DMPlexCreateTwoSidedProcessSF++DMPlexCreateTwoSidedProcessSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateTwoSidedProcessSF.html#DMPlexCreateTwoSidedProcessSF
man:+DMPlexDistributeOwnership++DMPlexDistributeOwnership++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexDistributeOwnership.html#DMPlexDistributeOwnership
man:+DMPlexCreateOverlapLabel++DMPlexCreateOverlapLabel++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateOverlapLabel.html#DMPlexCreateOverlapLabel
man:+DMPlexCreateOverlapLabelFromLabels++DMPlexCreateOverlapLabelFromLabels++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateOverlapLabelFromLabels.html#DMPlexCreateOverlapLabelFromLabels
man:+DMPlexCreateOverlapMigrationSF++DMPlexCreateOverlapMigrationSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateOverlapMigrationSF.html#DMPlexCreateOverlapMigrationSF
man:+DMPlexStratifyMigrationSF++DMPlexStratifyMigrationSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexStratifyMigrationSF.html#DMPlexStratifyMigrationSF
man:+DMPlexDistributeField++DMPlexDistributeField++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexDistributeField.html#DMPlexDistributeField
man:+DMPlexDistributeFieldIS++DMPlexDistributeFieldIS++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexDistributeFieldIS.html#DMPlexDistributeFieldIS
man:+DMPlexDistributeData++DMPlexDistributeData++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexDistributeData.html#DMPlexDistributeData
man:+DMPlexSetPartitionBalance++DMPlexSetPartitionBalance++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetPartitionBalance.html#DMPlexSetPartitionBalance
man:+DMPlexGetPartitionBalance++DMPlexGetPartitionBalance++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetPartitionBalance.html#DMPlexGetPartitionBalance
man:+DMPlexCreatePointSF++DMPlexCreatePointSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreatePointSF.html#DMPlexCreatePointSF
man:+DMPlexMigrate++DMPlexMigrate++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMigrate.html#DMPlexMigrate
man:+DMPlexRemapMigrationSF++DMPlexRemapMigrationSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRemapMigrationSF.html#DMPlexRemapMigrationSF
man:+DMPlexDistribute++DMPlexDistribute++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexDistribute.html#DMPlexDistribute
man:+DMPlexDistributeOverlap++DMPlexDistributeOverlap++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexDistributeOverlap.html#DMPlexDistributeOverlap
man:+DMPlexGetOverlap++DMPlexGetOverlap++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetOverlap.html#DMPlexGetOverlap
man:+DMPlexSetOverlap++DMPlexSetOverlap++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetOverlap.html#DMPlexSetOverlap
man:+DMPlexDistributeSetDefault++DMPlexDistributeSetDefault++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexDistributeSetDefault.html#DMPlexDistributeSetDefault
man:+DMPlexDistributeGetDefault++DMPlexDistributeGetDefault++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexDistributeGetDefault.html#DMPlexDistributeGetDefault
man:+DMPlexGetGatherDM++DMPlexGetGatherDM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGatherDM.html#DMPlexGetGatherDM
man:+DMPlexGetRedundantDM++DMPlexGetRedundantDM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetRedundantDM.html#DMPlexGetRedundantDM
man:+DMPlexIsDistributed++DMPlexIsDistributed++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexIsDistributed.html#DMPlexIsDistributed
man:+DMPlexDistributionSetName++DMPlexDistributionSetName++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexDistributionSetName.html#DMPlexDistributionSetName
man:+DMPlexDistributionGetName++DMPlexDistributionGetName++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexDistributionGetName.html#DMPlexDistributionGetName
man:+DMPlexOrientPoint++DMPlexOrientPoint++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexOrientPoint.html#DMPlexOrientPoint
man:+DMPlexOrient++DMPlexOrient++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexOrient.html#DMPlexOrient
man:+DMPlexSetIsoperiodicFaceSF++DMPlexSetIsoperiodicFaceSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetIsoperiodicFaceSF.html#DMPlexSetIsoperiodicFaceSF
man:+DMPlexGetIsoperiodicFaceSF++DMPlexGetIsoperiodicFaceSF++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetIsoperiodicFaceSF.html#DMPlexGetIsoperiodicFaceSF
man:+DMPlexSetIsoperiodicFaceTransform++DMPlexSetIsoperiodicFaceTransform++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetIsoperiodicFaceTransform.html#DMPlexSetIsoperiodicFaceTransform
man:+DMPlexGetPointLocal++DMPlexGetPointLocal++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetPointLocal.html#DMPlexGetPointLocal
man:+DMPlexPointLocalRead++DMPlexPointLocalRead++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPointLocalRead.html#DMPlexPointLocalRead
man:+DMPlexPointLocalRef++DMPlexPointLocalRef++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPointLocalRef.html#DMPlexPointLocalRef
man:+DMPlexGetPointLocalField++DMPlexGetPointLocalField++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetPointLocalField.html#DMPlexGetPointLocalField
man:+DMPlexPointLocalFieldRead++DMPlexPointLocalFieldRead++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPointLocalFieldRead.html#DMPlexPointLocalFieldRead
man:+DMPlexPointLocalFieldRef++DMPlexPointLocalFieldRef++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPointLocalFieldRef.html#DMPlexPointLocalFieldRef
man:+DMPlexGetPointGlobal++DMPlexGetPointGlobal++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetPointGlobal.html#DMPlexGetPointGlobal
man:+DMPlexPointGlobalRead++DMPlexPointGlobalRead++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPointGlobalRead.html#DMPlexPointGlobalRead
man:+DMPlexPointGlobalRef++DMPlexPointGlobalRef++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPointGlobalRef.html#DMPlexPointGlobalRef
man:+DMPlexGetPointGlobalField++DMPlexGetPointGlobalField++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetPointGlobalField.html#DMPlexGetPointGlobalField
man:+DMPlexPointGlobalFieldRead++DMPlexPointGlobalFieldRead++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPointGlobalFieldRead.html#DMPlexPointGlobalFieldRead
man:+DMPlexPointGlobalFieldRef++DMPlexPointGlobalFieldRef++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPointGlobalFieldRef.html#DMPlexPointGlobalFieldRef
man:+PetscViewerExodusIIGetId++PetscViewerExodusIIGetId++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIIGetId.html#PetscViewerExodusIIGetId
man:+PetscViewerExodusIISetOrder++PetscViewerExodusIISetOrder++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIISetOrder.html#PetscViewerExodusIISetOrder
man:+PetscViewerExodusIIGetOrder++PetscViewerExodusIIGetOrder++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIIGetOrder.html#PetscViewerExodusIIGetOrder
man:+PetscViewerExodusIIOpen++PetscViewerExodusIIOpen++++man+https://petsc.org/release/manualpages/DMPlex/PetscViewerExodusIIOpen.html#PetscViewerExodusIIOpen
man:+DMPlexCreateExodusFromFile++DMPlexCreateExodusFromFile++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateExodusFromFile.html#DMPlexCreateExodusFromFile
man:+DMPlexCheckInterfaceCones++DMPlexCheckInterfaceCones++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCheckInterfaceCones.html#DMPlexCheckInterfaceCones
man:+DMPlexGetScale++DMPlexGetScale++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetScale.html#DMPlexGetScale
man:+DMPlexSetScale++DMPlexSetScale++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetScale.html#DMPlexSetScale
man:+DMPlexGetUseCeed++DMPlexGetUseCeed++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetUseCeed.html#DMPlexGetUseCeed
man:+DMPlexSetUseCeed++DMPlexSetUseCeed++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetUseCeed.html#DMPlexSetUseCeed
man:+DMPlexGetUseMatClosurePermutation++DMPlexGetUseMatClosurePermutation++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetUseMatClosurePermutation.html#DMPlexGetUseMatClosurePermutation
man:+DMPlexSetUseMatClosurePermutation++DMPlexSetUseMatClosurePermutation++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetUseMatClosurePermutation.html#DMPlexSetUseMatClosurePermutation
man:+DMPlexCreateRigidBody++DMPlexCreateRigidBody++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateRigidBody.html#DMPlexCreateRigidBody
man:+DMPlexCreateRigidBodies++DMPlexCreateRigidBodies++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateRigidBodies.html#DMPlexCreateRigidBodies
man:+DMPlexSetMaxProjectionHeight++DMPlexSetMaxProjectionHeight++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetMaxProjectionHeight.html#DMPlexSetMaxProjectionHeight
man:+DMPlexGetMaxProjectionHeight++DMPlexGetMaxProjectionHeight++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetMaxProjectionHeight.html#DMPlexGetMaxProjectionHeight
man:+DMPlexGlobalToLocalBasis++DMPlexGlobalToLocalBasis++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGlobalToLocalBasis.html#DMPlexGlobalToLocalBasis
man:+DMPlexLocalToGlobalBasis++DMPlexLocalToGlobalBasis++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexLocalToGlobalBasis.html#DMPlexLocalToGlobalBasis
man:+DMPlexCreateBasisRotation++DMPlexCreateBasisRotation++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateBasisRotation.html#DMPlexCreateBasisRotation
man:+DMPlexInsertBoundaryValuesEssential++DMPlexInsertBoundaryValuesEssential++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInsertBoundaryValuesEssential.html#DMPlexInsertBoundaryValuesEssential
man:+DMPlexInsertBoundaryValuesEssentialField++DMPlexInsertBoundaryValuesEssentialField++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInsertBoundaryValuesEssentialField.html#DMPlexInsertBoundaryValuesEssentialField
man:+DMPlexInsertBoundaryValuesEssentialBdField++DMPlexInsertBoundaryValuesEssentialBdField++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInsertBoundaryValuesEssentialBdField.html#DMPlexInsertBoundaryValuesEssentialBdField
man:+DMPlexInsertBoundaryValuesRiemann++DMPlexInsertBoundaryValuesRiemann++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInsertBoundaryValuesRiemann.html#DMPlexInsertBoundaryValuesRiemann
man:+DMPlexInsertBoundaryValues++DMPlexInsertBoundaryValues++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInsertBoundaryValues.html#DMPlexInsertBoundaryValues
man:+DMPlexInsertTimeDerivativeBoundaryValues++DMPlexInsertTimeDerivativeBoundaryValues++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInsertTimeDerivativeBoundaryValues.html#DMPlexInsertTimeDerivativeBoundaryValues
man:+DMPlexComputeL2DiffLocal++DMPlexComputeL2DiffLocal++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeL2DiffLocal.html#DMPlexComputeL2DiffLocal
man:+DMPlexComputeL2DiffVec++DMPlexComputeL2DiffVec++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeL2DiffVec.html#DMPlexComputeL2DiffVec
man:+DMPlexComputeL2FluxDiffVecLocal++DMPlexComputeL2FluxDiffVecLocal++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeL2FluxDiffVecLocal.html#DMPlexComputeL2FluxDiffVecLocal
man:+DMPlexComputeL2FluxDiffVec++DMPlexComputeL2FluxDiffVec++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeL2FluxDiffVec.html#DMPlexComputeL2FluxDiffVec
man:+DMPlexComputeClementInterpolant++DMPlexComputeClementInterpolant++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeClementInterpolant.html#DMPlexComputeClementInterpolant
man:+DMPlexComputeGradientClementInterpolant++DMPlexComputeGradientClementInterpolant++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeGradientClementInterpolant.html#DMPlexComputeGradientClementInterpolant
man:+DMPlexComputeIntegralFEM++DMPlexComputeIntegralFEM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeIntegralFEM.html#DMPlexComputeIntegralFEM
man:+DMPlexComputeCellwiseIntegralFEM++DMPlexComputeCellwiseIntegralFEM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeCellwiseIntegralFEM.html#DMPlexComputeCellwiseIntegralFEM
man:+DMPlexComputeBdIntegral++DMPlexComputeBdIntegral++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeBdIntegral.html#DMPlexComputeBdIntegral
man:+DMPlexComputeInterpolatorNested++DMPlexComputeInterpolatorNested++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeInterpolatorNested.html#DMPlexComputeInterpolatorNested
man:+DMPlexComputeInterpolatorGeneral++DMPlexComputeInterpolatorGeneral++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeInterpolatorGeneral.html#DMPlexComputeInterpolatorGeneral
man:+DMPlexComputeMassMatrixGeneral++DMPlexComputeMassMatrixGeneral++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeMassMatrixGeneral.html#DMPlexComputeMassMatrixGeneral
man:+DMPlexComputeInjectorFEM++DMPlexComputeInjectorFEM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeInjectorFEM.html#DMPlexComputeInjectorFEM
man:+DMPlexGetCellFields++DMPlexGetCellFields++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetCellFields.html#DMPlexGetCellFields
man:+DMPlexRestoreCellFields++DMPlexRestoreCellFields++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRestoreCellFields.html#DMPlexRestoreCellFields
man:+DMPlexGetFaceFields++DMPlexGetFaceFields++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetFaceFields.html#DMPlexGetFaceFields
man:+DMPlexRestoreFaceFields++DMPlexRestoreFaceFields++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRestoreFaceFields.html#DMPlexRestoreFaceFields
man:+DMPlexGetFaceGeometry++DMPlexGetFaceGeometry++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetFaceGeometry.html#DMPlexGetFaceGeometry
man:+DMPlexRestoreFaceGeometry++DMPlexRestoreFaceGeometry++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRestoreFaceGeometry.html#DMPlexRestoreFaceGeometry
man:+DMPlexGetGeometryFVM++DMPlexGetGeometryFVM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeometryFVM.html#DMPlexGetGeometryFVM
man:+DMPlexGetGradientDM++DMPlexGetGradientDM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGradientDM.html#DMPlexGetGradientDM
man:+DMPlexComputeMoments++DMPlexComputeMoments++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeMoments.html#DMPlexComputeMoments
man:+DMPlexCreatePLYFromFile++DMPlexCreatePLYFromFile++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreatePLYFromFile.html#DMPlexCreatePLYFromFile
man:+DMPlexVTKWriteAll++DMPlexVTKWriteAll++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexVTKWriteAll.html#DMPlexVTKWriteAll
man:+DMPlexPreallocateOperator++DMPlexPreallocateOperator++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPreallocateOperator.html#DMPlexPreallocateOperator
man:+DMPlexCreateSection++DMPlexCreateSection++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateSection.html#DMPlexCreateSection
man:+DMPlexSetReferenceTree++DMPlexSetReferenceTree++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetReferenceTree.html#DMPlexSetReferenceTree
man:+DMPlexGetReferenceTree++DMPlexGetReferenceTree++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetReferenceTree.html#DMPlexGetReferenceTree
man:+DMPlexReferenceTreeGetChildSymmetry++DMPlexReferenceTreeGetChildSymmetry++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexReferenceTreeGetChildSymmetry.html#DMPlexReferenceTreeGetChildSymmetry
man:+DMPlexCreateDefaultReferenceTree++DMPlexCreateDefaultReferenceTree++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateDefaultReferenceTree.html#DMPlexCreateDefaultReferenceTree
man:+DMPlexSetTree++DMPlexSetTree++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetTree.html#DMPlexSetTree
man:+DMPlexGetTree++DMPlexGetTree++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetTree.html#DMPlexGetTree
man:+DMPlexGetTreeParent++DMPlexGetTreeParent++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetTreeParent.html#DMPlexGetTreeParent
man:+DMPlexGetTreeChildren++DMPlexGetTreeChildren++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetTreeChildren.html#DMPlexGetTreeChildren
man:+DMPlexTransferVecTree++DMPlexTransferVecTree++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransferVecTree.html#DMPlexTransferVecTree
man:+DMPlexFindVertices++DMPlexFindVertices++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexFindVertices.html#DMPlexFindVertices
man:+PetscGridHashSetGrid++PetscGridHashSetGrid++++man+https://petsc.org/release/manualpages/DMPlex/PetscGridHashSetGrid.html#PetscGridHashSetGrid
man:+PetscGridHashGetEnclosingBox++PetscGridHashGetEnclosingBox++++man+https://petsc.org/release/manualpages/DMPlex/PetscGridHashGetEnclosingBox.html#PetscGridHashGetEnclosingBox
man:+DMPlexComputeProjection2Dto1D++DMPlexComputeProjection2Dto1D++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeProjection2Dto1D.html#DMPlexComputeProjection2Dto1D
man:+DMPlexComputeProjection3Dto1D++DMPlexComputeProjection3Dto1D++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeProjection3Dto1D.html#DMPlexComputeProjection3Dto1D
man:+DMPlexComputeProjection3Dto2D++DMPlexComputeProjection3Dto2D++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeProjection3Dto2D.html#DMPlexComputeProjection3Dto2D
man:+DMPlexGetCellCoordinates++DMPlexGetCellCoordinates++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetCellCoordinates.html#DMPlexGetCellCoordinates
man:+DMPlexRestoreCellCoordinates++DMPlexRestoreCellCoordinates++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRestoreCellCoordinates.html#DMPlexRestoreCellCoordinates
man:+DMPlexComputeCellGeometryAffineFEM++DMPlexComputeCellGeometryAffineFEM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeCellGeometryAffineFEM.html#DMPlexComputeCellGeometryAffineFEM
man:+DMPlexComputeCellGeometryFEM++DMPlexComputeCellGeometryFEM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeCellGeometryFEM.html#DMPlexComputeCellGeometryFEM
man:+DMPlexComputeCellGeometryFVM++DMPlexComputeCellGeometryFVM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeCellGeometryFVM.html#DMPlexComputeCellGeometryFVM
man:+DMPlexComputeGeometryFVM++DMPlexComputeGeometryFVM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeGeometryFVM.html#DMPlexComputeGeometryFVM
man:+DMPlexGetMinRadius++DMPlexGetMinRadius++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetMinRadius.html#DMPlexGetMinRadius
man:+DMPlexSetMinRadius++DMPlexSetMinRadius++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetMinRadius.html#DMPlexSetMinRadius
man:+DMPlexComputeGradientFVM++DMPlexComputeGradientFVM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexComputeGradientFVM.html#DMPlexComputeGradientFVM
man:+DMPlexGetDataFVM++DMPlexGetDataFVM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetDataFVM.html#DMPlexGetDataFVM
man:+DMPlexCoordinatesToReference++DMPlexCoordinatesToReference++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCoordinatesToReference.html#DMPlexCoordinatesToReference
man:+DMPlexReferenceToCoordinates++DMPlexReferenceToCoordinates++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexReferenceToCoordinates.html#DMPlexReferenceToCoordinates
man:+DMPlexRemapGeometry++DMPlexRemapGeometry++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRemapGeometry.html#DMPlexRemapGeometry
man:+DMPlexShearGeometry++DMPlexShearGeometry++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexShearGeometry.html#DMPlexShearGeometry
man:+DMPlexGetLocalOffsets++DMPlexGetLocalOffsets++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetLocalOffsets.html#DMPlexGetLocalOffsets
man:+DMPlexGetLocalOffsetsSupport++DMPlexGetLocalOffsetsSupport++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetLocalOffsetsSupport.html#DMPlexGetLocalOffsetsSupport
man:+DMPlexGetCeedRestriction++DMPlexGetCeedRestriction++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetCeedRestriction.html#DMPlexGetCeedRestriction
man:+DMPlexGetOrdering++DMPlexGetOrdering++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetOrdering.html#DMPlexGetOrdering
man:+DMPlexGetOrdering1D++DMPlexGetOrdering1D++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetOrdering1D.html#DMPlexGetOrdering1D
man:+DMPlexPermute++DMPlexPermute++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexPermute.html#DMPlexPermute
man:+DMPlexReorderSetDefault++DMPlexReorderSetDefault++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexReorderSetDefault.html#DMPlexReorderSetDefault
man:+DMPlexReorderGetDefault++DMPlexReorderGetDefault++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexReorderGetDefault.html#DMPlexReorderGetDefault
man:+DMPlexExtrude++DMPlexExtrude++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexExtrude.html#DMPlexExtrude
man:+DMPlexInflateToGeomModelUseXYZ++DMPlexInflateToGeomModelUseXYZ++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInflateToGeomModelUseXYZ.html#DMPlexInflateToGeomModelUseXYZ
man:+DMPlexCreateGeomFromFile++DMPlexCreateGeomFromFile++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateGeomFromFile.html#DMPlexCreateGeomFromFile
man:+DMPlex_Surface_Grad++DMPlex_Surface_Grad++++man+https://petsc.org/release/manualpages/DMPlex/DMPlex_Surface_Grad.html#DMPlex_Surface_Grad
man:+DMPlexGeomDataAndGrads++DMPlexGeomDataAndGrads++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGeomDataAndGrads.html#DMPlexGeomDataAndGrads
man:+DMPlexModifyGeomModel++DMPlexModifyGeomModel++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexModifyGeomModel.html#DMPlexModifyGeomModel
man:+DMPlexGetGeomModelTUV++DMPlexGetGeomModelTUV++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomModelTUV.html#DMPlexGetGeomModelTUV
man:+DMPlexInflateToGeomModelUseTUV++DMPlexInflateToGeomModelUseTUV++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInflateToGeomModelUseTUV.html#DMPlexInflateToGeomModelUseTUV
man:+DMPlexInflateToGeomModel++DMPlexInflateToGeomModel++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInflateToGeomModel.html#DMPlexInflateToGeomModel
man:+DMPlexGetGeomModelBodies++DMPlexGetGeomModelBodies++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomModelBodies.html#DMPlexGetGeomModelBodies
man:+DMPlexGetGeomModelBodyShells++DMPlexGetGeomModelBodyShells++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomModelBodyShells.html#DMPlexGetGeomModelBodyShells
man:+DMPlexGetGeomModelBodyFaces++DMPlexGetGeomModelBodyFaces++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomModelBodyFaces.html#DMPlexGetGeomModelBodyFaces
man:+DMPlexGetGeomModelBodyLoops++DMPlexGetGeomModelBodyLoops++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomModelBodyLoops.html#DMPlexGetGeomModelBodyLoops
man:+DMPlexGetGeomModelShellFaces++DMPlexGetGeomModelShellFaces++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomModelShellFaces.html#DMPlexGetGeomModelShellFaces
man:+DMPlexGetGeomModelFaceLoops++DMPlexGetGeomModelFaceLoops++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomModelFaceLoops.html#DMPlexGetGeomModelFaceLoops
man:+DMPlexGetGeomModelFaceEdges++DMPlexGetGeomModelFaceEdges++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomModelFaceEdges.html#DMPlexGetGeomModelFaceEdges
man:+DMPlexGetGeomModelBodyEdges++DMPlexGetGeomModelBodyEdges++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomModelBodyEdges.html#DMPlexGetGeomModelBodyEdges
man:+DMPlexGetGeomModelBodyNodes++DMPlexGetGeomModelBodyNodes++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomModelBodyNodes.html#DMPlexGetGeomModelBodyNodes
man:+DMPlexGetGeomModelEdgeNodes++DMPlexGetGeomModelEdgeNodes++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomModelEdgeNodes.html#DMPlexGetGeomModelEdgeNodes
man:+DMPlexGetGeomID++DMPlexGetGeomID++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomID.html#DMPlexGetGeomID
man:+DMPlexGetGeomObject++DMPlexGetGeomObject++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomObject.html#DMPlexGetGeomObject
man:+DMPlexGetGeomFaceNumOfControlPoints++DMPlexGetGeomFaceNumOfControlPoints++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomFaceNumOfControlPoints.html#DMPlexGetGeomFaceNumOfControlPoints
man:+DMPlexGetGeomBodyMassProperties++DMPlexGetGeomBodyMassProperties++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomBodyMassProperties.html#DMPlexGetGeomBodyMassProperties
man:+DMPlexFreeGeomObject++DMPlexFreeGeomObject++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexFreeGeomObject.html#DMPlexFreeGeomObject
man:+DMPlexGetGeomCntrlPntAndWeightData++DMPlexGetGeomCntrlPntAndWeightData++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomCntrlPntAndWeightData.html#DMPlexGetGeomCntrlPntAndWeightData
man:+DMPlexGetGeomGradData++DMPlexGetGeomGradData++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomGradData.html#DMPlexGetGeomGradData
man:+DMPlexGetGeomCntrlPntMaps++DMPlexGetGeomCntrlPntMaps++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetGeomCntrlPntMaps.html#DMPlexGetGeomCntrlPntMaps
man:+DMPlexInvertCell++DMPlexInvertCell++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexInvertCell.html#DMPlexInvertCell
man:+DMPlexReorderCell++DMPlexReorderCell++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexReorderCell.html#DMPlexReorderCell
man:+DMPlexTriangleSetOptions++DMPlexTriangleSetOptions++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTriangleSetOptions.html#DMPlexTriangleSetOptions
man:+DMPlexTetgenSetOptions++DMPlexTetgenSetOptions++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTetgenSetOptions.html#DMPlexTetgenSetOptions
man:+DMPlexGenerate++DMPlexGenerate++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGenerate.html#DMPlexGenerate
man:+DMPlexTransformRegister++DMPlexTransformRegister++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformRegister.html#DMPlexTransformRegister
man:+DMPlexTransformRegisterAll++DMPlexTransformRegisterAll++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformRegisterAll.html#DMPlexTransformRegisterAll
man:+DMPlexTransformRegisterDestroy++DMPlexTransformRegisterDestroy++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformRegisterDestroy.html#DMPlexTransformRegisterDestroy
man:+DMPlexTransformCreate++DMPlexTransformCreate++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformCreate.html#DMPlexTransformCreate
man:+DMPlexTransformSetType++DMPlexTransformSetType++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformSetType.html#DMPlexTransformSetType
man:+DMPlexTransformGetType++DMPlexTransformGetType++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformGetType.html#DMPlexTransformGetType
man:+DMPlexTransformView++DMPlexTransformView++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformView.html#DMPlexTransformView
man:+DMPlexTransformSetFromOptions++DMPlexTransformSetFromOptions++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformSetFromOptions.html#DMPlexTransformSetFromOptions
man:+DMPlexTransformDestroy++DMPlexTransformDestroy++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformDestroy.html#DMPlexTransformDestroy
man:+DMPlexTransformSetUp++DMPlexTransformSetUp++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformSetUp.html#DMPlexTransformSetUp
man:+DMPlexTransformGetDM++DMPlexTransformGetDM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformGetDM.html#DMPlexTransformGetDM
man:+DMPlexTransformSetDM++DMPlexTransformSetDM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformSetDM.html#DMPlexTransformSetDM
man:+DMPlexTransformGetActive++DMPlexTransformGetActive++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformGetActive.html#DMPlexTransformGetActive
man:+DMPlexTransformSetActive++DMPlexTransformSetActive++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformSetActive.html#DMPlexTransformSetActive
man:+DMPlexTransformGetTransformTypes++DMPlexTransformGetTransformTypes++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformGetTransformTypes.html#DMPlexTransformGetTransformTypes
man:+DMPlexTransformSetTransformTypes++DMPlexTransformSetTransformTypes++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformSetTransformTypes.html#DMPlexTransformSetTransformTypes
man:+DMPlexTransformSetDimensions++DMPlexTransformSetDimensions++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformSetDimensions.html#DMPlexTransformSetDimensions
man:+DMPlexTransformGetMatchStrata++DMPlexTransformGetMatchStrata++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformGetMatchStrata.html#DMPlexTransformGetMatchStrata
man:+DMPlexTransformSetMatchStrata++DMPlexTransformSetMatchStrata++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformSetMatchStrata.html#DMPlexTransformSetMatchStrata
man:+DMPlexTransformGetTargetPoint++DMPlexTransformGetTargetPoint++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformGetTargetPoint.html#DMPlexTransformGetTargetPoint
man:+DMPlexTransformGetSourcePoint++DMPlexTransformGetSourcePoint++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformGetSourcePoint.html#DMPlexTransformGetSourcePoint
man:+DMPlexTransformCellTransform++DMPlexTransformCellTransform++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformCellTransform.html#DMPlexTransformCellTransform
man:+DMPlexTransformGetSubcellOrientation++DMPlexTransformGetSubcellOrientation++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformGetSubcellOrientation.html#DMPlexTransformGetSubcellOrientation
man:+DMPlexTransformGetCellVertices++DMPlexTransformGetCellVertices++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformGetCellVertices.html#DMPlexTransformGetCellVertices
man:+DMPlexTransformGetSubcellVertices++DMPlexTransformGetSubcellVertices++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformGetSubcellVertices.html#DMPlexTransformGetSubcellVertices
man:+DMPlexTransformMapCoordinates++DMPlexTransformMapCoordinates++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformMapCoordinates.html#DMPlexTransformMapCoordinates
man:+DMPlexTransformApply++DMPlexTransformApply++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformApply.html#DMPlexTransformApply
man:+DMPlexTransformCohesiveExtrudeGetTensor++DMPlexTransformCohesiveExtrudeGetTensor++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformCohesiveExtrudeGetTensor.html#DMPlexTransformCohesiveExtrudeGetTensor
man:+DMPlexTransformCohesiveExtrudeSetTensor++DMPlexTransformCohesiveExtrudeSetTensor++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformCohesiveExtrudeSetTensor.html#DMPlexTransformCohesiveExtrudeSetTensor
man:+DMPlexTransformCohesiveExtrudeGetWidth++DMPlexTransformCohesiveExtrudeGetWidth++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformCohesiveExtrudeGetWidth.html#DMPlexTransformCohesiveExtrudeGetWidth
man:+DMPlexTransformCohesiveExtrudeSetWidth++DMPlexTransformCohesiveExtrudeSetWidth++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformCohesiveExtrudeSetWidth.html#DMPlexTransformCohesiveExtrudeSetWidth
man:+DMPlexTransformExtrudeGetLayers++DMPlexTransformExtrudeGetLayers++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformExtrudeGetLayers.html#DMPlexTransformExtrudeGetLayers
man:+DMPlexTransformExtrudeSetLayers++DMPlexTransformExtrudeSetLayers++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformExtrudeSetLayers.html#DMPlexTransformExtrudeSetLayers
man:+DMPlexTransformExtrudeGetThickness++DMPlexTransformExtrudeGetThickness++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformExtrudeGetThickness.html#DMPlexTransformExtrudeGetThickness
man:+DMPlexTransformExtrudeSetThickness++DMPlexTransformExtrudeSetThickness++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformExtrudeSetThickness.html#DMPlexTransformExtrudeSetThickness
man:+DMPlexTransformExtrudeGetTensor++DMPlexTransformExtrudeGetTensor++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformExtrudeGetTensor.html#DMPlexTransformExtrudeGetTensor
man:+DMPlexTransformExtrudeSetTensor++DMPlexTransformExtrudeSetTensor++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformExtrudeSetTensor.html#DMPlexTransformExtrudeSetTensor
man:+DMPlexTransformExtrudeGetSymmetric++DMPlexTransformExtrudeGetSymmetric++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformExtrudeGetSymmetric.html#DMPlexTransformExtrudeGetSymmetric
man:+DMPlexTransformExtrudeSetSymmetric++DMPlexTransformExtrudeSetSymmetric++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformExtrudeSetSymmetric.html#DMPlexTransformExtrudeSetSymmetric
man:+DMPlexTransformExtrudeGetPeriodic++DMPlexTransformExtrudeGetPeriodic++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformExtrudeGetPeriodic.html#DMPlexTransformExtrudeGetPeriodic
man:+DMPlexTransformExtrudeSetPeriodic++DMPlexTransformExtrudeSetPeriodic++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformExtrudeSetPeriodic.html#DMPlexTransformExtrudeSetPeriodic
man:+DMPlexTransformExtrudeGetNormal++DMPlexTransformExtrudeGetNormal++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformExtrudeGetNormal.html#DMPlexTransformExtrudeGetNormal
man:+DMPlexTransformExtrudeSetNormal++DMPlexTransformExtrudeSetNormal++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformExtrudeSetNormal.html#DMPlexTransformExtrudeSetNormal
man:+DMPlexTransformExtrudeSetNormalFunction++DMPlexTransformExtrudeSetNormalFunction++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformExtrudeSetNormalFunction.html#DMPlexTransformExtrudeSetNormalFunction
man:+DMPlexTransformExtrudeSetThicknesses++DMPlexTransformExtrudeSetThicknesses++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexTransformExtrudeSetThicknesses.html#DMPlexTransformExtrudeSetThicknesses
man:+DMPlexRefineRegularGetAffineFaceTransforms++DMPlexRefineRegularGetAffineFaceTransforms++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRefineRegularGetAffineFaceTransforms.html#DMPlexRefineRegularGetAffineFaceTransforms
man:+DMPlexRefineRegularGetAffineTransforms++DMPlexRefineRegularGetAffineTransforms++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexRefineRegularGetAffineTransforms.html#DMPlexRefineRegularGetAffineTransforms
man:+DMPlexReconstructGradientsFVM++DMPlexReconstructGradientsFVM++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexReconstructGradientsFVM.html#DMPlexReconstructGradientsFVM
man:+DMPlexCreateCoordinateSpace++DMPlexCreateCoordinateSpace++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateCoordinateSpace.html#DMPlexCreateCoordinateSpace
man:+DMPlexCreateDoublet++DMPlexCreateDoublet++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateDoublet.html#DMPlexCreateDoublet
man:+DMPlexCreateBoxSurfaceMesh++DMPlexCreateBoxSurfaceMesh++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateBoxSurfaceMesh.html#DMPlexCreateBoxSurfaceMesh
man:+DMPlexCreateBoxMesh++DMPlexCreateBoxMesh++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateBoxMesh.html#DMPlexCreateBoxMesh
man:+DMPlexCreateWedgeBoxMesh++DMPlexCreateWedgeBoxMesh++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateWedgeBoxMesh.html#DMPlexCreateWedgeBoxMesh
man:+DMPlexCreateHypercubicMesh++DMPlexCreateHypercubicMesh++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateHypercubicMesh.html#DMPlexCreateHypercubicMesh
man:+DMPlexSetOptionsPrefix++DMPlexSetOptionsPrefix++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetOptionsPrefix.html#DMPlexSetOptionsPrefix
man:+DMPlexCreateHexCylinderMesh++DMPlexCreateHexCylinderMesh++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateHexCylinderMesh.html#DMPlexCreateHexCylinderMesh
man:+DMPlexCreateWedgeCylinderMesh++DMPlexCreateWedgeCylinderMesh++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateWedgeCylinderMesh.html#DMPlexCreateWedgeCylinderMesh
man:+DMPlexCreateTPSMesh++DMPlexCreateTPSMesh++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateTPSMesh.html#DMPlexCreateTPSMesh
man:+DMPlexCreateSphereMesh++DMPlexCreateSphereMesh++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateSphereMesh.html#DMPlexCreateSphereMesh
man:+DMPlexCreateBallMesh++DMPlexCreateBallMesh++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateBallMesh.html#DMPlexCreateBallMesh
man:+DMPlexCreateReferenceCell++DMPlexCreateReferenceCell++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateReferenceCell.html#DMPlexCreateReferenceCell
man:+DMPLEX++DMPLEX++++man+https://petsc.org/release/manualpages/DMPlex/DMPLEX.html#DMPLEX
man:+DMPlexCreate++DMPlexCreate++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreate.html#DMPlexCreate
man:+DMPlexBuildFromCellListParallel++DMPlexBuildFromCellListParallel++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexBuildFromCellListParallel.html#DMPlexBuildFromCellListParallel
man:+DMPlexBuildFromCellSectionParallel++DMPlexBuildFromCellSectionParallel++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexBuildFromCellSectionParallel.html#DMPlexBuildFromCellSectionParallel
man:+DMPlexBuildCoordinatesFromCellListParallel++DMPlexBuildCoordinatesFromCellListParallel++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexBuildCoordinatesFromCellListParallel.html#DMPlexBuildCoordinatesFromCellListParallel
man:+DMPlexCreateFromCellListParallelPetsc++DMPlexCreateFromCellListParallelPetsc++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateFromCellListParallelPetsc.html#DMPlexCreateFromCellListParallelPetsc
man:+DMPlexCreateFromCellSectionParallel++DMPlexCreateFromCellSectionParallel++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateFromCellSectionParallel.html#DMPlexCreateFromCellSectionParallel
man:+DMPlexBuildFromCellList++DMPlexBuildFromCellList++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexBuildFromCellList.html#DMPlexBuildFromCellList
man:+DMPlexBuildCoordinatesFromCellList++DMPlexBuildCoordinatesFromCellList++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexBuildCoordinatesFromCellList.html#DMPlexBuildCoordinatesFromCellList
man:+DMPlexCreateFromCellListPetsc++DMPlexCreateFromCellListPetsc++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateFromCellListPetsc.html#DMPlexCreateFromCellListPetsc
man:+DMPlexCreateFromDAG++DMPlexCreateFromDAG++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateFromDAG.html#DMPlexCreateFromDAG
man:+DMPlexCreateFromFile++DMPlexCreateFromFile++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateFromFile.html#DMPlexCreateFromFile
man:+DMPlexCreateEphemeral++DMPlexCreateEphemeral++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateEphemeral.html#DMPlexCreateEphemeral
man:+DMPlexMarkBoundaryFaces++DMPlexMarkBoundaryFaces++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexMarkBoundaryFaces.html#DMPlexMarkBoundaryFaces
man:+DMPlexLabelComplete++DMPlexLabelComplete++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexLabelComplete.html#DMPlexLabelComplete
man:+DMPlexLabelAddCells++DMPlexLabelAddCells++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexLabelAddCells.html#DMPlexLabelAddCells
man:+DMPlexLabelAddFaceCells++DMPlexLabelAddFaceCells++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexLabelAddFaceCells.html#DMPlexLabelAddFaceCells
man:+DMPlexLabelClearCells++DMPlexLabelClearCells++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexLabelClearCells.html#DMPlexLabelClearCells
man:+DMPlexConstructGhostCells++DMPlexConstructGhostCells++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexConstructGhostCells.html#DMPlexConstructGhostCells
man:+DMPlexConstructCohesiveCells++DMPlexConstructCohesiveCells++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexConstructCohesiveCells.html#DMPlexConstructCohesiveCells
man:+DMPlexLabelCohesiveComplete++DMPlexLabelCohesiveComplete++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexLabelCohesiveComplete.html#DMPlexLabelCohesiveComplete
man:+DMPlexCreateHybridMesh++DMPlexCreateHybridMesh++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateHybridMesh.html#DMPlexCreateHybridMesh
man:+DMPlexGetOrientedFace++DMPlexGetOrientedFace++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetOrientedFace.html#DMPlexGetOrientedFace
man:+DMPlexCreateSubmesh++DMPlexCreateSubmesh++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateSubmesh.html#DMPlexCreateSubmesh
man:+DMPlexCreateCohesiveSubmesh++DMPlexCreateCohesiveSubmesh++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexCreateCohesiveSubmesh.html#DMPlexCreateCohesiveSubmesh
man:+DMPlexReorderCohesiveSupports++DMPlexReorderCohesiveSupports++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexReorderCohesiveSupports.html#DMPlexReorderCohesiveSupports
man:+DMPlexFilter++DMPlexFilter++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexFilter.html#DMPlexFilter
man:+DMPlexGetSubpointMap++DMPlexGetSubpointMap++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetSubpointMap.html#DMPlexGetSubpointMap
man:+DMPlexSetSubpointMap++DMPlexSetSubpointMap++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexSetSubpointMap.html#DMPlexSetSubpointMap
man:+DMPlexGetSubpointIS++DMPlexGetSubpointIS++++man+https://petsc.org/release/manualpages/DMPlex/DMPlexGetSubpointIS.html#DMPlexGetSubpointIS
man:+DMGetEnclosureRelation++DMGetEnclosureRelation++++man+https://petsc.org/release/manualpages/DMPlex/DMGetEnclosureRelation.html#DMGetEnclosureRelation
man:+DMGetEnclosurePoint++DMGetEnclosurePoint++++man+https://petsc.org/release/manualpages/DMPlex/DMGetEnclosurePoint.html#DMGetEnclosurePoint
man:+DMSlicedSetGhosts++DMSlicedSetGhosts++++man+https://petsc.org/release/manualpages/DM/DMSlicedSetGhosts.html#DMSlicedSetGhosts
man:+DMSlicedSetPreallocation++DMSlicedSetPreallocation++++man+https://petsc.org/release/manualpages/DM/DMSlicedSetPreallocation.html#DMSlicedSetPreallocation
man:+DMSlicedSetBlockFills++DMSlicedSetBlockFills++++man+https://petsc.org/release/manualpages/DM/DMSlicedSetBlockFills.html#DMSlicedSetBlockFills
man:+DMSLICED++DMSLICED++++man+https://petsc.org/release/manualpages/DM/DMSLICED.html#DMSLICED
man:+DMSlicedCreate++DMSlicedCreate++++man+https://petsc.org/release/manualpages/DM/DMSlicedCreate.html#DMSlicedCreate
man:+DMFieldDestroy++DMFieldDestroy++++man+https://petsc.org/release/manualpages/DM/DMFieldDestroy.html#DMFieldDestroy
man:+DMFieldView++DMFieldView++++man+https://petsc.org/release/manualpages/DM/DMFieldView.html#DMFieldView
man:+DMFieldSetType++DMFieldSetType++++man+https://petsc.org/release/manualpages/DM/DMFieldSetType.html#DMFieldSetType
man:+DMFieldGetType++DMFieldGetType++++man+https://petsc.org/release/manualpages/DM/DMFieldGetType.html#DMFieldGetType
man:+DMFieldGetNumComponents++DMFieldGetNumComponents++++man+https://petsc.org/release/manualpages/DM/DMFieldGetNumComponents.html#DMFieldGetNumComponents
man:+DMFieldGetDM++DMFieldGetDM++++man+https://petsc.org/release/manualpages/DM/DMFieldGetDM.html#DMFieldGetDM
man:+DMFieldEvaluate++DMFieldEvaluate++++man+https://petsc.org/release/manualpages/DM/DMFieldEvaluate.html#DMFieldEvaluate
man:+DMFieldEvaluateFE++DMFieldEvaluateFE++++man+https://petsc.org/release/manualpages/DM/DMFieldEvaluateFE.html#DMFieldEvaluateFE
man:+DMFieldEvaluateFV++DMFieldEvaluateFV++++man+https://petsc.org/release/manualpages/DM/DMFieldEvaluateFV.html#DMFieldEvaluateFV
man:+DMFieldGetDegree++DMFieldGetDegree++++man+https://petsc.org/release/manualpages/DM/DMFieldGetDegree.html#DMFieldGetDegree
man:+DMFieldCreateDefaultQuadrature++DMFieldCreateDefaultQuadrature++++man+https://petsc.org/release/manualpages/DM/DMFieldCreateDefaultQuadrature.html#DMFieldCreateDefaultQuadrature
man:+DMFieldCreateFEGeom++DMFieldCreateFEGeom++++man+https://petsc.org/release/manualpages/DM/DMFieldCreateFEGeom.html#DMFieldCreateFEGeom
man:+DMFieldInitializePackage++DMFieldInitializePackage++++man+https://petsc.org/release/manualpages/DM/DMFieldInitializePackage.html#DMFieldInitializePackage
man:+DMFieldFinalizePackage++DMFieldFinalizePackage++++man+https://petsc.org/release/manualpages/DM/DMFieldFinalizePackage.html#DMFieldFinalizePackage
man:+DMFieldRegisterAll++DMFieldRegisterAll++++man+https://petsc.org/release/manualpages/DM/DMFieldRegisterAll.html#DMFieldRegisterAll
man:+DMFieldRegister++DMFieldRegister++++man+https://petsc.org/release/manualpages/DM/DMFieldRegister.html#DMFieldRegister
man:+TSSetFromOptions++TSSetFromOptions++++man+https://petsc.org/release/manualpages/TS/TSSetFromOptions.html#TSSetFromOptions
man:+TSGetTrajectory++TSGetTrajectory++++man+https://petsc.org/release/manualpages/TS/TSGetTrajectory.html#TSGetTrajectory
man:+TSSetSaveTrajectory++TSSetSaveTrajectory++++man+https://petsc.org/release/manualpages/TS/TSSetSaveTrajectory.html#TSSetSaveTrajectory
man:+TSResetTrajectory++TSResetTrajectory++++man+https://petsc.org/release/manualpages/TS/TSResetTrajectory.html#TSResetTrajectory
man:+TSRemoveTrajectory++TSRemoveTrajectory++++man+https://petsc.org/release/manualpages/TS/TSRemoveTrajectory.html#TSRemoveTrajectory
man:+TSComputeRHSJacobian++TSComputeRHSJacobian++++man+https://petsc.org/release/manualpages/TS/TSComputeRHSJacobian.html#TSComputeRHSJacobian
man:+TSComputeRHSFunction++TSComputeRHSFunction++++man+https://petsc.org/release/manualpages/TS/TSComputeRHSFunction.html#TSComputeRHSFunction
man:+TSComputeSolutionFunction++TSComputeSolutionFunction++++man+https://petsc.org/release/manualpages/TS/TSComputeSolutionFunction.html#TSComputeSolutionFunction
man:+TSComputeForcingFunction++TSComputeForcingFunction++++man+https://petsc.org/release/manualpages/TS/TSComputeForcingFunction.html#TSComputeForcingFunction
man:+TSComputeIFunction++TSComputeIFunction++++man+https://petsc.org/release/manualpages/TS/TSComputeIFunction.html#TSComputeIFunction
man:+TSComputeIJacobian++TSComputeIJacobian++++man+https://petsc.org/release/manualpages/TS/TSComputeIJacobian.html#TSComputeIJacobian
man:+TSSetRHSFunction++TSSetRHSFunction++++man+https://petsc.org/release/manualpages/TS/TSSetRHSFunction.html#TSSetRHSFunction
man:+TSSetSolutionFunction++TSSetSolutionFunction++++man+https://petsc.org/release/manualpages/TS/TSSetSolutionFunction.html#TSSetSolutionFunction
man:+TSSetForcingFunction++TSSetForcingFunction++++man+https://petsc.org/release/manualpages/TS/TSSetForcingFunction.html#TSSetForcingFunction
man:+TSSetRHSJacobian++TSSetRHSJacobian++++man+https://petsc.org/release/manualpages/TS/TSSetRHSJacobian.html#TSSetRHSJacobian
man:+TSSetIFunction++TSSetIFunction++++man+https://petsc.org/release/manualpages/TS/TSSetIFunction.html#TSSetIFunction
man:+TSGetIFunction++TSGetIFunction++++man+https://petsc.org/release/manualpages/TS/TSGetIFunction.html#TSGetIFunction
man:+TSGetRHSFunction++TSGetRHSFunction++++man+https://petsc.org/release/manualpages/TS/TSGetRHSFunction.html#TSGetRHSFunction
man:+TSSetIJacobian++TSSetIJacobian++++man+https://petsc.org/release/manualpages/TS/TSSetIJacobian.html#TSSetIJacobian
man:+TSRHSJacobianSetReuse++TSRHSJacobianSetReuse++++man+https://petsc.org/release/manualpages/TS/TSRHSJacobianSetReuse.html#TSRHSJacobianSetReuse
man:+TSSetI2Function++TSSetI2Function++++man+https://petsc.org/release/manualpages/TS/TSSetI2Function.html#TSSetI2Function
man:+TSGetI2Function++TSGetI2Function++++man+https://petsc.org/release/manualpages/TS/TSGetI2Function.html#TSGetI2Function
man:+TSSetI2Jacobian++TSSetI2Jacobian++++man+https://petsc.org/release/manualpages/TS/TSSetI2Jacobian.html#TSSetI2Jacobian
man:+TSGetI2Jacobian++TSGetI2Jacobian++++man+https://petsc.org/release/manualpages/TS/TSGetI2Jacobian.html#TSGetI2Jacobian
man:+TSComputeI2Function++TSComputeI2Function++++man+https://petsc.org/release/manualpages/TS/TSComputeI2Function.html#TSComputeI2Function
man:+TSComputeI2Jacobian++TSComputeI2Jacobian++++man+https://petsc.org/release/manualpages/TS/TSComputeI2Jacobian.html#TSComputeI2Jacobian
man:+TSSetTransientVariable++TSSetTransientVariable++++man+https://petsc.org/release/manualpages/TS/TSSetTransientVariable.html#TSSetTransientVariable
man:+TSComputeTransientVariable++TSComputeTransientVariable++++man+https://petsc.org/release/manualpages/TS/TSComputeTransientVariable.html#TSComputeTransientVariable
man:+TSHasTransientVariable++TSHasTransientVariable++++man+https://petsc.org/release/manualpages/TS/TSHasTransientVariable.html#TSHasTransientVariable
man:+TS2SetSolution++TS2SetSolution++++man+https://petsc.org/release/manualpages/TS/TS2SetSolution.html#TS2SetSolution
man:+TS2GetSolution++TS2GetSolution++++man+https://petsc.org/release/manualpages/TS/TS2GetSolution.html#TS2GetSolution
man:+TSLoad++TSLoad++++man+https://petsc.org/release/manualpages/TS/TSLoad.html#TSLoad
man:+TSViewFromOptions++TSViewFromOptions++++man+https://petsc.org/release/manualpages/TS/TSViewFromOptions.html#TSViewFromOptions
man:+TSView++TSView++++man+https://petsc.org/release/manualpages/TS/TSView.html#TSView
man:+TSSetApplicationContext++TSSetApplicationContext++++man+https://petsc.org/release/manualpages/TS/TSSetApplicationContext.html#TSSetApplicationContext
man:+TSGetApplicationContext++TSGetApplicationContext++++man+https://petsc.org/release/manualpages/TS/TSGetApplicationContext.html#TSGetApplicationContext
man:+TSGetStepNumber++TSGetStepNumber++++man+https://petsc.org/release/manualpages/TS/TSGetStepNumber.html#TSGetStepNumber
man:+TSSetStepNumber++TSSetStepNumber++++man+https://petsc.org/release/manualpages/TS/TSSetStepNumber.html#TSSetStepNumber
man:+TSSetTimeStep++TSSetTimeStep++++man+https://petsc.org/release/manualpages/TS/TSSetTimeStep.html#TSSetTimeStep
man:+TSSetExactFinalTime++TSSetExactFinalTime++++man+https://petsc.org/release/manualpages/TS/TSSetExactFinalTime.html#TSSetExactFinalTime
man:+TSGetExactFinalTime++TSGetExactFinalTime++++man+https://petsc.org/release/manualpages/TS/TSGetExactFinalTime.html#TSGetExactFinalTime
man:+TSGetTimeStep++TSGetTimeStep++++man+https://petsc.org/release/manualpages/TS/TSGetTimeStep.html#TSGetTimeStep
man:+TSGetSolution++TSGetSolution++++man+https://petsc.org/release/manualpages/TS/TSGetSolution.html#TSGetSolution
man:+TSGetSolutionComponents++TSGetSolutionComponents++++man+https://petsc.org/release/manualpages/TS/TSGetSolutionComponents.html#TSGetSolutionComponents
man:+TSGetAuxSolution++TSGetAuxSolution++++man+https://petsc.org/release/manualpages/TS/TSGetAuxSolution.html#TSGetAuxSolution
man:+TSGetTimeError++TSGetTimeError++++man+https://petsc.org/release/manualpages/TS/TSGetTimeError.html#TSGetTimeError
man:+TSSetTimeError++TSSetTimeError++++man+https://petsc.org/release/manualpages/TS/TSSetTimeError.html#TSSetTimeError
man:+TSSetProblemType++TSSetProblemType++++man+https://petsc.org/release/manualpages/TS/TSSetProblemType.html#TSSetProblemType
man:+TSGetProblemType++TSGetProblemType++++man+https://petsc.org/release/manualpages/TS/TSGetProblemType.html#TSGetProblemType
man:+TSSetUp++TSSetUp++++man+https://petsc.org/release/manualpages/TS/TSSetUp.html#TSSetUp
man:+TSReset++TSReset++++man+https://petsc.org/release/manualpages/TS/TSReset.html#TSReset
man:+TSDestroy++TSDestroy++++man+https://petsc.org/release/manualpages/TS/TSDestroy.html#TSDestroy
man:+TSGetSNES++TSGetSNES++++man+https://petsc.org/release/manualpages/TS/TSGetSNES.html#TSGetSNES
man:+TSSetSNES++TSSetSNES++++man+https://petsc.org/release/manualpages/TS/TSSetSNES.html#TSSetSNES
man:+TSGetKSP++TSGetKSP++++man+https://petsc.org/release/manualpages/TS/TSGetKSP.html#TSGetKSP
man:+TSSetMaxSteps++TSSetMaxSteps++++man+https://petsc.org/release/manualpages/TS/TSSetMaxSteps.html#TSSetMaxSteps
man:+TSGetMaxSteps++TSGetMaxSteps++++man+https://petsc.org/release/manualpages/TS/TSGetMaxSteps.html#TSGetMaxSteps
man:+TSSetMaxTime++TSSetMaxTime++++man+https://petsc.org/release/manualpages/TS/TSSetMaxTime.html#TSSetMaxTime
man:+TSGetMaxTime++TSGetMaxTime++++man+https://petsc.org/release/manualpages/TS/TSGetMaxTime.html#TSGetMaxTime
man:+TSSetInitialTimeStep++TSSetInitialTimeStep++++man+https://petsc.org/release/manualpages/TS/TSSetInitialTimeStep.html#TSSetInitialTimeStep
man:+TSGetDuration++TSGetDuration++++man+https://petsc.org/release/manualpages/TS/TSGetDuration.html#TSGetDuration
man:+TSSetDuration++TSSetDuration++++man+https://petsc.org/release/manualpages/TS/TSSetDuration.html#TSSetDuration
man:+TSGetTimeStepNumber++TSGetTimeStepNumber++++man+https://petsc.org/release/manualpages/TS/TSGetTimeStepNumber.html#TSGetTimeStepNumber
man:+TSGetTotalSteps++TSGetTotalSteps++++man+https://petsc.org/release/manualpages/TS/TSGetTotalSteps.html#TSGetTotalSteps
man:+TSSetSolution++TSSetSolution++++man+https://petsc.org/release/manualpages/TS/TSSetSolution.html#TSSetSolution
man:+TSSetPreStep++TSSetPreStep++++man+https://petsc.org/release/manualpages/TS/TSSetPreStep.html#TSSetPreStep
man:+TSPreStep++TSPreStep++++man+https://petsc.org/release/manualpages/TS/TSPreStep.html#TSPreStep
man:+TSSetPreStage++TSSetPreStage++++man+https://petsc.org/release/manualpages/TS/TSSetPreStage.html#TSSetPreStage
man:+TSSetPostStage++TSSetPostStage++++man+https://petsc.org/release/manualpages/TS/TSSetPostStage.html#TSSetPostStage
man:+TSSetPostEvaluate++TSSetPostEvaluate++++man+https://petsc.org/release/manualpages/TS/TSSetPostEvaluate.html#TSSetPostEvaluate
man:+TSPreStage++TSPreStage++++man+https://petsc.org/release/manualpages/TS/TSPreStage.html#TSPreStage
man:+TSPostStage++TSPostStage++++man+https://petsc.org/release/manualpages/TS/TSPostStage.html#TSPostStage
man:+TSPostEvaluate++TSPostEvaluate++++man+https://petsc.org/release/manualpages/TS/TSPostEvaluate.html#TSPostEvaluate
man:+TSSetPostStep++TSSetPostStep++++man+https://petsc.org/release/manualpages/TS/TSSetPostStep.html#TSSetPostStep
man:+TSPostStep++TSPostStep++++man+https://petsc.org/release/manualpages/TS/TSPostStep.html#TSPostStep
man:+TSInterpolate++TSInterpolate++++man+https://petsc.org/release/manualpages/TS/TSInterpolate.html#TSInterpolate
man:+TSStep++TSStep++++man+https://petsc.org/release/manualpages/TS/TSStep.html#TSStep
man:+TSEvaluateWLTE++TSEvaluateWLTE++++man+https://petsc.org/release/manualpages/TS/TSEvaluateWLTE.html#TSEvaluateWLTE
man:+TSEvaluateStep++TSEvaluateStep++++man+https://petsc.org/release/manualpages/TS/TSEvaluateStep.html#TSEvaluateStep
man:+TSGetComputeInitialCondition++TSGetComputeInitialCondition++++man+https://petsc.org/release/manualpages/TS/TSGetComputeInitialCondition.html#TSGetComputeInitialCondition
man:+TSSetComputeInitialCondition++TSSetComputeInitialCondition++++man+https://petsc.org/release/manualpages/TS/TSSetComputeInitialCondition.html#TSSetComputeInitialCondition
man:+TSComputeInitialCondition++TSComputeInitialCondition++++man+https://petsc.org/release/manualpages/TS/TSComputeInitialCondition.html#TSComputeInitialCondition
man:+TSGetComputeExactError++TSGetComputeExactError++++man+https://petsc.org/release/manualpages/TS/TSGetComputeExactError.html#TSGetComputeExactError
man:+TSSetComputeExactError++TSSetComputeExactError++++man+https://petsc.org/release/manualpages/TS/TSSetComputeExactError.html#TSSetComputeExactError
man:+TSComputeExactError++TSComputeExactError++++man+https://petsc.org/release/manualpages/TS/TSComputeExactError.html#TSComputeExactError
man:+TSSetResize++TSSetResize++++man+https://petsc.org/release/manualpages/TS/TSSetResize.html#TSSetResize
man:+TSResizeRegisterVec++TSResizeRegisterVec++++man+https://petsc.org/release/manualpages/TS/TSResizeRegisterVec.html#TSResizeRegisterVec
man:+TSResizeRetrieveVec++TSResizeRetrieveVec++++man+https://petsc.org/release/manualpages/TS/TSResizeRetrieveVec.html#TSResizeRetrieveVec
man:+TSResize++TSResize++++man+https://petsc.org/release/manualpages/TS/TSResize.html#TSResize
man:+TSSolve++TSSolve++++man+https://petsc.org/release/manualpages/TS/TSSolve.html#TSSolve
man:+TSGetTime++TSGetTime++++man+https://petsc.org/release/manualpages/TS/TSGetTime.html#TSGetTime
man:+TSGetPrevTime++TSGetPrevTime++++man+https://petsc.org/release/manualpages/TS/TSGetPrevTime.html#TSGetPrevTime
man:+TSSetTime++TSSetTime++++man+https://petsc.org/release/manualpages/TS/TSSetTime.html#TSSetTime
man:+TSSetOptionsPrefix++TSSetOptionsPrefix++++man+https://petsc.org/release/manualpages/TS/TSSetOptionsPrefix.html#TSSetOptionsPrefix
man:+TSAppendOptionsPrefix++TSAppendOptionsPrefix++++man+https://petsc.org/release/manualpages/TS/TSAppendOptionsPrefix.html#TSAppendOptionsPrefix
man:+TSGetOptionsPrefix++TSGetOptionsPrefix++++man+https://petsc.org/release/manualpages/TS/TSGetOptionsPrefix.html#TSGetOptionsPrefix
man:+TSGetRHSJacobian++TSGetRHSJacobian++++man+https://petsc.org/release/manualpages/TS/TSGetRHSJacobian.html#TSGetRHSJacobian
man:+TSGetIJacobian++TSGetIJacobian++++man+https://petsc.org/release/manualpages/TS/TSGetIJacobian.html#TSGetIJacobian
man:+TSSetDM++TSSetDM++++man+https://petsc.org/release/manualpages/TS/TSSetDM.html#TSSetDM
man:+TSGetDM++TSGetDM++++man+https://petsc.org/release/manualpages/TS/TSGetDM.html#TSGetDM
man:+SNESTSFormFunction++SNESTSFormFunction++++man+https://petsc.org/release/manualpages/TS/SNESTSFormFunction.html#SNESTSFormFunction
man:+SNESTSFormJacobian++SNESTSFormJacobian++++man+https://petsc.org/release/manualpages/TS/SNESTSFormJacobian.html#SNESTSFormJacobian
man:+TSComputeRHSFunctionLinear++TSComputeRHSFunctionLinear++++man+https://petsc.org/release/manualpages/TS/TSComputeRHSFunctionLinear.html#TSComputeRHSFunctionLinear
man:+TSComputeRHSJacobianConstant++TSComputeRHSJacobianConstant++++man+https://petsc.org/release/manualpages/TS/TSComputeRHSJacobianConstant.html#TSComputeRHSJacobianConstant
man:+TSComputeIFunctionLinear++TSComputeIFunctionLinear++++man+https://petsc.org/release/manualpages/TS/TSComputeIFunctionLinear.html#TSComputeIFunctionLinear
man:+TSComputeIJacobianConstant++TSComputeIJacobianConstant++++man+https://petsc.org/release/manualpages/TS/TSComputeIJacobianConstant.html#TSComputeIJacobianConstant
man:+TSGetEquationType++TSGetEquationType++++man+https://petsc.org/release/manualpages/TS/TSGetEquationType.html#TSGetEquationType
man:+TSSetEquationType++TSSetEquationType++++man+https://petsc.org/release/manualpages/TS/TSSetEquationType.html#TSSetEquationType
man:+TSGetConvergedReason++TSGetConvergedReason++++man+https://petsc.org/release/manualpages/TS/TSGetConvergedReason.html#TSGetConvergedReason
man:+TSSetConvergedReason++TSSetConvergedReason++++man+https://petsc.org/release/manualpages/TS/TSSetConvergedReason.html#TSSetConvergedReason
man:+TSGetSolveTime++TSGetSolveTime++++man+https://petsc.org/release/manualpages/TS/TSGetSolveTime.html#TSGetSolveTime
man:+TSGetSNESIterations++TSGetSNESIterations++++man+https://petsc.org/release/manualpages/TS/TSGetSNESIterations.html#TSGetSNESIterations
man:+TSGetKSPIterations++TSGetKSPIterations++++man+https://petsc.org/release/manualpages/TS/TSGetKSPIterations.html#TSGetKSPIterations
man:+TSGetStepRejections++TSGetStepRejections++++man+https://petsc.org/release/manualpages/TS/TSGetStepRejections.html#TSGetStepRejections
man:+TSGetSNESFailures++TSGetSNESFailures++++man+https://petsc.org/release/manualpages/TS/TSGetSNESFailures.html#TSGetSNESFailures
man:+TSSetMaxStepRejections++TSSetMaxStepRejections++++man+https://petsc.org/release/manualpages/TS/TSSetMaxStepRejections.html#TSSetMaxStepRejections
man:+TSSetMaxSNESFailures++TSSetMaxSNESFailures++++man+https://petsc.org/release/manualpages/TS/TSSetMaxSNESFailures.html#TSSetMaxSNESFailures
man:+TSSetErrorIfStepFails++TSSetErrorIfStepFails++++man+https://petsc.org/release/manualpages/TS/TSSetErrorIfStepFails.html#TSSetErrorIfStepFails
man:+TSGetAdapt++TSGetAdapt++++man+https://petsc.org/release/manualpages/TS/TSGetAdapt.html#TSGetAdapt
man:+TSSetTolerances++TSSetTolerances++++man+https://petsc.org/release/manualpages/TS/TSSetTolerances.html#TSSetTolerances
man:+TSGetTolerances++TSGetTolerances++++man+https://petsc.org/release/manualpages/TS/TSGetTolerances.html#TSGetTolerances
man:+TSErrorWeightedNorm++TSErrorWeightedNorm++++man+https://petsc.org/release/manualpages/TS/TSErrorWeightedNorm.html#TSErrorWeightedNorm
man:+TSErrorWeightedENorm++TSErrorWeightedENorm++++man+https://petsc.org/release/manualpages/TS/TSErrorWeightedENorm.html#TSErrorWeightedENorm
man:+TSSetCFLTimeLocal++TSSetCFLTimeLocal++++man+https://petsc.org/release/manualpages/TS/TSSetCFLTimeLocal.html#TSSetCFLTimeLocal
man:+TSGetCFLTime++TSGetCFLTime++++man+https://petsc.org/release/manualpages/TS/TSGetCFLTime.html#TSGetCFLTime
man:+TSVISetVariableBounds++TSVISetVariableBounds++++man+https://petsc.org/release/manualpages/TS/TSVISetVariableBounds.html#TSVISetVariableBounds
man:+TSComputeLinearStability++TSComputeLinearStability++++man+https://petsc.org/release/manualpages/TS/TSComputeLinearStability.html#TSComputeLinearStability
man:+TSRestartStep++TSRestartStep++++man+https://petsc.org/release/manualpages/TS/TSRestartStep.html#TSRestartStep
man:+TSRollBack++TSRollBack++++man+https://petsc.org/release/manualpages/TS/TSRollBack.html#TSRollBack
man:+TSGetStepRollBack++TSGetStepRollBack++++man+https://petsc.org/release/manualpages/TS/TSGetStepRollBack.html#TSGetStepRollBack
man:+TSGetStepResize++TSGetStepResize++++man+https://petsc.org/release/manualpages/TS/TSGetStepResize.html#TSGetStepResize
man:+TSGetStages++TSGetStages++++man+https://petsc.org/release/manualpages/TS/TSGetStages.html#TSGetStages
man:+TSComputeIJacobianDefaultColor++TSComputeIJacobianDefaultColor++++man+https://petsc.org/release/manualpages/TS/TSComputeIJacobianDefaultColor.html#TSComputeIJacobianDefaultColor
man:+TSSetFunctionDomainError++TSSetFunctionDomainError++++man+https://petsc.org/release/manualpages/TS/TSSetFunctionDomainError.html#TSSetFunctionDomainError
man:+TSFunctionDomainError++TSFunctionDomainError++++man+https://petsc.org/release/manualpages/TS/TSFunctionDomainError.html#TSFunctionDomainError
man:+TSClone++TSClone++++man+https://petsc.org/release/manualpages/TS/TSClone.html#TSClone
man:+TSRHSJacobianTest++TSRHSJacobianTest++++man+https://petsc.org/release/manualpages/TS/TSRHSJacobianTest.html#TSRHSJacobianTest
man:+TSRHSJacobianTestTranspose++TSRHSJacobianTestTranspose++++man+https://petsc.org/release/manualpages/TS/TSRHSJacobianTestTranspose.html#TSRHSJacobianTestTranspose
man:+TSSetUseSplitRHSFunction++TSSetUseSplitRHSFunction++++man+https://petsc.org/release/manualpages/TS/TSSetUseSplitRHSFunction.html#TSSetUseSplitRHSFunction
man:+TSGetUseSplitRHSFunction++TSGetUseSplitRHSFunction++++man+https://petsc.org/release/manualpages/TS/TSGetUseSplitRHSFunction.html#TSGetUseSplitRHSFunction
man:+TSSetMatStructure++TSSetMatStructure++++man+https://petsc.org/release/manualpages/TS/TSSetMatStructure.html#TSSetMatStructure
man:+TSSetEvaluationTimes++TSSetEvaluationTimes++++man+https://petsc.org/release/manualpages/TS/TSSetEvaluationTimes.html#TSSetEvaluationTimes
man:+TSGetEvaluationTimes++TSGetEvaluationTimes++++man+https://petsc.org/release/manualpages/TS/TSGetEvaluationTimes.html#TSGetEvaluationTimes
man:+TSGetEvaluationSolutions++TSGetEvaluationSolutions++++man+https://petsc.org/release/manualpages/TS/TSGetEvaluationSolutions.html#TSGetEvaluationSolutions
man:+TSSetTimeSpan++TSSetTimeSpan++++man+https://petsc.org/release/manualpages/TS/TSSetTimeSpan.html#TSSetTimeSpan
man:+TSPruneIJacobianColor++TSPruneIJacobianColor++++man+https://petsc.org/release/manualpages/TS/TSPruneIJacobianColor.html#TSPruneIJacobianColor
man:+TSRegisterAll++TSRegisterAll++++man+https://petsc.org/release/manualpages/TS/TSRegisterAll.html#TSRegisterAll
man:+TSSetType++TSSetType++++man+https://petsc.org/release/manualpages/TS/TSSetType.html#TSSetType
man:+TSGetType++TSGetType++++man+https://petsc.org/release/manualpages/TS/TSGetType.html#TSGetType
man:+TSRegister++TSRegister++++man+https://petsc.org/release/manualpages/TS/TSRegister.html#TSRegister
man:+TSSetRHSJacobianP++TSSetRHSJacobianP++++man+https://petsc.org/release/manualpages/Sensitivity/TSSetRHSJacobianP.html#TSSetRHSJacobianP
man:+TSGetRHSJacobianP++TSGetRHSJacobianP++++man+https://petsc.org/release/manualpages/Sensitivity/TSGetRHSJacobianP.html#TSGetRHSJacobianP
man:+TSComputeRHSJacobianP++TSComputeRHSJacobianP++++man+https://petsc.org/release/manualpages/Sensitivity/TSComputeRHSJacobianP.html#TSComputeRHSJacobianP
man:+TSSetIJacobianP++TSSetIJacobianP++++man+https://petsc.org/release/manualpages/Sensitivity/TSSetIJacobianP.html#TSSetIJacobianP
man:+TSComputeIJacobianP++TSComputeIJacobianP++++man+https://petsc.org/release/manualpages/Sensitivity/TSComputeIJacobianP.html#TSComputeIJacobianP
man:+TSSetCostIntegrand++TSSetCostIntegrand++++man+https://petsc.org/release/manualpages/Sensitivity/TSSetCostIntegrand.html#TSSetCostIntegrand
man:+TSGetCostIntegral++TSGetCostIntegral++++man+https://petsc.org/release/manualpages/Sensitivity/TSGetCostIntegral.html#TSGetCostIntegral
man:+TSComputeCostIntegrand++TSComputeCostIntegrand++++man+https://petsc.org/release/manualpages/Sensitivity/TSComputeCostIntegrand.html#TSComputeCostIntegrand
man:+TSComputeDRDUFunction++TSComputeDRDUFunction++++man+https://petsc.org/release/manualpages/Sensitivity/TSComputeDRDUFunction.html#TSComputeDRDUFunction
man:+TSComputeDRDPFunction++TSComputeDRDPFunction++++man+https://petsc.org/release/manualpages/Sensitivity/TSComputeDRDPFunction.html#TSComputeDRDPFunction
man:+TSSetIHessianProduct++TSSetIHessianProduct++++man+https://petsc.org/release/manualpages/Sensitivity/TSSetIHessianProduct.html#TSSetIHessianProduct
man:+TSComputeIHessianProductFunctionUU++TSComputeIHessianProductFunctionUU++++man+https://petsc.org/release/manualpages/Sensitivity/TSComputeIHessianProductFunctionUU.html#TSComputeIHessianProductFunctionUU
man:+TSComputeIHessianProductFunctionUP++TSComputeIHessianProductFunctionUP++++man+https://petsc.org/release/manualpages/Sensitivity/TSComputeIHessianProductFunctionUP.html#TSComputeIHessianProductFunctionUP
man:+TSComputeIHessianProductFunctionPU++TSComputeIHessianProductFunctionPU++++man+https://petsc.org/release/manualpages/Sensitivity/TSComputeIHessianProductFunctionPU.html#TSComputeIHessianProductFunctionPU
man:+TSComputeIHessianProductFunctionPP++TSComputeIHessianProductFunctionPP++++man+https://petsc.org/release/manualpages/Sensitivity/TSComputeIHessianProductFunctionPP.html#TSComputeIHessianProductFunctionPP
man:+TSSetRHSHessianProduct++TSSetRHSHessianProduct++++man+https://petsc.org/release/manualpages/Sensitivity/TSSetRHSHessianProduct.html#TSSetRHSHessianProduct
man:+TSComputeRHSHessianProductFunctionUU++TSComputeRHSHessianProductFunctionUU++++man+https://petsc.org/release/manualpages/Sensitivity/TSComputeRHSHessianProductFunctionUU.html#TSComputeRHSHessianProductFunctionUU
man:+TSComputeRHSHessianProductFunctionUP++TSComputeRHSHessianProductFunctionUP++++man+https://petsc.org/release/manualpages/Sensitivity/TSComputeRHSHessianProductFunctionUP.html#TSComputeRHSHessianProductFunctionUP
man:+TSComputeRHSHessianProductFunctionPU++TSComputeRHSHessianProductFunctionPU++++man+https://petsc.org/release/manualpages/Sensitivity/TSComputeRHSHessianProductFunctionPU.html#TSComputeRHSHessianProductFunctionPU
man:+TSComputeRHSHessianProductFunctionPP++TSComputeRHSHessianProductFunctionPP++++man+https://petsc.org/release/manualpages/Sensitivity/TSComputeRHSHessianProductFunctionPP.html#TSComputeRHSHessianProductFunctionPP
man:+TSSetCostGradients++TSSetCostGradients++++man+https://petsc.org/release/manualpages/Sensitivity/TSSetCostGradients.html#TSSetCostGradients
man:+TSGetCostGradients++TSGetCostGradients++++man+https://petsc.org/release/manualpages/Sensitivity/TSGetCostGradients.html#TSGetCostGradients
man:+TSSetCostHessianProducts++TSSetCostHessianProducts++++man+https://petsc.org/release/manualpages/Sensitivity/TSSetCostHessianProducts.html#TSSetCostHessianProducts
man:+TSGetCostHessianProducts++TSGetCostHessianProducts++++man+https://petsc.org/release/manualpages/Sensitivity/TSGetCostHessianProducts.html#TSGetCostHessianProducts
man:+TSAdjointSetForward++TSAdjointSetForward++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointSetForward.html#TSAdjointSetForward
man:+TSAdjointResetForward++TSAdjointResetForward++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointResetForward.html#TSAdjointResetForward
man:+TSAdjointSetUp++TSAdjointSetUp++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointSetUp.html#TSAdjointSetUp
man:+TSAdjointReset++TSAdjointReset++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointReset.html#TSAdjointReset
man:+TSAdjointSetSteps++TSAdjointSetSteps++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointSetSteps.html#TSAdjointSetSteps
man:+TSAdjointSetRHSJacobian++TSAdjointSetRHSJacobian++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointSetRHSJacobian.html#TSAdjointSetRHSJacobian
man:+TSAdjointComputeRHSJacobian++TSAdjointComputeRHSJacobian++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointComputeRHSJacobian.html#TSAdjointComputeRHSJacobian
man:+TSAdjointComputeDRDYFunction++TSAdjointComputeDRDYFunction++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointComputeDRDYFunction.html#TSAdjointComputeDRDYFunction
man:+TSAdjointComputeDRDPFunction++TSAdjointComputeDRDPFunction++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointComputeDRDPFunction.html#TSAdjointComputeDRDPFunction
man:+TSAdjointMonitorSensi++TSAdjointMonitorSensi++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointMonitorSensi.html#TSAdjointMonitorSensi
man:+TSAdjointMonitorSetFromOptions++TSAdjointMonitorSetFromOptions++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointMonitorSetFromOptions.html#TSAdjointMonitorSetFromOptions
man:+TSAdjointMonitorSet++TSAdjointMonitorSet++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointMonitorSet.html#TSAdjointMonitorSet
man:+TSAdjointMonitorCancel++TSAdjointMonitorCancel++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointMonitorCancel.html#TSAdjointMonitorCancel
man:+TSAdjointMonitorDefault++TSAdjointMonitorDefault++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointMonitorDefault.html#TSAdjointMonitorDefault
man:+TSAdjointMonitorDrawSensi++TSAdjointMonitorDrawSensi++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointMonitorDrawSensi.html#TSAdjointMonitorDrawSensi
man:+TSAdjointSetFromOptions++TSAdjointSetFromOptions++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointSetFromOptions.html#TSAdjointSetFromOptions
man:+TSAdjointStep++TSAdjointStep++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointStep.html#TSAdjointStep
man:+TSAdjointSolve++TSAdjointSolve++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointSolve.html#TSAdjointSolve
man:+TSAdjointMonitor++TSAdjointMonitor++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointMonitor.html#TSAdjointMonitor
man:+TSAdjointCostIntegral++TSAdjointCostIntegral++++man+https://petsc.org/release/manualpages/Sensitivity/TSAdjointCostIntegral.html#TSAdjointCostIntegral
man:+TSForwardSetUp++TSForwardSetUp++++man+https://petsc.org/release/manualpages/Sensitivity/TSForwardSetUp.html#TSForwardSetUp
man:+TSForwardReset++TSForwardReset++++man+https://petsc.org/release/manualpages/Sensitivity/TSForwardReset.html#TSForwardReset
man:+TSForwardSetIntegralGradients++TSForwardSetIntegralGradients++++man+https://petsc.org/release/manualpages/Sensitivity/TSForwardSetIntegralGradients.html#TSForwardSetIntegralGradients
man:+TSForwardGetIntegralGradients++TSForwardGetIntegralGradients++++man+https://petsc.org/release/manualpages/Sensitivity/TSForwardGetIntegralGradients.html#TSForwardGetIntegralGradients
man:+TSForwardStep++TSForwardStep++++man+https://petsc.org/release/manualpages/Sensitivity/TSForwardStep.html#TSForwardStep
man:+TSForwardSetSensitivities++TSForwardSetSensitivities++++man+https://petsc.org/release/manualpages/Sensitivity/TSForwardSetSensitivities.html#TSForwardSetSensitivities
man:+TSForwardGetSensitivities++TSForwardGetSensitivities++++man+https://petsc.org/release/manualpages/Sensitivity/TSForwardGetSensitivities.html#TSForwardGetSensitivities
man:+TSForwardCostIntegral++TSForwardCostIntegral++++man+https://petsc.org/release/manualpages/Sensitivity/TSForwardCostIntegral.html#TSForwardCostIntegral
man:+TSForwardSetInitialSensitivities++TSForwardSetInitialSensitivities++++man+https://petsc.org/release/manualpages/Sensitivity/TSForwardSetInitialSensitivities.html#TSForwardSetInitialSensitivities
man:+TSForwardGetStages++TSForwardGetStages++++man+https://petsc.org/release/manualpages/Sensitivity/TSForwardGetStages.html#TSForwardGetStages
man:+TSCreateQuadratureTS++TSCreateQuadratureTS++++man+https://petsc.org/release/manualpages/Sensitivity/TSCreateQuadratureTS.html#TSCreateQuadratureTS
man:+TSGetQuadratureTS++TSGetQuadratureTS++++man+https://petsc.org/release/manualpages/Sensitivity/TSGetQuadratureTS.html#TSGetQuadratureTS
man:+TSComputeSNESJacobian++TSComputeSNESJacobian++++man+https://petsc.org/release/manualpages/Sensitivity/TSComputeSNESJacobian.html#TSComputeSNESJacobian
man:+TSFinalizePackage++TSFinalizePackage++++man+https://petsc.org/release/manualpages/TS/TSFinalizePackage.html#TSFinalizePackage
man:+TSInitializePackage++TSInitializePackage++++man+https://petsc.org/release/manualpages/TS/TSInitializePackage.html#TSInitializePackage
man:+TSMonitor++TSMonitor++++man+https://petsc.org/release/manualpages/TS/TSMonitor.html#TSMonitor
man:+TSMonitorSetFromOptions++TSMonitorSetFromOptions++++man+https://petsc.org/release/manualpages/TS/TSMonitorSetFromOptions.html#TSMonitorSetFromOptions
man:+TSMonitorSet++TSMonitorSet++++man+https://petsc.org/release/manualpages/TS/TSMonitorSet.html#TSMonitorSet
man:+TSMonitorCancel++TSMonitorCancel++++man+https://petsc.org/release/manualpages/TS/TSMonitorCancel.html#TSMonitorCancel
man:+TSMonitorDefault++TSMonitorDefault++++man+https://petsc.org/release/manualpages/TS/TSMonitorDefault.html#TSMonitorDefault
man:+TSMonitorExtreme++TSMonitorExtreme++++man+https://petsc.org/release/manualpages/TS/TSMonitorExtreme.html#TSMonitorExtreme
man:+TSMonitorLGCtxCreate++TSMonitorLGCtxCreate++++man+https://petsc.org/release/manualpages/TS/TSMonitorLGCtxCreate.html#TSMonitorLGCtxCreate
man:+TSMonitorLGTimeStep++TSMonitorLGTimeStep++++man+https://petsc.org/release/manualpages/TS/TSMonitorLGTimeStep.html#TSMonitorLGTimeStep
man:+TSMonitorLGCtxDestroy++TSMonitorLGCtxDestroy++++man+https://petsc.org/release/manualpages/TS/TSMonitorLGCtxDestroy.html#TSMonitorLGCtxDestroy
man:+TSMonitorDrawSolution++TSMonitorDrawSolution++++man+https://petsc.org/release/manualpages/TS/TSMonitorDrawSolution.html#TSMonitorDrawSolution
man:+TSMonitorDrawSolutionPhase++TSMonitorDrawSolutionPhase++++man+https://petsc.org/release/manualpages/TS/TSMonitorDrawSolutionPhase.html#TSMonitorDrawSolutionPhase
man:+TSMonitorDrawCtxDestroy++TSMonitorDrawCtxDestroy++++man+https://petsc.org/release/manualpages/TS/TSMonitorDrawCtxDestroy.html#TSMonitorDrawCtxDestroy
man:+TSMonitorDrawCtxCreate++TSMonitorDrawCtxCreate++++man+https://petsc.org/release/manualpages/TS/TSMonitorDrawCtxCreate.html#TSMonitorDrawCtxCreate
man:+TSMonitorDrawSolutionFunction++TSMonitorDrawSolutionFunction++++man+https://petsc.org/release/manualpages/TS/TSMonitorDrawSolutionFunction.html#TSMonitorDrawSolutionFunction
man:+TSMonitorDrawError++TSMonitorDrawError++++man+https://petsc.org/release/manualpages/TS/TSMonitorDrawError.html#TSMonitorDrawError
man:+TSMonitorSolution++TSMonitorSolution++++man+https://petsc.org/release/manualpages/TS/TSMonitorSolution.html#TSMonitorSolution
man:+TSMonitorSolutionVTK++TSMonitorSolutionVTK++++man+https://petsc.org/release/manualpages/TS/TSMonitorSolutionVTK.html#TSMonitorSolutionVTK
man:+TSMonitorSolutionVTKDestroy++TSMonitorSolutionVTKDestroy++++man+https://petsc.org/release/manualpages/TS/TSMonitorSolutionVTKDestroy.html#TSMonitorSolutionVTKDestroy
man:+TSMonitorSolutionVTKCtxCreate++TSMonitorSolutionVTKCtxCreate++++man+https://petsc.org/release/manualpages/TS/TSMonitorSolutionVTKCtxCreate.html#TSMonitorSolutionVTKCtxCreate
man:+TSMonitorLGSolution++TSMonitorLGSolution++++man+https://petsc.org/release/manualpages/TS/TSMonitorLGSolution.html#TSMonitorLGSolution
man:+TSMonitorLGSetVariableNames++TSMonitorLGSetVariableNames++++man+https://petsc.org/release/manualpages/TS/TSMonitorLGSetVariableNames.html#TSMonitorLGSetVariableNames
man:+TSMonitorLGCtxSetVariableNames++TSMonitorLGCtxSetVariableNames++++man+https://petsc.org/release/manualpages/TS/TSMonitorLGCtxSetVariableNames.html#TSMonitorLGCtxSetVariableNames
man:+TSMonitorLGGetVariableNames++TSMonitorLGGetVariableNames++++man+https://petsc.org/release/manualpages/TS/TSMonitorLGGetVariableNames.html#TSMonitorLGGetVariableNames
man:+TSMonitorLGCtxSetDisplayVariables++TSMonitorLGCtxSetDisplayVariables++++man+https://petsc.org/release/manualpages/TS/TSMonitorLGCtxSetDisplayVariables.html#TSMonitorLGCtxSetDisplayVariables
man:+TSMonitorLGSetDisplayVariables++TSMonitorLGSetDisplayVariables++++man+https://petsc.org/release/manualpages/TS/TSMonitorLGSetDisplayVariables.html#TSMonitorLGSetDisplayVariables
man:+TSMonitorLGSetTransform++TSMonitorLGSetTransform++++man+https://petsc.org/release/manualpages/TS/TSMonitorLGSetTransform.html#TSMonitorLGSetTransform
man:+TSMonitorLGCtxSetTransform++TSMonitorLGCtxSetTransform++++man+https://petsc.org/release/manualpages/TS/TSMonitorLGCtxSetTransform.html#TSMonitorLGCtxSetTransform
man:+TSMonitorLGError++TSMonitorLGError++++man+https://petsc.org/release/manualpages/TS/TSMonitorLGError.html#TSMonitorLGError
man:+TSMonitorSPSwarmSolution++TSMonitorSPSwarmSolution++++man+https://petsc.org/release/manualpages/TS/TSMonitorSPSwarmSolution.html#TSMonitorSPSwarmSolution
man:+TSMonitorHGSwarmSolution++TSMonitorHGSwarmSolution++++man+https://petsc.org/release/manualpages/TS/TSMonitorHGSwarmSolution.html#TSMonitorHGSwarmSolution
man:+TSMonitorError++TSMonitorError++++man+https://petsc.org/release/manualpages/TS/TSMonitorError.html#TSMonitorError
man:+TSMonitorEnvelopeCtxCreate++TSMonitorEnvelopeCtxCreate++++man+https://petsc.org/release/manualpages/TS/TSMonitorEnvelopeCtxCreate.html#TSMonitorEnvelopeCtxCreate
man:+TSMonitorEnvelope++TSMonitorEnvelope++++man+https://petsc.org/release/manualpages/TS/TSMonitorEnvelope.html#TSMonitorEnvelope
man:+TSMonitorEnvelopeGetBounds++TSMonitorEnvelopeGetBounds++++man+https://petsc.org/release/manualpages/TS/TSMonitorEnvelopeGetBounds.html#TSMonitorEnvelopeGetBounds
man:+TSMonitorEnvelopeCtxDestroy++TSMonitorEnvelopeCtxDestroy++++man+https://petsc.org/release/manualpages/TS/TSMonitorEnvelopeCtxDestroy.html#TSMonitorEnvelopeCtxDestroy
man:+TSDMSwarmMonitorMoments++TSDMSwarmMonitorMoments++++man+https://petsc.org/release/manualpages/TS/TSDMSwarmMonitorMoments.html#TSDMSwarmMonitorMoments
man:+TSCreate++TSCreate++++man+https://petsc.org/release/manualpages/TS/TSCreate.html#TSCreate
man:+TSMonitorSPEigCtxCreate++TSMonitorSPEigCtxCreate++++man+https://petsc.org/release/manualpages/TS/TSMonitorSPEigCtxCreate.html#TSMonitorSPEigCtxCreate
man:+TSMonitorSPEigCtxDestroy++TSMonitorSPEigCtxDestroy++++man+https://petsc.org/release/manualpages/TS/TSMonitorSPEigCtxDestroy.html#TSMonitorSPEigCtxDestroy
man:+TSRHSSplitSetIS++TSRHSSplitSetIS++++man+https://petsc.org/release/manualpages/TS/TSRHSSplitSetIS.html#TSRHSSplitSetIS
man:+TSRHSSplitGetIS++TSRHSSplitGetIS++++man+https://petsc.org/release/manualpages/TS/TSRHSSplitGetIS.html#TSRHSSplitGetIS
man:+TSRHSSplitSetRHSFunction++TSRHSSplitSetRHSFunction++++man+https://petsc.org/release/manualpages/TS/TSRHSSplitSetRHSFunction.html#TSRHSSplitSetRHSFunction
man:+TSRHSSplitSetIFunction++TSRHSSplitSetIFunction++++man+https://petsc.org/release/manualpages/TS/TSRHSSplitSetIFunction.html#TSRHSSplitSetIFunction
man:+TSRHSSplitSetIJacobian++TSRHSSplitSetIJacobian++++man+https://petsc.org/release/manualpages/TS/TSRHSSplitSetIJacobian.html#TSRHSSplitSetIJacobian
man:+TSRHSSplitGetSubTS++TSRHSSplitGetSubTS++++man+https://petsc.org/release/manualpages/TS/TSRHSSplitGetSubTS.html#TSRHSSplitGetSubTS
man:+TSRHSSplitGetSubTSs++TSRHSSplitGetSubTSs++++man+https://petsc.org/release/manualpages/TS/TSRHSSplitGetSubTSs.html#TSRHSSplitGetSubTSs
man:+TSRHSSplitGetSNES++TSRHSSplitGetSNES++++man+https://petsc.org/release/manualpages/TS/TSRHSSplitGetSNES.html#TSRHSSplitGetSNES
man:+TSRHSSplitSetSNES++TSRHSSplitSetSNES++++man+https://petsc.org/release/manualpages/TS/TSRHSSplitSetSNES.html#TSRHSSplitSetSNES
man:+CharacteristicFinalizePackage++CharacteristicFinalizePackage++++man+https://petsc.org/release/manualpages/Characteristic/CharacteristicFinalizePackage.html#CharacteristicFinalizePackage
man:+CharacteristicInitializePackage++CharacteristicInitializePackage++++man+https://petsc.org/release/manualpages/Characteristic/CharacteristicInitializePackage.html#CharacteristicInitializePackage
man:+CharacteristicRegisterAll++CharacteristicRegisterAll++++man+https://petsc.org/release/manualpages/Characteristic/CharacteristicRegisterAll.html#CharacteristicRegisterAll
man:+CharacteristicDestroy++CharacteristicDestroy++++man+https://petsc.org/release/manualpages/Characteristic/CharacteristicDestroy.html#CharacteristicDestroy
man:+CharacteristicCreate++CharacteristicCreate++++man+https://petsc.org/release/manualpages/Characteristic/CharacteristicCreate.html#CharacteristicCreate
man:+CharacteristicSetType++CharacteristicSetType++++man+https://petsc.org/release/manualpages/Characteristic/CharacteristicSetType.html#CharacteristicSetType
man:+CharacteristicSetUp++CharacteristicSetUp++++man+https://petsc.org/release/manualpages/Characteristic/CharacteristicSetUp.html#CharacteristicSetUp
man:+CharacteristicRegister++CharacteristicRegister++++man+https://petsc.org/release/manualpages/Characteristic/CharacteristicRegister.html#CharacteristicRegister
man:+CharacteristicSolve++CharacteristicSolve++++man+https://petsc.org/release/manualpages/Characteristic/CharacteristicSolve.html#CharacteristicSolve
man:+TSAdaptRegister++TSAdaptRegister++++man+https://petsc.org/release/manualpages/TS/TSAdaptRegister.html#TSAdaptRegister
man:+TSAdaptRegisterAll++TSAdaptRegisterAll++++man+https://petsc.org/release/manualpages/TS/TSAdaptRegisterAll.html#TSAdaptRegisterAll
man:+TSAdaptFinalizePackage++TSAdaptFinalizePackage++++man+https://petsc.org/release/manualpages/TS/TSAdaptFinalizePackage.html#TSAdaptFinalizePackage
man:+TSAdaptInitializePackage++TSAdaptInitializePackage++++man+https://petsc.org/release/manualpages/TS/TSAdaptInitializePackage.html#TSAdaptInitializePackage
man:+TSAdaptSetType++TSAdaptSetType++++man+https://petsc.org/release/manualpages/TS/TSAdaptSetType.html#TSAdaptSetType
man:+TSAdaptGetType++TSAdaptGetType++++man+https://petsc.org/release/manualpages/TS/TSAdaptGetType.html#TSAdaptGetType
man:+TSAdaptLoad++TSAdaptLoad++++man+https://petsc.org/release/manualpages/TS/TSAdaptLoad.html#TSAdaptLoad
man:+TSAdaptReset++TSAdaptReset++++man+https://petsc.org/release/manualpages/TS/TSAdaptReset.html#TSAdaptReset
man:+TSAdaptSetMonitor++TSAdaptSetMonitor++++man+https://petsc.org/release/manualpages/TS/TSAdaptSetMonitor.html#TSAdaptSetMonitor
man:+TSAdaptSetCheckStage++TSAdaptSetCheckStage++++man+https://petsc.org/release/manualpages/TS/TSAdaptSetCheckStage.html#TSAdaptSetCheckStage
man:+TSAdaptSetAlwaysAccept++TSAdaptSetAlwaysAccept++++man+https://petsc.org/release/manualpages/TS/TSAdaptSetAlwaysAccept.html#TSAdaptSetAlwaysAccept
man:+TSAdaptSetSafety++TSAdaptSetSafety++++man+https://petsc.org/release/manualpages/TS/TSAdaptSetSafety.html#TSAdaptSetSafety
man:+TSAdaptGetSafety++TSAdaptGetSafety++++man+https://petsc.org/release/manualpages/TS/TSAdaptGetSafety.html#TSAdaptGetSafety
man:+TSAdaptSetMaxIgnore++TSAdaptSetMaxIgnore++++man+https://petsc.org/release/manualpages/TS/TSAdaptSetMaxIgnore.html#TSAdaptSetMaxIgnore
man:+TSAdaptGetMaxIgnore++TSAdaptGetMaxIgnore++++man+https://petsc.org/release/manualpages/TS/TSAdaptGetMaxIgnore.html#TSAdaptGetMaxIgnore
man:+TSAdaptSetClip++TSAdaptSetClip++++man+https://petsc.org/release/manualpages/TS/TSAdaptSetClip.html#TSAdaptSetClip
man:+TSAdaptGetClip++TSAdaptGetClip++++man+https://petsc.org/release/manualpages/TS/TSAdaptGetClip.html#TSAdaptGetClip
man:+TSAdaptSetScaleSolveFailed++TSAdaptSetScaleSolveFailed++++man+https://petsc.org/release/manualpages/TS/TSAdaptSetScaleSolveFailed.html#TSAdaptSetScaleSolveFailed
man:+TSAdaptGetScaleSolveFailed++TSAdaptGetScaleSolveFailed++++man+https://petsc.org/release/manualpages/TS/TSAdaptGetScaleSolveFailed.html#TSAdaptGetScaleSolveFailed
man:+TSAdaptSetStepLimits++TSAdaptSetStepLimits++++man+https://petsc.org/release/manualpages/TS/TSAdaptSetStepLimits.html#TSAdaptSetStepLimits
man:+TSAdaptGetStepLimits++TSAdaptGetStepLimits++++man+https://petsc.org/release/manualpages/TS/TSAdaptGetStepLimits.html#TSAdaptGetStepLimits
man:+TSAdaptSetFromOptions++TSAdaptSetFromOptions++++man+https://petsc.org/release/manualpages/TS/TSAdaptSetFromOptions.html#TSAdaptSetFromOptions
man:+TSAdaptCandidatesClear++TSAdaptCandidatesClear++++man+https://petsc.org/release/manualpages/TS/TSAdaptCandidatesClear.html#TSAdaptCandidatesClear
man:+TSAdaptCandidateAdd++TSAdaptCandidateAdd++++man+https://petsc.org/release/manualpages/TS/TSAdaptCandidateAdd.html#TSAdaptCandidateAdd
man:+TSAdaptCandidatesGet++TSAdaptCandidatesGet++++man+https://petsc.org/release/manualpages/TS/TSAdaptCandidatesGet.html#TSAdaptCandidatesGet
man:+TSAdaptChoose++TSAdaptChoose++++man+https://petsc.org/release/manualpages/TS/TSAdaptChoose.html#TSAdaptChoose
man:+TSAdaptSetTimeStepIncreaseDelay++TSAdaptSetTimeStepIncreaseDelay++++man+https://petsc.org/release/manualpages/TS/TSAdaptSetTimeStepIncreaseDelay.html#TSAdaptSetTimeStepIncreaseDelay
man:+TSAdaptCheckStage++TSAdaptCheckStage++++man+https://petsc.org/release/manualpages/TS/TSAdaptCheckStage.html#TSAdaptCheckStage
man:+TSAdaptCreate++TSAdaptCreate++++man+https://petsc.org/release/manualpages/TS/TSAdaptCreate.html#TSAdaptCreate
man:+TSADAPTBASIC++TSADAPTBASIC++++man+https://petsc.org/release/manualpages/TS/TSADAPTBASIC.html#TSADAPTBASIC
man:+TSAdaptHistoryGetStep++TSAdaptHistoryGetStep++++man+https://petsc.org/release/manualpages/TS/TSAdaptHistoryGetStep.html#TSAdaptHistoryGetStep
man:+TSAdaptHistorySetHistory++TSAdaptHistorySetHistory++++man+https://petsc.org/release/manualpages/TS/TSAdaptHistorySetHistory.html#TSAdaptHistorySetHistory
man:+TSAdaptHistorySetTrajectory++TSAdaptHistorySetTrajectory++++man+https://petsc.org/release/manualpages/TS/TSAdaptHistorySetTrajectory.html#TSAdaptHistorySetTrajectory
man:+TSADAPTHISTORY++TSADAPTHISTORY++++man+https://petsc.org/release/manualpages/TS/TSADAPTHISTORY.html#TSADAPTHISTORY
man:+TSADAPTGLEE++TSADAPTGLEE++++man+https://petsc.org/release/manualpages/TS/TSADAPTGLEE.html#TSADAPTGLEE
man:+TSADAPTNONE++TSADAPTNONE++++man+https://petsc.org/release/manualpages/TS/TSADAPTNONE.html#TSADAPTNONE
man:+TSAdaptDSPSetFilter++TSAdaptDSPSetFilter++++man+https://petsc.org/release/manualpages/TS/TSAdaptDSPSetFilter.html#TSAdaptDSPSetFilter
man:+TSAdaptDSPSetPID++TSAdaptDSPSetPID++++man+https://petsc.org/release/manualpages/TS/TSAdaptDSPSetPID.html#TSAdaptDSPSetPID
man:+TSADAPTDSP++TSADAPTDSP++++man+https://petsc.org/release/manualpages/TS/TSADAPTDSP.html#TSADAPTDSP
man:+TSADAPTCFL++TSADAPTCFL++++man+https://petsc.org/release/manualpages/TS/TSADAPTCFL.html#TSADAPTCFL
man:+TSARKIMEXARS122++TSARKIMEXARS122++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXARS122.html#TSARKIMEXARS122
man:+TSARKIMEXA2++TSARKIMEXA2++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXA2.html#TSARKIMEXA2
man:+TSARKIMEXL2++TSARKIMEXL2++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXL2.html#TSARKIMEXL2
man:+TSARKIMEX1BEE++TSARKIMEX1BEE++++man+https://petsc.org/release/manualpages/TS/TSARKIMEX1BEE.html#TSARKIMEX1BEE
man:+TSARKIMEX2C++TSARKIMEX2C++++man+https://petsc.org/release/manualpages/TS/TSARKIMEX2C.html#TSARKIMEX2C
man:+TSARKIMEX2D++TSARKIMEX2D++++man+https://petsc.org/release/manualpages/TS/TSARKIMEX2D.html#TSARKIMEX2D
man:+TSARKIMEX2E++TSARKIMEX2E++++man+https://petsc.org/release/manualpages/TS/TSARKIMEX2E.html#TSARKIMEX2E
man:+TSARKIMEXPRSSP2++TSARKIMEXPRSSP2++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXPRSSP2.html#TSARKIMEXPRSSP2
man:+TSARKIMEX3++TSARKIMEX3++++man+https://petsc.org/release/manualpages/TS/TSARKIMEX3.html#TSARKIMEX3
man:+TSARKIMEXARS443++TSARKIMEXARS443++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXARS443.html#TSARKIMEXARS443
man:+TSARKIMEXBPR3++TSARKIMEXBPR3++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXBPR3.html#TSARKIMEXBPR3
man:+TSARKIMEX4++TSARKIMEX4++++man+https://petsc.org/release/manualpages/TS/TSARKIMEX4.html#TSARKIMEX4
man:+TSARKIMEX5++TSARKIMEX5++++man+https://petsc.org/release/manualpages/TS/TSARKIMEX5.html#TSARKIMEX5
man:+TSDIRKS212++TSDIRKS212++++man+https://petsc.org/release/manualpages/TS/TSDIRKS212.html#TSDIRKS212
man:+TSDIRKES122SAL++TSDIRKES122SAL++++man+https://petsc.org/release/manualpages/TS/TSDIRKES122SAL.html#TSDIRKES122SAL
man:+TSDIRKES213SAL++TSDIRKES213SAL++++man+https://petsc.org/release/manualpages/TS/TSDIRKES213SAL.html#TSDIRKES213SAL
man:+TSDIRKES324SAL++TSDIRKES324SAL++++man+https://petsc.org/release/manualpages/TS/TSDIRKES324SAL.html#TSDIRKES324SAL
man:+TSDIRKES325SAL++TSDIRKES325SAL++++man+https://petsc.org/release/manualpages/TS/TSDIRKES325SAL.html#TSDIRKES325SAL
man:+TSDIRK657A++TSDIRK657A++++man+https://petsc.org/release/manualpages/TS/TSDIRK657A.html#TSDIRK657A
man:+TSDIRKES648SA++TSDIRKES648SA++++man+https://petsc.org/release/manualpages/TS/TSDIRKES648SA.html#TSDIRKES648SA
man:+TSDIRK658A++TSDIRK658A++++man+https://petsc.org/release/manualpages/TS/TSDIRK658A.html#TSDIRK658A
man:+TSDIRKS659A++TSDIRKS659A++++man+https://petsc.org/release/manualpages/TS/TSDIRKS659A.html#TSDIRKS659A
man:+TSDIRK7510SAL++TSDIRK7510SAL++++man+https://petsc.org/release/manualpages/TS/TSDIRK7510SAL.html#TSDIRK7510SAL
man:+TSDIRKES7510SA++TSDIRKES7510SA++++man+https://petsc.org/release/manualpages/TS/TSDIRKES7510SA.html#TSDIRKES7510SA
man:+TSDIRK759A++TSDIRK759A++++man+https://petsc.org/release/manualpages/TS/TSDIRK759A.html#TSDIRK759A
man:+TSDIRKS7511SAL++TSDIRKS7511SAL++++man+https://petsc.org/release/manualpages/TS/TSDIRKS7511SAL.html#TSDIRKS7511SAL
man:+TSDIRK8614A++TSDIRK8614A++++man+https://petsc.org/release/manualpages/TS/TSDIRK8614A.html#TSDIRK8614A
man:+TSDIRK8616SAL++TSDIRK8616SAL++++man+https://petsc.org/release/manualpages/TS/TSDIRK8616SAL.html#TSDIRK8616SAL
man:+TSDIRKES8516SAL++TSDIRKES8516SAL++++man+https://petsc.org/release/manualpages/TS/TSDIRKES8516SAL.html#TSDIRKES8516SAL
man:+TSARKIMEXRegisterAll++TSARKIMEXRegisterAll++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXRegisterAll.html#TSARKIMEXRegisterAll
man:+TSARKIMEXRegisterDestroy++TSARKIMEXRegisterDestroy++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXRegisterDestroy.html#TSARKIMEXRegisterDestroy
man:+TSARKIMEXInitializePackage++TSARKIMEXInitializePackage++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXInitializePackage.html#TSARKIMEXInitializePackage
man:+TSARKIMEXFinalizePackage++TSARKIMEXFinalizePackage++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXFinalizePackage.html#TSARKIMEXFinalizePackage
man:+TSARKIMEXRegister++TSARKIMEXRegister++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXRegister.html#TSARKIMEXRegister
man:+TSDIRKRegister++TSDIRKRegister++++man+https://petsc.org/release/manualpages/TS/TSDIRKRegister.html#TSDIRKRegister
man:+TSARKIMEXSetType++TSARKIMEXSetType++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXSetType.html#TSARKIMEXSetType
man:+TSARKIMEXGetType++TSARKIMEXGetType++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXGetType.html#TSARKIMEXGetType
man:+TSARKIMEXSetFullyImplicit++TSARKIMEXSetFullyImplicit++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXSetFullyImplicit.html#TSARKIMEXSetFullyImplicit
man:+TSARKIMEXGetFullyImplicit++TSARKIMEXGetFullyImplicit++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXGetFullyImplicit.html#TSARKIMEXGetFullyImplicit
man:+TSARKIMEX++TSARKIMEX++++man+https://petsc.org/release/manualpages/TS/TSARKIMEX.html#TSARKIMEX
man:+TSDIRKSetType++TSDIRKSetType++++man+https://petsc.org/release/manualpages/TS/TSDIRKSetType.html#TSDIRKSetType
man:+TSDIRKGetType++TSDIRKGetType++++man+https://petsc.org/release/manualpages/TS/TSDIRKGetType.html#TSDIRKGetType
man:+TSDIRK++TSDIRK++++man+https://petsc.org/release/manualpages/TS/TSDIRK.html#TSDIRK
man:+TSARKIMEXSetFastSlowSplit++TSARKIMEXSetFastSlowSplit++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXSetFastSlowSplit.html#TSARKIMEXSetFastSlowSplit
man:+TSARKIMEXGetFastSlowSplit++TSARKIMEXGetFastSlowSplit++++man+https://petsc.org/release/manualpages/TS/TSARKIMEXGetFastSlowSplit.html#TSARKIMEXGetFastSlowSplit
man:+TSPythonSetType++TSPythonSetType++++man+https://petsc.org/release/manualpages/TS/TSPythonSetType.html#TSPythonSetType
man:+TSPythonGetType++TSPythonGetType++++man+https://petsc.org/release/manualpages/TS/TSPythonGetType.html#TSPythonGetType
man:+TSMIMEX++TSMIMEX++++man+https://petsc.org/release/manualpages/TS/TSMIMEX.html#TSMIMEX
man:+TSSSPRKS2++TSSSPRKS2++++man+https://petsc.org/release/manualpages/TS/TSSSPRKS2.html#TSSSPRKS2
man:+TSSSPRKS3++TSSSPRKS3++++man+https://petsc.org/release/manualpages/TS/TSSSPRKS3.html#TSSSPRKS3
man:+TSSSPRKS104++TSSSPRKS104++++man+https://petsc.org/release/manualpages/TS/TSSSPRKS104.html#TSSSPRKS104
man:+TSSSPSetType++TSSSPSetType++++man+https://petsc.org/release/manualpages/TS/TSSSPSetType.html#TSSSPSetType
man:+TSSSPGetType++TSSSPGetType++++man+https://petsc.org/release/manualpages/TS/TSSSPGetType.html#TSSSPGetType
man:+TSSSPSetNumStages++TSSSPSetNumStages++++man+https://petsc.org/release/manualpages/TS/TSSSPSetNumStages.html#TSSSPSetNumStages
man:+TSSSPGetNumStages++TSSSPGetNumStages++++man+https://petsc.org/release/manualpages/TS/TSSSPGetNumStages.html#TSSSPGetNumStages
man:+TSSSP++TSSSP++++man+https://petsc.org/release/manualpages/TS/TSSSP.html#TSSSP
man:+TSSSPInitializePackage++TSSSPInitializePackage++++man+https://petsc.org/release/manualpages/TS/TSSSPInitializePackage.html#TSSSPInitializePackage
man:+TSSSPFinalizePackage++TSSSPFinalizePackage++++man+https://petsc.org/release/manualpages/TS/TSSSPFinalizePackage.html#TSSSPFinalizePackage
man:+TSEULER++TSEULER++++man+https://petsc.org/release/manualpages/TS/TSEULER.html#TSEULER
man:+TSRK1FE++TSRK1FE++++man+https://petsc.org/release/manualpages/TS/TSRK1FE.html#TSRK1FE
man:+TSRK2A++TSRK2A++++man+https://petsc.org/release/manualpages/TS/TSRK2A.html#TSRK2A
man:+TSRK2B++TSRK2B++++man+https://petsc.org/release/manualpages/TS/TSRK2B.html#TSRK2B
man:+TSRK3++TSRK3++++man+https://petsc.org/release/manualpages/TS/TSRK3.html#TSRK3
man:+TSRK3BS++TSRK3BS++++man+https://petsc.org/release/manualpages/TS/TSRK3BS.html#TSRK3BS
man:+TSRK4++TSRK4++++man+https://petsc.org/release/manualpages/TS/TSRK4.html#TSRK4
man:+TSRK5F++TSRK5F++++man+https://petsc.org/release/manualpages/TS/TSRK5F.html#TSRK5F
man:+TSRK5DP++TSRK5DP++++man+https://petsc.org/release/manualpages/TS/TSRK5DP.html#TSRK5DP
man:+TSRK5BS++TSRK5BS++++man+https://petsc.org/release/manualpages/TS/TSRK5BS.html#TSRK5BS
man:+TSRK6VR++TSRK6VR++++man+https://petsc.org/release/manualpages/TS/TSRK6VR.html#TSRK6VR
man:+TSRK7VR++TSRK7VR++++man+https://petsc.org/release/manualpages/TS/TSRK7VR.html#TSRK7VR
man:+TSRK8VR++TSRK8VR++++man+https://petsc.org/release/manualpages/TS/TSRK8VR.html#TSRK8VR
man:+TSRKRegisterAll++TSRKRegisterAll++++man+https://petsc.org/release/manualpages/TS/TSRKRegisterAll.html#TSRKRegisterAll
man:+TSRKRegisterDestroy++TSRKRegisterDestroy++++man+https://petsc.org/release/manualpages/TS/TSRKRegisterDestroy.html#TSRKRegisterDestroy
man:+TSRKInitializePackage++TSRKInitializePackage++++man+https://petsc.org/release/manualpages/TS/TSRKInitializePackage.html#TSRKInitializePackage
man:+TSRKFinalizePackage++TSRKFinalizePackage++++man+https://petsc.org/release/manualpages/TS/TSRKFinalizePackage.html#TSRKFinalizePackage
man:+TSRKRegister++TSRKRegister++++man+https://petsc.org/release/manualpages/TS/TSRKRegister.html#TSRKRegister
man:+TSRKGetTableau++TSRKGetTableau++++man+https://petsc.org/release/manualpages/TS/TSRKGetTableau.html#TSRKGetTableau
man:+TSRKGetOrder++TSRKGetOrder++++man+https://petsc.org/release/manualpages/TS/TSRKGetOrder.html#TSRKGetOrder
man:+TSRKSetType++TSRKSetType++++man+https://petsc.org/release/manualpages/TS/TSRKSetType.html#TSRKSetType
man:+TSRKGetType++TSRKGetType++++man+https://petsc.org/release/manualpages/TS/TSRKGetType.html#TSRKGetType
man:+TSRKSetMultirate++TSRKSetMultirate++++man+https://petsc.org/release/manualpages/TS/TSRKSetMultirate.html#TSRKSetMultirate
man:+TSRKGetMultirate++TSRKGetMultirate++++man+https://petsc.org/release/manualpages/TS/TSRKGetMultirate.html#TSRKGetMultirate
man:+TSRK++TSRK++++man+https://petsc.org/release/manualpages/TS/TSRK.html#TSRK
man:+TSBDF++TSBDF++++man+https://petsc.org/release/manualpages/TS/TSBDF.html#TSBDF
man:+TSBDFSetOrder++TSBDFSetOrder++++man+https://petsc.org/release/manualpages/TS/TSBDFSetOrder.html#TSBDFSetOrder
man:+TSBDFGetOrder++TSBDFGetOrder++++man+https://petsc.org/release/manualpages/TS/TSBDFGetOrder.html#TSBDFGetOrder
man:+TSBASICSYMPLECTICSIEULER++TSBASICSYMPLECTICSIEULER++++man+https://petsc.org/release/manualpages/TS/TSBASICSYMPLECTICSIEULER.html#TSBASICSYMPLECTICSIEULER
man:+TSBASICSYMPLECTICVELVERLET++TSBASICSYMPLECTICVELVERLET++++man+https://petsc.org/release/manualpages/TS/TSBASICSYMPLECTICVELVERLET.html#TSBASICSYMPLECTICVELVERLET
man:+TSBasicSymplecticRegisterAll++TSBasicSymplecticRegisterAll++++man+https://petsc.org/release/manualpages/TS/TSBasicSymplecticRegisterAll.html#TSBasicSymplecticRegisterAll
man:+TSBasicSymplecticRegisterDestroy++TSBasicSymplecticRegisterDestroy++++man+https://petsc.org/release/manualpages/TS/TSBasicSymplecticRegisterDestroy.html#TSBasicSymplecticRegisterDestroy
man:+TSBasicSymplecticInitializePackage++TSBasicSymplecticInitializePackage++++man+https://petsc.org/release/manualpages/TS/TSBasicSymplecticInitializePackage.html#TSBasicSymplecticInitializePackage
man:+TSBasicSymplecticFinalizePackage++TSBasicSymplecticFinalizePackage++++man+https://petsc.org/release/manualpages/TS/TSBasicSymplecticFinalizePackage.html#TSBasicSymplecticFinalizePackage
man:+TSBasicSymplecticRegister++TSBasicSymplecticRegister++++man+https://petsc.org/release/manualpages/TS/TSBasicSymplecticRegister.html#TSBasicSymplecticRegister
man:+TSBasicSymplecticSetType++TSBasicSymplecticSetType++++man+https://petsc.org/release/manualpages/TS/TSBasicSymplecticSetType.html#TSBasicSymplecticSetType
man:+TSBasicSymplecticGetType++TSBasicSymplecticGetType++++man+https://petsc.org/release/manualpages/TS/TSBasicSymplecticGetType.html#TSBasicSymplecticGetType
man:+TSBASICSYMPLECTIC++TSBASICSYMPLECTIC++++man+https://petsc.org/release/manualpages/TS/TSBASICSYMPLECTIC.html#TSBASICSYMPLECTIC
man:+TSPseudoComputeTimeStep++TSPseudoComputeTimeStep++++man+https://petsc.org/release/manualpages/TS/TSPseudoComputeTimeStep.html#TSPseudoComputeTimeStep
man:+TSPseudoVerifyTimeStepDefault++TSPseudoVerifyTimeStepDefault++++man+https://petsc.org/release/manualpages/TS/TSPseudoVerifyTimeStepDefault.html#TSPseudoVerifyTimeStepDefault
man:+TSPseudoVerifyTimeStep++TSPseudoVerifyTimeStep++++man+https://petsc.org/release/manualpages/TS/TSPseudoVerifyTimeStep.html#TSPseudoVerifyTimeStep
man:+TSPseudoSetVerifyTimeStep++TSPseudoSetVerifyTimeStep++++man+https://petsc.org/release/manualpages/TS/TSPseudoSetVerifyTimeStep.html#TSPseudoSetVerifyTimeStep
man:+TSPseudoSetTimeStepIncrement++TSPseudoSetTimeStepIncrement++++man+https://petsc.org/release/manualpages/TS/TSPseudoSetTimeStepIncrement.html#TSPseudoSetTimeStepIncrement
man:+TSPseudoSetMaxTimeStep++TSPseudoSetMaxTimeStep++++man+https://petsc.org/release/manualpages/TS/TSPseudoSetMaxTimeStep.html#TSPseudoSetMaxTimeStep
man:+TSPseudoIncrementDtFromInitialDt++TSPseudoIncrementDtFromInitialDt++++man+https://petsc.org/release/manualpages/TS/TSPseudoIncrementDtFromInitialDt.html#TSPseudoIncrementDtFromInitialDt
man:+TSPseudoSetTimeStep++TSPseudoSetTimeStep++++man+https://petsc.org/release/manualpages/TS/TSPseudoSetTimeStep.html#TSPseudoSetTimeStep
man:+TSPSEUDO++TSPSEUDO++++man+https://petsc.org/release/manualpages/TS/TSPSEUDO.html#TSPSEUDO
man:+TSPseudoTimeStepDefault++TSPseudoTimeStepDefault++++man+https://petsc.org/release/manualpages/TS/TSPseudoTimeStepDefault.html#TSPseudoTimeStepDefault
man:+TSMPRK2A22++TSMPRK2A22++++man+https://petsc.org/release/manualpages/TS/TSMPRK2A22.html#TSMPRK2A22
man:+TSMPRK2A23++TSMPRK2A23++++man+https://petsc.org/release/manualpages/TS/TSMPRK2A23.html#TSMPRK2A23
man:+TSMPRK2A32++TSMPRK2A32++++man+https://petsc.org/release/manualpages/TS/TSMPRK2A32.html#TSMPRK2A32
man:+TSMPRK2A33++TSMPRK2A33++++man+https://petsc.org/release/manualpages/TS/TSMPRK2A33.html#TSMPRK2A33
man:+TSMPRK3P2M++TSMPRK3P2M++++man+https://petsc.org/release/manualpages/TS/TSMPRK3P2M.html#TSMPRK3P2M
man:+TSMPRKP2++TSMPRKP2++++man+https://petsc.org/release/manualpages/TS/TSMPRKP2.html#TSMPRKP2
man:+TSMPRKP3++TSMPRKP3++++man+https://petsc.org/release/manualpages/TS/TSMPRKP3.html#TSMPRKP3
man:+TSMPRKRegisterAll++TSMPRKRegisterAll++++man+https://petsc.org/release/manualpages/TS/TSMPRKRegisterAll.html#TSMPRKRegisterAll
man:+TSMPRKRegisterDestroy++TSMPRKRegisterDestroy++++man+https://petsc.org/release/manualpages/TS/TSMPRKRegisterDestroy.html#TSMPRKRegisterDestroy
man:+TSMPRKInitializePackage++TSMPRKInitializePackage++++man+https://petsc.org/release/manualpages/TS/TSMPRKInitializePackage.html#TSMPRKInitializePackage
man:+TSMPRKFinalizePackage++TSMPRKFinalizePackage++++man+https://petsc.org/release/manualpages/TS/TSMPRKFinalizePackage.html#TSMPRKFinalizePackage
man:+TSMPRKRegister++TSMPRKRegister++++man+https://petsc.org/release/manualpages/TS/TSMPRKRegister.html#TSMPRKRegister
man:+TSMPRKSetType++TSMPRKSetType++++man+https://petsc.org/release/manualpages/TS/TSMPRKSetType.html#TSMPRKSetType
man:+TSMPRKGetType++TSMPRKGetType++++man+https://petsc.org/release/manualpages/TS/TSMPRKGetType.html#TSMPRKGetType
man:+TSMPRK++TSMPRK++++man+https://petsc.org/release/manualpages/TS/TSMPRK.html#TSMPRK
man:+TSROSWTHETA1++TSROSWTHETA1++++man+https://petsc.org/release/manualpages/TS/TSROSWTHETA1.html#TSROSWTHETA1
man:+TSROSWTHETA2++TSROSWTHETA2++++man+https://petsc.org/release/manualpages/TS/TSROSWTHETA2.html#TSROSWTHETA2
man:+TSROSW2M++TSROSW2M++++man+https://petsc.org/release/manualpages/TS/TSROSW2M.html#TSROSW2M
man:+TSROSW2P++TSROSW2P++++man+https://petsc.org/release/manualpages/TS/TSROSW2P.html#TSROSW2P
man:+TSROSWRA3PW++TSROSWRA3PW++++man+https://petsc.org/release/manualpages/TS/TSROSWRA3PW.html#TSROSWRA3PW
man:+TSROSWRA34PW2++TSROSWRA34PW2++++man+https://petsc.org/release/manualpages/TS/TSROSWRA34PW2.html#TSROSWRA34PW2
man:+TSROSWR34PRW++TSROSWR34PRW++++man+https://petsc.org/release/manualpages/TS/TSROSWR34PRW.html#TSROSWR34PRW
man:+TSROSWR3PRL2++TSROSWR3PRL2++++man+https://petsc.org/release/manualpages/TS/TSROSWR3PRL2.html#TSROSWR3PRL2
man:+TSROSWRODAS3++TSROSWRODAS3++++man+https://petsc.org/release/manualpages/TS/TSROSWRODAS3.html#TSROSWRODAS3
man:+TSROSWRODASPR++TSROSWRODASPR++++man+https://petsc.org/release/manualpages/TS/TSROSWRODASPR.html#TSROSWRODASPR
man:+TSROSWRODASPR2++TSROSWRODASPR2++++man+https://petsc.org/release/manualpages/TS/TSROSWRODASPR2.html#TSROSWRODASPR2
man:+TSROSWSANDU3++TSROSWSANDU3++++man+https://petsc.org/release/manualpages/TS/TSROSWSANDU3.html#TSROSWSANDU3
man:+TSROSWASSP3P3S1C++TSROSWASSP3P3S1C++++man+https://petsc.org/release/manualpages/TS/TSROSWASSP3P3S1C.html#TSROSWASSP3P3S1C
man:+TSROSWLASSP3P4S2C++TSROSWLASSP3P4S2C++++man+https://petsc.org/release/manualpages/TS/TSROSWLASSP3P4S2C.html#TSROSWLASSP3P4S2C
man:+TSROSWLLSSP3P4S2C++TSROSWLLSSP3P4S2C++++man+https://petsc.org/release/manualpages/TS/TSROSWLLSSP3P4S2C.html#TSROSWLLSSP3P4S2C
man:+TSROSWGRK4T++TSROSWGRK4T++++man+https://petsc.org/release/manualpages/TS/TSROSWGRK4T.html#TSROSWGRK4T
man:+TSROSWSHAMP4++TSROSWSHAMP4++++man+https://petsc.org/release/manualpages/TS/TSROSWSHAMP4.html#TSROSWSHAMP4
man:+TSROSWVELDD4++TSROSWVELDD4++++man+https://petsc.org/release/manualpages/TS/TSROSWVELDD4.html#TSROSWVELDD4
man:+TSROSW4L++TSROSW4L++++man+https://petsc.org/release/manualpages/TS/TSROSW4L.html#TSROSW4L
man:+TSRosWRegisterAll++TSRosWRegisterAll++++man+https://petsc.org/release/manualpages/TS/TSRosWRegisterAll.html#TSRosWRegisterAll
man:+TSRosWRegisterDestroy++TSRosWRegisterDestroy++++man+https://petsc.org/release/manualpages/TS/TSRosWRegisterDestroy.html#TSRosWRegisterDestroy
man:+TSRosWInitializePackage++TSRosWInitializePackage++++man+https://petsc.org/release/manualpages/TS/TSRosWInitializePackage.html#TSRosWInitializePackage
man:+TSRosWFinalizePackage++TSRosWFinalizePackage++++man+https://petsc.org/release/manualpages/TS/TSRosWFinalizePackage.html#TSRosWFinalizePackage
man:+TSRosWRegister++TSRosWRegister++++man+https://petsc.org/release/manualpages/TS/TSRosWRegister.html#TSRosWRegister
man:+TSRosWRegisterRos4++TSRosWRegisterRos4++++man+https://petsc.org/release/manualpages/TS/TSRosWRegisterRos4.html#TSRosWRegisterRos4
man:+TSRosWSetType++TSRosWSetType++++man+https://petsc.org/release/manualpages/TS/TSRosWSetType.html#TSRosWSetType
man:+TSRosWGetType++TSRosWGetType++++man+https://petsc.org/release/manualpages/TS/TSRosWGetType.html#TSRosWGetType
man:+TSRosWSetRecomputeJacobian++TSRosWSetRecomputeJacobian++++man+https://petsc.org/release/manualpages/TS/TSRosWSetRecomputeJacobian.html#TSRosWSetRecomputeJacobian
man:+TSROSW++TSROSW++++man+https://petsc.org/release/manualpages/TS/TSROSW.html#TSROSW
man:+TSIRKTableauCreate++TSIRKTableauCreate++++man+https://petsc.org/release/manualpages/TS/TSIRKTableauCreate.html#TSIRKTableauCreate
man:+TSIRKRegister++TSIRKRegister++++man+https://petsc.org/release/manualpages/TS/TSIRKRegister.html#TSIRKRegister
man:+TSIRKRegisterAll++TSIRKRegisterAll++++man+https://petsc.org/release/manualpages/TS/TSIRKRegisterAll.html#TSIRKRegisterAll
man:+TSIRKRegisterDestroy++TSIRKRegisterDestroy++++man+https://petsc.org/release/manualpages/TS/TSIRKRegisterDestroy.html#TSIRKRegisterDestroy
man:+TSIRKInitializePackage++TSIRKInitializePackage++++man+https://petsc.org/release/manualpages/TS/TSIRKInitializePackage.html#TSIRKInitializePackage
man:+TSIRKFinalizePackage++TSIRKFinalizePackage++++man+https://petsc.org/release/manualpages/TS/TSIRKFinalizePackage.html#TSIRKFinalizePackage
man:+TSIRKSetType++TSIRKSetType++++man+https://petsc.org/release/manualpages/TS/TSIRKSetType.html#TSIRKSetType
man:+TSIRKGetType++TSIRKGetType++++man+https://petsc.org/release/manualpages/TS/TSIRKGetType.html#TSIRKGetType
man:+TSIRKSetNumStages++TSIRKSetNumStages++++man+https://petsc.org/release/manualpages/TS/TSIRKSetNumStages.html#TSIRKSetNumStages
man:+TSIRKGetNumStages++TSIRKGetNumStages++++man+https://petsc.org/release/manualpages/TS/TSIRKGetNumStages.html#TSIRKGetNumStages
man:+TSIRK++TSIRK++++man+https://petsc.org/release/manualpages/TS/TSIRK.html#TSIRK
man:+TSDISCGRAD++TSDISCGRAD++++man+https://petsc.org/release/manualpages/TS/TSDISCGRAD.html#TSDISCGRAD
man:+TSDiscGradGetFormulation++TSDiscGradGetFormulation++++man+https://petsc.org/release/manualpages/TS/TSDiscGradGetFormulation.html#TSDiscGradGetFormulation
man:+TSDiscGradSetFormulation++TSDiscGradSetFormulation++++man+https://petsc.org/release/manualpages/TS/TSDiscGradSetFormulation.html#TSDiscGradSetFormulation
man:+TSDiscGradIsGonzalez++TSDiscGradIsGonzalez++++man+https://petsc.org/release/manualpages/TS/TSDiscGradIsGonzalez.html#TSDiscGradIsGonzalez
man:+TSDiscGradUseGonzalez++TSDiscGradUseGonzalez++++man+https://petsc.org/release/manualpages/TS/TSDiscGradUseGonzalez.html#TSDiscGradUseGonzalez
man:+TSSundialsGetIterations++TSSundialsGetIterations++++man+https://petsc.org/release/manualpages/TS/TSSundialsGetIterations.html#TSSundialsGetIterations
man:+TSSundialsSetType++TSSundialsSetType++++man+https://petsc.org/release/manualpages/TS/TSSundialsSetType.html#TSSundialsSetType
man:+TSSundialsSetMaxord++TSSundialsSetMaxord++++man+https://petsc.org/release/manualpages/TS/TSSundialsSetMaxord.html#TSSundialsSetMaxord
man:+TSSundialsSetMaxl++TSSundialsSetMaxl++++man+https://petsc.org/release/manualpages/TS/TSSundialsSetMaxl.html#TSSundialsSetMaxl
man:+TSSundialsSetLinearTolerance++TSSundialsSetLinearTolerance++++man+https://petsc.org/release/manualpages/TS/TSSundialsSetLinearTolerance.html#TSSundialsSetLinearTolerance
man:+TSSundialsSetGramSchmidtType++TSSundialsSetGramSchmidtType++++man+https://petsc.org/release/manualpages/TS/TSSundialsSetGramSchmidtType.html#TSSundialsSetGramSchmidtType
man:+TSSundialsSetTolerance++TSSundialsSetTolerance++++man+https://petsc.org/release/manualpages/TS/TSSundialsSetTolerance.html#TSSundialsSetTolerance
man:+TSSundialsGetPC++TSSundialsGetPC++++man+https://petsc.org/release/manualpages/TS/TSSundialsGetPC.html#TSSundialsGetPC
man:+TSSundialsSetMinTimeStep++TSSundialsSetMinTimeStep++++man+https://petsc.org/release/manualpages/TS/TSSundialsSetMinTimeStep.html#TSSundialsSetMinTimeStep
man:+TSSundialsSetMaxTimeStep++TSSundialsSetMaxTimeStep++++man+https://petsc.org/release/manualpages/TS/TSSundialsSetMaxTimeStep.html#TSSundialsSetMaxTimeStep
man:+TSSundialsMonitorInternalSteps++TSSundialsMonitorInternalSteps++++man+https://petsc.org/release/manualpages/TS/TSSundialsMonitorInternalSteps.html#TSSundialsMonitorInternalSteps
man:+TSSundialsSetUseDense++TSSundialsSetUseDense++++man+https://petsc.org/release/manualpages/TS/TSSundialsSetUseDense.html#TSSundialsSetUseDense
man:+TSSUNDIALS++TSSUNDIALS++++man+https://petsc.org/release/manualpages/TS/TSSUNDIALS.html#TSSUNDIALS
man:+TSRADAU5++TSRADAU5++++man+https://petsc.org/release/manualpages/TS/TSRADAU5.html#TSRADAU5
man:+TSTHETA++TSTHETA++++man+https://petsc.org/release/manualpages/TS/TSTHETA.html#TSTHETA
man:+TSThetaGetTheta++TSThetaGetTheta++++man+https://petsc.org/release/manualpages/TS/TSThetaGetTheta.html#TSThetaGetTheta
man:+TSThetaSetTheta++TSThetaSetTheta++++man+https://petsc.org/release/manualpages/TS/TSThetaSetTheta.html#TSThetaSetTheta
man:+TSThetaGetEndpoint++TSThetaGetEndpoint++++man+https://petsc.org/release/manualpages/TS/TSThetaGetEndpoint.html#TSThetaGetEndpoint
man:+TSThetaSetEndpoint++TSThetaSetEndpoint++++man+https://petsc.org/release/manualpages/TS/TSThetaSetEndpoint.html#TSThetaSetEndpoint
man:+TSBEULER++TSBEULER++++man+https://petsc.org/release/manualpages/TS/TSBEULER.html#TSBEULER
man:+TSCN++TSCN++++man+https://petsc.org/release/manualpages/TS/TSCN.html#TSCN
man:+TSGLLEAdaptRegister++TSGLLEAdaptRegister++++man+https://petsc.org/release/manualpages/TS/TSGLLEAdaptRegister.html#TSGLLEAdaptRegister
man:+TSGLLEAdaptRegisterAll++TSGLLEAdaptRegisterAll++++man+https://petsc.org/release/manualpages/TS/TSGLLEAdaptRegisterAll.html#TSGLLEAdaptRegisterAll
man:+TSGLLEAdaptFinalizePackage++TSGLLEAdaptFinalizePackage++++man+https://petsc.org/release/manualpages/TS/TSGLLEAdaptFinalizePackage.html#TSGLLEAdaptFinalizePackage
man:+TSGLLEAdaptInitializePackage++TSGLLEAdaptInitializePackage++++man+https://petsc.org/release/manualpages/TS/TSGLLEAdaptInitializePackage.html#TSGLLEAdaptInitializePackage
man:+TSGLLESetType++TSGLLESetType++++man+https://petsc.org/release/manualpages/TS/TSGLLESetType.html#TSGLLESetType
man:+TSGLLESetAcceptType++TSGLLESetAcceptType++++man+https://petsc.org/release/manualpages/TS/TSGLLESetAcceptType.html#TSGLLESetAcceptType
man:+TSGLLEGetAdapt++TSGLLEGetAdapt++++man+https://petsc.org/release/manualpages/TS/TSGLLEGetAdapt.html#TSGLLEGetAdapt
man:+TSGLLERegister++TSGLLERegister++++man+https://petsc.org/release/manualpages/TS/TSGLLERegister.html#TSGLLERegister
man:+TSGLLEAcceptRegister++TSGLLEAcceptRegister++++man+https://petsc.org/release/manualpages/TS/TSGLLEAcceptRegister.html#TSGLLEAcceptRegister
man:+TSGLLERegisterAll++TSGLLERegisterAll++++man+https://petsc.org/release/manualpages/TS/TSGLLERegisterAll.html#TSGLLERegisterAll
man:+TSGLLEInitializePackage++TSGLLEInitializePackage++++man+https://petsc.org/release/manualpages/TS/TSGLLEInitializePackage.html#TSGLLEInitializePackage
man:+TSGLLEFinalizePackage++TSGLLEFinalizePackage++++man+https://petsc.org/release/manualpages/TS/TSGLLEFinalizePackage.html#TSGLLEFinalizePackage
man:+TSGLLE++TSGLLE++++man+https://petsc.org/release/manualpages/TS/TSGLLE.html#TSGLLE
man:+TSAlpha2SetPredictor++TSAlpha2SetPredictor++++man+https://petsc.org/release/manualpages/TS/TSAlpha2SetPredictor.html#TSAlpha2SetPredictor
man:+TSALPHA2++TSALPHA2++++man+https://petsc.org/release/manualpages/TS/TSALPHA2.html#TSALPHA2
man:+TSAlpha2SetRadius++TSAlpha2SetRadius++++man+https://petsc.org/release/manualpages/TS/TSAlpha2SetRadius.html#TSAlpha2SetRadius
man:+TSAlpha2SetParams++TSAlpha2SetParams++++man+https://petsc.org/release/manualpages/TS/TSAlpha2SetParams.html#TSAlpha2SetParams
man:+TSAlpha2GetParams++TSAlpha2GetParams++++man+https://petsc.org/release/manualpages/TS/TSAlpha2GetParams.html#TSAlpha2GetParams
man:+TSALPHA++TSALPHA++++man+https://petsc.org/release/manualpages/TS/TSALPHA.html#TSALPHA
man:+TSAlphaSetRadius++TSAlphaSetRadius++++man+https://petsc.org/release/manualpages/TS/TSAlphaSetRadius.html#TSAlphaSetRadius
man:+TSAlphaSetParams++TSAlphaSetParams++++man+https://petsc.org/release/manualpages/TS/TSAlphaSetParams.html#TSAlphaSetParams
man:+TSAlphaGetParams++TSAlphaGetParams++++man+https://petsc.org/release/manualpages/TS/TSAlphaGetParams.html#TSAlphaGetParams
man:+TSGLEE23++TSGLEE23++++man+https://petsc.org/release/manualpages/TS/TSGLEE23.html#TSGLEE23
man:+TSGLEE24++TSGLEE24++++man+https://petsc.org/release/manualpages/TS/TSGLEE24.html#TSGLEE24
man:+TSGLEE25i++TSGLEE25i++++man+https://petsc.org/release/manualpages/TS/TSGLEE25i.html#TSGLEE25i
man:+TSGLEE35++TSGLEE35++++man+https://petsc.org/release/manualpages/TS/TSGLEE35.html#TSGLEE35
man:+TSGLEEEXRK2A++TSGLEEEXRK2A++++man+https://petsc.org/release/manualpages/TS/TSGLEEEXRK2A.html#TSGLEEEXRK2A
man:+TSGLEERK32G1++TSGLEERK32G1++++man+https://petsc.org/release/manualpages/TS/TSGLEERK32G1.html#TSGLEERK32G1
man:+TSGLEERK285EX++TSGLEERK285EX++++man+https://petsc.org/release/manualpages/TS/TSGLEERK285EX.html#TSGLEERK285EX
man:+TSGLEERegisterAll++TSGLEERegisterAll++++man+https://petsc.org/release/manualpages/TS/TSGLEERegisterAll.html#TSGLEERegisterAll
man:+TSGLEERegisterDestroy++TSGLEERegisterDestroy++++man+https://petsc.org/release/manualpages/TS/TSGLEERegisterDestroy.html#TSGLEERegisterDestroy
man:+TSGLEEInitializePackage++TSGLEEInitializePackage++++man+https://petsc.org/release/manualpages/TS/TSGLEEInitializePackage.html#TSGLEEInitializePackage
man:+TSGLEEFinalizePackage++TSGLEEFinalizePackage++++man+https://petsc.org/release/manualpages/TS/TSGLEEFinalizePackage.html#TSGLEEFinalizePackage
man:+TSGLEERegister++TSGLEERegister++++man+https://petsc.org/release/manualpages/TS/TSGLEERegister.html#TSGLEERegister
man:+TSGLEESetType++TSGLEESetType++++man+https://petsc.org/release/manualpages/TS/TSGLEESetType.html#TSGLEESetType
man:+TSGLEEGetType++TSGLEEGetType++++man+https://petsc.org/release/manualpages/TS/TSGLEEGetType.html#TSGLEEGetType
man:+TSGLEE++TSGLEE++++man+https://petsc.org/release/manualpages/TS/TSGLEE.html#TSGLEE
man:+TSEIMEXSetMaxRows++TSEIMEXSetMaxRows++++man+https://petsc.org/release/manualpages/TS/TSEIMEXSetMaxRows.html#TSEIMEXSetMaxRows
man:+TSEIMEXSetRowCol++TSEIMEXSetRowCol++++man+https://petsc.org/release/manualpages/TS/TSEIMEXSetRowCol.html#TSEIMEXSetRowCol
man:+TSEIMEXSetOrdAdapt++TSEIMEXSetOrdAdapt++++man+https://petsc.org/release/manualpages/TS/TSEIMEXSetOrdAdapt.html#TSEIMEXSetOrdAdapt
man:+TSEIMEX++TSEIMEX++++man+https://petsc.org/release/manualpages/TS/TSEIMEX.html#TSEIMEX
man:+DMTSCopy++DMTSCopy++++man+https://petsc.org/release/manualpages/TS/DMTSCopy.html#DMTSCopy
man:+DMGetDMTS++DMGetDMTS++++man+https://petsc.org/release/manualpages/TS/DMGetDMTS.html#DMGetDMTS
man:+DMGetDMTSWrite++DMGetDMTSWrite++++man+https://petsc.org/release/manualpages/TS/DMGetDMTSWrite.html#DMGetDMTSWrite
man:+DMCopyDMTS++DMCopyDMTS++++man+https://petsc.org/release/manualpages/TS/DMCopyDMTS.html#DMCopyDMTS
man:+DMTSSetIFunction++DMTSSetIFunction++++man+https://petsc.org/release/manualpages/TS/DMTSSetIFunction.html#DMTSSetIFunction
man:+DMTSSetIFunctionContextDestroy++DMTSSetIFunctionContextDestroy++++man+https://petsc.org/release/manualpages/TS/DMTSSetIFunctionContextDestroy.html#DMTSSetIFunctionContextDestroy
man:+DMTSGetIFunction++DMTSGetIFunction++++man+https://petsc.org/release/manualpages/TS/DMTSGetIFunction.html#DMTSGetIFunction
man:+DMTSSetI2Function++DMTSSetI2Function++++man+https://petsc.org/release/manualpages/TS/DMTSSetI2Function.html#DMTSSetI2Function
man:+DMTSSetI2FunctionContextDestroy++DMTSSetI2FunctionContextDestroy++++man+https://petsc.org/release/manualpages/TS/DMTSSetI2FunctionContextDestroy.html#DMTSSetI2FunctionContextDestroy
man:+DMTSGetI2Function++DMTSGetI2Function++++man+https://petsc.org/release/manualpages/TS/DMTSGetI2Function.html#DMTSGetI2Function
man:+DMTSSetI2Jacobian++DMTSSetI2Jacobian++++man+https://petsc.org/release/manualpages/TS/DMTSSetI2Jacobian.html#DMTSSetI2Jacobian
man:+DMTSSetI2JacobianContextDestroy++DMTSSetI2JacobianContextDestroy++++man+https://petsc.org/release/manualpages/TS/DMTSSetI2JacobianContextDestroy.html#DMTSSetI2JacobianContextDestroy
man:+DMTSGetI2Jacobian++DMTSGetI2Jacobian++++man+https://petsc.org/release/manualpages/TS/DMTSGetI2Jacobian.html#DMTSGetI2Jacobian
man:+DMTSSetRHSFunction++DMTSSetRHSFunction++++man+https://petsc.org/release/manualpages/TS/DMTSSetRHSFunction.html#DMTSSetRHSFunction
man:+DMTSSetRHSFunctionContextDestroy++DMTSSetRHSFunctionContextDestroy++++man+https://petsc.org/release/manualpages/TS/DMTSSetRHSFunctionContextDestroy.html#DMTSSetRHSFunctionContextDestroy
man:+DMTSSetTransientVariable++DMTSSetTransientVariable++++man+https://petsc.org/release/manualpages/TS/DMTSSetTransientVariable.html#DMTSSetTransientVariable
man:+DMTSGetTransientVariable++DMTSGetTransientVariable++++man+https://petsc.org/release/manualpages/TS/DMTSGetTransientVariable.html#DMTSGetTransientVariable
man:+DMTSGetSolutionFunction++DMTSGetSolutionFunction++++man+https://petsc.org/release/manualpages/TS/DMTSGetSolutionFunction.html#DMTSGetSolutionFunction
man:+DMTSSetSolutionFunction++DMTSSetSolutionFunction++++man+https://petsc.org/release/manualpages/TS/DMTSSetSolutionFunction.html#DMTSSetSolutionFunction
man:+DMTSSetForcingFunction++DMTSSetForcingFunction++++man+https://petsc.org/release/manualpages/TS/DMTSSetForcingFunction.html#DMTSSetForcingFunction
man:+DMTSGetForcingFunction++DMTSGetForcingFunction++++man+https://petsc.org/release/manualpages/TS/DMTSGetForcingFunction.html#DMTSGetForcingFunction
man:+DMTSGetRHSFunction++DMTSGetRHSFunction++++man+https://petsc.org/release/manualpages/TS/DMTSGetRHSFunction.html#DMTSGetRHSFunction
man:+DMTSSetIJacobian++DMTSSetIJacobian++++man+https://petsc.org/release/manualpages/TS/DMTSSetIJacobian.html#DMTSSetIJacobian
man:+DMTSSetIJacobianContextDestroy++DMTSSetIJacobianContextDestroy++++man+https://petsc.org/release/manualpages/TS/DMTSSetIJacobianContextDestroy.html#DMTSSetIJacobianContextDestroy
man:+DMTSGetIJacobian++DMTSGetIJacobian++++man+https://petsc.org/release/manualpages/TS/DMTSGetIJacobian.html#DMTSGetIJacobian
man:+DMTSSetRHSJacobian++DMTSSetRHSJacobian++++man+https://petsc.org/release/manualpages/TS/DMTSSetRHSJacobian.html#DMTSSetRHSJacobian
man:+DMTSSetRHSJacobianContextDestroy++DMTSSetRHSJacobianContextDestroy++++man+https://petsc.org/release/manualpages/TS/DMTSSetRHSJacobianContextDestroy.html#DMTSSetRHSJacobianContextDestroy
man:+DMTSGetRHSJacobian++DMTSGetRHSJacobian++++man+https://petsc.org/release/manualpages/TS/DMTSGetRHSJacobian.html#DMTSGetRHSJacobian
man:+DMTSSetIFunctionSerialize++DMTSSetIFunctionSerialize++++man+https://petsc.org/release/manualpages/TS/DMTSSetIFunctionSerialize.html#DMTSSetIFunctionSerialize
man:+DMTSSetIJacobianSerialize++DMTSSetIJacobianSerialize++++man+https://petsc.org/release/manualpages/TS/DMTSSetIJacobianSerialize.html#DMTSSetIJacobianSerialize
man:+TSMonitorLGCtxNetworkDestroy++TSMonitorLGCtxNetworkDestroy++++man+https://petsc.org/release/manualpages/TS/TSMonitorLGCtxNetworkDestroy.html#TSMonitorLGCtxNetworkDestroy
man:+TSMonitorLGCtxNetworkSolution++TSMonitorLGCtxNetworkSolution++++man+https://petsc.org/release/manualpages/TS/TSMonitorLGCtxNetworkSolution.html#TSMonitorLGCtxNetworkSolution
man:+DMTSSetBoundaryLocal++DMTSSetBoundaryLocal++++man+https://petsc.org/release/manualpages/TS/DMTSSetBoundaryLocal.html#DMTSSetBoundaryLocal
man:+DMTSGetIFunctionLocal++DMTSGetIFunctionLocal++++man+https://petsc.org/release/manualpages/TS/DMTSGetIFunctionLocal.html#DMTSGetIFunctionLocal
man:+DMTSSetIFunctionLocal++DMTSSetIFunctionLocal++++man+https://petsc.org/release/manualpages/TS/DMTSSetIFunctionLocal.html#DMTSSetIFunctionLocal
man:+DMTSGetIJacobianLocal++DMTSGetIJacobianLocal++++man+https://petsc.org/release/manualpages/TS/DMTSGetIJacobianLocal.html#DMTSGetIJacobianLocal
man:+DMTSSetIJacobianLocal++DMTSSetIJacobianLocal++++man+https://petsc.org/release/manualpages/TS/DMTSSetIJacobianLocal.html#DMTSSetIJacobianLocal
man:+DMTSGetRHSFunctionLocal++DMTSGetRHSFunctionLocal++++man+https://petsc.org/release/manualpages/TS/DMTSGetRHSFunctionLocal.html#DMTSGetRHSFunctionLocal
man:+DMTSSetRHSFunctionLocal++DMTSSetRHSFunctionLocal++++man+https://petsc.org/release/manualpages/TS/DMTSSetRHSFunctionLocal.html#DMTSSetRHSFunctionLocal
man:+DMTSCreateRHSMassMatrix++DMTSCreateRHSMassMatrix++++man+https://petsc.org/release/manualpages/TS/DMTSCreateRHSMassMatrix.html#DMTSCreateRHSMassMatrix
man:+DMTSCreateRHSMassMatrixLumped++DMTSCreateRHSMassMatrixLumped++++man+https://petsc.org/release/manualpages/TS/DMTSCreateRHSMassMatrixLumped.html#DMTSCreateRHSMassMatrixLumped
man:+DMTSDestroyRHSMassMatrix++DMTSDestroyRHSMassMatrix++++man+https://petsc.org/release/manualpages/TS/DMTSDestroyRHSMassMatrix.html#DMTSDestroyRHSMassMatrix
man:+DMPlexTSComputeRHSFunctionFVM++DMPlexTSComputeRHSFunctionFVM++++man+https://petsc.org/release/manualpages/TS/DMPlexTSComputeRHSFunctionFVM.html#DMPlexTSComputeRHSFunctionFVM
man:+DMPlexTSComputeBoundary++DMPlexTSComputeBoundary++++man+https://petsc.org/release/manualpages/TS/DMPlexTSComputeBoundary.html#DMPlexTSComputeBoundary
man:+DMPlexTSComputeIFunctionFEM++DMPlexTSComputeIFunctionFEM++++man+https://petsc.org/release/manualpages/TS/DMPlexTSComputeIFunctionFEM.html#DMPlexTSComputeIFunctionFEM
man:+DMPlexTSComputeIJacobianFEM++DMPlexTSComputeIJacobianFEM++++man+https://petsc.org/release/manualpages/TS/DMPlexTSComputeIJacobianFEM.html#DMPlexTSComputeIJacobianFEM
man:+DMPlexTSComputeRHSFunctionFEM++DMPlexTSComputeRHSFunctionFEM++++man+https://petsc.org/release/manualpages/TS/DMPlexTSComputeRHSFunctionFEM.html#DMPlexTSComputeRHSFunctionFEM
man:+DMTSCheckResidual++DMTSCheckResidual++++man+https://petsc.org/release/manualpages/TS/DMTSCheckResidual.html#DMTSCheckResidual
man:+DMTSCheckJacobian++DMTSCheckJacobian++++man+https://petsc.org/release/manualpages/TS/DMTSCheckJacobian.html#DMTSCheckJacobian
man:+DMTSCheckFromOptions++DMTSCheckFromOptions++++man+https://petsc.org/release/manualpages/TS/DMTSCheckFromOptions.html#DMTSCheckFromOptions
man:+DMDATSSetRHSFunctionLocal++DMDATSSetRHSFunctionLocal++++man+https://petsc.org/release/manualpages/TS/DMDATSSetRHSFunctionLocal.html#DMDATSSetRHSFunctionLocal
man:+DMDATSSetRHSJacobianLocal++DMDATSSetRHSJacobianLocal++++man+https://petsc.org/release/manualpages/TS/DMDATSSetRHSJacobianLocal.html#DMDATSSetRHSJacobianLocal
man:+DMDATSSetIFunctionLocal++DMDATSSetIFunctionLocal++++man+https://petsc.org/release/manualpages/TS/DMDATSSetIFunctionLocal.html#DMDATSSetIFunctionLocal
man:+DMDATSSetIJacobianLocal++DMDATSSetIJacobianLocal++++man+https://petsc.org/release/manualpages/TS/DMDATSSetIJacobianLocal.html#DMDATSSetIJacobianLocal
man:+DMPlexLandauAddMaxwellians++DMPlexLandauAddMaxwellians++++man+https://petsc.org/release/manualpages/LANDAU/DMPlexLandauAddMaxwellians.html#DMPlexLandauAddMaxwellians
man:+DMPlexLandauCreateVelocitySpace++DMPlexLandauCreateVelocitySpace++++man+https://petsc.org/release/manualpages/LANDAU/DMPlexLandauCreateVelocitySpace.html#DMPlexLandauCreateVelocitySpace
man:+DMPlexLandauAccess++DMPlexLandauAccess++++man+https://petsc.org/release/manualpages/LANDAU/DMPlexLandauAccess.html#DMPlexLandauAccess
man:+DMPlexLandauDestroyVelocitySpace++DMPlexLandauDestroyVelocitySpace++++man+https://petsc.org/release/manualpages/LANDAU/DMPlexLandauDestroyVelocitySpace.html#DMPlexLandauDestroyVelocitySpace
man:+DMPlexLandauPrintNorms++DMPlexLandauPrintNorms++++man+https://petsc.org/release/manualpages/LANDAU/DMPlexLandauPrintNorms.html#DMPlexLandauPrintNorms
man:+DMPlexLandauCreateMassMatrix++DMPlexLandauCreateMassMatrix++++man+https://petsc.org/release/manualpages/LANDAU/DMPlexLandauCreateMassMatrix.html#DMPlexLandauCreateMassMatrix
man:+DMPlexLandauIFunction++DMPlexLandauIFunction++++man+https://petsc.org/release/manualpages/LANDAU/DMPlexLandauIFunction.html#DMPlexLandauIFunction
man:+DMPlexLandauIJacobian++DMPlexLandauIJacobian++++man+https://petsc.org/release/manualpages/LANDAU/DMPlexLandauIJacobian.html#DMPlexLandauIJacobian
man:+TSTrajectoryRegister++TSTrajectoryRegister++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryRegister.html#TSTrajectoryRegister
man:+TSTrajectorySet++TSTrajectorySet++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySet.html#TSTrajectorySet
man:+TSTrajectoryGetNumSteps++TSTrajectoryGetNumSteps++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryGetNumSteps.html#TSTrajectoryGetNumSteps
man:+TSTrajectoryGet++TSTrajectoryGet++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryGet.html#TSTrajectoryGet
man:+TSTrajectoryGetVecs++TSTrajectoryGetVecs++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryGetVecs.html#TSTrajectoryGetVecs
man:+TSTrajectoryViewFromOptions++TSTrajectoryViewFromOptions++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryViewFromOptions.html#TSTrajectoryViewFromOptions
man:+TSTrajectoryView++TSTrajectoryView++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryView.html#TSTrajectoryView
man:+TSTrajectorySetVariableNames++TSTrajectorySetVariableNames++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetVariableNames.html#TSTrajectorySetVariableNames
man:+TSTrajectorySetTransform++TSTrajectorySetTransform++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetTransform.html#TSTrajectorySetTransform
man:+TSTrajectoryCreate++TSTrajectoryCreate++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryCreate.html#TSTrajectoryCreate
man:+TSTrajectorySetType++TSTrajectorySetType++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetType.html#TSTrajectorySetType
man:+TSTrajectoryGetType++TSTrajectoryGetType++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryGetType.html#TSTrajectoryGetType
man:+TSTrajectoryRegisterAll++TSTrajectoryRegisterAll++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryRegisterAll.html#TSTrajectoryRegisterAll
man:+TSTrajectoryReset++TSTrajectoryReset++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryReset.html#TSTrajectoryReset
man:+TSTrajectoryDestroy++TSTrajectoryDestroy++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryDestroy.html#TSTrajectoryDestroy
man:+TSTrajectorySetUseHistory++TSTrajectorySetUseHistory++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetUseHistory.html#TSTrajectorySetUseHistory
man:+TSTrajectorySetMonitor++TSTrajectorySetMonitor++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetMonitor.html#TSTrajectorySetMonitor
man:+TSTrajectorySetKeepFiles++TSTrajectorySetKeepFiles++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetKeepFiles.html#TSTrajectorySetKeepFiles
man:+TSTrajectorySetDirname++TSTrajectorySetDirname++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetDirname.html#TSTrajectorySetDirname
man:+TSTrajectorySetFiletemplate++TSTrajectorySetFiletemplate++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetFiletemplate.html#TSTrajectorySetFiletemplate
man:+TSTrajectorySetFromOptions++TSTrajectorySetFromOptions++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetFromOptions.html#TSTrajectorySetFromOptions
man:+TSTrajectorySetUp++TSTrajectorySetUp++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetUp.html#TSTrajectorySetUp
man:+TSTrajectorySetSolutionOnly++TSTrajectorySetSolutionOnly++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetSolutionOnly.html#TSTrajectorySetSolutionOnly
man:+TSTrajectoryGetSolutionOnly++TSTrajectoryGetSolutionOnly++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryGetSolutionOnly.html#TSTrajectoryGetSolutionOnly
man:+TSTrajectoryGetUpdatedHistoryVecs++TSTrajectoryGetUpdatedHistoryVecs++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryGetUpdatedHistoryVecs.html#TSTrajectoryGetUpdatedHistoryVecs
man:+TSTrajectoryRestoreUpdatedHistoryVecs++TSTrajectoryRestoreUpdatedHistoryVecs++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryRestoreUpdatedHistoryVecs.html#TSTrajectoryRestoreUpdatedHistoryVecs
man:+TSTRAJECTORYVISUALIZATION++TSTRAJECTORYVISUALIZATION++++man+https://petsc.org/release/manualpages/TS/TSTRAJECTORYVISUALIZATION.html#TSTRAJECTORYVISUALIZATION
man:+TSTrajectoryMemorySetType++TSTrajectoryMemorySetType++++man+https://petsc.org/release/manualpages/TS/TSTrajectoryMemorySetType.html#TSTrajectoryMemorySetType
man:+TSTrajectorySetMaxCpsRAM++TSTrajectorySetMaxCpsRAM++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetMaxCpsRAM.html#TSTrajectorySetMaxCpsRAM
man:+TSTrajectorySetMaxCpsDisk++TSTrajectorySetMaxCpsDisk++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetMaxCpsDisk.html#TSTrajectorySetMaxCpsDisk
man:+TSTrajectorySetMaxUnitsRAM++TSTrajectorySetMaxUnitsRAM++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetMaxUnitsRAM.html#TSTrajectorySetMaxUnitsRAM
man:+TSTrajectorySetMaxUnitsDisk++TSTrajectorySetMaxUnitsDisk++++man+https://petsc.org/release/manualpages/TS/TSTrajectorySetMaxUnitsDisk.html#TSTrajectorySetMaxUnitsDisk
man:+TSTRAJECTORYMEMORY++TSTRAJECTORYMEMORY++++man+https://petsc.org/release/manualpages/TS/TSTRAJECTORYMEMORY.html#TSTRAJECTORYMEMORY
man:+TSTRAJECTORYBASIC++TSTRAJECTORYBASIC++++man+https://petsc.org/release/manualpages/TS/TSTRAJECTORYBASIC.html#TSTRAJECTORYBASIC
man:+TSTRAJECTORYSINGLEFILE++TSTRAJECTORYSINGLEFILE++++man+https://petsc.org/release/manualpages/TS/TSTRAJECTORYSINGLEFILE.html#TSTRAJECTORYSINGLEFILE
man:+TSSetPostEventStep++TSSetPostEventStep++++man+https://petsc.org/release/manualpages/TS/TSSetPostEventStep.html#TSSetPostEventStep
man:+TSSetPostEventSecondStep++TSSetPostEventSecondStep++++man+https://petsc.org/release/manualpages/TS/TSSetPostEventSecondStep.html#TSSetPostEventSecondStep
man:+TSSetEventTolerances++TSSetEventTolerances++++man+https://petsc.org/release/manualpages/TS/TSSetEventTolerances.html#TSSetEventTolerances
man:+TSSetEventHandler++TSSetEventHandler++++man+https://petsc.org/release/manualpages/TS/TSSetEventHandler.html#TSSetEventHandler
man:+TSGetNumEvents++TSGetNumEvents++++man+https://petsc.org/release/manualpages/TS/TSGetNumEvents.html#TSGetNumEvents
man:+TAOLCL++TAOLCL++++man+https://petsc.org/release/manualpages/Tao/TAOLCL.html#TAOLCL
man:+TaoFinalizePackage++TaoFinalizePackage++++man+https://petsc.org/release/manualpages/Tao/TaoFinalizePackage.html#TaoFinalizePackage
man:+TaoInitializePackage++TaoInitializePackage++++man+https://petsc.org/release/manualpages/Tao/TaoInitializePackage.html#TaoInitializePackage
man:+TaoSetSolution++TaoSetSolution++++man+https://petsc.org/release/manualpages/Tao/TaoSetSolution.html#TaoSetSolution
man:+TaoComputeGradient++TaoComputeGradient++++man+https://petsc.org/release/manualpages/Tao/TaoComputeGradient.html#TaoComputeGradient
man:+TaoComputeObjective++TaoComputeObjective++++man+https://petsc.org/release/manualpages/Tao/TaoComputeObjective.html#TaoComputeObjective
man:+TaoComputeObjectiveAndGradient++TaoComputeObjectiveAndGradient++++man+https://petsc.org/release/manualpages/Tao/TaoComputeObjectiveAndGradient.html#TaoComputeObjectiveAndGradient
man:+TaoSetObjective++TaoSetObjective++++man+https://petsc.org/release/manualpages/Tao/TaoSetObjective.html#TaoSetObjective
man:+TaoGetObjective++TaoGetObjective++++man+https://petsc.org/release/manualpages/Tao/TaoGetObjective.html#TaoGetObjective
man:+TaoSetResidualRoutine++TaoSetResidualRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoSetResidualRoutine.html#TaoSetResidualRoutine
man:+TaoSetResidualWeights++TaoSetResidualWeights++++man+https://petsc.org/release/manualpages/Tao/TaoSetResidualWeights.html#TaoSetResidualWeights
man:+TaoComputeResidual++TaoComputeResidual++++man+https://petsc.org/release/manualpages/Tao/TaoComputeResidual.html#TaoComputeResidual
man:+TaoSetGradient++TaoSetGradient++++man+https://petsc.org/release/manualpages/Tao/TaoSetGradient.html#TaoSetGradient
man:+TaoGetGradient++TaoGetGradient++++man+https://petsc.org/release/manualpages/Tao/TaoGetGradient.html#TaoGetGradient
man:+TaoSetObjectiveAndGradient++TaoSetObjectiveAndGradient++++man+https://petsc.org/release/manualpages/Tao/TaoSetObjectiveAndGradient.html#TaoSetObjectiveAndGradient
man:+TaoGetObjectiveAndGradient++TaoGetObjectiveAndGradient++++man+https://petsc.org/release/manualpages/Tao/TaoGetObjectiveAndGradient.html#TaoGetObjectiveAndGradient
man:+TaoIsObjectiveDefined++TaoIsObjectiveDefined++++man+https://petsc.org/release/manualpages/Tao/TaoIsObjectiveDefined.html#TaoIsObjectiveDefined
man:+TaoIsGradientDefined++TaoIsGradientDefined++++man+https://petsc.org/release/manualpages/Tao/TaoIsGradientDefined.html#TaoIsGradientDefined
man:+TaoIsObjectiveAndGradientDefined++TaoIsObjectiveAndGradientDefined++++man+https://petsc.org/release/manualpages/Tao/TaoIsObjectiveAndGradientDefined.html#TaoIsObjectiveAndGradientDefined
man:+TaoSetHessian++TaoSetHessian++++man+https://petsc.org/release/manualpages/Tao/TaoSetHessian.html#TaoSetHessian
man:+TaoGetHessian++TaoGetHessian++++man+https://petsc.org/release/manualpages/Tao/TaoGetHessian.html#TaoGetHessian
man:+TaoComputeHessian++TaoComputeHessian++++man+https://petsc.org/release/manualpages/Tao/TaoComputeHessian.html#TaoComputeHessian
man:+TaoComputeJacobian++TaoComputeJacobian++++man+https://petsc.org/release/manualpages/Tao/TaoComputeJacobian.html#TaoComputeJacobian
man:+TaoComputeResidualJacobian++TaoComputeResidualJacobian++++man+https://petsc.org/release/manualpages/Tao/TaoComputeResidualJacobian.html#TaoComputeResidualJacobian
man:+TaoComputeJacobianState++TaoComputeJacobianState++++man+https://petsc.org/release/manualpages/Tao/TaoComputeJacobianState.html#TaoComputeJacobianState
man:+TaoComputeJacobianDesign++TaoComputeJacobianDesign++++man+https://petsc.org/release/manualpages/Tao/TaoComputeJacobianDesign.html#TaoComputeJacobianDesign
man:+TaoSetJacobianRoutine++TaoSetJacobianRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoSetJacobianRoutine.html#TaoSetJacobianRoutine
man:+TaoSetJacobianResidualRoutine++TaoSetJacobianResidualRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoSetJacobianResidualRoutine.html#TaoSetJacobianResidualRoutine
man:+TaoSetJacobianStateRoutine++TaoSetJacobianStateRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoSetJacobianStateRoutine.html#TaoSetJacobianStateRoutine
man:+TaoSetJacobianDesignRoutine++TaoSetJacobianDesignRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoSetJacobianDesignRoutine.html#TaoSetJacobianDesignRoutine
man:+TaoSetStateDesignIS++TaoSetStateDesignIS++++man+https://petsc.org/release/manualpages/Tao/TaoSetStateDesignIS.html#TaoSetStateDesignIS
man:+TaoComputeJacobianEquality++TaoComputeJacobianEquality++++man+https://petsc.org/release/manualpages/Tao/TaoComputeJacobianEquality.html#TaoComputeJacobianEquality
man:+TaoComputeJacobianInequality++TaoComputeJacobianInequality++++man+https://petsc.org/release/manualpages/Tao/TaoComputeJacobianInequality.html#TaoComputeJacobianInequality
man:+TaoSetJacobianEqualityRoutine++TaoSetJacobianEqualityRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoSetJacobianEqualityRoutine.html#TaoSetJacobianEqualityRoutine
man:+TaoSetJacobianInequalityRoutine++TaoSetJacobianInequalityRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoSetJacobianInequalityRoutine.html#TaoSetJacobianInequalityRoutine
man:+TaoSetVariableBounds++TaoSetVariableBounds++++man+https://petsc.org/release/manualpages/Tao/TaoSetVariableBounds.html#TaoSetVariableBounds
man:+TaoSetVariableBoundsRoutine++TaoSetVariableBoundsRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoSetVariableBoundsRoutine.html#TaoSetVariableBoundsRoutine
man:+TaoGetVariableBounds++TaoGetVariableBounds++++man+https://petsc.org/release/manualpages/Tao/TaoGetVariableBounds.html#TaoGetVariableBounds
man:+TaoComputeVariableBounds++TaoComputeVariableBounds++++man+https://petsc.org/release/manualpages/Tao/TaoComputeVariableBounds.html#TaoComputeVariableBounds
man:+TaoSetInequalityBounds++TaoSetInequalityBounds++++man+https://petsc.org/release/manualpages/Tao/TaoSetInequalityBounds.html#TaoSetInequalityBounds
man:+TaoGetInequalityBounds++TaoGetInequalityBounds++++man+https://petsc.org/release/manualpages/Tao/TaoGetInequalityBounds.html#TaoGetInequalityBounds
man:+TaoComputeConstraints++TaoComputeConstraints++++man+https://petsc.org/release/manualpages/Tao/TaoComputeConstraints.html#TaoComputeConstraints
man:+TaoSetConstraintsRoutine++TaoSetConstraintsRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoSetConstraintsRoutine.html#TaoSetConstraintsRoutine
man:+TaoComputeDualVariables++TaoComputeDualVariables++++man+https://petsc.org/release/manualpages/Tao/TaoComputeDualVariables.html#TaoComputeDualVariables
man:+TaoGetDualVariables++TaoGetDualVariables++++man+https://petsc.org/release/manualpages/Tao/TaoGetDualVariables.html#TaoGetDualVariables
man:+TaoSetEqualityConstraintsRoutine++TaoSetEqualityConstraintsRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoSetEqualityConstraintsRoutine.html#TaoSetEqualityConstraintsRoutine
man:+TaoSetInequalityConstraintsRoutine++TaoSetInequalityConstraintsRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoSetInequalityConstraintsRoutine.html#TaoSetInequalityConstraintsRoutine
man:+TaoComputeEqualityConstraints++TaoComputeEqualityConstraints++++man+https://petsc.org/release/manualpages/Tao/TaoComputeEqualityConstraints.html#TaoComputeEqualityConstraints
man:+TaoComputeInequalityConstraints++TaoComputeInequalityConstraints++++man+https://petsc.org/release/manualpages/Tao/TaoComputeInequalityConstraints.html#TaoComputeInequalityConstraints
man:+TaoRegisterAll++TaoRegisterAll++++man+https://petsc.org/release/manualpages/Tao/TaoRegisterAll.html#TaoRegisterAll
man:+TaoDefaultComputeGradient++TaoDefaultComputeGradient++++man+https://petsc.org/release/manualpages/Tao/TaoDefaultComputeGradient.html#TaoDefaultComputeGradient
man:+TaoDefaultComputeHessian++TaoDefaultComputeHessian++++man+https://petsc.org/release/manualpages/Tao/TaoDefaultComputeHessian.html#TaoDefaultComputeHessian
man:+TaoDefaultComputeHessianColor++TaoDefaultComputeHessianColor++++man+https://petsc.org/release/manualpages/Tao/TaoDefaultComputeHessianColor.html#TaoDefaultComputeHessianColor
man:+TaoParametersInitialize++TaoParametersInitialize++++man+https://petsc.org/release/manualpages/Tao/TaoParametersInitialize.html#TaoParametersInitialize
man:+TaoCreate++TaoCreate++++man+https://petsc.org/release/manualpages/Tao/TaoCreate.html#TaoCreate
man:+TaoSolve++TaoSolve++++man+https://petsc.org/release/manualpages/Tao/TaoSolve.html#TaoSolve
man:+TaoSetUp++TaoSetUp++++man+https://petsc.org/release/manualpages/Tao/TaoSetUp.html#TaoSetUp
man:+TaoDestroy++TaoDestroy++++man+https://petsc.org/release/manualpages/Tao/TaoDestroy.html#TaoDestroy
man:+TaoKSPSetUseEW++TaoKSPSetUseEW++++man+https://petsc.org/release/manualpages/Tao/TaoKSPSetUseEW.html#TaoKSPSetUseEW
man:+TaoSetFromOptions++TaoSetFromOptions++++man+https://petsc.org/release/manualpages/Tao/TaoSetFromOptions.html#TaoSetFromOptions
man:+TaoViewFromOptions++TaoViewFromOptions++++man+https://petsc.org/release/manualpages/Tao/TaoViewFromOptions.html#TaoViewFromOptions
man:+TaoView++TaoView++++man+https://petsc.org/release/manualpages/Tao/TaoView.html#TaoView
man:+TaoSetRecycleHistory++TaoSetRecycleHistory++++man+https://petsc.org/release/manualpages/Tao/TaoSetRecycleHistory.html#TaoSetRecycleHistory
man:+TaoGetRecycleHistory++TaoGetRecycleHistory++++man+https://petsc.org/release/manualpages/Tao/TaoGetRecycleHistory.html#TaoGetRecycleHistory
man:+TaoSetTolerances++TaoSetTolerances++++man+https://petsc.org/release/manualpages/Tao/TaoSetTolerances.html#TaoSetTolerances
man:+TaoSetConstraintTolerances++TaoSetConstraintTolerances++++man+https://petsc.org/release/manualpages/Tao/TaoSetConstraintTolerances.html#TaoSetConstraintTolerances
man:+TaoGetConstraintTolerances++TaoGetConstraintTolerances++++man+https://petsc.org/release/manualpages/Tao/TaoGetConstraintTolerances.html#TaoGetConstraintTolerances
man:+TaoSetFunctionLowerBound++TaoSetFunctionLowerBound++++man+https://petsc.org/release/manualpages/Tao/TaoSetFunctionLowerBound.html#TaoSetFunctionLowerBound
man:+TaoGetFunctionLowerBound++TaoGetFunctionLowerBound++++man+https://petsc.org/release/manualpages/Tao/TaoGetFunctionLowerBound.html#TaoGetFunctionLowerBound
man:+TaoSetMaximumFunctionEvaluations++TaoSetMaximumFunctionEvaluations++++man+https://petsc.org/release/manualpages/Tao/TaoSetMaximumFunctionEvaluations.html#TaoSetMaximumFunctionEvaluations
man:+TaoGetMaximumFunctionEvaluations++TaoGetMaximumFunctionEvaluations++++man+https://petsc.org/release/manualpages/Tao/TaoGetMaximumFunctionEvaluations.html#TaoGetMaximumFunctionEvaluations
man:+TaoGetCurrentFunctionEvaluations++TaoGetCurrentFunctionEvaluations++++man+https://petsc.org/release/manualpages/Tao/TaoGetCurrentFunctionEvaluations.html#TaoGetCurrentFunctionEvaluations
man:+TaoSetMaximumIterations++TaoSetMaximumIterations++++man+https://petsc.org/release/manualpages/Tao/TaoSetMaximumIterations.html#TaoSetMaximumIterations
man:+TaoGetMaximumIterations++TaoGetMaximumIterations++++man+https://petsc.org/release/manualpages/Tao/TaoGetMaximumIterations.html#TaoGetMaximumIterations
man:+TaoSetInitialTrustRegionRadius++TaoSetInitialTrustRegionRadius++++man+https://petsc.org/release/manualpages/Tao/TaoSetInitialTrustRegionRadius.html#TaoSetInitialTrustRegionRadius
man:+TaoGetInitialTrustRegionRadius++TaoGetInitialTrustRegionRadius++++man+https://petsc.org/release/manualpages/Tao/TaoGetInitialTrustRegionRadius.html#TaoGetInitialTrustRegionRadius
man:+TaoGetCurrentTrustRegionRadius++TaoGetCurrentTrustRegionRadius++++man+https://petsc.org/release/manualpages/Tao/TaoGetCurrentTrustRegionRadius.html#TaoGetCurrentTrustRegionRadius
man:+TaoGetTolerances++TaoGetTolerances++++man+https://petsc.org/release/manualpages/Tao/TaoGetTolerances.html#TaoGetTolerances
man:+TaoGetKSP++TaoGetKSP++++man+https://petsc.org/release/manualpages/Tao/TaoGetKSP.html#TaoGetKSP
man:+TaoGetLinearSolveIterations++TaoGetLinearSolveIterations++++man+https://petsc.org/release/manualpages/Tao/TaoGetLinearSolveIterations.html#TaoGetLinearSolveIterations
man:+TaoGetLineSearch++TaoGetLineSearch++++man+https://petsc.org/release/manualpages/Tao/TaoGetLineSearch.html#TaoGetLineSearch
man:+TaoAddLineSearchCounts++TaoAddLineSearchCounts++++man+https://petsc.org/release/manualpages/Tao/TaoAddLineSearchCounts.html#TaoAddLineSearchCounts
man:+TaoGetSolution++TaoGetSolution++++man+https://petsc.org/release/manualpages/Tao/TaoGetSolution.html#TaoGetSolution
man:+TaoResetStatistics++TaoResetStatistics++++man+https://petsc.org/release/manualpages/Tao/TaoResetStatistics.html#TaoResetStatistics
man:+TaoSetUpdate++TaoSetUpdate++++man+https://petsc.org/release/manualpages/Tao/TaoSetUpdate.html#TaoSetUpdate
man:+TaoSetConvergenceTest++TaoSetConvergenceTest++++man+https://petsc.org/release/manualpages/Tao/TaoSetConvergenceTest.html#TaoSetConvergenceTest
man:+TaoMonitorSet++TaoMonitorSet++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorSet.html#TaoMonitorSet
man:+TaoMonitorCancel++TaoMonitorCancel++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorCancel.html#TaoMonitorCancel
man:+TaoMonitorDefault++TaoMonitorDefault++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorDefault.html#TaoMonitorDefault
man:+TaoMonitorGlobalization++TaoMonitorGlobalization++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorGlobalization.html#TaoMonitorGlobalization
man:+TaoMonitorDefaultShort++TaoMonitorDefaultShort++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorDefaultShort.html#TaoMonitorDefaultShort
man:+TaoMonitorConstraintNorm++TaoMonitorConstraintNorm++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorConstraintNorm.html#TaoMonitorConstraintNorm
man:+TaoMonitorSolution++TaoMonitorSolution++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorSolution.html#TaoMonitorSolution
man:+TaoMonitorGradient++TaoMonitorGradient++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorGradient.html#TaoMonitorGradient
man:+TaoMonitorStep++TaoMonitorStep++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorStep.html#TaoMonitorStep
man:+TaoMonitorSolutionDraw++TaoMonitorSolutionDraw++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorSolutionDraw.html#TaoMonitorSolutionDraw
man:+TaoMonitorGradientDraw++TaoMonitorGradientDraw++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorGradientDraw.html#TaoMonitorGradientDraw
man:+TaoMonitorStepDraw++TaoMonitorStepDraw++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorStepDraw.html#TaoMonitorStepDraw
man:+TaoMonitorResidual++TaoMonitorResidual++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorResidual.html#TaoMonitorResidual
man:+TaoDefaultConvergenceTest++TaoDefaultConvergenceTest++++man+https://petsc.org/release/manualpages/Tao/TaoDefaultConvergenceTest.html#TaoDefaultConvergenceTest
man:+TaoSetOptionsPrefix++TaoSetOptionsPrefix++++man+https://petsc.org/release/manualpages/Tao/TaoSetOptionsPrefix.html#TaoSetOptionsPrefix
man:+TaoAppendOptionsPrefix++TaoAppendOptionsPrefix++++man+https://petsc.org/release/manualpages/Tao/TaoAppendOptionsPrefix.html#TaoAppendOptionsPrefix
man:+TaoGetOptionsPrefix++TaoGetOptionsPrefix++++man+https://petsc.org/release/manualpages/Tao/TaoGetOptionsPrefix.html#TaoGetOptionsPrefix
man:+TaoSetType++TaoSetType++++man+https://petsc.org/release/manualpages/Tao/TaoSetType.html#TaoSetType
man:+TaoRegister++TaoRegister++++man+https://petsc.org/release/manualpages/Tao/TaoRegister.html#TaoRegister
man:+TaoRegisterDestroy++TaoRegisterDestroy++++man+https://petsc.org/release/manualpages/Tao/TaoRegisterDestroy.html#TaoRegisterDestroy
man:+TaoGetIterationNumber++TaoGetIterationNumber++++man+https://petsc.org/release/manualpages/Tao/TaoGetIterationNumber.html#TaoGetIterationNumber
man:+TaoGetResidualNorm++TaoGetResidualNorm++++man+https://petsc.org/release/manualpages/Tao/TaoGetResidualNorm.html#TaoGetResidualNorm
man:+TaoSetIterationNumber++TaoSetIterationNumber++++man+https://petsc.org/release/manualpages/Tao/TaoSetIterationNumber.html#TaoSetIterationNumber
man:+TaoGetTotalIterationNumber++TaoGetTotalIterationNumber++++man+https://petsc.org/release/manualpages/Tao/TaoGetTotalIterationNumber.html#TaoGetTotalIterationNumber
man:+TaoSetTotalIterationNumber++TaoSetTotalIterationNumber++++man+https://petsc.org/release/manualpages/Tao/TaoSetTotalIterationNumber.html#TaoSetTotalIterationNumber
man:+TaoSetConvergedReason++TaoSetConvergedReason++++man+https://petsc.org/release/manualpages/Tao/TaoSetConvergedReason.html#TaoSetConvergedReason
man:+TaoGetConvergedReason++TaoGetConvergedReason++++man+https://petsc.org/release/manualpages/Tao/TaoGetConvergedReason.html#TaoGetConvergedReason
man:+TaoGetSolutionStatus++TaoGetSolutionStatus++++man+https://petsc.org/release/manualpages/Tao/TaoGetSolutionStatus.html#TaoGetSolutionStatus
man:+TaoGetType++TaoGetType++++man+https://petsc.org/release/manualpages/Tao/TaoGetType.html#TaoGetType
man:+TaoMonitor++TaoMonitor++++man+https://petsc.org/release/manualpages/Tao/TaoMonitor.html#TaoMonitor
man:+TaoSetConvergenceHistory++TaoSetConvergenceHistory++++man+https://petsc.org/release/manualpages/Tao/TaoSetConvergenceHistory.html#TaoSetConvergenceHistory
man:+TaoGetConvergenceHistory++TaoGetConvergenceHistory++++man+https://petsc.org/release/manualpages/Tao/TaoGetConvergenceHistory.html#TaoGetConvergenceHistory
man:+TaoSetApplicationContext++TaoSetApplicationContext++++man+https://petsc.org/release/manualpages/Tao/TaoSetApplicationContext.html#TaoSetApplicationContext
man:+TaoGetApplicationContext++TaoGetApplicationContext++++man+https://petsc.org/release/manualpages/Tao/TaoGetApplicationContext.html#TaoGetApplicationContext
man:+TaoSetGradientNorm++TaoSetGradientNorm++++man+https://petsc.org/release/manualpages/Tao/TaoSetGradientNorm.html#TaoSetGradientNorm
man:+TaoGetGradientNorm++TaoGetGradientNorm++++man+https://petsc.org/release/manualpages/Tao/TaoGetGradientNorm.html#TaoGetGradientNorm
man:+TaoGradientNorm++TaoGradientNorm++++man+https://petsc.org/release/manualpages/Tao/TaoGradientNorm.html#TaoGradientNorm
man:+TaoMonitorDrawCtxCreate++TaoMonitorDrawCtxCreate++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorDrawCtxCreate.html#TaoMonitorDrawCtxCreate
man:+TaoMonitorDrawCtxDestroy++TaoMonitorDrawCtxDestroy++++man+https://petsc.org/release/manualpages/Tao/TaoMonitorDrawCtxDestroy.html#TaoMonitorDrawCtxDestroy
man:+TAOBQPIP++TAOBQPIP++++man+https://petsc.org/release/manualpages/Tao/TAOBQPIP.html#TAOBQPIP
man:+TAOGPCG++TAOGPCG++++man+https://petsc.org/release/manualpages/Tao/TAOGPCG.html#TAOGPCG
man:+TAOOWLQN++TAOOWLQN++++man+https://petsc.org/release/manualpages/Tao/TAOOWLQN.html#TAOOWLQN
man:+TAONTR++TAONTR++++man+https://petsc.org/release/manualpages/Tao/TAONTR.html#TAONTR
man:+TAONLS++TAONLS++++man+https://petsc.org/release/manualpages/Tao/TAONLS.html#TAONLS
man:+TAOCG++TAOCG++++man+https://petsc.org/release/manualpages/Tao/TAOCG.html#TAOCG
man:+TAOBMRM++TAOBMRM++++man+https://petsc.org/release/manualpages/Tao/TAOBMRM.html#TAOBMRM
man:+TAONTL++TAONTL++++man+https://petsc.org/release/manualpages/Tao/TAONTL.html#TAONTL
man:+TAONM++TAONM++++man+https://petsc.org/release/manualpages/Tao/TAONM.html#TAONM
man:+TAOLMVM++TAOLMVM++++man+https://petsc.org/release/manualpages/Tao/TAOLMVM.html#TAOLMVM
man:+VecFischer++VecFischer++++man+https://petsc.org/release/manualpages/Tao/VecFischer.html#VecFischer
man:+VecSFischer++VecSFischer++++man+https://petsc.org/release/manualpages/Tao/VecSFischer.html#VecSFischer
man:+MatDFischer++MatDFischer++++man+https://petsc.org/release/manualpages/Tao/MatDFischer.html#MatDFischer
man:+MatDSFischer++MatDSFischer++++man+https://petsc.org/release/manualpages/Tao/MatDSFischer.html#MatDSFischer
man:+TaoSoftThreshold++TaoSoftThreshold++++man+https://petsc.org/release/manualpages/Tao/TaoSoftThreshold.html#TaoSoftThreshold
man:+TaoPythonSetType++TaoPythonSetType++++man+https://petsc.org/release/manualpages/Tao/TaoPythonSetType.html#TaoPythonSetType
man:+TaoPythonGetType++TaoPythonGetType++++man+https://petsc.org/release/manualpages/Tao/TaoPythonGetType.html#TaoPythonGetType
man:+TaoShellSetSolve++TaoShellSetSolve++++man+https://petsc.org/release/manualpages/Tao/TaoShellSetSolve.html#TaoShellSetSolve
man:+TaoShellGetContext++TaoShellGetContext++++man+https://petsc.org/release/manualpages/Tao/TaoShellGetContext.html#TaoShellGetContext
man:+TaoShellSetContext++TaoShellSetContext++++man+https://petsc.org/release/manualpages/Tao/TaoShellSetContext.html#TaoShellSetContext
man:+TAOSHELL++TAOSHELL++++man+https://petsc.org/release/manualpages/Tao/TAOSHELL.html#TAOSHELL
man:+TAOSNES++TAOSNES++++man+https://petsc.org/release/manualpages/Tao/TAOSNES.html#TAOSNES
man:+TAOSSFLS++TAOSSFLS++++man+https://petsc.org/release/manualpages/Tao/TAOSSFLS.html#TAOSSFLS
man:+TAOSSILS++TAOSSILS++++man+https://petsc.org/release/manualpages/Tao/TAOSSILS.html#TAOSSILS
man:+TAOASILS++TAOASILS++++man+https://petsc.org/release/manualpages/Tao/TAOASILS.html#TAOASILS
man:+TAOASFLS++TAOASFLS++++man+https://petsc.org/release/manualpages/Tao/TAOASFLS.html#TAOASFLS
man:+TAOBRGN++TAOBRGN++++man+https://petsc.org/release/manualpages/Tao/TAOBRGN.html#TAOBRGN
man:+TaoBRGNGetSubsolver++TaoBRGNGetSubsolver++++man+https://petsc.org/release/manualpages/Tao/TaoBRGNGetSubsolver.html#TaoBRGNGetSubsolver
man:+TaoBRGNSetRegularizerWeight++TaoBRGNSetRegularizerWeight++++man+https://petsc.org/release/manualpages/Tao/TaoBRGNSetRegularizerWeight.html#TaoBRGNSetRegularizerWeight
man:+TaoBRGNSetL1SmoothEpsilon++TaoBRGNSetL1SmoothEpsilon++++man+https://petsc.org/release/manualpages/Tao/TaoBRGNSetL1SmoothEpsilon.html#TaoBRGNSetL1SmoothEpsilon
man:+TaoBRGNSetDictionaryMatrix++TaoBRGNSetDictionaryMatrix++++man+https://petsc.org/release/manualpages/Tao/TaoBRGNSetDictionaryMatrix.html#TaoBRGNSetDictionaryMatrix
man:+TaoBRGNSetRegularizerObjectiveAndGradientRoutine++TaoBRGNSetRegularizerObjectiveAndGradientRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoBRGNSetRegularizerObjectiveAndGradientRoutine.html#TaoBRGNSetRegularizerObjectiveAndGradientRoutine
man:+TaoBRGNSetRegularizerHessianRoutine++TaoBRGNSetRegularizerHessianRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoBRGNSetRegularizerHessianRoutine.html#TaoBRGNSetRegularizerHessianRoutine
man:+TAOPOUNDERS++TAOPOUNDERS++++man+https://petsc.org/release/manualpages/Tao/TAOPOUNDERS.html#TAOPOUNDERS
man:+TaoLineSearchViewFromOptions++TaoLineSearchViewFromOptions++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchViewFromOptions.html#TaoLineSearchViewFromOptions
man:+TaoLineSearchView++TaoLineSearchView++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchView.html#TaoLineSearchView
man:+TaoLineSearchCreate++TaoLineSearchCreate++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchCreate.html#TaoLineSearchCreate
man:+TaoLineSearchSetUp++TaoLineSearchSetUp++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchSetUp.html#TaoLineSearchSetUp
man:+TaoLineSearchReset++TaoLineSearchReset++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchReset.html#TaoLineSearchReset
man:+TaoLineSearchDestroy++TaoLineSearchDestroy++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchDestroy.html#TaoLineSearchDestroy
man:+TaoLineSearchApply++TaoLineSearchApply++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchApply.html#TaoLineSearchApply
man:+TaoLineSearchSetType++TaoLineSearchSetType++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchSetType.html#TaoLineSearchSetType
man:+TaoLineSearchMonitor++TaoLineSearchMonitor++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchMonitor.html#TaoLineSearchMonitor
man:+TaoLineSearchSetFromOptions++TaoLineSearchSetFromOptions++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchSetFromOptions.html#TaoLineSearchSetFromOptions
man:+TaoLineSearchGetType++TaoLineSearchGetType++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchGetType.html#TaoLineSearchGetType
man:+TaoLineSearchGetNumberFunctionEvaluations++TaoLineSearchGetNumberFunctionEvaluations++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchGetNumberFunctionEvaluations.html#TaoLineSearchGetNumberFunctionEvaluations
man:+TaoLineSearchIsUsingTaoRoutines++TaoLineSearchIsUsingTaoRoutines++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchIsUsingTaoRoutines.html#TaoLineSearchIsUsingTaoRoutines
man:+TaoLineSearchSetObjectiveRoutine++TaoLineSearchSetObjectiveRoutine++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchSetObjectiveRoutine.html#TaoLineSearchSetObjectiveRoutine
man:+TaoLineSearchSetGradientRoutine++TaoLineSearchSetGradientRoutine++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchSetGradientRoutine.html#TaoLineSearchSetGradientRoutine
man:+TaoLineSearchSetObjectiveAndGradientRoutine++TaoLineSearchSetObjectiveAndGradientRoutine++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchSetObjectiveAndGradientRoutine.html#TaoLineSearchSetObjectiveAndGradientRoutine
man:+TaoLineSearchSetObjectiveAndGTSRoutine++TaoLineSearchSetObjectiveAndGTSRoutine++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchSetObjectiveAndGTSRoutine.html#TaoLineSearchSetObjectiveAndGTSRoutine
man:+TaoLineSearchUseTaoRoutines++TaoLineSearchUseTaoRoutines++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchUseTaoRoutines.html#TaoLineSearchUseTaoRoutines
man:+TaoLineSearchComputeObjective++TaoLineSearchComputeObjective++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchComputeObjective.html#TaoLineSearchComputeObjective
man:+TaoLineSearchComputeObjectiveAndGradient++TaoLineSearchComputeObjectiveAndGradient++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchComputeObjectiveAndGradient.html#TaoLineSearchComputeObjectiveAndGradient
man:+TaoLineSearchComputeGradient++TaoLineSearchComputeGradient++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchComputeGradient.html#TaoLineSearchComputeGradient
man:+TaoLineSearchComputeObjectiveAndGTS++TaoLineSearchComputeObjectiveAndGTS++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchComputeObjectiveAndGTS.html#TaoLineSearchComputeObjectiveAndGTS
man:+TaoLineSearchGetSolution++TaoLineSearchGetSolution++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchGetSolution.html#TaoLineSearchGetSolution
man:+TaoLineSearchGetStartingVector++TaoLineSearchGetStartingVector++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchGetStartingVector.html#TaoLineSearchGetStartingVector
man:+TaoLineSearchGetStepDirection++TaoLineSearchGetStepDirection++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchGetStepDirection.html#TaoLineSearchGetStepDirection
man:+TaoLineSearchGetFullStepObjective++TaoLineSearchGetFullStepObjective++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchGetFullStepObjective.html#TaoLineSearchGetFullStepObjective
man:+TaoLineSearchSetVariableBounds++TaoLineSearchSetVariableBounds++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchSetVariableBounds.html#TaoLineSearchSetVariableBounds
man:+TaoLineSearchSetInitialStepLength++TaoLineSearchSetInitialStepLength++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchSetInitialStepLength.html#TaoLineSearchSetInitialStepLength
man:+TaoLineSearchGetStepLength++TaoLineSearchGetStepLength++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchGetStepLength.html#TaoLineSearchGetStepLength
man:+TaoLineSearchRegister++TaoLineSearchRegister++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchRegister.html#TaoLineSearchRegister
man:+TaoLineSearchAppendOptionsPrefix++TaoLineSearchAppendOptionsPrefix++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchAppendOptionsPrefix.html#TaoLineSearchAppendOptionsPrefix
man:+TaoLineSearchGetOptionsPrefix++TaoLineSearchGetOptionsPrefix++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchGetOptionsPrefix.html#TaoLineSearchGetOptionsPrefix
man:+TaoLineSearchSetOptionsPrefix++TaoLineSearchSetOptionsPrefix++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchSetOptionsPrefix.html#TaoLineSearchSetOptionsPrefix
man:+TaoLineSearchFinalizePackage++TaoLineSearchFinalizePackage++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchFinalizePackage.html#TaoLineSearchFinalizePackage
man:+TaoLineSearchInitializePackage++TaoLineSearchInitializePackage++++man+https://petsc.org/release/manualpages/TaoLineSearch/TaoLineSearchInitializePackage.html#TaoLineSearchInitializePackage
man:+TAOLINESEARCHUNIT++TAOLINESEARCHUNIT++++man+https://petsc.org/release/manualpages/TaoLineSearch/TAOLINESEARCHUNIT.html#TAOLINESEARCHUNIT
man:+TAOLINESEARCHARMIJO++TAOLINESEARCHARMIJO++++man+https://petsc.org/release/manualpages/TaoLineSearch/TAOLINESEARCHARMIJO.html#TAOLINESEARCHARMIJO
man:+TAOLINESEARCHMT++TAOLINESEARCHMT++++man+https://petsc.org/release/manualpages/TaoLineSearch/TAOLINESEARCHMT.html#TAOLINESEARCHMT
man:+TAOLINESEARCHGPCG++TAOLINESEARCHGPCG++++man+https://petsc.org/release/manualpages/TaoLineSearch/TAOLINESEARCHGPCG.html#TAOLINESEARCHGPCG
man:+TAOLINESEARCHOWARMIJO++TAOLINESEARCHOWARMIJO++++man+https://petsc.org/release/manualpages/TaoLineSearch/TAOLINESEARCHOWARMIJO.html#TAOLINESEARCHOWARMIJO
man:+TAOADMM++TAOADMM++++man+https://petsc.org/release/manualpages/Tao/TAOADMM.html#TAOADMM
man:+TaoADMMSetMisfitHessianChangeStatus++TaoADMMSetMisfitHessianChangeStatus++++man+https://petsc.org/release/manualpages/Tao/TaoADMMSetMisfitHessianChangeStatus.html#TaoADMMSetMisfitHessianChangeStatus
man:+TaoADMMSetRegHessianChangeStatus++TaoADMMSetRegHessianChangeStatus++++man+https://petsc.org/release/manualpages/Tao/TaoADMMSetRegHessianChangeStatus.html#TaoADMMSetRegHessianChangeStatus
man:+TaoADMMSetSpectralPenalty++TaoADMMSetSpectralPenalty++++man+https://petsc.org/release/manualpages/Tao/TaoADMMSetSpectralPenalty.html#TaoADMMSetSpectralPenalty
man:+TaoADMMGetSpectralPenalty++TaoADMMGetSpectralPenalty++++man+https://petsc.org/release/manualpages/Tao/TaoADMMGetSpectralPenalty.html#TaoADMMGetSpectralPenalty
man:+TaoADMMGetMisfitSubsolver++TaoADMMGetMisfitSubsolver++++man+https://petsc.org/release/manualpages/Tao/TaoADMMGetMisfitSubsolver.html#TaoADMMGetMisfitSubsolver
man:+TaoADMMGetRegularizationSubsolver++TaoADMMGetRegularizationSubsolver++++man+https://petsc.org/release/manualpages/Tao/TaoADMMGetRegularizationSubsolver.html#TaoADMMGetRegularizationSubsolver
man:+TaoADMMSetConstraintVectorRHS++TaoADMMSetConstraintVectorRHS++++man+https://petsc.org/release/manualpages/Tao/TaoADMMSetConstraintVectorRHS.html#TaoADMMSetConstraintVectorRHS
man:+TaoADMMSetMinimumSpectralPenalty++TaoADMMSetMinimumSpectralPenalty++++man+https://petsc.org/release/manualpages/Tao/TaoADMMSetMinimumSpectralPenalty.html#TaoADMMSetMinimumSpectralPenalty
man:+TaoADMMSetRegularizerCoefficient++TaoADMMSetRegularizerCoefficient++++man+https://petsc.org/release/manualpages/Tao/TaoADMMSetRegularizerCoefficient.html#TaoADMMSetRegularizerCoefficient
man:+TaoADMMGetRegularizerCoefficient++TaoADMMGetRegularizerCoefficient++++man+https://petsc.org/release/manualpages/Tao/TaoADMMGetRegularizerCoefficient.html#TaoADMMGetRegularizerCoefficient
man:+TaoADMMSetMisfitConstraintJacobian++TaoADMMSetMisfitConstraintJacobian++++man+https://petsc.org/release/manualpages/Tao/TaoADMMSetMisfitConstraintJacobian.html#TaoADMMSetMisfitConstraintJacobian
man:+TaoADMMSetRegularizerConstraintJacobian++TaoADMMSetRegularizerConstraintJacobian++++man+https://petsc.org/release/manualpages/Tao/TaoADMMSetRegularizerConstraintJacobian.html#TaoADMMSetRegularizerConstraintJacobian
man:+TaoADMMSetMisfitObjectiveAndGradientRoutine++TaoADMMSetMisfitObjectiveAndGradientRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoADMMSetMisfitObjectiveAndGradientRoutine.html#TaoADMMSetMisfitObjectiveAndGradientRoutine
man:+TaoADMMSetMisfitHessianRoutine++TaoADMMSetMisfitHessianRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoADMMSetMisfitHessianRoutine.html#TaoADMMSetMisfitHessianRoutine
man:+TaoADMMSetRegularizerObjectiveAndGradientRoutine++TaoADMMSetRegularizerObjectiveAndGradientRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoADMMSetRegularizerObjectiveAndGradientRoutine.html#TaoADMMSetRegularizerObjectiveAndGradientRoutine
man:+TaoADMMSetRegularizerHessianRoutine++TaoADMMSetRegularizerHessianRoutine++++man+https://petsc.org/release/manualpages/Tao/TaoADMMSetRegularizerHessianRoutine.html#TaoADMMSetRegularizerHessianRoutine
man:+TaoGetADMMParentTao++TaoGetADMMParentTao++++man+https://petsc.org/release/manualpages/Tao/TaoGetADMMParentTao.html#TaoGetADMMParentTao
man:+TaoADMMGetDualVector++TaoADMMGetDualVector++++man+https://petsc.org/release/manualpages/Tao/TaoADMMGetDualVector.html#TaoADMMGetDualVector
man:+TaoADMMSetRegularizerType++TaoADMMSetRegularizerType++++man+https://petsc.org/release/manualpages/Tao/TaoADMMSetRegularizerType.html#TaoADMMSetRegularizerType
man:+TaoADMMGetRegularizerType++TaoADMMGetRegularizerType++++man+https://petsc.org/release/manualpages/Tao/TaoADMMGetRegularizerType.html#TaoADMMGetRegularizerType
man:+TaoADMMSetUpdateType++TaoADMMSetUpdateType++++man+https://petsc.org/release/manualpages/Tao/TaoADMMSetUpdateType.html#TaoADMMSetUpdateType
man:+TaoADMMGetUpdateType++TaoADMMGetUpdateType++++man+https://petsc.org/release/manualpages/Tao/TaoADMMGetUpdateType.html#TaoADMMGetUpdateType
man:+TAOIPM++TAOIPM++++man+https://petsc.org/release/manualpages/Tao/TAOIPM.html#TAOIPM
man:+TAOPDIPM++TAOPDIPM++++man+https://petsc.org/release/manualpages/Tao/TAOPDIPM.html#TAOPDIPM
man:+TAOALMM++TAOALMM++++man+https://petsc.org/release/manualpages/Tao/TAOALMM.html#TAOALMM
man:+TaoALMMGetType++TaoALMMGetType++++man+https://petsc.org/release/manualpages/Tao/TaoALMMGetType.html#TaoALMMGetType
man:+TaoALMMSetType++TaoALMMSetType++++man+https://petsc.org/release/manualpages/Tao/TaoALMMSetType.html#TaoALMMSetType
man:+TaoALMMGetSubsolver++TaoALMMGetSubsolver++++man+https://petsc.org/release/manualpages/Tao/TaoALMMGetSubsolver.html#TaoALMMGetSubsolver
man:+TaoALMMSetSubsolver++TaoALMMSetSubsolver++++man+https://petsc.org/release/manualpages/Tao/TaoALMMSetSubsolver.html#TaoALMMSetSubsolver
man:+TaoALMMGetMultipliers++TaoALMMGetMultipliers++++man+https://petsc.org/release/manualpages/Tao/TaoALMMGetMultipliers.html#TaoALMMGetMultipliers
man:+TaoALMMSetMultipliers++TaoALMMSetMultipliers++++man+https://petsc.org/release/manualpages/Tao/TaoALMMSetMultipliers.html#TaoALMMSetMultipliers
man:+TaoALMMGetPrimalIS++TaoALMMGetPrimalIS++++man+https://petsc.org/release/manualpages/Tao/TaoALMMGetPrimalIS.html#TaoALMMGetPrimalIS
man:+TaoALMMGetDualIS++TaoALMMGetDualIS++++man+https://petsc.org/release/manualpages/Tao/TaoALMMGetDualIS.html#TaoALMMGetDualIS
man:+TAOBQNLS++TAOBQNLS++++man+https://petsc.org/release/manualpages/Tao/TAOBQNLS.html#TAOBQNLS
man:+TAOBLMVM++TAOBLMVM++++man+https://petsc.org/release/manualpages/Tao/TAOBLMVM.html#TAOBLMVM
man:+TaoLMVMRecycle++TaoLMVMRecycle++++man+https://petsc.org/release/manualpages/Tao/TaoLMVMRecycle.html#TaoLMVMRecycle
man:+TaoLMVMSetH0++TaoLMVMSetH0++++man+https://petsc.org/release/manualpages/Tao/TaoLMVMSetH0.html#TaoLMVMSetH0
man:+TaoLMVMGetH0++TaoLMVMGetH0++++man+https://petsc.org/release/manualpages/Tao/TaoLMVMGetH0.html#TaoLMVMGetH0
man:+TaoLMVMGetH0KSP++TaoLMVMGetH0KSP++++man+https://petsc.org/release/manualpages/Tao/TaoLMVMGetH0KSP.html#TaoLMVMGetH0KSP
man:+TAOBNCG++TAOBNCG++++man+https://petsc.org/release/manualpages/Tao/TAOBNCG.html#TAOBNCG
man:+TaoBNCGGetType++TaoBNCGGetType++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGGetType.html#TaoBNCGGetType
man:+TaoBNCGSetType++TaoBNCGSetType++++man+https://petsc.org/release/manualpages/Tao/TaoBNCGSetType.html#TaoBNCGSetType
man:+TAOTRON++TAOTRON++++man+https://petsc.org/release/manualpages/Tao/TAOTRON.html#TAOTRON
man:+TAOBNTL++TAOBNTL++++man+https://petsc.org/release/manualpages/Tao/TAOBNTL.html#TAOBNTL
man:+TAOBNLS++TAOBNLS++++man+https://petsc.org/release/manualpages/Tao/TAOBNLS.html#TAOBNLS
man:+TAOBNK++TAOBNK++++man+https://petsc.org/release/manualpages/Tao/TAOBNK.html#TAOBNK
man:+TAOBNTR++TAOBNTR++++man+https://petsc.org/release/manualpages/Tao/TAOBNTR.html#TAOBNTR
man:+TAOBQNKLS++TAOBQNKLS++++man+https://petsc.org/release/manualpages/Tao/TAOBQNKLS.html#TAOBQNKLS
man:+TAOBQNKTL++TAOBQNKTL++++man+https://petsc.org/release/manualpages/Tao/TAOBQNKTL.html#TAOBQNKTL
man:+TaoGetLMVMMatrix++TaoGetLMVMMatrix++++man+https://petsc.org/release/manualpages/Tao/TaoGetLMVMMatrix.html#TaoGetLMVMMatrix
man:+TaoSetLMVMMatrix++TaoSetLMVMMatrix++++man+https://petsc.org/release/manualpages/Tao/TaoSetLMVMMatrix.html#TaoSetLMVMMatrix
man:+TAOBQNKTR++TAOBQNKTR++++man+https://petsc.org/release/manualpages/Tao/TAOBQNKTR.html#TAOBQNKTR
man:+TaoVecGetSubVec++TaoVecGetSubVec++++man+https://petsc.org/release/manualpages/Tao/TaoVecGetSubVec.html#TaoVecGetSubVec
man:+TaoMatGetSubMat++TaoMatGetSubMat++++man+https://petsc.org/release/manualpages/Tao/TaoMatGetSubMat.html#TaoMatGetSubMat
man:+TaoEstimateActiveBounds++TaoEstimateActiveBounds++++man+https://petsc.org/release/manualpages/Tao/TaoEstimateActiveBounds.html#TaoEstimateActiveBounds
man:+TaoBoundStep++TaoBoundStep++++man+https://petsc.org/release/manualpages/Tao/TaoBoundStep.html#TaoBoundStep
man:+TaoBoundSolution++TaoBoundSolution++++man+https://petsc.org/release/manualpages/Tao/TaoBoundSolution.html#TaoBoundSolution
man:+MatCreateSubMatrixFree++MatCreateSubMatrixFree++++man+https://petsc.org/release/manualpages/Tao/MatCreateSubMatrixFree.html#MatCreateSubMatrixFree
|