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
|
petsc4py petsc4py-module.html
petsc4py.__credits__ petsc4py-module.html#__credits__
petsc4py.get_include petsc4py-module.html#get_include
petsc4py.init petsc4py-module.html#init
petsc4py.__package__ petsc4py-module.html#__package__
petsc4py.get_config petsc4py-module.html#get_config
petsc4py.PETSc petsc4py.PETSc-module.html
petsc4py.PETSc.DEFAULT petsc4py.PETSc-module.html#DEFAULT
petsc4py.PETSc.COMM_NULL petsc4py.PETSc-module.html#COMM_NULL
petsc4py.PETSc.__pyx_capi__ petsc4py.PETSc-module.html#__pyx_capi__
petsc4py.PETSc.__arch__ petsc4py.PETSc-module.html#__arch__
petsc4py.PETSc.DECIDE petsc4py.PETSc-module.html#DECIDE
petsc4py.PETSc.COMM_WORLD petsc4py.PETSc-module.html#COMM_WORLD
petsc4py.PETSc.DETERMINE petsc4py.PETSc-module.html#DETERMINE
petsc4py.PETSc.NINFINITY petsc4py.PETSc-module.html#NINFINITY
petsc4py.PETSc._finalize petsc4py.PETSc-module.html#_finalize
petsc4py.PETSc.INFINITY petsc4py.PETSc-module.html#INFINITY
petsc4py.PETSc.__warningregistry__ petsc4py.PETSc-module.html#__warningregistry__
petsc4py.PETSc._initialize petsc4py.PETSc-module.html#_initialize
petsc4py.PETSc.__type_registry__ petsc4py.PETSc-module.html#__type_registry__
petsc4py.PETSc.__package__ petsc4py.PETSc-module.html#__package__
petsc4py.PETSc.COMM_SELF petsc4py.PETSc-module.html#COMM_SELF
petsc4py.PETSc.PINFINITY petsc4py.PETSc-module.html#PINFINITY
petsc4py.lib petsc4py.lib-module.html
petsc4py.lib.getInitArgs petsc4py.lib-module.html#getInitArgs
petsc4py.lib.getPathArch petsc4py.lib-module.html#getPathArch
petsc4py.lib.ImportPETSc petsc4py.lib-module.html#ImportPETSc
petsc4py.lib.__warningregistry__ petsc4py.lib-module.html#__warningregistry__
petsc4py.lib.__package__ petsc4py.lib-module.html#__package__
petsc4py.lib.Import petsc4py.lib-module.html#Import
petsc4py.lib.getPathArchPETSc petsc4py.lib-module.html#getPathArchPETSc
petsc4py.PETSc.AO petsc4py.PETSc.AO-class.html
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.AO.Type petsc4py.PETSc.AO.Type-class.html
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.AO.__new__ petsc4py.PETSc.AO-class.html#__new__
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.AO.createMemoryScalable petsc4py.PETSc.AO-class.html#createMemoryScalable
petsc4py.PETSc.AO.destroy petsc4py.PETSc.AO-class.html#destroy
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.Object.setFromOptions petsc4py.PETSc.Object-class.html#setFromOptions
petsc4py.PETSc.AO.getType petsc4py.PETSc.AO-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.AO.petsc2app petsc4py.PETSc.AO-class.html#petsc2app
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.AO.createMapping petsc4py.PETSc.AO-class.html#createMapping
petsc4py.PETSc.AO.createBasic petsc4py.PETSc.AO-class.html#createBasic
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.AO.app2petsc petsc4py.PETSc.AO-class.html#app2petsc
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.AO.view petsc4py.PETSc.AO-class.html#view
petsc4py.PETSc.AO.Type petsc4py.PETSc.AO.Type-class.html
petsc4py.PETSc.AO.Type.MAPPING petsc4py.PETSc.AO.Type-class.html#MAPPING
petsc4py.PETSc.AO.Type.__qualname__ petsc4py.PETSc.AO.Type-class.html#__qualname__
petsc4py.PETSc.AO.Type.MEMORYSCALABLE petsc4py.PETSc.AO.Type-class.html#MEMORYSCALABLE
petsc4py.PETSc.AO.Type.BASIC petsc4py.PETSc.AO.Type-class.html#BASIC
petsc4py.PETSc.AO.Type.ADVANCED petsc4py.PETSc.AO.Type-class.html#ADVANCED
petsc4py.PETSc.Comm petsc4py.PETSc.Comm-class.html
petsc4py.PETSc.Comm.tompi4py petsc4py.PETSc.Comm-class.html#tompi4py
petsc4py.PETSc.Comm.rank petsc4py.PETSc.Comm-class.html#rank
petsc4py.PETSc.Comm.getSize petsc4py.PETSc.Comm-class.html#getSize
petsc4py.PETSc.Comm.Dup petsc4py.PETSc.Comm-class.html#Dup
petsc4py.PETSc.Comm.__lt__ petsc4py.PETSc.Comm-class.html#__lt__
petsc4py.PETSc.Comm.size petsc4py.PETSc.Comm-class.html#size
petsc4py.PETSc.Comm.__new__ petsc4py.PETSc.Comm-class.html#__new__
petsc4py.PETSc.Comm.Barrier petsc4py.PETSc.Comm-class.html#Barrier
petsc4py.PETSc.Comm.Clone petsc4py.PETSc.Comm-class.html#Clone
petsc4py.PETSc.Comm.Free petsc4py.PETSc.Comm-class.html#Free
petsc4py.PETSc.Comm.fortran petsc4py.PETSc.Comm-class.html#fortran
petsc4py.PETSc.Comm.duplicate petsc4py.PETSc.Comm-class.html#duplicate
petsc4py.PETSc.Comm.destroy petsc4py.PETSc.Comm-class.html#destroy
petsc4py.PETSc.Comm.__ne__ petsc4py.PETSc.Comm-class.html#__ne__
petsc4py.PETSc.Comm.barrier petsc4py.PETSc.Comm-class.html#barrier
petsc4py.PETSc.Comm.Get_rank petsc4py.PETSc.Comm-class.html#Get_rank
petsc4py.PETSc.Comm.Get_size petsc4py.PETSc.Comm-class.html#Get_size
petsc4py.PETSc.Comm.__gt__ petsc4py.PETSc.Comm-class.html#__gt__
petsc4py.PETSc.Comm.__eq__ petsc4py.PETSc.Comm-class.html#__eq__
petsc4py.PETSc.Comm.__nonzero__ petsc4py.PETSc.Comm-class.html#__nonzero__
petsc4py.PETSc.Comm.getRank petsc4py.PETSc.Comm-class.html#getRank
petsc4py.PETSc.Comm.__le__ petsc4py.PETSc.Comm-class.html#__le__
petsc4py.PETSc.Comm.__ge__ petsc4py.PETSc.Comm-class.html#__ge__
petsc4py.PETSc.DM petsc4py.PETSc.DM-class.html
petsc4py.PETSc.DM.getLGMap petsc4py.PETSc.DM-class.html#getLGMap
petsc4py.PETSc.DM.getStratumIS petsc4py.PETSc.DM-class.html#getStratumIS
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.DM.restoreLocalVec petsc4py.PETSc.DM-class.html#restoreLocalVec
petsc4py.PETSc.DM.getLabel petsc4py.PETSc.DM-class.html#getLabel
petsc4py.PETSc.DM.createRestriction petsc4py.PETSc.DM-class.html#createRestriction
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.DM.createGlobalVec petsc4py.PETSc.DM-class.html#createGlobalVec
petsc4py.PETSc.DM.createDS petsc4py.PETSc.DM-class.html#createDS
petsc4py.PETSc.DM.clearLabelStratum petsc4py.PETSc.DM-class.html#clearLabelStratum
petsc4py.PETSc.DM.getGlobalSection petsc4py.PETSc.DM-class.html#getGlobalSection
petsc4py.PETSc.DM.createMatrix petsc4py.PETSc.DM-class.html#createMatrix
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.DM.getBasicAdjacency petsc4py.PETSc.DM-class.html#getBasicAdjacency
petsc4py.PETSc.DM.addField petsc4py.PETSc.DM-class.html#addField
petsc4py.PETSc.DM.removeLabel petsc4py.PETSc.DM-class.html#removeLabel
petsc4py.PETSc.DM.getLocalVec petsc4py.PETSc.DM-class.html#getLocalVec
petsc4py.PETSc.DM.coarsen petsc4py.PETSc.DM-class.html#coarsen
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.DM.copyFields petsc4py.PETSc.DM-class.html#copyFields
petsc4py.PETSc.DM.getLabelValue petsc4py.PETSc.DM-class.html#getLabelValue
petsc4py.PETSc.DM.getStratumSize petsc4py.PETSc.DM-class.html#getStratumSize
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.DM.getLabelIdIS petsc4py.PETSc.DM-class.html#getLabelIdIS
petsc4py.PETSc.DM.setOptionsPrefix petsc4py.PETSc.DM-class.html#setOptionsPrefix
petsc4py.PETSc.DM.setFieldAdjacency petsc4py.PETSc.DM-class.html#setFieldAdjacency
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.DM.createGlobalVector petsc4py.PETSc.DM-class.html#createGlobalVector
petsc4py.PETSc.DM.getDefaultSF petsc4py.PETSc.DM-class.html#getDefaultSF
petsc4py.PETSc.DM.setNumFields petsc4py.PETSc.DM-class.html#setNumFields
petsc4py.PETSc.DM.setFromOptions petsc4py.PETSc.DM-class.html#setFromOptions
petsc4py.PETSc.DM.setSectionSF petsc4py.PETSc.DM-class.html#setSectionSF
petsc4py.PETSc.DM.destroy petsc4py.PETSc.DM-class.html#destroy
petsc4py.PETSc.DM.setDimension petsc4py.PETSc.DM-class.html#setDimension
petsc4py.PETSc.DM.hasLabel petsc4py.PETSc.DM-class.html#hasLabel
petsc4py.PETSc.DM.ds petsc4py.PETSc.DM-class.html#ds
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.DM.setAppCtx petsc4py.PETSc.DM-class.html#setAppCtx
petsc4py.PETSc.DM.setGlobalSection petsc4py.PETSc.DM-class.html#setGlobalSection
petsc4py.PETSc.DM.createFieldDecomposition petsc4py.PETSc.DM-class.html#createFieldDecomposition
petsc4py.PETSc.DM.getCoordinateDim petsc4py.PETSc.DM-class.html#getCoordinateDim
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.DM.view petsc4py.PETSc.DM-class.html#view
petsc4py.PETSc.DM.getDefaultSection petsc4py.PETSc.DM-class.html#getDefaultSection
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.DM.adaptMetric petsc4py.PETSc.DM-class.html#adaptMetric
petsc4py.PETSc.DM.setField petsc4py.PETSc.DM-class.html#setField
petsc4py.PETSc.DM.localizeCoordinates petsc4py.PETSc.DM-class.html#localizeCoordinates
petsc4py.PETSc.DM.getBlockSize petsc4py.PETSc.DM-class.html#getBlockSize
petsc4py.PETSc.DM.refineHierarchy petsc4py.PETSc.DM-class.html#refineHierarchy
petsc4py.PETSc.DM.Type petsc4py.PETSc.DM.Type-class.html
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.DM.getCoordinates petsc4py.PETSc.DM-class.html#getCoordinates
petsc4py.PETSc.DM.createInterpolation petsc4py.PETSc.DM-class.html#createInterpolation
petsc4py.PETSc.DM.getDimension petsc4py.PETSc.DM-class.html#getDimension
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.DM.setVecType petsc4py.PETSc.DM-class.html#setVecType
petsc4py.PETSc.DM.globalToLocal petsc4py.PETSc.DM-class.html#globalToLocal
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.DM.setDefaultSF petsc4py.PETSc.DM-class.html#setDefaultSF
petsc4py.PETSc.DM.setType petsc4py.PETSc.DM-class.html#setType
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.DM.getLabelName petsc4py.PETSc.DM-class.html#getLabelName
petsc4py.PETSc.DM.createSectionSF petsc4py.PETSc.DM-class.html#createSectionSF
petsc4py.PETSc.DM.setUp petsc4py.PETSc.DM-class.html#setUp
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.DM.getDS petsc4py.PETSc.DM-class.html#getDS
petsc4py.PETSc.DM.getPointSF petsc4py.PETSc.DM-class.html#getPointSF
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.DM.setSNESJacobian petsc4py.PETSc.DM-class.html#setSNESJacobian
petsc4py.PETSc.DM.createLabel petsc4py.PETSc.DM-class.html#createLabel
petsc4py.PETSc.DM.getMatrix petsc4py.PETSc.DM-class.html#getMatrix
petsc4py.PETSc.DM.getDefaultGlobalSection petsc4py.PETSc.DM-class.html#getDefaultGlobalSection
petsc4py.PETSc.DM.clearLabelValue petsc4py.PETSc.DM-class.html#clearLabelValue
petsc4py.PETSc.DM.convert petsc4py.PETSc.DM-class.html#convert
petsc4py.PETSc.DM.setDefaultGlobalSection petsc4py.PETSc.DM-class.html#setDefaultGlobalSection
petsc4py.PETSc.DM.getCoordinatesLocal petsc4py.PETSc.DM-class.html#getCoordinatesLocal
petsc4py.PETSc.DM.getLabelOutput petsc4py.PETSc.DM-class.html#getLabelOutput
petsc4py.PETSc.DM.appctx petsc4py.PETSc.DM-class.html#appctx
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.DM.getRefineLevel petsc4py.PETSc.DM-class.html#getRefineLevel
petsc4py.PETSc.DM.setLabelValue petsc4py.PETSc.DM-class.html#setLabelValue
petsc4py.PETSc.DM.setCoordinates petsc4py.PETSc.DM-class.html#setCoordinates
petsc4py.PETSc.DM.adaptLabel petsc4py.PETSc.DM-class.html#adaptLabel
petsc4py.PETSc.DM.createMat petsc4py.PETSc.DM-class.html#createMat
petsc4py.PETSc.DM.createLocalVector petsc4py.PETSc.DM-class.html#createLocalVector
petsc4py.PETSc.DM.getCoordinateSection petsc4py.PETSc.DM-class.html#getCoordinateSection
petsc4py.PETSc.DM.setMatType petsc4py.PETSc.DM-class.html#setMatType
petsc4py.PETSc.DM.addCoarsenHook petsc4py.PETSc.DM-class.html#addCoarsenHook
petsc4py.PETSc.DM.getSection petsc4py.PETSc.DM-class.html#getSection
petsc4py.PETSc.DM.create petsc4py.PETSc.DM-class.html#create
petsc4py.PETSc.DM.BoundaryType petsc4py.PETSc.DM.BoundaryType-class.html
petsc4py.PETSc.DM.getCoordinateDM petsc4py.PETSc.DM-class.html#getCoordinateDM
petsc4py.PETSc.DM.getNumLabels petsc4py.PETSc.DM-class.html#getNumLabels
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.DM.createInjection petsc4py.PETSc.DM-class.html#createInjection
petsc4py.PETSc.DM.setSNESFunction petsc4py.PETSc.DM-class.html#setSNESFunction
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.DM.getType petsc4py.PETSc.DM-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.DM.getAppCtx petsc4py.PETSc.DM-class.html#getAppCtx
petsc4py.PETSc.DM.setPointSF petsc4py.PETSc.DM-class.html#setPointSF
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.DM.copyDS petsc4py.PETSc.DM-class.html#copyDS
petsc4py.PETSc.DM.getField petsc4py.PETSc.DM-class.html#getField
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.DM.getCoarsenLevel petsc4py.PETSc.DM-class.html#getCoarsenLevel
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.DM.setCoordinateDim petsc4py.PETSc.DM-class.html#setCoordinateDim
petsc4py.PETSc.DM.setRefineLevel petsc4py.PETSc.DM-class.html#setRefineLevel
petsc4py.PETSc.DM.setSection petsc4py.PETSc.DM-class.html#setSection
petsc4py.PETSc.DM.refine petsc4py.PETSc.DM-class.html#refine
petsc4py.PETSc.DM.createLocalVec petsc4py.PETSc.DM-class.html#createLocalVec
petsc4py.PETSc.DM.restoreGlobalVec petsc4py.PETSc.DM-class.html#restoreGlobalVec
petsc4py.PETSc.DM.getGlobalVec petsc4py.PETSc.DM-class.html#getGlobalVec
petsc4py.PETSc.DM.setKSPComputeOperators petsc4py.PETSc.DM-class.html#setKSPComputeOperators
petsc4py.PETSc.DM.localToLocal petsc4py.PETSc.DM-class.html#localToLocal
petsc4py.PETSc.DM.__new__ petsc4py.PETSc.DM-class.html#__new__
petsc4py.PETSc.DM.getLabelSize petsc4py.PETSc.DM-class.html#getLabelSize
petsc4py.PETSc.DM.localToGlobal petsc4py.PETSc.DM-class.html#localToGlobal
petsc4py.PETSc.DM.getLocalBoundingBox petsc4py.PETSc.DM-class.html#getLocalBoundingBox
petsc4py.PETSc.DM.coarsenHierarchy petsc4py.PETSc.DM-class.html#coarsenHierarchy
petsc4py.PETSc.DM.getBoundingBox petsc4py.PETSc.DM-class.html#getBoundingBox
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.DM.createDefaultSF petsc4py.PETSc.DM-class.html#createDefaultSF
petsc4py.PETSc.DM.setCoordinatesLocal petsc4py.PETSc.DM-class.html#setCoordinatesLocal
petsc4py.PETSc.DM.clone petsc4py.PETSc.DM-class.html#clone
petsc4py.PETSc.DM.setDefaultSection petsc4py.PETSc.DM-class.html#setDefaultSection
petsc4py.PETSc.DM.clearDS petsc4py.PETSc.DM-class.html#clearDS
petsc4py.PETSc.DM.getFieldAdjacency petsc4py.PETSc.DM-class.html#getFieldAdjacency
petsc4py.PETSc.DM.copyDisc petsc4py.PETSc.DM-class.html#copyDisc
petsc4py.PETSc.DM.setBasicAdjacency petsc4py.PETSc.DM-class.html#setBasicAdjacency
petsc4py.PETSc.DM.setLabelOutput petsc4py.PETSc.DM-class.html#setLabelOutput
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.DM.getNumFields petsc4py.PETSc.DM-class.html#getNumFields
petsc4py.PETSc.DM.getSectionSF petsc4py.PETSc.DM-class.html#getSectionSF
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.DM.BoundaryType petsc4py.PETSc.DM.BoundaryType-class.html
petsc4py.PETSc.DM.BoundaryType.__qualname__ petsc4py.PETSc.DM.BoundaryType-class.html#__qualname__
petsc4py.PETSc.DM.BoundaryType.NONE petsc4py.PETSc.DM.BoundaryType-class.html#NONE
petsc4py.PETSc.DM.BoundaryType.TWIST petsc4py.PETSc.DM.BoundaryType-class.html#TWIST
petsc4py.PETSc.DM.BoundaryType.PERIODIC petsc4py.PETSc.DM.BoundaryType-class.html#PERIODIC
petsc4py.PETSc.DM.BoundaryType.MIRROR petsc4py.PETSc.DM.BoundaryType-class.html#MIRROR
petsc4py.PETSc.DM.BoundaryType.GHOSTED petsc4py.PETSc.DM.BoundaryType-class.html#GHOSTED
petsc4py.PETSc.DM.Type petsc4py.PETSc.DM.Type-class.html
petsc4py.PETSc.DM.Type.NETWORK petsc4py.PETSc.DM.Type-class.html#NETWORK
petsc4py.PETSc.DM.Type.DA petsc4py.PETSc.DM.Type-class.html#DA
petsc4py.PETSc.DM.Type.SLICED petsc4py.PETSc.DM.Type-class.html#SLICED
petsc4py.PETSc.DM.Type.SWARM petsc4py.PETSc.DM.Type-class.html#SWARM
petsc4py.PETSc.DM.Type.P8EST petsc4py.PETSc.DM.Type-class.html#P8EST
petsc4py.PETSc.DM.Type.SHELL petsc4py.PETSc.DM.Type-class.html#SHELL
petsc4py.PETSc.DM.Type.FOREST petsc4py.PETSc.DM.Type-class.html#FOREST
petsc4py.PETSc.DM.Type.P4EST petsc4py.PETSc.DM.Type-class.html#P4EST
petsc4py.PETSc.DM.Type.REDUNDANT petsc4py.PETSc.DM.Type-class.html#REDUNDANT
petsc4py.PETSc.DM.Type.PLEX petsc4py.PETSc.DM.Type-class.html#PLEX
petsc4py.PETSc.DM.Type.PATCH petsc4py.PETSc.DM.Type-class.html#PATCH
petsc4py.PETSc.DM.Type.PRODUCT petsc4py.PETSc.DM.Type-class.html#PRODUCT
petsc4py.PETSc.DM.Type.STAG petsc4py.PETSc.DM.Type-class.html#STAG
petsc4py.PETSc.DM.Type.COMPOSITE petsc4py.PETSc.DM.Type-class.html#COMPOSITE
petsc4py.PETSc.DM.Type.MOAB petsc4py.PETSc.DM.Type-class.html#MOAB
petsc4py.PETSc.DM.Type.__qualname__ petsc4py.PETSc.DM.Type-class.html#__qualname__
petsc4py.PETSc.DMComposite petsc4py.PETSc.DMComposite-class.html
petsc4py.PETSc.DM.getLGMap petsc4py.PETSc.DM-class.html#getLGMap
petsc4py.PETSc.DM.getStratumIS petsc4py.PETSc.DM-class.html#getStratumIS
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.DM.restoreLocalVec petsc4py.PETSc.DM-class.html#restoreLocalVec
petsc4py.PETSc.DM.getLabel petsc4py.PETSc.DM-class.html#getLabel
petsc4py.PETSc.DM.adaptMetric petsc4py.PETSc.DM-class.html#adaptMetric
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.DM.createGlobalVec petsc4py.PETSc.DM-class.html#createGlobalVec
petsc4py.PETSc.DM.createDS petsc4py.PETSc.DM-class.html#createDS
petsc4py.PETSc.DM.setField petsc4py.PETSc.DM-class.html#setField
petsc4py.PETSc.DM.getGlobalSection petsc4py.PETSc.DM-class.html#getGlobalSection
petsc4py.PETSc.DM.createMatrix petsc4py.PETSc.DM-class.html#createMatrix
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.DM.getBasicAdjacency petsc4py.PETSc.DM-class.html#getBasicAdjacency
petsc4py.PETSc.DM.addField petsc4py.PETSc.DM-class.html#addField
petsc4py.PETSc.DM.removeLabel petsc4py.PETSc.DM-class.html#removeLabel
petsc4py.PETSc.DM.getLocalVec petsc4py.PETSc.DM-class.html#getLocalVec
petsc4py.PETSc.DM.coarsen petsc4py.PETSc.DM-class.html#coarsen
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.DM.copyFields petsc4py.PETSc.DM-class.html#copyFields
petsc4py.PETSc.DM.getLabelValue petsc4py.PETSc.DM-class.html#getLabelValue
petsc4py.PETSc.DM.setCoordinateDim petsc4py.PETSc.DM-class.html#setCoordinateDim
petsc4py.PETSc.DM.getStratumSize petsc4py.PETSc.DM-class.html#getStratumSize
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.DM.getLabelIdIS petsc4py.PETSc.DM-class.html#getLabelIdIS
petsc4py.PETSc.DM.setOptionsPrefix petsc4py.PETSc.DM-class.html#setOptionsPrefix
petsc4py.PETSc.DM.setFieldAdjacency petsc4py.PETSc.DM-class.html#setFieldAdjacency
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.DM.createGlobalVector petsc4py.PETSc.DM-class.html#createGlobalVector
petsc4py.PETSc.DM.getDefaultSF petsc4py.PETSc.DM-class.html#getDefaultSF
petsc4py.PETSc.DM.setNumFields petsc4py.PETSc.DM-class.html#setNumFields
petsc4py.PETSc.DM.setFromOptions petsc4py.PETSc.DM-class.html#setFromOptions
petsc4py.PETSc.DM.setSectionSF petsc4py.PETSc.DM-class.html#setSectionSF
petsc4py.PETSc.DM.getBoundingBox petsc4py.PETSc.DM-class.html#getBoundingBox
petsc4py.PETSc.DM.setDimension petsc4py.PETSc.DM-class.html#setDimension
petsc4py.PETSc.DM.hasLabel petsc4py.PETSc.DM-class.html#hasLabel
petsc4py.PETSc.DMComposite.getAccess petsc4py.PETSc.DMComposite-class.html#getAccess
petsc4py.PETSc.DM.ds petsc4py.PETSc.DM-class.html#ds
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.DM.setAppCtx petsc4py.PETSc.DM-class.html#setAppCtx
petsc4py.PETSc.DM.setGlobalSection petsc4py.PETSc.DM-class.html#setGlobalSection
petsc4py.PETSc.DM.createFieldDecomposition petsc4py.PETSc.DM-class.html#createFieldDecomposition
petsc4py.PETSc.DM.getCoordinateDim petsc4py.PETSc.DM-class.html#getCoordinateDim
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.DM.view petsc4py.PETSc.DM-class.html#view
petsc4py.PETSc.DM.getDefaultSection petsc4py.PETSc.DM-class.html#getDefaultSection
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.DM.createRestriction petsc4py.PETSc.DM-class.html#createRestriction
petsc4py.PETSc.DM.localizeCoordinates petsc4py.PETSc.DM-class.html#localizeCoordinates
petsc4py.PETSc.DM.getBlockSize petsc4py.PETSc.DM-class.html#getBlockSize
petsc4py.PETSc.DMComposite.getLGMaps petsc4py.PETSc.DMComposite-class.html#getLGMaps
petsc4py.PETSc.DM.Type petsc4py.PETSc.DM.Type-class.html
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.DM.getCoordinates petsc4py.PETSc.DM-class.html#getCoordinates
petsc4py.PETSc.DM.createInterpolation petsc4py.PETSc.DM-class.html#createInterpolation
petsc4py.PETSc.DM.clearLabelStratum petsc4py.PETSc.DM-class.html#clearLabelStratum
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.DM.setVecType petsc4py.PETSc.DM-class.html#setVecType
petsc4py.PETSc.DM.globalToLocal petsc4py.PETSc.DM-class.html#globalToLocal
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.DM.setDefaultSF petsc4py.PETSc.DM-class.html#setDefaultSF
petsc4py.PETSc.DM.setType petsc4py.PETSc.DM-class.html#setType
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.DM.getLabelName petsc4py.PETSc.DM-class.html#getLabelName
petsc4py.PETSc.DM.createSectionSF petsc4py.PETSc.DM-class.html#createSectionSF
petsc4py.PETSc.DM.setUp petsc4py.PETSc.DM-class.html#setUp
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.DM.getDS petsc4py.PETSc.DM-class.html#getDS
petsc4py.PETSc.DM.getPointSF petsc4py.PETSc.DM-class.html#getPointSF
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.DMComposite.getLocalISs petsc4py.PETSc.DMComposite-class.html#getLocalISs
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.DM.setSNESJacobian petsc4py.PETSc.DM-class.html#setSNESJacobian
petsc4py.PETSc.DM.createLabel petsc4py.PETSc.DM-class.html#createLabel
petsc4py.PETSc.DM.getMatrix petsc4py.PETSc.DM-class.html#getMatrix
petsc4py.PETSc.DM.getDefaultGlobalSection petsc4py.PETSc.DM-class.html#getDefaultGlobalSection
petsc4py.PETSc.DM.clearLabelValue petsc4py.PETSc.DM-class.html#clearLabelValue
petsc4py.PETSc.DM.convert petsc4py.PETSc.DM-class.html#convert
petsc4py.PETSc.DM.setDefaultGlobalSection petsc4py.PETSc.DM-class.html#setDefaultGlobalSection
petsc4py.PETSc.DM.getCoordinatesLocal petsc4py.PETSc.DM-class.html#getCoordinatesLocal
petsc4py.PETSc.DM.getLabelOutput petsc4py.PETSc.DM-class.html#getLabelOutput
petsc4py.PETSc.DM.appctx petsc4py.PETSc.DM-class.html#appctx
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.DM.getFieldAdjacency petsc4py.PETSc.DM-class.html#getFieldAdjacency
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.DM.setLabelValue petsc4py.PETSc.DM-class.html#setLabelValue
petsc4py.PETSc.DM.setCoordinates petsc4py.PETSc.DM-class.html#setCoordinates
petsc4py.PETSc.DM.adaptLabel petsc4py.PETSc.DM-class.html#adaptLabel
petsc4py.PETSc.DM.createMat petsc4py.PETSc.DM-class.html#createMat
petsc4py.PETSc.DM.createLocalVector petsc4py.PETSc.DM-class.html#createLocalVector
petsc4py.PETSc.DM.getCoordinateSection petsc4py.PETSc.DM-class.html#getCoordinateSection
petsc4py.PETSc.DM.setMatType petsc4py.PETSc.DM-class.html#setMatType
petsc4py.PETSc.DM.addCoarsenHook petsc4py.PETSc.DM-class.html#addCoarsenHook
petsc4py.PETSc.DM.getSection petsc4py.PETSc.DM-class.html#getSection
petsc4py.PETSc.DMComposite.create petsc4py.PETSc.DMComposite-class.html#create
petsc4py.PETSc.DM.BoundaryType petsc4py.PETSc.DM.BoundaryType-class.html
petsc4py.PETSc.DM.getCoordinateDM petsc4py.PETSc.DM-class.html#getCoordinateDM
petsc4py.PETSc.DM.getNumLabels petsc4py.PETSc.DM-class.html#getNumLabels
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.DM.getDimension petsc4py.PETSc.DM-class.html#getDimension
petsc4py.PETSc.DM.createInjection petsc4py.PETSc.DM-class.html#createInjection
petsc4py.PETSc.DM.setSNESFunction petsc4py.PETSc.DM-class.html#setSNESFunction
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.DM.getType petsc4py.PETSc.DM-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.DM.getAppCtx petsc4py.PETSc.DM-class.html#getAppCtx
petsc4py.PETSc.DM.setPointSF petsc4py.PETSc.DM-class.html#setPointSF
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.DM.copyDS petsc4py.PETSc.DM-class.html#copyDS
petsc4py.PETSc.DMComposite.getEntries petsc4py.PETSc.DMComposite-class.html#getEntries
petsc4py.PETSc.DM.getField petsc4py.PETSc.DM-class.html#getField
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.DM.setDefaultSection petsc4py.PETSc.DM-class.html#setDefaultSection
petsc4py.PETSc.DM.getCoarsenLevel petsc4py.PETSc.DM-class.html#getCoarsenLevel
petsc4py.PETSc.DMComposite.scatter petsc4py.PETSc.DMComposite-class.html#scatter
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.DM.getRefineLevel petsc4py.PETSc.DM-class.html#getRefineLevel
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.DM.setRefineLevel petsc4py.PETSc.DM-class.html#setRefineLevel
petsc4py.PETSc.DM.setSection petsc4py.PETSc.DM-class.html#setSection
petsc4py.PETSc.DM.refine petsc4py.PETSc.DM-class.html#refine
petsc4py.PETSc.DM.createLocalVec petsc4py.PETSc.DM-class.html#createLocalVec
petsc4py.PETSc.DM.getNumFields petsc4py.PETSc.DM-class.html#getNumFields
petsc4py.PETSc.DMComposite.getNumberDM petsc4py.PETSc.DMComposite-class.html#getNumberDM
petsc4py.PETSc.DM.getGlobalVec petsc4py.PETSc.DM-class.html#getGlobalVec
petsc4py.PETSc.DM.setKSPComputeOperators petsc4py.PETSc.DM-class.html#setKSPComputeOperators
petsc4py.PETSc.DM.refineHierarchy petsc4py.PETSc.DM-class.html#refineHierarchy
petsc4py.PETSc.DMComposite.__new__ petsc4py.PETSc.DMComposite-class.html#__new__
petsc4py.PETSc.DMComposite.getNumber petsc4py.PETSc.DMComposite-class.html#getNumber
petsc4py.PETSc.DM.getLabelSize petsc4py.PETSc.DM-class.html#getLabelSize
petsc4py.PETSc.DM.localToGlobal petsc4py.PETSc.DM-class.html#localToGlobal
petsc4py.PETSc.DM.getLocalBoundingBox petsc4py.PETSc.DM-class.html#getLocalBoundingBox
petsc4py.PETSc.DM.coarsenHierarchy petsc4py.PETSc.DM-class.html#coarsenHierarchy
petsc4py.PETSc.DM.destroy petsc4py.PETSc.DM-class.html#destroy
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.DM.createDefaultSF petsc4py.PETSc.DM-class.html#createDefaultSF
petsc4py.PETSc.DM.setCoordinatesLocal petsc4py.PETSc.DM-class.html#setCoordinatesLocal
petsc4py.PETSc.DM.clone petsc4py.PETSc.DM-class.html#clone
petsc4py.PETSc.DMComposite.addDM petsc4py.PETSc.DMComposite-class.html#addDM
petsc4py.PETSc.DM.clearDS petsc4py.PETSc.DM-class.html#clearDS
petsc4py.PETSc.DM.localToLocal petsc4py.PETSc.DM-class.html#localToLocal
petsc4py.PETSc.DM.copyDisc petsc4py.PETSc.DM-class.html#copyDisc
petsc4py.PETSc.DMComposite.getGlobalISs petsc4py.PETSc.DMComposite-class.html#getGlobalISs
petsc4py.PETSc.DM.setBasicAdjacency petsc4py.PETSc.DM-class.html#setBasicAdjacency
petsc4py.PETSc.DM.setLabelOutput petsc4py.PETSc.DM-class.html#setLabelOutput
petsc4py.PETSc.DMComposite.gather petsc4py.PETSc.DMComposite-class.html#gather
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.DM.restoreGlobalVec petsc4py.PETSc.DM-class.html#restoreGlobalVec
petsc4py.PETSc.DM.getSectionSF petsc4py.PETSc.DM-class.html#getSectionSF
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.DMDA petsc4py.PETSc.DMDA-class.html
petsc4py.PETSc.DM.getLGMap petsc4py.PETSc.DM-class.html#getLGMap
petsc4py.PETSc.DMDA.proc_sizes petsc4py.PETSc.DMDA-class.html#proc_sizes
petsc4py.PETSc.DMDA.StencilType petsc4py.PETSc.DMDA.StencilType-class.html
petsc4py.PETSc.DM.getStratumIS petsc4py.PETSc.DM-class.html#getStratumIS
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.DMDA.setRefinementFactor petsc4py.PETSc.DMDA-class.html#setRefinementFactor
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.DM.restoreLocalVec petsc4py.PETSc.DM-class.html#restoreLocalVec
petsc4py.PETSc.DM.getLabel petsc4py.PETSc.DM-class.html#getLabel
petsc4py.PETSc.DM.createRestriction petsc4py.PETSc.DM-class.html#createRestriction
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.DM.createGlobalVec petsc4py.PETSc.DM-class.html#createGlobalVec
petsc4py.PETSc.DMDA.getRanges petsc4py.PETSc.DMDA-class.html#getRanges
petsc4py.PETSc.DMDA.stencil_width petsc4py.PETSc.DMDA-class.html#stencil_width
petsc4py.PETSc.DM.getGlobalSection petsc4py.PETSc.DM-class.html#getGlobalSection
petsc4py.PETSc.DM.createMatrix petsc4py.PETSc.DM-class.html#createMatrix
petsc4py.PETSc.DMDA.getScatter petsc4py.PETSc.DMDA-class.html#getScatter
petsc4py.PETSc.DM.getBasicAdjacency petsc4py.PETSc.DM-class.html#getBasicAdjacency
petsc4py.PETSc.DM.addField petsc4py.PETSc.DM-class.html#addField
petsc4py.PETSc.DM.removeLabel petsc4py.PETSc.DM-class.html#removeLabel
petsc4py.PETSc.DM.getLocalVec petsc4py.PETSc.DM-class.html#getLocalVec
petsc4py.PETSc.DM.coarsen petsc4py.PETSc.DM-class.html#coarsen
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.DM.copyFields petsc4py.PETSc.DM-class.html#copyFields
petsc4py.PETSc.DM.getLabelSize petsc4py.PETSc.DM-class.html#getLabelSize
petsc4py.PETSc.DM.getLabelValue petsc4py.PETSc.DM-class.html#getLabelValue
petsc4py.PETSc.DM.setCoordinateDim petsc4py.PETSc.DM-class.html#setCoordinateDim
petsc4py.PETSc.DM.getStratumSize petsc4py.PETSc.DM-class.html#getStratumSize
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.DM.getLabelIdIS petsc4py.PETSc.DM-class.html#getLabelIdIS
petsc4py.PETSc.DM.setOptionsPrefix petsc4py.PETSc.DM-class.html#setOptionsPrefix
petsc4py.PETSc.DMDA.createNaturalVec petsc4py.PETSc.DMDA-class.html#createNaturalVec
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.DMDA.setSizes petsc4py.PETSc.DMDA-class.html#setSizes
petsc4py.PETSc.DM.getLocalBoundingBox petsc4py.PETSc.DM-class.html#getLocalBoundingBox
petsc4py.PETSc.DM.getDefaultSF petsc4py.PETSc.DM-class.html#getDefaultSF
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.DM.setNumFields petsc4py.PETSc.DM-class.html#setNumFields
petsc4py.PETSc.DM.setFromOptions petsc4py.PETSc.DM-class.html#setFromOptions
petsc4py.PETSc.DM.setSectionSF petsc4py.PETSc.DM-class.html#setSectionSF
petsc4py.PETSc.DM.getBoundingBox petsc4py.PETSc.DM-class.html#getBoundingBox
petsc4py.PETSc.DM.setDimension petsc4py.PETSc.DM-class.html#setDimension
petsc4py.PETSc.DM.hasLabel petsc4py.PETSc.DM-class.html#hasLabel
petsc4py.PETSc.DMDA.ElementType petsc4py.PETSc.DMDA.ElementType-class.html
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.DM.ds petsc4py.PETSc.DM-class.html#ds
petsc4py.PETSc.DMDA.setElementType petsc4py.PETSc.DMDA-class.html#setElementType
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.DMDA.dim petsc4py.PETSc.DMDA-class.html#dim
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.DM.setAppCtx petsc4py.PETSc.DM-class.html#setAppCtx
petsc4py.PETSc.DM.setGlobalSection petsc4py.PETSc.DM-class.html#setGlobalSection
petsc4py.PETSc.DMDA.sizes petsc4py.PETSc.DMDA-class.html#sizes
petsc4py.PETSc.DMDA.corners petsc4py.PETSc.DMDA-class.html#corners
petsc4py.PETSc.DMDA.boundary_type petsc4py.PETSc.DMDA-class.html#boundary_type
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.DMDA.getOwnershipRanges petsc4py.PETSc.DMDA-class.html#getOwnershipRanges
petsc4py.PETSc.DM.createFieldDecomposition petsc4py.PETSc.DM-class.html#createFieldDecomposition
petsc4py.PETSc.DMDA.getRefinementFactor petsc4py.PETSc.DMDA-class.html#getRefinementFactor
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.DMDA.getSizes petsc4py.PETSc.DMDA-class.html#getSizes
petsc4py.PETSc.DM.view petsc4py.PETSc.DM-class.html#view
petsc4py.PETSc.DM.getSection petsc4py.PETSc.DM-class.html#getSection
petsc4py.PETSc.DM.getDefaultSection petsc4py.PETSc.DM-class.html#getDefaultSection
petsc4py.PETSc.DMDA.getGhostCorners petsc4py.PETSc.DMDA-class.html#getGhostCorners
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.DM.getCoordinateDim petsc4py.PETSc.DM-class.html#getCoordinateDim
petsc4py.PETSc.DM.adaptMetric petsc4py.PETSc.DM-class.html#adaptMetric
petsc4py.PETSc.DM.setField petsc4py.PETSc.DM-class.html#setField
petsc4py.PETSc.DMDA.globalToNatural petsc4py.PETSc.DMDA-class.html#globalToNatural
petsc4py.PETSc.DM.localizeCoordinates petsc4py.PETSc.DM-class.html#localizeCoordinates
petsc4py.PETSc.DM.getBlockSize petsc4py.PETSc.DM-class.html#getBlockSize
petsc4py.PETSc.DM.refineHierarchy petsc4py.PETSc.DM-class.html#refineHierarchy
petsc4py.PETSc.DM.Type petsc4py.PETSc.DM.Type-class.html
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.DM.getCoordinates petsc4py.PETSc.DM-class.html#getCoordinates
petsc4py.PETSc.DM.createDS petsc4py.PETSc.DM-class.html#createDS
petsc4py.PETSc.DMDA.setProcSizes petsc4py.PETSc.DMDA-class.html#setProcSizes
petsc4py.PETSc.DMDA.setUniformCoordinates petsc4py.PETSc.DMDA-class.html#setUniformCoordinates
petsc4py.PETSc.DM.clearLabelStratum petsc4py.PETSc.DM-class.html#clearLabelStratum
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.DM.localToGlobal petsc4py.PETSc.DM-class.html#localToGlobal
petsc4py.PETSc.DM.setVecType petsc4py.PETSc.DM-class.html#setVecType
petsc4py.PETSc.DMDA.setBoundaryType petsc4py.PETSc.DMDA-class.html#setBoundaryType
petsc4py.PETSc.DM.globalToLocal petsc4py.PETSc.DM-class.html#globalToLocal
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.DM.setDefaultSF petsc4py.PETSc.DM-class.html#setDefaultSF
petsc4py.PETSc.DM.addCoarsenHook petsc4py.PETSc.DM-class.html#addCoarsenHook
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.DMDA.getDof petsc4py.PETSc.DMDA-class.html#getDof
petsc4py.PETSc.DM.getLabelName petsc4py.PETSc.DM-class.html#getLabelName
petsc4py.PETSc.DM.createSectionSF petsc4py.PETSc.DM-class.html#createSectionSF
petsc4py.PETSc.DM.setUp petsc4py.PETSc.DM-class.html#setUp
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.DM.getDS petsc4py.PETSc.DM-class.html#getDS
petsc4py.PETSc.DM.getPointSF petsc4py.PETSc.DM-class.html#getPointSF
petsc4py.PETSc.DMDA.ranges petsc4py.PETSc.DMDA-class.html#ranges
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.DMDA.ghost_corners petsc4py.PETSc.DMDA-class.html#ghost_corners
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.DM.setSNESJacobian petsc4py.PETSc.DM-class.html#setSNESJacobian
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.DM.createLabel petsc4py.PETSc.DM-class.html#createLabel
petsc4py.PETSc.DM.getMatrix petsc4py.PETSc.DM-class.html#getMatrix
petsc4py.PETSc.DM.getDefaultGlobalSection petsc4py.PETSc.DM-class.html#getDefaultGlobalSection
petsc4py.PETSc.DM.clearLabelValue petsc4py.PETSc.DM-class.html#clearLabelValue
petsc4py.PETSc.DM.convert petsc4py.PETSc.DM-class.html#convert
petsc4py.PETSc.DM.setDefaultGlobalSection petsc4py.PETSc.DM-class.html#setDefaultGlobalSection
petsc4py.PETSc.DM.getCoordinatesLocal petsc4py.PETSc.DM-class.html#getCoordinatesLocal
petsc4py.PETSc.DM.getLabelOutput petsc4py.PETSc.DM-class.html#getLabelOutput
petsc4py.PETSc.DM.appctx petsc4py.PETSc.DM-class.html#appctx
petsc4py.PETSc.DMDA.setFieldName petsc4py.PETSc.DMDA-class.html#setFieldName
petsc4py.PETSc.DMDA.getBoundaryType petsc4py.PETSc.DMDA-class.html#getBoundaryType
petsc4py.PETSc.DMDA.getElements petsc4py.PETSc.DMDA-class.html#getElements
petsc4py.PETSc.DMDA.getProcSizes petsc4py.PETSc.DMDA-class.html#getProcSizes
petsc4py.PETSc.DMDA.setStencilType petsc4py.PETSc.DMDA-class.html#setStencilType
petsc4py.PETSc.DM.setLabelValue petsc4py.PETSc.DM-class.html#setLabelValue
petsc4py.PETSc.DMDA.ghost_ranges petsc4py.PETSc.DMDA-class.html#ghost_ranges
petsc4py.PETSc.DM.setCoordinates petsc4py.PETSc.DM-class.html#setCoordinates
petsc4py.PETSc.DMDA.setStencil petsc4py.PETSc.DMDA-class.html#setStencil
petsc4py.PETSc.DM.adaptLabel petsc4py.PETSc.DM-class.html#adaptLabel
petsc4py.PETSc.DM.createMat petsc4py.PETSc.DM-class.html#createMat
petsc4py.PETSc.DM.createLocalVector petsc4py.PETSc.DM-class.html#createLocalVector
petsc4py.PETSc.DMDA.setCoordinateName petsc4py.PETSc.DMDA-class.html#setCoordinateName
petsc4py.PETSc.DM.getNumFields petsc4py.PETSc.DM-class.html#getNumFields
petsc4py.PETSc.DMDA.getStencil petsc4py.PETSc.DMDA-class.html#getStencil
petsc4py.PETSc.DM.getCoordinateSection petsc4py.PETSc.DM-class.html#getCoordinateSection
petsc4py.PETSc.DM.setMatType petsc4py.PETSc.DM-class.html#setMatType
petsc4py.PETSc.DM.setType petsc4py.PETSc.DM-class.html#setType
petsc4py.PETSc.DMDA.stencil petsc4py.PETSc.DMDA-class.html#stencil
petsc4py.PETSc.DMDA.getElementType petsc4py.PETSc.DMDA-class.html#getElementType
petsc4py.PETSc.DM.BoundaryType petsc4py.PETSc.DM.BoundaryType-class.html
petsc4py.PETSc.DM.getCoordinateDM petsc4py.PETSc.DM-class.html#getCoordinateDM
petsc4py.PETSc.DMDA.duplicate petsc4py.PETSc.DMDA-class.html#duplicate
petsc4py.PETSc.DM.getNumLabels petsc4py.PETSc.DM-class.html#getNumLabels
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.DM.getDimension petsc4py.PETSc.DM-class.html#getDimension
petsc4py.PETSc.DM.createInjection petsc4py.PETSc.DM-class.html#createInjection
petsc4py.PETSc.DM.setSNESFunction petsc4py.PETSc.DM-class.html#setSNESFunction
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.DMDA.setDof petsc4py.PETSc.DMDA-class.html#setDof
petsc4py.PETSc.DMDA.getStencilWidth petsc4py.PETSc.DMDA-class.html#getStencilWidth
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.DM.getAppCtx petsc4py.PETSc.DM-class.html#getAppCtx
petsc4py.PETSc.DM.setPointSF petsc4py.PETSc.DM-class.html#setPointSF
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.DM.copyDS petsc4py.PETSc.DM-class.html#copyDS
petsc4py.PETSc.DM.getField petsc4py.PETSc.DM-class.html#getField
petsc4py.PETSc.DMDA.getFieldName petsc4py.PETSc.DMDA-class.html#getFieldName
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.DMDA.getDim petsc4py.PETSc.DMDA-class.html#getDim
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.DM.getCoarsenLevel petsc4py.PETSc.DM-class.html#getCoarsenLevel
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.DM.getRefineLevel petsc4py.PETSc.DM-class.html#getRefineLevel
petsc4py.PETSc.DM.setRefineLevel petsc4py.PETSc.DM-class.html#setRefineLevel
petsc4py.PETSc.DM.setSection petsc4py.PETSc.DM-class.html#setSection
petsc4py.PETSc.DM.refine petsc4py.PETSc.DM-class.html#refine
petsc4py.PETSc.DM.createLocalVec petsc4py.PETSc.DM-class.html#createLocalVec
petsc4py.PETSc.DMDA.getInterpolationType petsc4py.PETSc.DMDA-class.html#getInterpolationType
petsc4py.PETSc.DMDA.create petsc4py.PETSc.DMDA-class.html#create
petsc4py.PETSc.DM.getGlobalVec petsc4py.PETSc.DM-class.html#getGlobalVec
petsc4py.PETSc.DM.setKSPComputeOperators petsc4py.PETSc.DM-class.html#setKSPComputeOperators
petsc4py.PETSc.DM.localToLocal petsc4py.PETSc.DM-class.html#localToLocal
petsc4py.PETSc.DMDA.__new__ petsc4py.PETSc.DMDA-class.html#__new__
petsc4py.PETSc.DM.setFieldAdjacency petsc4py.PETSc.DM-class.html#setFieldAdjacency
petsc4py.PETSc.DMDA.getAO petsc4py.PETSc.DMDA-class.html#getAO
petsc4py.PETSc.DMDA.InterpolationType petsc4py.PETSc.DMDA.InterpolationType-class.html
petsc4py.PETSc.DMDA.setInterpolationType petsc4py.PETSc.DMDA-class.html#setInterpolationType
petsc4py.PETSc.DMDA.stencil_type petsc4py.PETSc.DMDA-class.html#stencil_type
petsc4py.PETSc.DM.coarsenHierarchy petsc4py.PETSc.DM-class.html#coarsenHierarchy
petsc4py.PETSc.DM.destroy petsc4py.PETSc.DM-class.html#destroy
petsc4py.PETSc.DMDA.getGhostRanges petsc4py.PETSc.DMDA-class.html#getGhostRanges
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.DM.getType petsc4py.PETSc.DM-class.html#getType
petsc4py.PETSc.DMDA.setDim petsc4py.PETSc.DMDA-class.html#setDim
petsc4py.PETSc.DMDA.getStencilType petsc4py.PETSc.DMDA-class.html#getStencilType
petsc4py.PETSc.DM.createDefaultSF petsc4py.PETSc.DM-class.html#createDefaultSF
petsc4py.PETSc.DM.setCoordinatesLocal petsc4py.PETSc.DM-class.html#setCoordinatesLocal
petsc4py.PETSc.DM.clone petsc4py.PETSc.DM-class.html#clone
petsc4py.PETSc.DM.setDefaultSection petsc4py.PETSc.DM-class.html#setDefaultSection
petsc4py.PETSc.DMDA.getVecArray petsc4py.PETSc.DMDA-class.html#getVecArray
petsc4py.PETSc.DM.clearDS petsc4py.PETSc.DM-class.html#clearDS
petsc4py.PETSc.DM.getFieldAdjacency petsc4py.PETSc.DM-class.html#getFieldAdjacency
petsc4py.PETSc.DM.copyDisc petsc4py.PETSc.DM-class.html#copyDisc
petsc4py.PETSc.DMDA.createNaturalVector petsc4py.PETSc.DMDA-class.html#createNaturalVector
petsc4py.PETSc.DMDA.setStencilWidth petsc4py.PETSc.DMDA-class.html#setStencilWidth
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.DM.setBasicAdjacency petsc4py.PETSc.DM-class.html#setBasicAdjacency
petsc4py.PETSc.DMDA.naturalToGlobal petsc4py.PETSc.DMDA-class.html#naturalToGlobal
petsc4py.PETSc.DM.createInterpolation petsc4py.PETSc.DM-class.html#createInterpolation
petsc4py.PETSc.DM.setLabelOutput petsc4py.PETSc.DM-class.html#setLabelOutput
petsc4py.PETSc.DM.createGlobalVector petsc4py.PETSc.DM-class.html#createGlobalVector
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.DMDA.dof petsc4py.PETSc.DMDA-class.html#dof
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.DM.restoreGlobalVec petsc4py.PETSc.DM-class.html#restoreGlobalVec
petsc4py.PETSc.DM.getSectionSF petsc4py.PETSc.DM-class.html#getSectionSF
petsc4py.PETSc.DMDA.getCoordinateName petsc4py.PETSc.DMDA-class.html#getCoordinateName
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.DMDA.getCorners petsc4py.PETSc.DMDA-class.html#getCorners
petsc4py.PETSc.DMDA.ElementType petsc4py.PETSc.DMDA.ElementType-class.html
petsc4py.PETSc.DMDA.ElementType.Q1 petsc4py.PETSc.DMDA.ElementType-class.html#Q1
petsc4py.PETSc.DMDA.ElementType.P1 petsc4py.PETSc.DMDA.ElementType-class.html#P1
petsc4py.PETSc.DMDA.ElementType.__qualname__ petsc4py.PETSc.DMDA.ElementType-class.html#__qualname__
petsc4py.PETSc.DMDA.InterpolationType petsc4py.PETSc.DMDA.InterpolationType-class.html
petsc4py.PETSc.DMDA.InterpolationType.Q1 petsc4py.PETSc.DMDA.InterpolationType-class.html#Q1
petsc4py.PETSc.DMDA.InterpolationType.Q0 petsc4py.PETSc.DMDA.InterpolationType-class.html#Q0
petsc4py.PETSc.DMDA.InterpolationType.__qualname__ petsc4py.PETSc.DMDA.InterpolationType-class.html#__qualname__
petsc4py.PETSc.DMDA.StencilType petsc4py.PETSc.DMDA.StencilType-class.html
petsc4py.PETSc.DMDA.StencilType.BOX petsc4py.PETSc.DMDA.StencilType-class.html#BOX
petsc4py.PETSc.DMDA.StencilType.STAR petsc4py.PETSc.DMDA.StencilType-class.html#STAR
petsc4py.PETSc.DMDA.StencilType.__qualname__ petsc4py.PETSc.DMDA.StencilType-class.html#__qualname__
petsc4py.PETSc.DMLabel petsc4py.PETSc.DMLabel-class.html
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.DMLabel.__new__ petsc4py.PETSc.DMLabel-class.html#__new__
petsc4py.PETSc.DMLabel.create petsc4py.PETSc.DMLabel-class.html#create
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.DMLabel.destroy petsc4py.PETSc.DMLabel-class.html#destroy
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.Object.setFromOptions petsc4py.PETSc.Object-class.html#setFromOptions
petsc4py.PETSc.Object.getType petsc4py.PETSc.Object-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.DMLabel.insertIS petsc4py.PETSc.DMLabel-class.html#insertIS
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.view petsc4py.PETSc.Object-class.html#view
petsc4py.PETSc.DMPlex petsc4py.PETSc.DMPlex-class.html
petsc4py.PETSc.DM.createInjection petsc4py.PETSc.DM-class.html#createInjection
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.DM.getLGMap petsc4py.PETSc.DM-class.html#getLGMap
petsc4py.PETSc.DMPlex.setSupportSize petsc4py.PETSc.DMPlex-class.html#setSupportSize
petsc4py.PETSc.DMPlex.setSupport petsc4py.PETSc.DMPlex-class.html#setSupport
petsc4py.PETSc.DM.getStratumIS petsc4py.PETSc.DM-class.html#getStratumIS
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.DMPlex.distribute petsc4py.PETSc.DMPlex-class.html#distribute
petsc4py.PETSc.DMPlex.constructGhostCells petsc4py.PETSc.DMPlex-class.html#constructGhostCells
petsc4py.PETSc.DMPlex.createExodus petsc4py.PETSc.DMPlex-class.html#createExodus
petsc4py.PETSc.DMPlex.getChart petsc4py.PETSc.DMPlex-class.html#getChart
petsc4py.PETSc.DM.getLabel petsc4py.PETSc.DM-class.html#getLabel
petsc4py.PETSc.DM.createRestriction petsc4py.PETSc.DM-class.html#createRestriction
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.DM.createGlobalVec petsc4py.PETSc.DM-class.html#createGlobalVec
petsc4py.PETSc.DM.createDS petsc4py.PETSc.DM-class.html#createDS
petsc4py.PETSc.DM.clearLabelStratum petsc4py.PETSc.DM-class.html#clearLabelStratum
petsc4py.PETSc.DMPlex.permute petsc4py.PETSc.DMPlex-class.html#permute
petsc4py.PETSc.DMPlex.createPointNumbering petsc4py.PETSc.DMPlex-class.html#createPointNumbering
petsc4py.PETSc.DM.getGlobalSection petsc4py.PETSc.DM-class.html#getGlobalSection
petsc4py.PETSc.DMPlex.getSupport petsc4py.PETSc.DMPlex-class.html#getSupport
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.DM.getBasicAdjacency petsc4py.PETSc.DM-class.html#getBasicAdjacency
petsc4py.PETSc.DM.addField petsc4py.PETSc.DM-class.html#addField
petsc4py.PETSc.DM.removeLabel petsc4py.PETSc.DM-class.html#removeLabel
petsc4py.PETSc.DM.getLocalVec petsc4py.PETSc.DM-class.html#getLocalVec
petsc4py.PETSc.DMPlex.setVecClosure petsc4py.PETSc.DMPlex-class.html#setVecClosure
petsc4py.PETSc.DMPlex.setConeOrientation petsc4py.PETSc.DMPlex-class.html#setConeOrientation
petsc4py.PETSc.DM.coarsen petsc4py.PETSc.DM-class.html#coarsen
petsc4py.PETSc.DM.setLabelValue petsc4py.PETSc.DM-class.html#setLabelValue
petsc4py.PETSc.DMPlex.getDepthStratum petsc4py.PETSc.DMPlex-class.html#getDepthStratum
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.DM.getLabelValue petsc4py.PETSc.DM-class.html#getLabelValue
petsc4py.PETSc.DM.setCoordinateDim petsc4py.PETSc.DM-class.html#setCoordinateDim
petsc4py.PETSc.DM.getStratumSize petsc4py.PETSc.DM-class.html#getStratumSize
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.DM.getLabelIdIS petsc4py.PETSc.DM-class.html#getLabelIdIS
petsc4py.PETSc.DM.setOptionsPrefix petsc4py.PETSc.DM-class.html#setOptionsPrefix
petsc4py.PETSc.DM.setFieldAdjacency petsc4py.PETSc.DM-class.html#setFieldAdjacency
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.DM.createGlobalVector petsc4py.PETSc.DM-class.html#createGlobalVector
petsc4py.PETSc.DM.getDefaultSF petsc4py.PETSc.DM-class.html#getDefaultSF
petsc4py.PETSc.DMPlex.getRefinementUniform petsc4py.PETSc.DMPlex-class.html#getRefinementUniform
petsc4py.PETSc.DM.setNumFields petsc4py.PETSc.DM-class.html#setNumFields
petsc4py.PETSc.DM.setFromOptions petsc4py.PETSc.DM-class.html#setFromOptions
petsc4py.PETSc.DMPlex.setPartitioner petsc4py.PETSc.DMPlex-class.html#setPartitioner
petsc4py.PETSc.DM.setSectionSF petsc4py.PETSc.DM-class.html#setSectionSF
petsc4py.PETSc.DM.getBoundingBox petsc4py.PETSc.DM-class.html#getBoundingBox
petsc4py.PETSc.DM.setDimension petsc4py.PETSc.DM-class.html#setDimension
petsc4py.PETSc.DM.hasLabel petsc4py.PETSc.DM-class.html#hasLabel
petsc4py.PETSc.DM.ds petsc4py.PETSc.DM-class.html#ds
petsc4py.PETSc.DMPlex.createClosureIndex petsc4py.PETSc.DMPlex-class.html#createClosureIndex
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.DM.setAppCtx petsc4py.PETSc.DM-class.html#setAppCtx
petsc4py.PETSc.DM.setGlobalSection petsc4py.PETSc.DM-class.html#setGlobalSection
petsc4py.PETSc.DM.createFieldDecomposition petsc4py.PETSc.DM-class.html#createFieldDecomposition
petsc4py.PETSc.DMPlex.createExodusFromFile petsc4py.PETSc.DMPlex-class.html#createExodusFromFile
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.DMPlex.getHeightStratum petsc4py.PETSc.DMPlex-class.html#getHeightStratum
petsc4py.PETSc.DMPlex.getJoin petsc4py.PETSc.DMPlex-class.html#getJoin
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.DM.restoreLocalVec petsc4py.PETSc.DM-class.html#restoreLocalVec
petsc4py.PETSc.DMPlex.createFromCellList petsc4py.PETSc.DMPlex-class.html#createFromCellList
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.DMPlex.stratify petsc4py.PETSc.DMPlex-class.html#stratify
petsc4py.PETSc.DM.view petsc4py.PETSc.DM-class.html#view
petsc4py.PETSc.DM.getDefaultSection petsc4py.PETSc.DM-class.html#getDefaultSection
petsc4py.PETSc.DMPlex.getDepth petsc4py.PETSc.DMPlex-class.html#getDepth
petsc4py.PETSc.DMPlex.getRefinementLimit petsc4py.PETSc.DMPlex-class.html#getRefinementLimit
petsc4py.PETSc.DMPlex.getOrdering petsc4py.PETSc.DMPlex-class.html#getOrdering
petsc4py.PETSc.DM.getCoordinateDim petsc4py.PETSc.DM-class.html#getCoordinateDim
petsc4py.PETSc.DMPlex.getAdjacency petsc4py.PETSc.DMPlex-class.html#getAdjacency
petsc4py.PETSc.DM.adaptMetric petsc4py.PETSc.DM-class.html#adaptMetric
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.DMPlex.getConeSize petsc4py.PETSc.DMPlex-class.html#getConeSize
petsc4py.PETSc.DMPlex.createSquareBoundary petsc4py.PETSc.DMPlex-class.html#createSquareBoundary
petsc4py.PETSc.DM.localizeCoordinates petsc4py.PETSc.DM-class.html#localizeCoordinates
petsc4py.PETSc.DM.getBlockSize petsc4py.PETSc.DM-class.html#getBlockSize
petsc4py.PETSc.DM.refineHierarchy petsc4py.PETSc.DM-class.html#refineHierarchy
petsc4py.PETSc.DM.Type petsc4py.PETSc.DM.Type-class.html
petsc4py.PETSc.DMPlex.orient petsc4py.PETSc.DMPlex-class.html#orient
petsc4py.PETSc.DM.getCoordinates petsc4py.PETSc.DM-class.html#getCoordinates
petsc4py.PETSc.DMPlex.createFromFile petsc4py.PETSc.DMPlex-class.html#createFromFile
petsc4py.PETSc.DM.createInterpolation petsc4py.PETSc.DM-class.html#createInterpolation
petsc4py.PETSc.DM.setField petsc4py.PETSc.DM-class.html#setField
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.DM.setVecType petsc4py.PETSc.DM-class.html#setVecType
petsc4py.PETSc.DM.globalToLocal petsc4py.PETSc.DM-class.html#globalToLocal
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.DM.setDefaultSF petsc4py.PETSc.DM-class.html#setDefaultSF
petsc4py.PETSc.DMPlex.markBoundaryFaces petsc4py.PETSc.DMPlex-class.html#markBoundaryFaces
petsc4py.PETSc.DMPlex.uninterpolate petsc4py.PETSc.DMPlex-class.html#uninterpolate
petsc4py.PETSc.DMPlex.setMatClosure petsc4py.PETSc.DMPlex-class.html#setMatClosure
petsc4py.PETSc.DMPlex.rebalanceSharedPoints petsc4py.PETSc.DMPlex-class.html#rebalanceSharedPoints
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.DM.getLabelName petsc4py.PETSc.DM-class.html#getLabelName
petsc4py.PETSc.DM.createSectionSF petsc4py.PETSc.DM-class.html#createSectionSF
petsc4py.PETSc.DM.setUp petsc4py.PETSc.DM-class.html#setUp
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.DMPlex.interpolate petsc4py.PETSc.DMPlex-class.html#interpolate
petsc4py.PETSc.DM.getPointSF petsc4py.PETSc.DM-class.html#getPointSF
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.DM.createMatrix petsc4py.PETSc.DM-class.html#createMatrix
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.DM.getDS petsc4py.PETSc.DM-class.html#getDS
petsc4py.PETSc.DM.setSNESJacobian petsc4py.PETSc.DM-class.html#setSNESJacobian
petsc4py.PETSc.DMPlex.getVecClosure petsc4py.PETSc.DMPlex-class.html#getVecClosure
petsc4py.PETSc.DMPlex.getCone petsc4py.PETSc.DMPlex-class.html#getCone
petsc4py.PETSc.DMPlex.setTriangleOptions petsc4py.PETSc.DMPlex-class.html#setTriangleOptions
petsc4py.PETSc.DMPlex.generate petsc4py.PETSc.DMPlex-class.html#generate
petsc4py.PETSc.DM.getMatrix petsc4py.PETSc.DM-class.html#getMatrix
petsc4py.PETSc.DM.getDefaultGlobalSection petsc4py.PETSc.DM-class.html#getDefaultGlobalSection
petsc4py.PETSc.DMPlex.getPointGlobal petsc4py.PETSc.DMPlex-class.html#getPointGlobal
petsc4py.PETSc.DM.convert petsc4py.PETSc.DM-class.html#convert
petsc4py.PETSc.DM.setDefaultGlobalSection petsc4py.PETSc.DM-class.html#setDefaultGlobalSection
petsc4py.PETSc.DMPlex.setAdjacencyUseAnchors petsc4py.PETSc.DMPlex-class.html#setAdjacencyUseAnchors
petsc4py.PETSc.DM.getLabelOutput petsc4py.PETSc.DM-class.html#getLabelOutput
petsc4py.PETSc.DM.appctx petsc4py.PETSc.DM-class.html#appctx
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.DMPlex.distributeOverlap petsc4py.PETSc.DMPlex-class.html#distributeOverlap
petsc4py.PETSc.DMPlex.insertCone petsc4py.PETSc.DMPlex-class.html#insertCone
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.DMPlex.getSupportSize petsc4py.PETSc.DMPlex-class.html#getSupportSize
petsc4py.PETSc.DMPlex.getMaxSizes petsc4py.PETSc.DMPlex-class.html#getMaxSizes
petsc4py.PETSc.DM.setCoordinates petsc4py.PETSc.DM-class.html#setCoordinates
petsc4py.PETSc.DM.adaptLabel petsc4py.PETSc.DM-class.html#adaptLabel
petsc4py.PETSc.DM.createMat petsc4py.PETSc.DM-class.html#createMat
petsc4py.PETSc.DM.createLocalVector petsc4py.PETSc.DM-class.html#createLocalVector
petsc4py.PETSc.DM.getNumFields petsc4py.PETSc.DM-class.html#getNumFields
petsc4py.PETSc.DM.getCoordinateSection petsc4py.PETSc.DM-class.html#getCoordinateSection
petsc4py.PETSc.DM.setMatType petsc4py.PETSc.DM-class.html#setMatType
petsc4py.PETSc.DM.setType petsc4py.PETSc.DM-class.html#setType
petsc4py.PETSc.DM.getSection petsc4py.PETSc.DM-class.html#getSection
petsc4py.PETSc.DMPlex.getCellNumbering petsc4py.PETSc.DMPlex-class.html#getCellNumbering
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.DMPlex.create petsc4py.PETSc.DMPlex-class.html#create
petsc4py.PETSc.DM.setSection petsc4py.PETSc.DM-class.html#setSection
petsc4py.PETSc.DMPlex.computeCellGeometryFVM petsc4py.PETSc.DMPlex-class.html#computeCellGeometryFVM
petsc4py.PETSc.DM.createLabel petsc4py.PETSc.DM-class.html#createLabel
petsc4py.PETSc.DM.getCoordinateDM petsc4py.PETSc.DM-class.html#getCoordinateDM
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.DM.getNumLabels petsc4py.PETSc.DM-class.html#getNumLabels
petsc4py.PETSc.DMPlex.createSection petsc4py.PETSc.DMPlex-class.html#createSection
petsc4py.PETSc.DM.getDimension petsc4py.PETSc.DM-class.html#getDimension
petsc4py.PETSc.DMPlex.vecGetClosure petsc4py.PETSc.DMPlex-class.html#vecGetClosure
petsc4py.PETSc.DM.setSNESFunction petsc4py.PETSc.DM-class.html#setSNESFunction
petsc4py.PETSc.DMPlex.getPointLocalField petsc4py.PETSc.DMPlex-class.html#getPointLocalField
petsc4py.PETSc.DM.copyFields petsc4py.PETSc.DM-class.html#copyFields
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.DM.clearLabelValue petsc4py.PETSc.DM-class.html#clearLabelValue
petsc4py.PETSc.DMPlex.getVertexNumbering petsc4py.PETSc.DMPlex-class.html#getVertexNumbering
petsc4py.PETSc.DM.getType petsc4py.PETSc.DM-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.DMPlex.setRefinementUniform petsc4py.PETSc.DMPlex-class.html#setRefinementUniform
petsc4py.PETSc.DM.setPointSF petsc4py.PETSc.DM-class.html#setPointSF
petsc4py.PETSc.DMPlex.createCubeBoundary petsc4py.PETSc.DMPlex-class.html#createCubeBoundary
petsc4py.PETSc.DMPlex.getTransitiveClosure petsc4py.PETSc.DMPlex-class.html#getTransitiveClosure
petsc4py.PETSc.DM.copyDS petsc4py.PETSc.DM-class.html#copyDS
petsc4py.PETSc.DM.getCoordinatesLocal petsc4py.PETSc.DM-class.html#getCoordinatesLocal
petsc4py.PETSc.DMPlex.getPointGlobalField petsc4py.PETSc.DMPlex-class.html#getPointGlobalField
petsc4py.PETSc.DM.getField petsc4py.PETSc.DM-class.html#getField
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.DMPlex.setConeSize petsc4py.PETSc.DMPlex-class.html#setConeSize
petsc4py.PETSc.DMPlex.insertConeOrientation petsc4py.PETSc.DMPlex-class.html#insertConeOrientation
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.DMPlex.getMeet petsc4py.PETSc.DMPlex-class.html#getMeet
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.DM.getCoarsenLevel petsc4py.PETSc.DM-class.html#getCoarsenLevel
petsc4py.PETSc.DM.getAppCtx petsc4py.PETSc.DM-class.html#getAppCtx
petsc4py.PETSc.DM.addCoarsenHook petsc4py.PETSc.DM-class.html#addCoarsenHook
petsc4py.PETSc.DM.getRefineLevel petsc4py.PETSc.DM-class.html#getRefineLevel
petsc4py.PETSc.DM.setRefineLevel petsc4py.PETSc.DM-class.html#setRefineLevel
petsc4py.PETSc.DMPlex.createCGNSFromFile petsc4py.PETSc.DMPlex-class.html#createCGNSFromFile
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.DMPlex.createCohesiveSubmesh petsc4py.PETSc.DMPlex-class.html#createCohesiveSubmesh
petsc4py.PETSc.DMPlex.symmetrize petsc4py.PETSc.DMPlex-class.html#symmetrize
petsc4py.PETSc.DMPlex.distributeField petsc4py.PETSc.DMPlex-class.html#distributeField
petsc4py.PETSc.DMPlex.getPartitioner petsc4py.PETSc.DMPlex-class.html#getPartitioner
petsc4py.PETSc.DM.BoundaryType petsc4py.PETSc.DM.BoundaryType-class.html
petsc4py.PETSc.DM.refine petsc4py.PETSc.DM-class.html#refine
petsc4py.PETSc.DM.createLocalVec petsc4py.PETSc.DM-class.html#createLocalVec
petsc4py.PETSc.DM.restoreGlobalVec petsc4py.PETSc.DM-class.html#restoreGlobalVec
petsc4py.PETSc.DMPlex.getPointLocal petsc4py.PETSc.DMPlex-class.html#getPointLocal
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.DM.getGlobalVec petsc4py.PETSc.DM-class.html#getGlobalVec
petsc4py.PETSc.DM.setKSPComputeOperators petsc4py.PETSc.DM-class.html#setKSPComputeOperators
petsc4py.PETSc.DM.localToLocal petsc4py.PETSc.DM-class.html#localToLocal
petsc4py.PETSc.DMPlex.__new__ petsc4py.PETSc.DMPlex-class.html#__new__
petsc4py.PETSc.DM.getLabelSize petsc4py.PETSc.DM-class.html#getLabelSize
petsc4py.PETSc.DM.localToGlobal petsc4py.PETSc.DM-class.html#localToGlobal
petsc4py.PETSc.DM.getLocalBoundingBox petsc4py.PETSc.DM-class.html#getLocalBoundingBox
petsc4py.PETSc.DM.coarsenHierarchy petsc4py.PETSc.DM-class.html#coarsenHierarchy
petsc4py.PETSc.DM.destroy petsc4py.PETSc.DM-class.html#destroy
petsc4py.PETSc.DMPlex.getConeOrientation petsc4py.PETSc.DMPlex-class.html#getConeOrientation
petsc4py.PETSc.DMPlex.createGmsh petsc4py.PETSc.DMPlex-class.html#createGmsh
petsc4py.PETSc.DMPlex.setChart petsc4py.PETSc.DMPlex-class.html#setChart
petsc4py.PETSc.DMPlex.setRefinementLimit petsc4py.PETSc.DMPlex-class.html#setRefinementLimit
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.DM.createDefaultSF petsc4py.PETSc.DM-class.html#createDefaultSF
petsc4py.PETSc.DM.setCoordinatesLocal petsc4py.PETSc.DM-class.html#setCoordinatesLocal
petsc4py.PETSc.DM.clone petsc4py.PETSc.DM-class.html#clone
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.DM.setDefaultSection petsc4py.PETSc.DM-class.html#setDefaultSection
petsc4py.PETSc.DM.clearDS petsc4py.PETSc.DM-class.html#clearDS
petsc4py.PETSc.DMPlex.getAdjacencyUseAnchors petsc4py.PETSc.DMPlex-class.html#getAdjacencyUseAnchors
petsc4py.PETSc.DM.getFieldAdjacency petsc4py.PETSc.DM-class.html#getFieldAdjacency
petsc4py.PETSc.DM.copyDisc petsc4py.PETSc.DM-class.html#copyDisc
petsc4py.PETSc.DM.setBasicAdjacency petsc4py.PETSc.DM-class.html#setBasicAdjacency
petsc4py.PETSc.DM.setLabelOutput petsc4py.PETSc.DM-class.html#setLabelOutput
petsc4py.PETSc.DMPlex.createBoxMesh petsc4py.PETSc.DMPlex-class.html#createBoxMesh
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.DMPlex.setTetGenOptions petsc4py.PETSc.DMPlex-class.html#setTetGenOptions
petsc4py.PETSc.DMPlex.createCoarsePointIS petsc4py.PETSc.DMPlex-class.html#createCoarsePointIS
petsc4py.PETSc.DMPlex.createCGNS petsc4py.PETSc.DMPlex-class.html#createCGNS
petsc4py.PETSc.DM.getSectionSF petsc4py.PETSc.DM-class.html#getSectionSF
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.DMPlex.setCone petsc4py.PETSc.DMPlex-class.html#setCone
petsc4py.PETSc.DMShell petsc4py.PETSc.DMShell-class.html
petsc4py.PETSc.DM.getLGMap petsc4py.PETSc.DM-class.html#getLGMap
petsc4py.PETSc.DM.getStratumIS petsc4py.PETSc.DM-class.html#getStratumIS
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.DMShell.setGlobalToLocal petsc4py.PETSc.DMShell-class.html#setGlobalToLocal
petsc4py.PETSc.DM.restoreLocalVec petsc4py.PETSc.DM-class.html#restoreLocalVec
petsc4py.PETSc.DMShell.setCreateSubDM petsc4py.PETSc.DMShell-class.html#setCreateSubDM
petsc4py.PETSc.DM.getLabel petsc4py.PETSc.DM-class.html#getLabel
petsc4py.PETSc.DM.createRestriction petsc4py.PETSc.DM-class.html#createRestriction
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.DM.createGlobalVec petsc4py.PETSc.DM-class.html#createGlobalVec
petsc4py.PETSc.DM.createDS petsc4py.PETSc.DM-class.html#createDS
petsc4py.PETSc.DM.setField petsc4py.PETSc.DM-class.html#setField
petsc4py.PETSc.DMShell.setCoarsen petsc4py.PETSc.DMShell-class.html#setCoarsen
petsc4py.PETSc.DM.getGlobalSection petsc4py.PETSc.DM-class.html#getGlobalSection
petsc4py.PETSc.DM.createMatrix petsc4py.PETSc.DM-class.html#createMatrix
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.DM.getBasicAdjacency petsc4py.PETSc.DM-class.html#getBasicAdjacency
petsc4py.PETSc.DM.addField petsc4py.PETSc.DM-class.html#addField
petsc4py.PETSc.DMShell.setCreateDomainDecompositionScatters petsc4py.PETSc.DMShell-class.html#setCreateDomainDecompositionScatters
petsc4py.PETSc.DM.removeLabel petsc4py.PETSc.DM-class.html#removeLabel
petsc4py.PETSc.DM.getLocalVec petsc4py.PETSc.DM-class.html#getLocalVec
petsc4py.PETSc.DM.coarsen petsc4py.PETSc.DM-class.html#coarsen
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.DM.copyFields petsc4py.PETSc.DM-class.html#copyFields
petsc4py.PETSc.DM.getLabelValue petsc4py.PETSc.DM-class.html#getLabelValue
petsc4py.PETSc.DM.setCoordinateDim petsc4py.PETSc.DM-class.html#setCoordinateDim
petsc4py.PETSc.DM.getStratumSize petsc4py.PETSc.DM-class.html#getStratumSize
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.DM.getLabelIdIS petsc4py.PETSc.DM-class.html#getLabelIdIS
petsc4py.PETSc.DM.setOptionsPrefix petsc4py.PETSc.DM-class.html#setOptionsPrefix
petsc4py.PETSc.DM.setFieldAdjacency petsc4py.PETSc.DM-class.html#setFieldAdjacency
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.DM.createGlobalVector petsc4py.PETSc.DM-class.html#createGlobalVector
petsc4py.PETSc.DMShell.setCreateInterpolation petsc4py.PETSc.DMShell-class.html#setCreateInterpolation
petsc4py.PETSc.DM.setNumFields petsc4py.PETSc.DM-class.html#setNumFields
petsc4py.PETSc.DM.setFromOptions petsc4py.PETSc.DM-class.html#setFromOptions
petsc4py.PETSc.DMShell.setGlobalToLocalVecScatter petsc4py.PETSc.DMShell-class.html#setGlobalToLocalVecScatter
petsc4py.PETSc.DM.setSectionSF petsc4py.PETSc.DM-class.html#setSectionSF
petsc4py.PETSc.DM.getBoundingBox petsc4py.PETSc.DM-class.html#getBoundingBox
petsc4py.PETSc.DM.setDimension petsc4py.PETSc.DM-class.html#setDimension
petsc4py.PETSc.DM.hasLabel petsc4py.PETSc.DM-class.html#hasLabel
petsc4py.PETSc.DM.ds petsc4py.PETSc.DM-class.html#ds
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.DM.setAppCtx petsc4py.PETSc.DM-class.html#setAppCtx
petsc4py.PETSc.DM.setGlobalSection petsc4py.PETSc.DM-class.html#setGlobalSection
petsc4py.PETSc.DM.createFieldDecomposition petsc4py.PETSc.DM-class.html#createFieldDecomposition
petsc4py.PETSc.DM.getCoordinateDim petsc4py.PETSc.DM-class.html#getCoordinateDim
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.DMShell.setRefine petsc4py.PETSc.DMShell-class.html#setRefine
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.DMShell.setCreateInjection petsc4py.PETSc.DMShell-class.html#setCreateInjection
petsc4py.PETSc.DM.view petsc4py.PETSc.DM-class.html#view
petsc4py.PETSc.DM.getDefaultSection petsc4py.PETSc.DM-class.html#getDefaultSection
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.DMShell.setLocalToGlobal petsc4py.PETSc.DMShell-class.html#setLocalToGlobal
petsc4py.PETSc.DM.localizeCoordinates petsc4py.PETSc.DM-class.html#localizeCoordinates
petsc4py.PETSc.DM.getBlockSize petsc4py.PETSc.DM-class.html#getBlockSize
petsc4py.PETSc.DM.refineHierarchy petsc4py.PETSc.DM-class.html#refineHierarchy
petsc4py.PETSc.DM.Type petsc4py.PETSc.DM.Type-class.html
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.DM.getCoordinates petsc4py.PETSc.DM-class.html#getCoordinates
petsc4py.PETSc.DM.createInterpolation petsc4py.PETSc.DM-class.html#createInterpolation
petsc4py.PETSc.DM.clearLabelStratum petsc4py.PETSc.DM-class.html#clearLabelStratum
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.DM.setVecType petsc4py.PETSc.DM-class.html#setVecType
petsc4py.PETSc.DMShell.setCreateGlobalVector petsc4py.PETSc.DMShell-class.html#setCreateGlobalVector
petsc4py.PETSc.DM.globalToLocal petsc4py.PETSc.DM-class.html#globalToLocal
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.DM.setDefaultSF petsc4py.PETSc.DM-class.html#setDefaultSF
petsc4py.PETSc.DM.setCoordinatesLocal petsc4py.PETSc.DM-class.html#setCoordinatesLocal
petsc4py.PETSc.DM.addCoarsenHook petsc4py.PETSc.DM-class.html#addCoarsenHook
petsc4py.PETSc.DMShell.setCreateMatrix petsc4py.PETSc.DMShell-class.html#setCreateMatrix
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.DM.getLabelName petsc4py.PETSc.DM-class.html#getLabelName
petsc4py.PETSc.DM.createSectionSF petsc4py.PETSc.DM-class.html#createSectionSF
petsc4py.PETSc.DM.setUp petsc4py.PETSc.DM-class.html#setUp
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.DM.getDS petsc4py.PETSc.DM-class.html#getDS
petsc4py.PETSc.DM.getPointSF petsc4py.PETSc.DM-class.html#getPointSF
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.DM.setSNESJacobian petsc4py.PETSc.DM-class.html#setSNESJacobian
petsc4py.PETSc.DM.createLabel petsc4py.PETSc.DM-class.html#createLabel
petsc4py.PETSc.DM.getMatrix petsc4py.PETSc.DM-class.html#getMatrix
petsc4py.PETSc.DM.getDefaultGlobalSection petsc4py.PETSc.DM-class.html#getDefaultGlobalSection
petsc4py.PETSc.DM.clearLabelValue petsc4py.PETSc.DM-class.html#clearLabelValue
petsc4py.PETSc.DM.convert petsc4py.PETSc.DM-class.html#convert
petsc4py.PETSc.DM.setDefaultGlobalSection petsc4py.PETSc.DM-class.html#setDefaultGlobalSection
petsc4py.PETSc.DM.getCoordinatesLocal petsc4py.PETSc.DM-class.html#getCoordinatesLocal
petsc4py.PETSc.DM.getLabelOutput petsc4py.PETSc.DM-class.html#getLabelOutput
petsc4py.PETSc.DM.appctx petsc4py.PETSc.DM-class.html#appctx
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.DMShell.setLocalToLocal petsc4py.PETSc.DMShell-class.html#setLocalToLocal
petsc4py.PETSc.DM.setLabelValue petsc4py.PETSc.DM-class.html#setLabelValue
petsc4py.PETSc.DMShell.setMatrix petsc4py.PETSc.DMShell-class.html#setMatrix
petsc4py.PETSc.DM.setCoordinates petsc4py.PETSc.DM-class.html#setCoordinates
petsc4py.PETSc.DM.adaptLabel petsc4py.PETSc.DM-class.html#adaptLabel
petsc4py.PETSc.DM.createMat petsc4py.PETSc.DM-class.html#createMat
petsc4py.PETSc.DM.createLocalVector petsc4py.PETSc.DM-class.html#createLocalVector
petsc4py.PETSc.DM.getCoordinateSection petsc4py.PETSc.DM-class.html#getCoordinateSection
petsc4py.PETSc.DM.setMatType petsc4py.PETSc.DM-class.html#setMatType
petsc4py.PETSc.DM.setType petsc4py.PETSc.DM-class.html#setType
petsc4py.PETSc.DM.getSection petsc4py.PETSc.DM-class.html#getSection
petsc4py.PETSc.DMShell.create petsc4py.PETSc.DMShell-class.html#create
petsc4py.PETSc.DM.BoundaryType petsc4py.PETSc.DM.BoundaryType-class.html
petsc4py.PETSc.DMShell.setLocalToGlobalVecScatter petsc4py.PETSc.DMShell-class.html#setLocalToGlobalVecScatter
petsc4py.PETSc.DM.getCoordinateDM petsc4py.PETSc.DM-class.html#getCoordinateDM
petsc4py.PETSc.DMShell.setCreateRestriction petsc4py.PETSc.DMShell-class.html#setCreateRestriction
petsc4py.PETSc.DM.getNumLabels petsc4py.PETSc.DM-class.html#getNumLabels
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.DM.getDimension petsc4py.PETSc.DM-class.html#getDimension
petsc4py.PETSc.DM.createInjection petsc4py.PETSc.DM-class.html#createInjection
petsc4py.PETSc.DM.setSNESFunction petsc4py.PETSc.DM-class.html#setSNESFunction
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.DMShell.setLocalVector petsc4py.PETSc.DMShell-class.html#setLocalVector
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.DMShell.setCreateFieldDecomposition petsc4py.PETSc.DMShell-class.html#setCreateFieldDecomposition
petsc4py.PETSc.DM.getType petsc4py.PETSc.DM-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.DM.getAppCtx petsc4py.PETSc.DM-class.html#getAppCtx
petsc4py.PETSc.DM.setPointSF petsc4py.PETSc.DM-class.html#setPointSF
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.DM.copyDS petsc4py.PETSc.DM-class.html#copyDS
petsc4py.PETSc.DM.getField petsc4py.PETSc.DM-class.html#getField
petsc4py.PETSc.DMShell.setCreateLocalVector petsc4py.PETSc.DMShell-class.html#setCreateLocalVector
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.DM.getCoarsenLevel petsc4py.PETSc.DM-class.html#getCoarsenLevel
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.DM.refine petsc4py.PETSc.DM-class.html#refine
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.DM.getRefineLevel petsc4py.PETSc.DM-class.html#getRefineLevel
petsc4py.PETSc.DM.adaptMetric petsc4py.PETSc.DM-class.html#adaptMetric
petsc4py.PETSc.DM.setRefineLevel petsc4py.PETSc.DM-class.html#setRefineLevel
petsc4py.PETSc.DM.setSection petsc4py.PETSc.DM-class.html#setSection
petsc4py.PETSc.DMShell.setCreateDomainDecomposition petsc4py.PETSc.DMShell-class.html#setCreateDomainDecomposition
petsc4py.PETSc.DM.createLocalVec petsc4py.PETSc.DM-class.html#createLocalVec
petsc4py.PETSc.DM.getNumFields petsc4py.PETSc.DM-class.html#getNumFields
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.DM.getGlobalVec petsc4py.PETSc.DM-class.html#getGlobalVec
petsc4py.PETSc.DM.setKSPComputeOperators petsc4py.PETSc.DM-class.html#setKSPComputeOperators
petsc4py.PETSc.DM.localToLocal petsc4py.PETSc.DM-class.html#localToLocal
petsc4py.PETSc.DMShell.__new__ petsc4py.PETSc.DMShell-class.html#__new__
petsc4py.PETSc.DM.getLabelSize petsc4py.PETSc.DM-class.html#getLabelSize
petsc4py.PETSc.DM.localToGlobal petsc4py.PETSc.DM-class.html#localToGlobal
petsc4py.PETSc.DM.getLocalBoundingBox petsc4py.PETSc.DM-class.html#getLocalBoundingBox
petsc4py.PETSc.DM.coarsenHierarchy petsc4py.PETSc.DM-class.html#coarsenHierarchy
petsc4py.PETSc.DM.destroy petsc4py.PETSc.DM-class.html#destroy
petsc4py.PETSc.DMShell.setLocalToLocalVecScatter petsc4py.PETSc.DMShell-class.html#setLocalToLocalVecScatter
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.DMShell.setGlobalVector petsc4py.PETSc.DMShell-class.html#setGlobalVector
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.DM.createDefaultSF petsc4py.PETSc.DM-class.html#createDefaultSF
petsc4py.PETSc.DM.getDefaultSF petsc4py.PETSc.DM-class.html#getDefaultSF
petsc4py.PETSc.DM.clone petsc4py.PETSc.DM-class.html#clone
petsc4py.PETSc.DM.setDefaultSection petsc4py.PETSc.DM-class.html#setDefaultSection
petsc4py.PETSc.DM.clearDS petsc4py.PETSc.DM-class.html#clearDS
petsc4py.PETSc.DM.getFieldAdjacency petsc4py.PETSc.DM-class.html#getFieldAdjacency
petsc4py.PETSc.DM.copyDisc petsc4py.PETSc.DM-class.html#copyDisc
petsc4py.PETSc.DM.setBasicAdjacency petsc4py.PETSc.DM-class.html#setBasicAdjacency
petsc4py.PETSc.DM.setLabelOutput petsc4py.PETSc.DM-class.html#setLabelOutput
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.DM.restoreGlobalVec petsc4py.PETSc.DM-class.html#restoreGlobalVec
petsc4py.PETSc.DM.getSectionSF petsc4py.PETSc.DM-class.html#getSectionSF
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.DMStag petsc4py.PETSc.DMStag-class.html
petsc4py.PETSc.DM.createInjection petsc4py.PETSc.DM-class.html#createInjection
petsc4py.PETSc.DMStag.getBoundaryTypes petsc4py.PETSc.DMStag-class.html#getBoundaryTypes
petsc4py.PETSc.DM.getLGMap petsc4py.PETSc.DM-class.html#getLGMap
petsc4py.PETSc.DMStag.setBoundaryTypes petsc4py.PETSc.DMStag-class.html#setBoundaryTypes
petsc4py.PETSc.DMStag.global_sizes petsc4py.PETSc.DMStag-class.html#global_sizes
petsc4py.PETSc.DMStag.StencilType petsc4py.PETSc.DMStag.StencilType-class.html
petsc4py.PETSc.DM.getStratumIS petsc4py.PETSc.DM-class.html#getStratumIS
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.DMStag.local_sizes petsc4py.PETSc.DMStag-class.html#local_sizes
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.DM.restoreLocalVec petsc4py.PETSc.DM-class.html#restoreLocalVec
petsc4py.PETSc.DM.getLabel petsc4py.PETSc.DM-class.html#getLabel
petsc4py.PETSc.DM.adaptMetric petsc4py.PETSc.DM-class.html#adaptMetric
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.DM.createGlobalVec petsc4py.PETSc.DM-class.html#createGlobalVec
petsc4py.PETSc.DM.createDS petsc4py.PETSc.DM-class.html#createDS
petsc4py.PETSc.DM.clearLabelStratum petsc4py.PETSc.DM-class.html#clearLabelStratum
petsc4py.PETSc.DMStag.proc_sizes petsc4py.PETSc.DMStag-class.html#proc_sizes
petsc4py.PETSc.DM.getGlobalSection petsc4py.PETSc.DM-class.html#getGlobalSection
petsc4py.PETSc.DM.createMatrix petsc4py.PETSc.DM-class.html#createMatrix
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.DM.getBasicAdjacency petsc4py.PETSc.DM-class.html#getBasicAdjacency
petsc4py.PETSc.DM.addField petsc4py.PETSc.DM-class.html#addField
petsc4py.PETSc.DM.removeLabel petsc4py.PETSc.DM-class.html#removeLabel
petsc4py.PETSc.DM.getLocalVec petsc4py.PETSc.DM-class.html#getLocalVec
petsc4py.PETSc.DM.coarsen petsc4py.PETSc.DM-class.html#coarsen
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.DM.copyFields petsc4py.PETSc.DM-class.html#copyFields
petsc4py.PETSc.DM.getLabelValue petsc4py.PETSc.DM-class.html#getLabelValue
petsc4py.PETSc.DM.setCoordinateDim petsc4py.PETSc.DM-class.html#setCoordinateDim
petsc4py.PETSc.DM.getStratumSize petsc4py.PETSc.DM-class.html#getStratumSize
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.DM.getLabelIdIS petsc4py.PETSc.DM-class.html#getLabelIdIS
petsc4py.PETSc.DM.setOptionsPrefix petsc4py.PETSc.DM-class.html#setOptionsPrefix
petsc4py.PETSc.DM.setFieldAdjacency petsc4py.PETSc.DM-class.html#setFieldAdjacency
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.DM.createGlobalVector petsc4py.PETSc.DM-class.html#createGlobalVector
petsc4py.PETSc.DM.getLocalBoundingBox petsc4py.PETSc.DM-class.html#getLocalBoundingBox
petsc4py.PETSc.DM.getDefaultSF petsc4py.PETSc.DM-class.html#getDefaultSF
petsc4py.PETSc.DMStag.setUniformCoordinatesProduct petsc4py.PETSc.DMStag-class.html#setUniformCoordinatesProduct
petsc4py.PETSc.DM.setNumFields petsc4py.PETSc.DM-class.html#setNumFields
petsc4py.PETSc.DM.setFromOptions petsc4py.PETSc.DM-class.html#setFromOptions
petsc4py.PETSc.DMStag.migrateVec petsc4py.PETSc.DMStag-class.html#migrateVec
petsc4py.PETSc.DM.setSectionSF petsc4py.PETSc.DM-class.html#setSectionSF
petsc4py.PETSc.DM.getBoundingBox petsc4py.PETSc.DM-class.html#getBoundingBox
petsc4py.PETSc.DM.setDimension petsc4py.PETSc.DM-class.html#setDimension
petsc4py.PETSc.DM.hasLabel petsc4py.PETSc.DM-class.html#hasLabel
petsc4py.PETSc.DM.ds petsc4py.PETSc.DM-class.html#ds
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.DMStag.dim petsc4py.PETSc.DMStag-class.html#dim
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.DM.setAppCtx petsc4py.PETSc.DM-class.html#setAppCtx
petsc4py.PETSc.DM.setGlobalSection petsc4py.PETSc.DM-class.html#setGlobalSection
petsc4py.PETSc.DM.createFieldDecomposition petsc4py.PETSc.DM-class.html#createFieldDecomposition
petsc4py.PETSc.DM.getCoordinateDim petsc4py.PETSc.DM-class.html#getCoordinateDim
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.DMStag.getOwnershipRanges petsc4py.PETSc.DMStag-class.html#getOwnershipRanges
petsc4py.PETSc.DMStag.corners petsc4py.PETSc.DMStag-class.html#corners
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.DM.view petsc4py.PETSc.DM-class.html#view
petsc4py.PETSc.DMStag.setCoordinateDMType petsc4py.PETSc.DMStag-class.html#setCoordinateDMType
petsc4py.PETSc.DM.getDefaultSection petsc4py.PETSc.DM-class.html#getDefaultSection
petsc4py.PETSc.DMStag.setGlobalSizes petsc4py.PETSc.DMStag-class.html#setGlobalSizes
petsc4py.PETSc.DMStag.getGhostCorners petsc4py.PETSc.DMStag-class.html#getGhostCorners
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.DM.createRestriction petsc4py.PETSc.DM-class.html#createRestriction
petsc4py.PETSc.DM.setField petsc4py.PETSc.DM-class.html#setField
petsc4py.PETSc.DM.localizeCoordinates petsc4py.PETSc.DM-class.html#localizeCoordinates
petsc4py.PETSc.DM.getBlockSize petsc4py.PETSc.DM-class.html#getBlockSize
petsc4py.PETSc.DM.refineHierarchy petsc4py.PETSc.DM-class.html#refineHierarchy
petsc4py.PETSc.DMStag.get1dCoordinatecArrays petsc4py.PETSc.DMStag-class.html#get1dCoordinatecArrays
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.DM.getCoordinates petsc4py.PETSc.DM-class.html#getCoordinates
petsc4py.PETSc.DMStag.getProductCoordinateLocationSlot petsc4py.PETSc.DMStag-class.html#getProductCoordinateLocationSlot
petsc4py.PETSc.DMStag.setUniformCoordinates petsc4py.PETSc.DMStag-class.html#setUniformCoordinates
petsc4py.PETSc.DMStag.stencil_width petsc4py.PETSc.DMStag-class.html#stencil_width
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.DM.setVecType petsc4py.PETSc.DM-class.html#setVecType
petsc4py.PETSc.DM.globalToLocal petsc4py.PETSc.DM-class.html#globalToLocal
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.DM.setDefaultSF petsc4py.PETSc.DM-class.html#setDefaultSF
petsc4py.PETSc.DM.addCoarsenHook petsc4py.PETSc.DM-class.html#addCoarsenHook
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.DMStag.getDof petsc4py.PETSc.DMStag-class.html#getDof
petsc4py.PETSc.DM.getLabelName petsc4py.PETSc.DM-class.html#getLabelName
petsc4py.PETSc.DM.createSectionSF petsc4py.PETSc.DM-class.html#createSectionSF
petsc4py.PETSc.DM.setUp petsc4py.PETSc.DM-class.html#setUp
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.DM.getDS petsc4py.PETSc.DM-class.html#getDS
petsc4py.PETSc.DM.getPointSF petsc4py.PETSc.DM-class.html#getPointSF
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.DMStag.ghost_corners petsc4py.PETSc.DMStag-class.html#ghost_corners
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.DM.setSNESJacobian petsc4py.PETSc.DM-class.html#setSNESJacobian
petsc4py.PETSc.DM.createLabel petsc4py.PETSc.DM-class.html#createLabel
petsc4py.PETSc.DM.getMatrix petsc4py.PETSc.DM-class.html#getMatrix
petsc4py.PETSc.DMStag.getGlobalSizes petsc4py.PETSc.DMStag-class.html#getGlobalSizes
petsc4py.PETSc.DM.getDefaultGlobalSection petsc4py.PETSc.DM-class.html#getDefaultGlobalSection
petsc4py.PETSc.DM.clearLabelValue petsc4py.PETSc.DM-class.html#clearLabelValue
petsc4py.PETSc.DMStag.getLocationSlot petsc4py.PETSc.DMStag-class.html#getLocationSlot
petsc4py.PETSc.DM.setDefaultGlobalSection petsc4py.PETSc.DM-class.html#setDefaultGlobalSection
petsc4py.PETSc.DM.getCoordinatesLocal petsc4py.PETSc.DM-class.html#getCoordinatesLocal
petsc4py.PETSc.DM.getLabelOutput petsc4py.PETSc.DM-class.html#getLabelOutput
petsc4py.PETSc.DM.appctx petsc4py.PETSc.DM-class.html#appctx
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.DMStag.getProcSizes petsc4py.PETSc.DMStag-class.html#getProcSizes
petsc4py.PETSc.DMStag.setUniformCoordinatesExplicit petsc4py.PETSc.DMStag-class.html#setUniformCoordinatesExplicit
petsc4py.PETSc.DMStag.setStencilType petsc4py.PETSc.DMStag-class.html#setStencilType
petsc4py.PETSc.DM.setLabelValue petsc4py.PETSc.DM-class.html#setLabelValue
petsc4py.PETSc.DM.setCoordinates petsc4py.PETSc.DM-class.html#setCoordinates
petsc4py.PETSc.DM.adaptLabel petsc4py.PETSc.DM-class.html#adaptLabel
petsc4py.PETSc.DM.createMat petsc4py.PETSc.DM-class.html#createMat
petsc4py.PETSc.DM.createLocalVector petsc4py.PETSc.DM-class.html#createLocalVector
petsc4py.PETSc.DM.getCoordinateSection petsc4py.PETSc.DM-class.html#getCoordinateSection
petsc4py.PETSc.DM.setMatType petsc4py.PETSc.DM-class.html#setMatType
petsc4py.PETSc.DMStag.boundary_types petsc4py.PETSc.DMStag-class.html#boundary_types
petsc4py.PETSc.DM.setType petsc4py.PETSc.DM-class.html#setType
petsc4py.PETSc.DM.getSection petsc4py.PETSc.DM-class.html#getSection
petsc4py.PETSc.DMStag.StencilLocation petsc4py.PETSc.DMStag.StencilLocation-class.html
petsc4py.PETSc.DMStag.create petsc4py.PETSc.DMStag-class.html#create
petsc4py.PETSc.DM.setSection petsc4py.PETSc.DM-class.html#setSection
petsc4py.PETSc.DMStag.setProcSizes petsc4py.PETSc.DMStag-class.html#setProcSizes
petsc4py.PETSc.DM.getCoordinateDM petsc4py.PETSc.DM-class.html#getCoordinateDM
petsc4py.PETSc.DM.getNumLabels petsc4py.PETSc.DM-class.html#getNumLabels
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.DM.getDimension petsc4py.PETSc.DM-class.html#getDimension
petsc4py.PETSc.DMStag.getLocalSizes petsc4py.PETSc.DMStag-class.html#getLocalSizes
petsc4py.PETSc.DM.setSNESFunction petsc4py.PETSc.DM-class.html#setSNESFunction
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.DMStag.setDof petsc4py.PETSc.DMStag-class.html#setDof
petsc4py.PETSc.DMStag.getStencilWidth petsc4py.PETSc.DMStag-class.html#getStencilWidth
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.DM.convert petsc4py.PETSc.DM-class.html#convert
petsc4py.PETSc.DM.getAppCtx petsc4py.PETSc.DM-class.html#getAppCtx
petsc4py.PETSc.DM.setPointSF petsc4py.PETSc.DM-class.html#setPointSF
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.DM.copyDS petsc4py.PETSc.DM-class.html#copyDS
petsc4py.PETSc.DM.getField petsc4py.PETSc.DM-class.html#getField
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.DMStag.getDim petsc4py.PETSc.DMStag-class.html#getDim
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.DMStag.entries_per_element petsc4py.PETSc.DMStag-class.html#entries_per_element
petsc4py.PETSc.DM.getCoarsenLevel petsc4py.PETSc.DM-class.html#getCoarsenLevel
petsc4py.PETSc.DMStag.getLocationDof petsc4py.PETSc.DMStag-class.html#getLocationDof
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.DM.getRefineLevel petsc4py.PETSc.DM-class.html#getRefineLevel
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.DM.setRefineLevel petsc4py.PETSc.DM-class.html#setRefineLevel
petsc4py.PETSc.DMStag.VecSplitToDMDA petsc4py.PETSc.DMStag-class.html#VecSplitToDMDA
petsc4py.PETSc.DM.BoundaryType petsc4py.PETSc.DM.BoundaryType-class.html
petsc4py.PETSc.DM.refine petsc4py.PETSc.DM-class.html#refine
petsc4py.PETSc.DM.createLocalVec petsc4py.PETSc.DM-class.html#createLocalVec
petsc4py.PETSc.DMStag.getIsFirstRank petsc4py.PETSc.DMStag-class.html#getIsFirstRank
petsc4py.PETSc.DM.getNumFields petsc4py.PETSc.DM-class.html#getNumFields
petsc4py.PETSc.DM.getGlobalVec petsc4py.PETSc.DM-class.html#getGlobalVec
petsc4py.PETSc.DM.setKSPComputeOperators petsc4py.PETSc.DM-class.html#setKSPComputeOperators
petsc4py.PETSc.DM.localToLocal petsc4py.PETSc.DM-class.html#localToLocal
petsc4py.PETSc.DMStag.__new__ petsc4py.PETSc.DMStag-class.html#__new__
petsc4py.PETSc.DM.Type petsc4py.PETSc.DM.Type-class.html
petsc4py.PETSc.DM.getLabelSize petsc4py.PETSc.DM-class.html#getLabelSize
petsc4py.PETSc.DM.localToGlobal petsc4py.PETSc.DM-class.html#localToGlobal
petsc4py.PETSc.DMStag.stencil_type petsc4py.PETSc.DMStag-class.html#stencil_type
petsc4py.PETSc.DM.coarsenHierarchy petsc4py.PETSc.DM-class.html#coarsenHierarchy
petsc4py.PETSc.DM.destroy petsc4py.PETSc.DM-class.html#destroy
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.DM.getType petsc4py.PETSc.DM-class.html#getType
petsc4py.PETSc.DMStag.getStencilType petsc4py.PETSc.DMStag-class.html#getStencilType
petsc4py.PETSc.DM.createDefaultSF petsc4py.PETSc.DM-class.html#createDefaultSF
petsc4py.PETSc.DM.setCoordinatesLocal petsc4py.PETSc.DM-class.html#setCoordinatesLocal
petsc4py.PETSc.DM.clone petsc4py.PETSc.DM-class.html#clone
petsc4py.PETSc.DMStag.getEntriesPerElement petsc4py.PETSc.DMStag-class.html#getEntriesPerElement
petsc4py.PETSc.DM.setDefaultSection petsc4py.PETSc.DM-class.html#setDefaultSection
petsc4py.PETSc.DMStag.getVecArray petsc4py.PETSc.DMStag-class.html#getVecArray
petsc4py.PETSc.DM.clearDS petsc4py.PETSc.DM-class.html#clearDS
petsc4py.PETSc.DM.getFieldAdjacency petsc4py.PETSc.DM-class.html#getFieldAdjacency
petsc4py.PETSc.DM.copyDisc petsc4py.PETSc.DM-class.html#copyDisc
petsc4py.PETSc.DMStag.setStencilWidth petsc4py.PETSc.DMStag-class.html#setStencilWidth
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.DM.setBasicAdjacency petsc4py.PETSc.DM-class.html#setBasicAdjacency
petsc4py.PETSc.DM.createInterpolation petsc4py.PETSc.DM-class.html#createInterpolation
petsc4py.PETSc.DM.setLabelOutput petsc4py.PETSc.DM-class.html#setLabelOutput
petsc4py.PETSc.DMStag.setOwnershipRanges petsc4py.PETSc.DMStag-class.html#setOwnershipRanges
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.DM.restoreGlobalVec petsc4py.PETSc.DM-class.html#restoreGlobalVec
petsc4py.PETSc.DMStag.createCompatibleDMStag petsc4py.PETSc.DMStag-class.html#createCompatibleDMStag
petsc4py.PETSc.DM.getSectionSF petsc4py.PETSc.DM-class.html#getSectionSF
petsc4py.PETSc.DMStag.getIsLastRank petsc4py.PETSc.DMStag-class.html#getIsLastRank
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.DMStag.getCorners petsc4py.PETSc.DMStag-class.html#getCorners
petsc4py.PETSc.DMStag.dofs petsc4py.PETSc.DMStag-class.html#dofs
petsc4py.PETSc.DMStag.StencilLocation petsc4py.PETSc.DMStag.StencilLocation-class.html
petsc4py.PETSc.DMStag.StencilLocation.BACK_LEFT petsc4py.PETSc.DMStag.StencilLocation-class.html#BACK_LEFT
petsc4py.PETSc.DMStag.StencilLocation.UP_RIGHT petsc4py.PETSc.DMStag.StencilLocation-class.html#UP_RIGHT
petsc4py.PETSc.DMStag.StencilLocation.BACK petsc4py.PETSc.DMStag.StencilLocation-class.html#BACK
petsc4py.PETSc.DMStag.StencilLocation.DOWN petsc4py.PETSc.DMStag.StencilLocation-class.html#DOWN
petsc4py.PETSc.DMStag.StencilLocation.BACK_DOWN_RIGHT petsc4py.PETSc.DMStag.StencilLocation-class.html#BACK_DOWN_RIGHT
petsc4py.PETSc.DMStag.StencilLocation.BACK_UP petsc4py.PETSc.DMStag.StencilLocation-class.html#BACK_UP
petsc4py.PETSc.DMStag.StencilLocation.FRONT_UP petsc4py.PETSc.DMStag.StencilLocation-class.html#FRONT_UP
petsc4py.PETSc.DMStag.StencilLocation.FRONT_DOWN_RIGHT petsc4py.PETSc.DMStag.StencilLocation-class.html#FRONT_DOWN_RIGHT
petsc4py.PETSc.DMStag.StencilLocation.BACK_DOWN_LEFT petsc4py.PETSc.DMStag.StencilLocation-class.html#BACK_DOWN_LEFT
petsc4py.PETSc.DMStag.StencilLocation.NULLLOC petsc4py.PETSc.DMStag.StencilLocation-class.html#NULLLOC
petsc4py.PETSc.DMStag.StencilLocation.BACK_DOWN petsc4py.PETSc.DMStag.StencilLocation-class.html#BACK_DOWN
petsc4py.PETSc.DMStag.StencilLocation.FRONT_UP_RIGHT petsc4py.PETSc.DMStag.StencilLocation-class.html#FRONT_UP_RIGHT
petsc4py.PETSc.DMStag.StencilLocation.FRONT_UP_LEFT petsc4py.PETSc.DMStag.StencilLocation-class.html#FRONT_UP_LEFT
petsc4py.PETSc.DMStag.StencilLocation.BACK_UP_RIGHT petsc4py.PETSc.DMStag.StencilLocation-class.html#BACK_UP_RIGHT
petsc4py.PETSc.DMStag.StencilLocation.FRONT petsc4py.PETSc.DMStag.StencilLocation-class.html#FRONT
petsc4py.PETSc.DMStag.StencilLocation.FRONT_LEFT petsc4py.PETSc.DMStag.StencilLocation-class.html#FRONT_LEFT
petsc4py.PETSc.DMStag.StencilLocation.FRONT_DOWN_LEFT petsc4py.PETSc.DMStag.StencilLocation-class.html#FRONT_DOWN_LEFT
petsc4py.PETSc.DMStag.StencilLocation.DOWN_LEFT petsc4py.PETSc.DMStag.StencilLocation-class.html#DOWN_LEFT
petsc4py.PETSc.DMStag.StencilLocation.LEFT petsc4py.PETSc.DMStag.StencilLocation-class.html#LEFT
petsc4py.PETSc.DMStag.StencilLocation.UP_LEFT petsc4py.PETSc.DMStag.StencilLocation-class.html#UP_LEFT
petsc4py.PETSc.DMStag.StencilLocation.BACK_RIGHT petsc4py.PETSc.DMStag.StencilLocation-class.html#BACK_RIGHT
petsc4py.PETSc.DMStag.StencilLocation.ELEMENT petsc4py.PETSc.DMStag.StencilLocation-class.html#ELEMENT
petsc4py.PETSc.DMStag.StencilLocation.DOWN_RIGHT petsc4py.PETSc.DMStag.StencilLocation-class.html#DOWN_RIGHT
petsc4py.PETSc.DMStag.StencilLocation.FRONT_RIGHT petsc4py.PETSc.DMStag.StencilLocation-class.html#FRONT_RIGHT
petsc4py.PETSc.DMStag.StencilLocation.RIGHT petsc4py.PETSc.DMStag.StencilLocation-class.html#RIGHT
petsc4py.PETSc.DMStag.StencilLocation.UP petsc4py.PETSc.DMStag.StencilLocation-class.html#UP
petsc4py.PETSc.DMStag.StencilLocation.__qualname__ petsc4py.PETSc.DMStag.StencilLocation-class.html#__qualname__
petsc4py.PETSc.DMStag.StencilLocation.BACK_UP_LEFT petsc4py.PETSc.DMStag.StencilLocation-class.html#BACK_UP_LEFT
petsc4py.PETSc.DMStag.StencilLocation.FRONT_DOWN petsc4py.PETSc.DMStag.StencilLocation-class.html#FRONT_DOWN
petsc4py.PETSc.DMStag.StencilType petsc4py.PETSc.DMStag.StencilType-class.html
petsc4py.PETSc.DMStag.StencilType.BOX petsc4py.PETSc.DMStag.StencilType-class.html#BOX
petsc4py.PETSc.DMStag.StencilType.NONE petsc4py.PETSc.DMStag.StencilType-class.html#NONE
petsc4py.PETSc.DMStag.StencilType.STAR petsc4py.PETSc.DMStag.StencilType-class.html#STAR
petsc4py.PETSc.DMStag.StencilType.__qualname__ petsc4py.PETSc.DMStag.StencilType-class.html#__qualname__
petsc4py.PETSc.DMSwarm petsc4py.PETSc.DMSwarm-class.html
petsc4py.PETSc.DMSwarm.vectorDefineField petsc4py.PETSc.DMSwarm-class.html#vectorDefineField
petsc4py.PETSc.DM.getLGMap petsc4py.PETSc.DM-class.html#getLGMap
petsc4py.PETSc.DM.getStratumIS petsc4py.PETSc.DM-class.html#getStratumIS
petsc4py.PETSc.DMSwarm.sortGetNumberOfPointsPerCell petsc4py.PETSc.DMSwarm-class.html#sortGetNumberOfPointsPerCell
petsc4py.PETSc.DMSwarm.viewFieldsXDMF petsc4py.PETSc.DMSwarm-class.html#viewFieldsXDMF
petsc4py.PETSc.DMSwarm.getSize petsc4py.PETSc.DMSwarm-class.html#getSize
petsc4py.PETSc.DMSwarm.finalizeFieldRegister petsc4py.PETSc.DMSwarm-class.html#finalizeFieldRegister
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.DM.restoreLocalVec petsc4py.PETSc.DM-class.html#restoreLocalVec
petsc4py.PETSc.DM.getLabel petsc4py.PETSc.DM-class.html#getLabel
petsc4py.PETSc.DM.adaptMetric petsc4py.PETSc.DM-class.html#adaptMetric
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.DM.createGlobalVec petsc4py.PETSc.DM-class.html#createGlobalVec
petsc4py.PETSc.DM.createDS petsc4py.PETSc.DM-class.html#createDS
petsc4py.PETSc.DM.clearLabelStratum petsc4py.PETSc.DM-class.html#clearLabelStratum
petsc4py.PETSc.DM.getGlobalSection petsc4py.PETSc.DM-class.html#getGlobalSection
petsc4py.PETSc.DMSwarm.sortGetAccess petsc4py.PETSc.DMSwarm-class.html#sortGetAccess
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.DM.getBasicAdjacency petsc4py.PETSc.DM-class.html#getBasicAdjacency
petsc4py.PETSc.DM.addField petsc4py.PETSc.DM-class.html#addField
petsc4py.PETSc.DM.removeLabel petsc4py.PETSc.DM-class.html#removeLabel
petsc4py.PETSc.DM.getLocalVec petsc4py.PETSc.DM-class.html#getLocalVec
petsc4py.PETSc.DMSwarm.setCellDM petsc4py.PETSc.DMSwarm-class.html#setCellDM
petsc4py.PETSc.DMSwarm.sortGetPointsPerCell petsc4py.PETSc.DMSwarm-class.html#sortGetPointsPerCell
petsc4py.PETSc.DM.coarsen petsc4py.PETSc.DM-class.html#coarsen
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.DMSwarm.setLocalSizes petsc4py.PETSc.DMSwarm-class.html#setLocalSizes
petsc4py.PETSc.DM.copyFields petsc4py.PETSc.DM-class.html#copyFields
petsc4py.PETSc.DM.getLabelValue petsc4py.PETSc.DM-class.html#getLabelValue
petsc4py.PETSc.DM.setCoordinateDim petsc4py.PETSc.DM-class.html#setCoordinateDim
petsc4py.PETSc.DM.getStratumSize petsc4py.PETSc.DM-class.html#getStratumSize
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.DM.getLabelIdIS petsc4py.PETSc.DM-class.html#getLabelIdIS
petsc4py.PETSc.DM.setOptionsPrefix petsc4py.PETSc.DM-class.html#setOptionsPrefix
petsc4py.PETSc.DM.setFieldAdjacency petsc4py.PETSc.DM-class.html#setFieldAdjacency
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.DM.createGlobalVector petsc4py.PETSc.DM-class.html#createGlobalVector
petsc4py.PETSc.DM.getDefaultSF petsc4py.PETSc.DM-class.html#getDefaultSF
petsc4py.PETSc.DM.setNumFields petsc4py.PETSc.DM-class.html#setNumFields
petsc4py.PETSc.DM.setFromOptions petsc4py.PETSc.DM-class.html#setFromOptions
petsc4py.PETSc.DM.setSectionSF petsc4py.PETSc.DM-class.html#setSectionSF
petsc4py.PETSc.DMSwarm.PICLayoutType petsc4py.PETSc.DMSwarm.PICLayoutType-class.html
petsc4py.PETSc.DM.setDimension petsc4py.PETSc.DM-class.html#setDimension
petsc4py.PETSc.DM.hasLabel petsc4py.PETSc.DM-class.html#hasLabel
petsc4py.PETSc.DM.ds petsc4py.PETSc.DM-class.html#ds
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.DM.setAppCtx petsc4py.PETSc.DM-class.html#setAppCtx
petsc4py.PETSc.DMSwarm.sortGetSizes petsc4py.PETSc.DMSwarm-class.html#sortGetSizes
petsc4py.PETSc.DM.createFieldDecomposition petsc4py.PETSc.DM-class.html#createFieldDecomposition
petsc4py.PETSc.DM.getCoordinateDim petsc4py.PETSc.DM-class.html#getCoordinateDim
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.DM.view petsc4py.PETSc.DM-class.html#view
petsc4py.PETSc.DM.getDefaultSection petsc4py.PETSc.DM-class.html#getDefaultSection
petsc4py.PETSc.DMSwarm.sortRestoreAccess petsc4py.PETSc.DMSwarm-class.html#sortRestoreAccess
petsc4py.PETSc.DM.createRestriction petsc4py.PETSc.DM-class.html#createRestriction
petsc4py.PETSc.DM.localizeCoordinates petsc4py.PETSc.DM-class.html#localizeCoordinates
petsc4py.PETSc.DMSwarm.collectViewCreate petsc4py.PETSc.DMSwarm-class.html#collectViewCreate
petsc4py.PETSc.DM.refineHierarchy petsc4py.PETSc.DM-class.html#refineHierarchy
petsc4py.PETSc.DMSwarm.Type petsc4py.PETSc.DMSwarm.Type-class.html
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.DM.getCoordinates petsc4py.PETSc.DM-class.html#getCoordinates
petsc4py.PETSc.DM.createInterpolation petsc4py.PETSc.DM-class.html#createInterpolation
petsc4py.PETSc.DM.setField petsc4py.PETSc.DM-class.html#setField
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.DM.localToGlobal petsc4py.PETSc.DM-class.html#localToGlobal
petsc4py.PETSc.DM.setVecType petsc4py.PETSc.DM-class.html#setVecType
petsc4py.PETSc.DM.globalToLocal petsc4py.PETSc.DM-class.html#globalToLocal
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.DM.setDefaultSF petsc4py.PETSc.DM-class.html#setDefaultSF
petsc4py.PETSc.DMSwarm.projectFields petsc4py.PETSc.DMSwarm-class.html#projectFields
petsc4py.PETSc.DM.addCoarsenHook petsc4py.PETSc.DM-class.html#addCoarsenHook
petsc4py.PETSc.DM.clone petsc4py.PETSc.DM-class.html#clone
petsc4py.PETSc.DMSwarm.removePoint petsc4py.PETSc.DMSwarm-class.html#removePoint
petsc4py.PETSc.DM.getLabelName petsc4py.PETSc.DM-class.html#getLabelName
petsc4py.PETSc.DMSwarm.setPointCoordinates petsc4py.PETSc.DMSwarm-class.html#setPointCoordinates
petsc4py.PETSc.DM.createSectionSF petsc4py.PETSc.DM-class.html#createSectionSF
petsc4py.PETSc.DM.setUp petsc4py.PETSc.DM-class.html#setUp
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.DM.getDS petsc4py.PETSc.DM-class.html#getDS
petsc4py.PETSc.DM.getPointSF petsc4py.PETSc.DM-class.html#getPointSF
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.DM.createMatrix petsc4py.PETSc.DM-class.html#createMatrix
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.DM.setSNESJacobian petsc4py.PETSc.DM-class.html#setSNESJacobian
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.DM.createLabel petsc4py.PETSc.DM-class.html#createLabel
petsc4py.PETSc.DM.getMatrix petsc4py.PETSc.DM-class.html#getMatrix
petsc4py.PETSc.DM.getDefaultGlobalSection petsc4py.PETSc.DM-class.html#getDefaultGlobalSection
petsc4py.PETSc.DM.clearLabelValue petsc4py.PETSc.DM-class.html#clearLabelValue
petsc4py.PETSc.DM.convert petsc4py.PETSc.DM-class.html#convert
petsc4py.PETSc.DM.setDefaultGlobalSection petsc4py.PETSc.DM-class.html#setDefaultGlobalSection
petsc4py.PETSc.DM.getCoordinatesLocal petsc4py.PETSc.DM-class.html#getCoordinatesLocal
petsc4py.PETSc.DMSwarm.getLocalSize petsc4py.PETSc.DMSwarm-class.html#getLocalSize
petsc4py.PETSc.DM.getLabelOutput petsc4py.PETSc.DM-class.html#getLabelOutput
petsc4py.PETSc.DM.appctx petsc4py.PETSc.DM-class.html#appctx
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.DMSwarm.insertPointUsingCellDM petsc4py.PETSc.DMSwarm-class.html#insertPointUsingCellDM
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.DM.getBoundingBox petsc4py.PETSc.DM-class.html#getBoundingBox
petsc4py.PETSc.DM.setLabelValue petsc4py.PETSc.DM-class.html#setLabelValue
petsc4py.PETSc.DM.setCoordinates petsc4py.PETSc.DM-class.html#setCoordinates
petsc4py.PETSc.DMSwarm.registerField petsc4py.PETSc.DMSwarm-class.html#registerField
petsc4py.PETSc.DMSwarm.restoreField petsc4py.PETSc.DMSwarm-class.html#restoreField
petsc4py.PETSc.DM.adaptLabel petsc4py.PETSc.DM-class.html#adaptLabel
petsc4py.PETSc.DM.createMat petsc4py.PETSc.DM-class.html#createMat
petsc4py.PETSc.DM.createLocalVector petsc4py.PETSc.DM-class.html#createLocalVector
petsc4py.PETSc.DMSwarm.destroyGlobalVectorFromField petsc4py.PETSc.DMSwarm-class.html#destroyGlobalVectorFromField
petsc4py.PETSc.DM.getCoordinateSection petsc4py.PETSc.DM-class.html#getCoordinateSection
petsc4py.PETSc.DM.setMatType petsc4py.PETSc.DM-class.html#setMatType
petsc4py.PETSc.DMSwarm.setType petsc4py.PETSc.DMSwarm-class.html#setType
petsc4py.PETSc.DM.getSection petsc4py.PETSc.DM-class.html#getSection
petsc4py.PETSc.DMSwarm.create petsc4py.PETSc.DMSwarm-class.html#create
petsc4py.PETSc.DM.BoundaryType petsc4py.PETSc.DM.BoundaryType-class.html
petsc4py.PETSc.DM.getCoordinateDM petsc4py.PETSc.DM-class.html#getCoordinateDM
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.DM.getNumLabels petsc4py.PETSc.DM-class.html#getNumLabels
petsc4py.PETSc.DMSwarm.getCellDM petsc4py.PETSc.DMSwarm-class.html#getCellDM
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.DM.setGlobalSection petsc4py.PETSc.DM-class.html#setGlobalSection
petsc4py.PETSc.DM.getDimension petsc4py.PETSc.DM-class.html#getDimension
petsc4py.PETSc.DM.createInjection petsc4py.PETSc.DM-class.html#createInjection
petsc4py.PETSc.DM.setSNESFunction petsc4py.PETSc.DM-class.html#setSNESFunction
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.DM.getType petsc4py.PETSc.DM-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.DMSwarm.setPointCoordinatesCellwise petsc4py.PETSc.DMSwarm-class.html#setPointCoordinatesCellwise
petsc4py.PETSc.DM.getAppCtx petsc4py.PETSc.DM-class.html#getAppCtx
petsc4py.PETSc.DM.setPointSF petsc4py.PETSc.DM-class.html#setPointSF
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.DM.copyDS petsc4py.PETSc.DM-class.html#copyDS
petsc4py.PETSc.DMSwarm.setPointsUniformCoordinates petsc4py.PETSc.DMSwarm-class.html#setPointsUniformCoordinates
petsc4py.PETSc.DMSwarm.getField petsc4py.PETSc.DMSwarm-class.html#getField
petsc4py.PETSc.DMSwarm.CollectType petsc4py.PETSc.DMSwarm.CollectType-class.html
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.DM.getCoarsenLevel petsc4py.PETSc.DM-class.html#getCoarsenLevel
petsc4py.PETSc.DMSwarm.initializeFieldRegister petsc4py.PETSc.DMSwarm-class.html#initializeFieldRegister
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.DM.getRefineLevel petsc4py.PETSc.DM-class.html#getRefineLevel
petsc4py.PETSc.DMSwarm.createLocalVectorFromField petsc4py.PETSc.DMSwarm-class.html#createLocalVectorFromField
petsc4py.PETSc.DM.setRefineLevel petsc4py.PETSc.DM-class.html#setRefineLevel
petsc4py.PETSc.DM.setSection petsc4py.PETSc.DM-class.html#setSection
petsc4py.PETSc.DMSwarm.migrate petsc4py.PETSc.DMSwarm-class.html#migrate
petsc4py.PETSc.DM.getBlockSize petsc4py.PETSc.DM-class.html#getBlockSize
petsc4py.PETSc.DMSwarm.collectViewDestroy petsc4py.PETSc.DMSwarm-class.html#collectViewDestroy
petsc4py.PETSc.DM.refine petsc4py.PETSc.DM-class.html#refine
petsc4py.PETSc.DM.createLocalVec petsc4py.PETSc.DM-class.html#createLocalVec
petsc4py.PETSc.DM.getNumFields petsc4py.PETSc.DM-class.html#getNumFields
petsc4py.PETSc.DM.getGlobalVec petsc4py.PETSc.DM-class.html#getGlobalVec
petsc4py.PETSc.DM.setKSPComputeOperators petsc4py.PETSc.DM-class.html#setKSPComputeOperators
petsc4py.PETSc.DM.localToLocal petsc4py.PETSc.DM-class.html#localToLocal
petsc4py.PETSc.DMSwarm.__new__ petsc4py.PETSc.DMSwarm-class.html#__new__
petsc4py.PETSc.DMSwarm.sortGetIsValid petsc4py.PETSc.DMSwarm-class.html#sortGetIsValid
petsc4py.PETSc.DMSwarm.createGlobalVectorFromField petsc4py.PETSc.DMSwarm-class.html#createGlobalVectorFromField
petsc4py.PETSc.DM.getLabelSize petsc4py.PETSc.DM-class.html#getLabelSize
petsc4py.PETSc.DMSwarm.addNPoints petsc4py.PETSc.DMSwarm-class.html#addNPoints
petsc4py.PETSc.DM.getLocalBoundingBox petsc4py.PETSc.DM-class.html#getLocalBoundingBox
petsc4py.PETSc.DM.coarsenHierarchy petsc4py.PETSc.DM-class.html#coarsenHierarchy
petsc4py.PETSc.DM.destroy petsc4py.PETSc.DM-class.html#destroy
petsc4py.PETSc.DMSwarm.addPoint petsc4py.PETSc.DMSwarm-class.html#addPoint
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.DM.createDefaultSF petsc4py.PETSc.DM-class.html#createDefaultSF
petsc4py.PETSc.DM.setCoordinatesLocal petsc4py.PETSc.DM-class.html#setCoordinatesLocal
petsc4py.PETSc.DMSwarm.copyPoint petsc4py.PETSc.DMSwarm-class.html#copyPoint
petsc4py.PETSc.DM.setDefaultSection petsc4py.PETSc.DM-class.html#setDefaultSection
petsc4py.PETSc.DM.clearDS petsc4py.PETSc.DM-class.html#clearDS
petsc4py.PETSc.DMSwarm.destroyLocalVectorFromField petsc4py.PETSc.DMSwarm-class.html#destroyLocalVectorFromField
petsc4py.PETSc.DM.getFieldAdjacency petsc4py.PETSc.DM-class.html#getFieldAdjacency
petsc4py.PETSc.DM.copyDisc petsc4py.PETSc.DM-class.html#copyDisc
petsc4py.PETSc.DM.setBasicAdjacency petsc4py.PETSc.DM-class.html#setBasicAdjacency
petsc4py.PETSc.DMSwarm.MigrateType petsc4py.PETSc.DMSwarm.MigrateType-class.html
petsc4py.PETSc.DMSwarm.viewXDMF petsc4py.PETSc.DMSwarm-class.html#viewXDMF
petsc4py.PETSc.DM.setLabelOutput petsc4py.PETSc.DM-class.html#setLabelOutput
petsc4py.PETSc.DMSwarm.removePointAtIndex petsc4py.PETSc.DMSwarm-class.html#removePointAtIndex
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.DM.restoreGlobalVec petsc4py.PETSc.DM-class.html#restoreGlobalVec
petsc4py.PETSc.DM.getSectionSF petsc4py.PETSc.DM-class.html#getSectionSF
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.DMSwarm.CollectType petsc4py.PETSc.DMSwarm.CollectType-class.html
petsc4py.PETSc.DMSwarm.CollectType.COLLECT_GENERAL petsc4py.PETSc.DMSwarm.CollectType-class.html#COLLECT_GENERAL
petsc4py.PETSc.DMSwarm.CollectType.__qualname__ petsc4py.PETSc.DMSwarm.CollectType-class.html#__qualname__
petsc4py.PETSc.DMSwarm.CollectType.COLLECT_USER petsc4py.PETSc.DMSwarm.CollectType-class.html#COLLECT_USER
petsc4py.PETSc.DMSwarm.CollectType.COLLECT_DMDABOUNDINGBOX petsc4py.PETSc.DMSwarm.CollectType-class.html#COLLECT_DMDABOUNDINGBOX
petsc4py.PETSc.DMSwarm.CollectType.COLLECT_BASIC petsc4py.PETSc.DMSwarm.CollectType-class.html#COLLECT_BASIC
petsc4py.PETSc.DMSwarm.MigrateType petsc4py.PETSc.DMSwarm.MigrateType-class.html
petsc4py.PETSc.DMSwarm.MigrateType.MIGRATE_BASIC petsc4py.PETSc.DMSwarm.MigrateType-class.html#MIGRATE_BASIC
petsc4py.PETSc.DMSwarm.MigrateType.MIGRATE_DMCELLEXACT petsc4py.PETSc.DMSwarm.MigrateType-class.html#MIGRATE_DMCELLEXACT
petsc4py.PETSc.DMSwarm.MigrateType.MIGRATE_DMCELLNSCATTER petsc4py.PETSc.DMSwarm.MigrateType-class.html#MIGRATE_DMCELLNSCATTER
petsc4py.PETSc.DMSwarm.MigrateType.__qualname__ petsc4py.PETSc.DMSwarm.MigrateType-class.html#__qualname__
petsc4py.PETSc.DMSwarm.MigrateType.MIGRATE_USER petsc4py.PETSc.DMSwarm.MigrateType-class.html#MIGRATE_USER
petsc4py.PETSc.DMSwarm.PICLayoutType petsc4py.PETSc.DMSwarm.PICLayoutType-class.html
petsc4py.PETSc.DMSwarm.PICLayoutType.LAYOUT_SUBDIVISION petsc4py.PETSc.DMSwarm.PICLayoutType-class.html#LAYOUT_SUBDIVISION
petsc4py.PETSc.DMSwarm.PICLayoutType.LAYOUT_GAUSS petsc4py.PETSc.DMSwarm.PICLayoutType-class.html#LAYOUT_GAUSS
petsc4py.PETSc.DMSwarm.PICLayoutType.__qualname__ petsc4py.PETSc.DMSwarm.PICLayoutType-class.html#__qualname__
petsc4py.PETSc.DMSwarm.PICLayoutType.LAYOUT_REGULAR petsc4py.PETSc.DMSwarm.PICLayoutType-class.html#LAYOUT_REGULAR
petsc4py.PETSc.DMSwarm.Type petsc4py.PETSc.DMSwarm.Type-class.html
petsc4py.PETSc.DMSwarm.Type.PIC petsc4py.PETSc.DMSwarm.Type-class.html#PIC
petsc4py.PETSc.DMSwarm.Type.__qualname__ petsc4py.PETSc.DMSwarm.Type-class.html#__qualname__
petsc4py.PETSc.DMSwarm.Type.BASIC petsc4py.PETSc.DMSwarm.Type-class.html#BASIC
petsc4py.PETSc.DS petsc4py.PETSc.DS-class.html
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.DS.getSpatialDimension petsc4py.PETSc.DS-class.html#getSpatialDimension
petsc4py.PETSc.DS.getTotalComponents petsc4py.PETSc.DS-class.html#getTotalComponents
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.DS.getComponents petsc4py.PETSc.DS-class.html#getComponents
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.DS.Type petsc4py.PETSc.DS.Type-class.html
petsc4py.PETSc.DS.setType petsc4py.PETSc.DS-class.html#setType
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.DS.__new__ petsc4py.PETSc.DS-class.html#__new__
petsc4py.PETSc.DS.getFieldIndex petsc4py.PETSc.DS-class.html#getFieldIndex
petsc4py.PETSc.DS.create petsc4py.PETSc.DS-class.html#create
petsc4py.PETSc.DS.getTotalDimensions petsc4py.PETSc.DS-class.html#getTotalDimensions
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.DS.destroy petsc4py.PETSc.DS-class.html#destroy
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.DS.setUp petsc4py.PETSc.DS-class.html#setUp
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.DS.setDiscretisation petsc4py.PETSc.DS-class.html#setDiscretisation
petsc4py.PETSc.DS.getType petsc4py.PETSc.DS-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.DS.getDimensions petsc4py.PETSc.DS-class.html#getDimensions
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.DS.setFromOptions petsc4py.PETSc.DS-class.html#setFromOptions
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.DS.getCoordinateDimension petsc4py.PETSc.DS-class.html#getCoordinateDimension
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.DS.getNumFields petsc4py.PETSc.DS-class.html#getNumFields
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.DS.view petsc4py.PETSc.DS-class.html#view
petsc4py.PETSc.DS.Type petsc4py.PETSc.DS.Type-class.html
petsc4py.PETSc.DS.Type.__qualname__ petsc4py.PETSc.DS.Type-class.html#__qualname__
petsc4py.PETSc.DS.Type.BASIC petsc4py.PETSc.DS.Type-class.html#BASIC
petsc4py.PETSc.Error petsc4py.PETSc.Error-class.html
petsc4py.PETSc.Error.__str__ petsc4py.PETSc.Error-class.html#__str__
petsc4py.PETSc.Error.__init__ petsc4py.PETSc.Error-class.html#__init__
petsc4py.PETSc.Error._traceback_ petsc4py.PETSc.Error-class.html#_traceback_
petsc4py.PETSc.Error.__nonzero__ petsc4py.PETSc.Error-class.html#__nonzero__
petsc4py.PETSc.Error.__qualname__ petsc4py.PETSc.Error-class.html#__qualname__
petsc4py.PETSc.Error.__repr__ petsc4py.PETSc.Error-class.html#__repr__
petsc4py.PETSc.FE petsc4py.PETSc.FE-class.html
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.FE.Type petsc4py.PETSc.FE.Type-class.html
petsc4py.PETSc.FE.setType petsc4py.PETSc.FE-class.html#setType
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.FE.__new__ petsc4py.PETSc.FE-class.html#__new__
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.FE.destroy petsc4py.PETSc.FE-class.html#destroy
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.Object.setFromOptions petsc4py.PETSc.Object-class.html#setFromOptions
petsc4py.PETSc.Object.getType petsc4py.PETSc.Object-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.FE.createDefault petsc4py.PETSc.FE-class.html#createDefault
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.FE.getQuadrature petsc4py.PETSc.FE-class.html#getQuadrature
petsc4py.PETSc.FE.setFaceQuadrature petsc4py.PETSc.FE-class.html#setFaceQuadrature
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.FE.setQuadrature petsc4py.PETSc.FE-class.html#setQuadrature
petsc4py.PETSc.FE.getFaceQuadrature petsc4py.PETSc.FE-class.html#getFaceQuadrature
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.FE.create petsc4py.PETSc.FE-class.html#create
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.view petsc4py.PETSc.Object-class.html#view
petsc4py.PETSc.FE.Type petsc4py.PETSc.FE.Type-class.html
petsc4py.PETSc.FE.Type.COMPOSITE petsc4py.PETSc.FE.Type-class.html#COMPOSITE
petsc4py.PETSc.FE.Type.OPENCL petsc4py.PETSc.FE.Type-class.html#OPENCL
petsc4py.PETSc.FE.Type.__qualname__ petsc4py.PETSc.FE.Type-class.html#__qualname__
petsc4py.PETSc.FE.Type.BASIC petsc4py.PETSc.FE.Type-class.html#BASIC
petsc4py.PETSc.IS petsc4py.PETSc.IS-class.html
petsc4py.PETSc.IS.getSize petsc4py.PETSc.IS-class.html#getSize
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.IS.invertPermutation petsc4py.PETSc.IS-class.html#invertPermutation
petsc4py.PETSc.IS.__enter__ petsc4py.PETSc.IS-class.html#__enter__
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.IS.getStride petsc4py.PETSc.IS-class.html#getStride
petsc4py.PETSc.IS.__exit__ petsc4py.PETSc.IS-class.html#__exit__
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.IS.createStride petsc4py.PETSc.IS-class.html#createStride
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.IS.setBlockSize petsc4py.PETSc.IS-class.html#setBlockSize
petsc4py.PETSc.IS.setPermutation petsc4py.PETSc.IS-class.html#setPermutation
petsc4py.PETSc.Object.setFromOptions petsc4py.PETSc.Object-class.html#setFromOptions
petsc4py.PETSc.IS.setIndices petsc4py.PETSc.IS-class.html#setIndices
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.IS.sorted petsc4py.PETSc.IS-class.html#sorted
petsc4py.PETSc.IS.difference petsc4py.PETSc.IS-class.html#difference
petsc4py.PETSc.IS.setStride petsc4py.PETSc.IS-class.html#setStride
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.IS.sizes petsc4py.PETSc.IS-class.html#sizes
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.IS.indices petsc4py.PETSc.IS-class.html#indices
petsc4py.PETSc.IS.createGeneral petsc4py.PETSc.IS-class.html#createGeneral
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.IS.getSizes petsc4py.PETSc.IS-class.html#getSizes
petsc4py.PETSc.IS.view petsc4py.PETSc.IS-class.html#view
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.IS.getBlockSize petsc4py.PETSc.IS-class.html#getBlockSize
petsc4py.PETSc.IS.Type petsc4py.PETSc.IS.Type-class.html
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.IS.setType petsc4py.PETSc.IS-class.html#setType
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.IS.complement petsc4py.PETSc.IS-class.html#complement
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.IS.isSorted petsc4py.PETSc.IS-class.html#isSorted
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.IS.getLocalSize petsc4py.PETSc.IS-class.html#getLocalSize
petsc4py.PETSc.IS.equal petsc4py.PETSc.IS-class.html#equal
petsc4py.PETSc.IS.createBlock petsc4py.PETSc.IS-class.html#createBlock
petsc4py.PETSc.IS.permutation petsc4py.PETSc.IS-class.html#permutation
petsc4py.PETSc.IS.load petsc4py.PETSc.IS-class.html#load
petsc4py.PETSc.IS.array petsc4py.PETSc.IS-class.html#array
petsc4py.PETSc.IS.block_size petsc4py.PETSc.IS-class.html#block_size
petsc4py.PETSc.IS.toGeneral petsc4py.PETSc.IS-class.html#toGeneral
petsc4py.PETSc.IS.size petsc4py.PETSc.IS-class.html#size
petsc4py.PETSc.IS.union petsc4py.PETSc.IS-class.html#union
petsc4py.PETSc.IS.create petsc4py.PETSc.IS-class.html#create
petsc4py.PETSc.IS.duplicate petsc4py.PETSc.IS-class.html#duplicate
petsc4py.PETSc.IS.identity petsc4py.PETSc.IS-class.html#identity
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.IS.setIdentity petsc4py.PETSc.IS-class.html#setIdentity
petsc4py.PETSc.IS.sort petsc4py.PETSc.IS-class.html#sort
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.IS.getType petsc4py.PETSc.IS-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.IS.renumber petsc4py.PETSc.IS-class.html#renumber
petsc4py.PETSc.IS.isPermutation petsc4py.PETSc.IS-class.html#isPermutation
petsc4py.PETSc.IS.copy petsc4py.PETSc.IS-class.html#copy
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.IS.getInfo petsc4py.PETSc.IS-class.html#getInfo
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.IS.embed petsc4py.PETSc.IS-class.html#embed
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.IS.local_size petsc4py.PETSc.IS-class.html#local_size
petsc4py.PETSc.IS.allGather petsc4py.PETSc.IS-class.html#allGather
petsc4py.PETSc.IS.__new__ petsc4py.PETSc.IS-class.html#__new__
petsc4py.PETSc.IS.getBlockIndices petsc4py.PETSc.IS-class.html#getBlockIndices
petsc4py.PETSc.IS.setBlockIndices petsc4py.PETSc.IS-class.html#setBlockIndices
petsc4py.PETSc.IS.destroy petsc4py.PETSc.IS-class.html#destroy
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.IS.__array_interface__ petsc4py.PETSc.IS-class.html#__array_interface__
petsc4py.PETSc.IS.getIndices petsc4py.PETSc.IS-class.html#getIndices
petsc4py.PETSc.IS.expand petsc4py.PETSc.IS-class.html#expand
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.IS.isIdentity petsc4py.PETSc.IS-class.html#isIdentity
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.IS.sum petsc4py.PETSc.IS-class.html#sum
petsc4py.PETSc.IS.Type petsc4py.PETSc.IS.Type-class.html
petsc4py.PETSc.IS.Type.GENERAL petsc4py.PETSc.IS.Type-class.html#GENERAL
petsc4py.PETSc.IS.Type.__qualname__ petsc4py.PETSc.IS.Type-class.html#__qualname__
petsc4py.PETSc.IS.Type.STRIDE petsc4py.PETSc.IS.Type-class.html#STRIDE
petsc4py.PETSc.IS.Type.BLOCK petsc4py.PETSc.IS.Type-class.html#BLOCK
petsc4py.PETSc.InsertMode petsc4py.PETSc.InsertMode-class.html
petsc4py.PETSc.InsertMode.ADD_ALL petsc4py.PETSc.InsertMode-class.html#ADD_ALL
petsc4py.PETSc.InsertMode.MAX_VALUES petsc4py.PETSc.InsertMode-class.html#MAX_VALUES
petsc4py.PETSc.InsertMode.INSERT petsc4py.PETSc.InsertMode-class.html#INSERT
petsc4py.PETSc.InsertMode.NOT_SET_VALUES petsc4py.PETSc.InsertMode-class.html#NOT_SET_VALUES
petsc4py.PETSc.InsertMode.INSERT_BC_VALUES petsc4py.PETSc.InsertMode-class.html#INSERT_BC_VALUES
petsc4py.PETSc.InsertMode.INSERT_BC petsc4py.PETSc.InsertMode-class.html#INSERT_BC
petsc4py.PETSc.InsertMode.ADD petsc4py.PETSc.InsertMode-class.html#ADD
petsc4py.PETSc.InsertMode.INSERT_ALL_VALUES petsc4py.PETSc.InsertMode-class.html#INSERT_ALL_VALUES
petsc4py.PETSc.InsertMode.ADD_BC petsc4py.PETSc.InsertMode-class.html#ADD_BC
petsc4py.PETSc.InsertMode.MAX petsc4py.PETSc.InsertMode-class.html#MAX
petsc4py.PETSc.InsertMode.ADD_ALL_VALUES petsc4py.PETSc.InsertMode-class.html#ADD_ALL_VALUES
petsc4py.PETSc.InsertMode.__qualname__ petsc4py.PETSc.InsertMode-class.html#__qualname__
petsc4py.PETSc.InsertMode.INSERT_VALUES petsc4py.PETSc.InsertMode-class.html#INSERT_VALUES
petsc4py.PETSc.InsertMode.ADD_BC_VALUES petsc4py.PETSc.InsertMode-class.html#ADD_BC_VALUES
petsc4py.PETSc.InsertMode.ADD_VALUES petsc4py.PETSc.InsertMode-class.html#ADD_VALUES
petsc4py.PETSc.InsertMode.INSERT_ALL petsc4py.PETSc.InsertMode-class.html#INSERT_ALL
petsc4py.PETSc.KSP petsc4py.PETSc.KSP-class.html
petsc4py.PETSc.KSP.getPCSide petsc4py.PETSc.KSP-class.html#getPCSide
petsc4py.PETSc.KSP.setDM petsc4py.PETSc.KSP-class.html#setDM
petsc4py.PETSc.KSP.setComputeSingularValues petsc4py.PETSc.KSP-class.html#setComputeSingularValues
petsc4py.PETSc.KSP.setTolerances petsc4py.PETSc.KSP-class.html#setTolerances
petsc4py.PETSc.KSP.setMonitor petsc4py.PETSc.KSP-class.html#setMonitor
petsc4py.PETSc.KSP.cancelMonitor petsc4py.PETSc.KSP-class.html#cancelMonitor
petsc4py.PETSc.KSP.max_it petsc4py.PETSc.KSP-class.html#max_it
petsc4py.PETSc.KSP.setInitialGuessNonzero petsc4py.PETSc.KSP-class.html#setInitialGuessNonzero
petsc4py.PETSc.KSP.setNormType petsc4py.PETSc.KSP-class.html#setNormType
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.KSP.its petsc4py.PETSc.KSP-class.html#its
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.KSP.monitor petsc4py.PETSc.KSP-class.html#monitor
petsc4py.PETSc.KSP.setGMRESRestart petsc4py.PETSc.KSP-class.html#setGMRESRestart
petsc4py.PETSc.KSP.setOperators petsc4py.PETSc.KSP-class.html#setOperators
petsc4py.PETSc.KSP.getConvergenceHistory petsc4py.PETSc.KSP-class.html#getConvergenceHistory
petsc4py.PETSc.KSP.rtol petsc4py.PETSc.KSP-class.html#rtol
petsc4py.PETSc.KSP.setDMActive petsc4py.PETSc.KSP-class.html#setDMActive
petsc4py.PETSc.KSP.getWorkVecs petsc4py.PETSc.KSP-class.html#getWorkVecs
petsc4py.PETSc.KSP.__call__ petsc4py.PETSc.KSP-class.html#__call__
petsc4py.PETSc.KSP.getConvergedReason petsc4py.PETSc.KSP-class.html#getConvergedReason
petsc4py.PETSc.KSP.norm petsc4py.PETSc.KSP-class.html#norm
petsc4py.PETSc.KSP.guess_nonzero petsc4py.PETSc.KSP-class.html#guess_nonzero
petsc4py.PETSc.KSP.vec_sol petsc4py.PETSc.KSP-class.html#vec_sol
petsc4py.PETSc.KSP.dm petsc4py.PETSc.KSP-class.html#dm
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.KSP.setOptionsPrefix petsc4py.PETSc.KSP-class.html#setOptionsPrefix
petsc4py.PETSc.KSP.callConvergenceTest petsc4py.PETSc.KSP-class.html#callConvergenceTest
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.KSP.setFromOptions petsc4py.PETSc.KSP-class.html#setFromOptions
petsc4py.PETSc.KSP.NormType petsc4py.PETSc.KSP.NormType-class.html
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.KSP.setAppCtx petsc4py.PETSc.KSP-class.html#setAppCtx
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.KSP.setConvergenceHistory petsc4py.PETSc.KSP-class.html#setConvergenceHistory
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.KSP.setUpOnBlocks petsc4py.PETSc.KSP-class.html#setUpOnBlocks
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.KSP.divtol petsc4py.PETSc.KSP-class.html#divtol
petsc4py.PETSc.KSP.view petsc4py.PETSc.KSP-class.html#view
petsc4py.PETSc.KSP.computeEigenvalues petsc4py.PETSc.KSP-class.html#computeEigenvalues
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.KSP.pc_side petsc4py.PETSc.KSP-class.html#pc_side
petsc4py.PETSc.KSP.getNormType petsc4py.PETSc.KSP-class.html#getNormType
petsc4py.PETSc.KSP.guess_knoll petsc4py.PETSc.KSP-class.html#guess_knoll
petsc4py.PETSc.KSP.norm_type petsc4py.PETSc.KSP-class.html#norm_type
petsc4py.PETSc.KSP.ConvergedReason petsc4py.PETSc.KSP.ConvergedReason-class.html
petsc4py.PETSc.KSP.setInitialGuessKnoll petsc4py.PETSc.KSP-class.html#setInitialGuessKnoll
petsc4py.PETSc.KSP.Type petsc4py.PETSc.KSP.Type-class.html
petsc4py.PETSc.KSP.setComputeEigenvalues petsc4py.PETSc.KSP-class.html#setComputeEigenvalues
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.KSP.setComputeOperators petsc4py.PETSc.KSP-class.html#setComputeOperators
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.KSP.setUp petsc4py.PETSc.KSP-class.html#setUp
petsc4py.PETSc.KSP.createPython petsc4py.PETSc.KSP-class.html#createPython
petsc4py.PETSc.KSP.getDM petsc4py.PETSc.KSP-class.html#getDM
petsc4py.PETSc.KSP.getOptionsPrefix petsc4py.PETSc.KSP-class.html#getOptionsPrefix
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.KSP.setComputeRHS petsc4py.PETSc.KSP-class.html#setComputeRHS
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.KSP.buildSolution petsc4py.PETSc.KSP-class.html#buildSolution
petsc4py.PETSc.KSP.setResidualNorm petsc4py.PETSc.KSP-class.html#setResidualNorm
petsc4py.PETSc.KSP.computeExtremeSingularValues petsc4py.PETSc.KSP-class.html#computeExtremeSingularValues
petsc4py.PETSc.KSP.solveTranspose petsc4py.PETSc.KSP-class.html#solveTranspose
petsc4py.PETSc.KSP.getComputeEigenvalues petsc4py.PETSc.KSP-class.html#getComputeEigenvalues
petsc4py.PETSc.KSP.reason petsc4py.PETSc.KSP-class.html#reason
petsc4py.PETSc.KSP.setPCSide petsc4py.PETSc.KSP-class.html#setPCSide
petsc4py.PETSc.KSP.buildResidual petsc4py.PETSc.KSP-class.html#buildResidual
petsc4py.PETSc.KSP.vec_rhs petsc4py.PETSc.KSP-class.html#vec_rhs
petsc4py.PETSc.KSP.getPythonContext petsc4py.PETSc.KSP-class.html#getPythonContext
petsc4py.PETSc.KSP.setType petsc4py.PETSc.KSP-class.html#setType
petsc4py.PETSc.KSP.getOperators petsc4py.PETSc.KSP-class.html#getOperators
petsc4py.PETSc.KSP.getResidualNorm petsc4py.PETSc.KSP-class.html#getResidualNorm
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.KSP.create petsc4py.PETSc.KSP-class.html#create
petsc4py.PETSc.KSP.pc petsc4py.PETSc.KSP-class.html#pc
petsc4py.PETSc.KSP.setPC petsc4py.PETSc.KSP-class.html#setPC
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.KSP.getComputeSingularValues petsc4py.PETSc.KSP-class.html#getComputeSingularValues
petsc4py.PETSc.KSP.getType petsc4py.PETSc.KSP-class.html#getType
petsc4py.PETSc.KSP.getMonitor petsc4py.PETSc.KSP-class.html#getMonitor
petsc4py.PETSc.KSP.getAppCtx petsc4py.PETSc.KSP-class.html#getAppCtx
petsc4py.PETSc.KSP.atol petsc4py.PETSc.KSP-class.html#atol
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.KSP.reset petsc4py.PETSc.KSP-class.html#reset
petsc4py.PETSc.KSP.getRhs petsc4py.PETSc.KSP-class.html#getRhs
petsc4py.PETSc.KSP.getPC petsc4py.PETSc.KSP-class.html#getPC
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.KSP.setConvergenceTest petsc4py.PETSc.KSP-class.html#setConvergenceTest
petsc4py.PETSc.KSP.getIterationNumber petsc4py.PETSc.KSP-class.html#getIterationNumber
petsc4py.PETSc.KSP.appctx petsc4py.PETSc.KSP-class.html#appctx
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.KSP.history petsc4py.PETSc.KSP-class.html#history
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.KSP.getConvergenceTest petsc4py.PETSc.KSP-class.html#getConvergenceTest
petsc4py.PETSc.KSP.setConvergedReason petsc4py.PETSc.KSP-class.html#setConvergedReason
petsc4py.PETSc.KSP.getSolution petsc4py.PETSc.KSP-class.html#getSolution
petsc4py.PETSc.KSP.diverged petsc4py.PETSc.KSP-class.html#diverged
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.KSP.setUseFischerGuess petsc4py.PETSc.KSP-class.html#setUseFischerGuess
petsc4py.PETSc.KSP.__new__ petsc4py.PETSc.KSP-class.html#__new__
petsc4py.PETSc.KSP.logConvergenceHistory petsc4py.PETSc.KSP-class.html#logConvergenceHistory
petsc4py.PETSc.KSP.getInitialGuessKnoll petsc4py.PETSc.KSP-class.html#getInitialGuessKnoll
petsc4py.PETSc.KSP.converged petsc4py.PETSc.KSP-class.html#converged
petsc4py.PETSc.KSP.destroy petsc4py.PETSc.KSP-class.html#destroy
petsc4py.PETSc.KSP.getInitialGuessNonzero petsc4py.PETSc.KSP-class.html#getInitialGuessNonzero
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.KSP.getTolerances petsc4py.PETSc.KSP-class.html#getTolerances
petsc4py.PETSc.KSP.setIterationNumber petsc4py.PETSc.KSP-class.html#setIterationNumber
petsc4py.PETSc.KSP.mat_pc petsc4py.PETSc.KSP-class.html#mat_pc
petsc4py.PETSc.KSP.setPythonType petsc4py.PETSc.KSP-class.html#setPythonType
petsc4py.PETSc.KSP.iterating petsc4py.PETSc.KSP-class.html#iterating
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.KSP.mat_op petsc4py.PETSc.KSP-class.html#mat_op
petsc4py.PETSc.KSP.solve petsc4py.PETSc.KSP-class.html#solve
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.KSP.setPythonContext petsc4py.PETSc.KSP-class.html#setPythonContext
petsc4py.PETSc.KSP.ConvergedReason petsc4py.PETSc.KSP.ConvergedReason-class.html
petsc4py.PETSc.KSP.ConvergedReason.DIVERGED_MAX_IT petsc4py.PETSc.KSP.ConvergedReason-class.html#DIVERGED_MAX_IT
petsc4py.PETSc.KSP.ConvergedReason.DIVERGED_INDEFINITE_PC petsc4py.PETSc.KSP.ConvergedReason-class.html#DIVERGED_INDEFINITE_PC
petsc4py.PETSc.KSP.ConvergedReason.CONVERGED_ATOL petsc4py.PETSc.KSP.ConvergedReason-class.html#CONVERGED_ATOL
petsc4py.PETSc.KSP.ConvergedReason.DIVERGED_BREAKDOWN petsc4py.PETSc.KSP.ConvergedReason-class.html#DIVERGED_BREAKDOWN
petsc4py.PETSc.KSP.ConvergedReason.DIVERGED_NONSYMMETRIC petsc4py.PETSc.KSP.ConvergedReason-class.html#DIVERGED_NONSYMMETRIC
petsc4py.PETSc.KSP.ConvergedReason.DIVERGED_INDEFINITE_MAT petsc4py.PETSc.KSP.ConvergedReason-class.html#DIVERGED_INDEFINITE_MAT
petsc4py.PETSc.KSP.ConvergedReason.CONVERGED_CG_CONSTRAINED petsc4py.PETSc.KSP.ConvergedReason-class.html#CONVERGED_CG_CONSTRAINED
petsc4py.PETSc.KSP.ConvergedReason.DIVERGED_DTOL petsc4py.PETSc.KSP.ConvergedReason-class.html#DIVERGED_DTOL
petsc4py.PETSc.KSP.ConvergedReason.DIVERGED_BREAKDOWN_BICG petsc4py.PETSc.KSP.ConvergedReason-class.html#DIVERGED_BREAKDOWN_BICG
petsc4py.PETSc.KSP.ConvergedReason.ITERATING petsc4py.PETSc.KSP.ConvergedReason-class.html#ITERATING
petsc4py.PETSc.KSP.ConvergedReason.CONVERGED_ITS petsc4py.PETSc.KSP.ConvergedReason-class.html#CONVERGED_ITS
petsc4py.PETSc.KSP.ConvergedReason.DIVERGED_NULL petsc4py.PETSc.KSP.ConvergedReason-class.html#DIVERGED_NULL
petsc4py.PETSc.KSP.ConvergedReason.CONVERGED_ATOL_NORMAL petsc4py.PETSc.KSP.ConvergedReason-class.html#CONVERGED_ATOL_NORMAL
petsc4py.PETSc.KSP.ConvergedReason.CONVERGED_RTOL_NORMAL petsc4py.PETSc.KSP.ConvergedReason-class.html#CONVERGED_RTOL_NORMAL
petsc4py.PETSc.KSP.ConvergedReason.CONVERGED_STEP_LENGTH petsc4py.PETSc.KSP.ConvergedReason-class.html#CONVERGED_STEP_LENGTH
petsc4py.PETSc.KSP.ConvergedReason.CONVERGED_RTOL petsc4py.PETSc.KSP.ConvergedReason-class.html#CONVERGED_RTOL
petsc4py.PETSc.KSP.ConvergedReason.CONVERGED_HAPPY_BREAKDOWN petsc4py.PETSc.KSP.ConvergedReason-class.html#CONVERGED_HAPPY_BREAKDOWN
petsc4py.PETSc.KSP.ConvergedReason.DIVERGED_PCSETUP_FAILED petsc4py.PETSc.KSP.ConvergedReason-class.html#DIVERGED_PCSETUP_FAILED
petsc4py.PETSc.KSP.ConvergedReason.DIVERGED_NANORINF petsc4py.PETSc.KSP.ConvergedReason-class.html#DIVERGED_NANORINF
petsc4py.PETSc.KSP.ConvergedReason.__qualname__ petsc4py.PETSc.KSP.ConvergedReason-class.html#__qualname__
petsc4py.PETSc.KSP.ConvergedReason.CONVERGED_ITERATING petsc4py.PETSc.KSP.ConvergedReason-class.html#CONVERGED_ITERATING
petsc4py.PETSc.KSP.ConvergedReason.CONVERGED_CG_NEG_CURVE petsc4py.PETSc.KSP.ConvergedReason-class.html#CONVERGED_CG_NEG_CURVE
petsc4py.PETSc.KSP.NormType petsc4py.PETSc.KSP.NormType-class.html
petsc4py.PETSc.KSP.NormType.PRECONDITIONED petsc4py.PETSc.KSP.NormType-class.html#PRECONDITIONED
petsc4py.PETSc.KSP.NormType.DEFAULT petsc4py.PETSc.KSP.NormType-class.html#DEFAULT
petsc4py.PETSc.KSP.NormType.NORM_NONE petsc4py.PETSc.KSP.NormType-class.html#NORM_NONE
petsc4py.PETSc.KSP.NormType.UNPRECONDITIONED petsc4py.PETSc.KSP.NormType-class.html#UNPRECONDITIONED
petsc4py.PETSc.KSP.NormType.NONE petsc4py.PETSc.KSP.NormType-class.html#NONE
petsc4py.PETSc.KSP.NormType.NO petsc4py.PETSc.KSP.NormType-class.html#NO
petsc4py.PETSc.KSP.NormType.NORM_DEFAULT petsc4py.PETSc.KSP.NormType-class.html#NORM_DEFAULT
petsc4py.PETSc.KSP.NormType.NATURAL petsc4py.PETSc.KSP.NormType-class.html#NATURAL
petsc4py.PETSc.KSP.NormType.NORM_NATURAL petsc4py.PETSc.KSP.NormType-class.html#NORM_NATURAL
petsc4py.PETSc.KSP.NormType.NORM_UNPRECONDITIONED petsc4py.PETSc.KSP.NormType-class.html#NORM_UNPRECONDITIONED
petsc4py.PETSc.KSP.NormType.NORM_PRECONDITIONED petsc4py.PETSc.KSP.NormType-class.html#NORM_PRECONDITIONED
petsc4py.PETSc.KSP.NormType.__qualname__ petsc4py.PETSc.KSP.NormType-class.html#__qualname__
petsc4py.PETSc.KSP.Type petsc4py.PETSc.KSP.Type-class.html
petsc4py.PETSc.KSP.Type.PIPEFGMRES petsc4py.PETSc.KSP.Type-class.html#PIPEFGMRES
petsc4py.PETSc.KSP.Type.TFQMR petsc4py.PETSc.KSP.Type-class.html#TFQMR
petsc4py.PETSc.KSP.Type.PYTHON petsc4py.PETSc.KSP.Type-class.html#PYTHON
petsc4py.PETSc.KSP.Type.PIPECR petsc4py.PETSc.KSP.Type-class.html#PIPECR
petsc4py.PETSc.KSP.Type.IBCGS petsc4py.PETSc.KSP.Type-class.html#IBCGS
petsc4py.PETSc.KSP.Type.PIPECGRR petsc4py.PETSc.KSP.Type-class.html#PIPECGRR
petsc4py.PETSc.KSP.Type.STCG petsc4py.PETSc.KSP.Type-class.html#STCG
petsc4py.PETSc.KSP.Type.QCG petsc4py.PETSc.KSP.Type-class.html#QCG
petsc4py.PETSc.KSP.Type.PIPELCG petsc4py.PETSc.KSP.Type-class.html#PIPELCG
petsc4py.PETSc.KSP.Type.PIPECG petsc4py.PETSc.KSP.Type-class.html#PIPECG
petsc4py.PETSc.KSP.Type.PGMRES petsc4py.PETSc.KSP.Type-class.html#PGMRES
petsc4py.PETSc.KSP.Type.CGLS petsc4py.PETSc.KSP.Type-class.html#CGLS
petsc4py.PETSc.KSP.Type.LGMRES petsc4py.PETSc.KSP.Type-class.html#LGMRES
petsc4py.PETSc.KSP.Type.PIPEPRCG petsc4py.PETSc.KSP.Type-class.html#PIPEPRCG
petsc4py.PETSc.KSP.Type.CGNE petsc4py.PETSc.KSP.Type-class.html#CGNE
petsc4py.PETSc.KSP.Type.MINRES petsc4py.PETSc.KSP.Type-class.html#MINRES
petsc4py.PETSc.KSP.Type.FCG petsc4py.PETSc.KSP.Type-class.html#FCG
petsc4py.PETSc.KSP.Type.HPDDM petsc4py.PETSc.KSP.Type-class.html#HPDDM
petsc4py.PETSc.KSP.Type.CGS petsc4py.PETSc.KSP.Type-class.html#CGS
petsc4py.PETSc.KSP.Type.FBCGS petsc4py.PETSc.KSP.Type-class.html#FBCGS
petsc4py.PETSc.KSP.Type.DGMRES petsc4py.PETSc.KSP.Type-class.html#DGMRES
petsc4py.PETSc.KSP.Type.TCQMR petsc4py.PETSc.KSP.Type-class.html#TCQMR
petsc4py.PETSc.KSP.Type.LSQR petsc4py.PETSc.KSP.Type-class.html#LSQR
petsc4py.PETSc.KSP.Type.GLTR petsc4py.PETSc.KSP.Type-class.html#GLTR
petsc4py.PETSc.KSP.Type.CG petsc4py.PETSc.KSP.Type-class.html#CG
petsc4py.PETSc.KSP.Type.BCGS petsc4py.PETSc.KSP.Type-class.html#BCGS
petsc4py.PETSc.KSP.Type.TSIRM petsc4py.PETSc.KSP.Type-class.html#TSIRM
petsc4py.PETSc.KSP.Type.GCR petsc4py.PETSc.KSP.Type-class.html#GCR
petsc4py.PETSc.KSP.Type.FGMRES petsc4py.PETSc.KSP.Type-class.html#FGMRES
petsc4py.PETSc.KSP.Type.GROPPCG petsc4py.PETSc.KSP.Type-class.html#GROPPCG
petsc4py.PETSc.KSP.Type.CR petsc4py.PETSc.KSP.Type-class.html#CR
petsc4py.PETSc.KSP.Type.FBCGSR petsc4py.PETSc.KSP.Type-class.html#FBCGSR
petsc4py.PETSc.KSP.Type.CHEBYSHEV petsc4py.PETSc.KSP.Type-class.html#CHEBYSHEV
petsc4py.PETSc.KSP.Type.SYMMLQ petsc4py.PETSc.KSP.Type-class.html#SYMMLQ
petsc4py.PETSc.KSP.Type.PIPEGCR petsc4py.PETSc.KSP.Type-class.html#PIPEGCR
petsc4py.PETSc.KSP.Type.PIPEFCG petsc4py.PETSc.KSP.Type-class.html#PIPEFCG
petsc4py.PETSc.KSP.Type.BCGSL petsc4py.PETSc.KSP.Type-class.html#BCGSL
petsc4py.PETSc.KSP.Type.BICG petsc4py.PETSc.KSP.Type-class.html#BICG
petsc4py.PETSc.KSP.Type.__qualname__ petsc4py.PETSc.KSP.Type-class.html#__qualname__
petsc4py.PETSc.KSP.Type.FETIDP petsc4py.PETSc.KSP.Type-class.html#FETIDP
petsc4py.PETSc.KSP.Type.LCD petsc4py.PETSc.KSP.Type-class.html#LCD
petsc4py.PETSc.KSP.Type.PREONLY petsc4py.PETSc.KSP.Type-class.html#PREONLY
petsc4py.PETSc.KSP.Type.GMRES petsc4py.PETSc.KSP.Type-class.html#GMRES
petsc4py.PETSc.KSP.Type.RICHARDSON petsc4py.PETSc.KSP.Type-class.html#RICHARDSON
petsc4py.PETSc.KSP.Type.NASH petsc4py.PETSc.KSP.Type-class.html#NASH
petsc4py.PETSc.KSP.Type.PIPECG2 petsc4py.PETSc.KSP.Type-class.html#PIPECG2
petsc4py.PETSc.KSP.Type.PIPEBCGS petsc4py.PETSc.KSP.Type-class.html#PIPEBCGS
petsc4py.PETSc.LGMap petsc4py.PETSc.LGMap-class.html
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.LGMap.createSF petsc4py.PETSc.LGMap-class.html#createSF
petsc4py.PETSc.LGMap.getSize petsc4py.PETSc.LGMap-class.html#getSize
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.LGMap.getBlockSize petsc4py.PETSc.LGMap-class.html#getBlockSize
petsc4py.PETSc.LGMap.apply petsc4py.PETSc.LGMap-class.html#apply
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.LGMap.block_size petsc4py.PETSc.LGMap-class.html#block_size
petsc4py.PETSc.LGMap.Type petsc4py.PETSc.LGMap.Type-class.html
petsc4py.PETSc.LGMap.setType petsc4py.PETSc.LGMap-class.html#setType
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.LGMap.__new__ petsc4py.PETSc.LGMap-class.html#__new__
petsc4py.PETSc.LGMap.applyBlockInverse petsc4py.PETSc.LGMap-class.html#applyBlockInverse
petsc4py.PETSc.LGMap.getBlockIndices petsc4py.PETSc.LGMap-class.html#getBlockIndices
petsc4py.PETSc.LGMap.create petsc4py.PETSc.LGMap-class.html#create
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.LGMap.applyInverse petsc4py.PETSc.LGMap-class.html#applyInverse
petsc4py.PETSc.LGMap.__call__ petsc4py.PETSc.LGMap-class.html#__call__
petsc4py.PETSc.LGMap.destroy petsc4py.PETSc.LGMap-class.html#destroy
petsc4py.PETSc.Object.getType petsc4py.PETSc.Object-class.html#getType
petsc4py.PETSc.LGMap.size petsc4py.PETSc.LGMap-class.html#size
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.LGMap.applyIS petsc4py.PETSc.LGMap-class.html#applyIS
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.LGMap.applyBlock petsc4py.PETSc.LGMap-class.html#applyBlock
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.LGMap.getBlockInfo petsc4py.PETSc.LGMap-class.html#getBlockInfo
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.LGMap.indices petsc4py.PETSc.LGMap-class.html#indices
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.LGMap.setFromOptions petsc4py.PETSc.LGMap-class.html#setFromOptions
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.LGMap.getIndices petsc4py.PETSc.LGMap-class.html#getIndices
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.LGMap.info petsc4py.PETSc.LGMap-class.html#info
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.LGMap.getInfo petsc4py.PETSc.LGMap-class.html#getInfo
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.LGMap.createIS petsc4py.PETSc.LGMap-class.html#createIS
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.LGMap.MapMode petsc4py.PETSc.LGMap.MapMode-class.html
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.LGMap.block_indices petsc4py.PETSc.LGMap-class.html#block_indices
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.LGMap.block_info petsc4py.PETSc.LGMap-class.html#block_info
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.LGMap.view petsc4py.PETSc.LGMap-class.html#view
petsc4py.PETSc.LGMap.MapMode petsc4py.PETSc.LGMap.MapMode-class.html
petsc4py.PETSc.LGMap.MapMode.DROP petsc4py.PETSc.LGMap.MapMode-class.html#DROP
petsc4py.PETSc.LGMap.MapMode.MASK petsc4py.PETSc.LGMap.MapMode-class.html#MASK
petsc4py.PETSc.LGMap.MapMode.__qualname__ petsc4py.PETSc.LGMap.MapMode-class.html#__qualname__
petsc4py.PETSc.LGMap.Type petsc4py.PETSc.LGMap.Type-class.html
petsc4py.PETSc.LGMap.Type.HASH petsc4py.PETSc.LGMap.Type-class.html#HASH
petsc4py.PETSc.LGMap.Type.__qualname__ petsc4py.PETSc.LGMap.Type-class.html#__qualname__
petsc4py.PETSc.LGMap.Type.BASIC petsc4py.PETSc.LGMap.Type-class.html#BASIC
petsc4py.PETSc.Log petsc4py.PETSc.Log-class.html
petsc4py.PETSc.Log.getTime petsc4py.PETSc.Log-class.html#getTime
petsc4py.PETSc.Log.logFlops petsc4py.PETSc.Log-class.html#logFlops
petsc4py.PETSc.Log.getCPUTime petsc4py.PETSc.Log-class.html#getCPUTime
petsc4py.PETSc.Log.__new__ petsc4py.PETSc.Log-class.html#__new__
petsc4py.PETSc.Log.Class petsc4py.PETSc.Log-class.html#Class
petsc4py.PETSc.Log.Stage petsc4py.PETSc.Log-class.html#Stage
petsc4py.PETSc.Log.begin petsc4py.PETSc.Log-class.html#begin
petsc4py.PETSc.Log.getFlops petsc4py.PETSc.Log-class.html#getFlops
petsc4py.PETSc.Log.addFlops petsc4py.PETSc.Log-class.html#addFlops
petsc4py.PETSc.Log.Event petsc4py.PETSc.Log-class.html#Event
petsc4py.PETSc.Log.view petsc4py.PETSc.Log-class.html#view
petsc4py.PETSc.LogClass petsc4py.PETSc.LogClass-class.html
petsc4py.PETSc.LogClass.__int__ petsc4py.PETSc.LogClass-class.html#__int__
petsc4py.PETSc.LogClass.activate petsc4py.PETSc.LogClass-class.html#activate
petsc4py.PETSc.LogClass.id petsc4py.PETSc.LogClass-class.html#id
petsc4py.PETSc.LogClass.__new__ petsc4py.PETSc.LogClass-class.html#__new__
petsc4py.PETSc.LogClass.deactivate petsc4py.PETSc.LogClass-class.html#deactivate
petsc4py.PETSc.LogClass.getName petsc4py.PETSc.LogClass-class.html#getName
petsc4py.PETSc.LogClass.getActive petsc4py.PETSc.LogClass-class.html#getActive
petsc4py.PETSc.LogClass.setActive petsc4py.PETSc.LogClass-class.html#setActive
petsc4py.PETSc.LogClass.active petsc4py.PETSc.LogClass-class.html#active
petsc4py.PETSc.LogClass.name petsc4py.PETSc.LogClass-class.html#name
petsc4py.PETSc.LogClass.__long__ petsc4py.PETSc.LogClass-class.html#__long__
petsc4py.PETSc.LogEvent petsc4py.PETSc.LogEvent-class.html
petsc4py.PETSc.LogEvent.__int__ petsc4py.PETSc.LogEvent-class.html#__int__
petsc4py.PETSc.LogEvent.activate petsc4py.PETSc.LogEvent-class.html#activate
petsc4py.PETSc.LogEvent.getPerfInfo petsc4py.PETSc.LogEvent-class.html#getPerfInfo
petsc4py.PETSc.LogEvent.getActiveAll petsc4py.PETSc.LogEvent-class.html#getActiveAll
petsc4py.PETSc.LogEvent.active_all petsc4py.PETSc.LogEvent-class.html#active_all
petsc4py.PETSc.LogEvent.id petsc4py.PETSc.LogEvent-class.html#id
petsc4py.PETSc.LogEvent.end petsc4py.PETSc.LogEvent-class.html#end
petsc4py.PETSc.LogEvent.__new__ petsc4py.PETSc.LogEvent-class.html#__new__
petsc4py.PETSc.LogEvent.deactivate petsc4py.PETSc.LogEvent-class.html#deactivate
petsc4py.PETSc.LogEvent.getName petsc4py.PETSc.LogEvent-class.html#getName
petsc4py.PETSc.LogEvent.__enter__ petsc4py.PETSc.LogEvent-class.html#__enter__
petsc4py.PETSc.LogEvent.getActive petsc4py.PETSc.LogEvent-class.html#getActive
petsc4py.PETSc.LogEvent.setActive petsc4py.PETSc.LogEvent-class.html#setActive
petsc4py.PETSc.LogEvent.begin petsc4py.PETSc.LogEvent-class.html#begin
petsc4py.PETSc.LogEvent.__exit__ petsc4py.PETSc.LogEvent-class.html#__exit__
petsc4py.PETSc.LogEvent.setActiveAll petsc4py.PETSc.LogEvent-class.html#setActiveAll
petsc4py.PETSc.LogEvent.active petsc4py.PETSc.LogEvent-class.html#active
petsc4py.PETSc.LogEvent.name petsc4py.PETSc.LogEvent-class.html#name
petsc4py.PETSc.LogEvent.__long__ petsc4py.PETSc.LogEvent-class.html#__long__
petsc4py.PETSc.LogStage petsc4py.PETSc.LogStage-class.html
petsc4py.PETSc.LogStage.__int__ petsc4py.PETSc.LogStage-class.html#__int__
petsc4py.PETSc.LogStage.activate petsc4py.PETSc.LogStage-class.html#activate
petsc4py.PETSc.LogStage.pop petsc4py.PETSc.LogStage-class.html#pop
petsc4py.PETSc.LogStage.getVisible petsc4py.PETSc.LogStage-class.html#getVisible
petsc4py.PETSc.LogStage.visible petsc4py.PETSc.LogStage-class.html#visible
petsc4py.PETSc.LogStage.id petsc4py.PETSc.LogStage-class.html#id
petsc4py.PETSc.LogStage.__new__ petsc4py.PETSc.LogStage-class.html#__new__
petsc4py.PETSc.LogStage.deactivate petsc4py.PETSc.LogStage-class.html#deactivate
petsc4py.PETSc.LogStage.getName petsc4py.PETSc.LogStage-class.html#getName
petsc4py.PETSc.LogStage.__enter__ petsc4py.PETSc.LogStage-class.html#__enter__
petsc4py.PETSc.LogStage.getActive petsc4py.PETSc.LogStage-class.html#getActive
petsc4py.PETSc.LogStage.setActive petsc4py.PETSc.LogStage-class.html#setActive
petsc4py.PETSc.LogStage.__exit__ petsc4py.PETSc.LogStage-class.html#__exit__
petsc4py.PETSc.LogStage.active petsc4py.PETSc.LogStage-class.html#active
petsc4py.PETSc.LogStage.name petsc4py.PETSc.LogStage-class.html#name
petsc4py.PETSc.LogStage.push petsc4py.PETSc.LogStage-class.html#push
petsc4py.PETSc.LogStage.__long__ petsc4py.PETSc.LogStage-class.html#__long__
petsc4py.PETSc.LogStage.setVisible petsc4py.PETSc.LogStage-class.html#setVisible
petsc4py.PETSc.Mat petsc4py.PETSc.Mat-class.html
petsc4py.PETSc.Mat.setPreallocationCSR petsc4py.PETSc.Mat-class.html#setPreallocationCSR
petsc4py.PETSc.Mat.load petsc4py.PETSc.Mat-class.html#load
petsc4py.PETSc.Mat.getLGMap petsc4py.PETSc.Mat-class.html#getLGMap
petsc4py.PETSc.Mat.setDM petsc4py.PETSc.Mat-class.html#setDM
petsc4py.PETSc.Mat.getOwnershipIS petsc4py.PETSc.Mat-class.html#getOwnershipIS
petsc4py.PETSc.Mat.copy petsc4py.PETSc.Mat-class.html#copy
petsc4py.PETSc.Mat.getNestISs petsc4py.PETSc.Mat-class.html#getNestISs
petsc4py.PETSc.Mat.getOwnershipRangesColumn petsc4py.PETSc.Mat-class.html#getOwnershipRangesColumn
petsc4py.PETSc.Mat.getSize petsc4py.PETSc.Mat-class.html#getSize
petsc4py.PETSc.Mat.getRowIJ petsc4py.PETSc.Mat-class.html#getRowIJ
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Mat.Stencil petsc4py.PETSc._Mat_Stencil-class.html
petsc4py.PETSc.Mat.setValuesBlockedIJV petsc4py.PETSc.Mat-class.html#setValuesBlockedIJV
petsc4py.PETSc.Mat.setDiagonal petsc4py.PETSc.Mat-class.html#setDiagonal
petsc4py.PETSc.Mat.__rdiv__ petsc4py.PETSc.Mat-class.html#__rdiv__
petsc4py.PETSc.Mat.__rmul__ petsc4py.PETSc.Mat-class.html#__rmul__
petsc4py.PETSc.Mat.createAIJCRL petsc4py.PETSc.Mat-class.html#createAIJCRL
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Mat.permute petsc4py.PETSc.Mat-class.html#permute
petsc4py.PETSc.Mat.imagPart petsc4py.PETSc.Mat-class.html#imagPart
petsc4py.PETSc.Mat.multHermitianAdd petsc4py.PETSc.Mat-class.html#multHermitianAdd
petsc4py.PETSc.Mat.setPreallocationDense petsc4py.PETSc.Mat-class.html#setPreallocationDense
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.Mat.setNearNullSpace petsc4py.PETSc.Mat-class.html#setNearNullSpace
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Mat.OrderingType petsc4py.PETSc.Mat.OrderingType-class.html
petsc4py.PETSc.Mat.isHermitianKnown petsc4py.PETSc.Mat-class.html#isHermitianKnown
petsc4py.PETSc.Mat.setPythonContext petsc4py.PETSc.Mat-class.html#setPythonContext
petsc4py.PETSc.Mat.createSBAIJ petsc4py.PETSc.Mat-class.html#createSBAIJ
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Mat.__call__ petsc4py.PETSc.Mat-class.html#__call__
petsc4py.PETSc.Mat.getMumpsRinfog petsc4py.PETSc.Mat-class.html#getMumpsRinfog
petsc4py.PETSc.Mat.norm petsc4py.PETSc.Mat-class.html#norm
petsc4py.PETSc.Mat.setValuesIJV petsc4py.PETSc.Mat-class.html#setValuesIJV
petsc4py.PETSc.Mat.createSubMatrices petsc4py.PETSc.Mat-class.html#createSubMatrices
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Mat.isStructurallySymmetric petsc4py.PETSc.Mat-class.html#isStructurallySymmetric
petsc4py.PETSc.Mat.setOptionsPrefix petsc4py.PETSc.Mat-class.html#setOptionsPrefix
petsc4py.PETSc.Mat.setValuesLocal petsc4py.PETSc.Mat-class.html#setValuesLocal
petsc4py.PETSc.Mat.reorderForNonzeroDiagonal petsc4py.PETSc.Mat-class.html#reorderForNonzeroDiagonal
petsc4py.PETSc.Mat.setSizes petsc4py.PETSc.Mat-class.html#setSizes
petsc4py.PETSc.Mat.factorNumericCholesky petsc4py.PETSc.Mat-class.html#factorNumericCholesky
petsc4py.PETSc.Mat.setBlockSize petsc4py.PETSc.Mat-class.html#setBlockSize
petsc4py.PETSc.Mat.owner_ranges petsc4py.PETSc.Mat-class.html#owner_ranges
petsc4py.PETSc.Mat.getNestSize petsc4py.PETSc.Mat-class.html#getNestSize
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Mat.Option petsc4py.PETSc.Mat.Option-class.html
petsc4py.PETSc.Mat.setFromOptions petsc4py.PETSc.Mat-class.html#setFromOptions
petsc4py.PETSc.Mat.destroy petsc4py.PETSc.Mat-class.html#destroy
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Mat.getVecLeft petsc4py.PETSc.Mat-class.html#getVecLeft
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Mat.__delitem__ petsc4py.PETSc.Mat-class.html#__delitem__
petsc4py.PETSc.Mat.setValueBlockedStagStencil petsc4py.PETSc.Mat-class.html#setValueBlockedStagStencil
petsc4py.PETSc.Mat.realPart petsc4py.PETSc.Mat-class.html#realPart
petsc4py.PETSc.Mat.factorSymbolicLU petsc4py.PETSc.Mat-class.html#factorSymbolicLU
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Mat.isAssembled petsc4py.PETSc.Mat-class.html#isAssembled
petsc4py.PETSc.Mat.isHermitian petsc4py.PETSc.Mat-class.html#isHermitian
petsc4py.PETSc.Mat.factorSymbolicICC petsc4py.PETSc.Mat-class.html#factorSymbolicICC
petsc4py.PETSc.Mat.getInfo petsc4py.PETSc.Mat-class.html#getInfo
petsc4py.PETSc.Mat.assembled petsc4py.PETSc.Mat-class.html#assembled
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Mat.getOwnershipRanges petsc4py.PETSc.Mat-class.html#getOwnershipRanges
petsc4py.PETSc.Mat.retrieveValues petsc4py.PETSc.Mat-class.html#retrieveValues
petsc4py.PETSc.Mat.setUnfactored petsc4py.PETSc.Mat-class.html#setUnfactored
petsc4py.PETSc.Mat.createDense petsc4py.PETSc.Mat-class.html#createDense
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Mat.createNest petsc4py.PETSc.Mat-class.html#createNest
petsc4py.PETSc.Mat.createVecLeft petsc4py.PETSc.Mat-class.html#createVecLeft
petsc4py.PETSc.Mat.isSymmetric petsc4py.PETSc.Mat-class.html#isSymmetric
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Mat.getValuesCSR petsc4py.PETSc.Mat-class.html#getValuesCSR
petsc4py.PETSc.Mat.view petsc4py.PETSc.Mat-class.html#view
petsc4py.PETSc.Mat.setISPreallocation petsc4py.PETSc.Mat-class.html#setISPreallocation
petsc4py.PETSc.Mat.getOrdering petsc4py.PETSc.Mat-class.html#getOrdering
petsc4py.PETSc.Mat.setValuesBlockedLocalRCV petsc4py.PETSc.Mat-class.html#setValuesBlockedLocalRCV
petsc4py.PETSc.Mat.solveForward petsc4py.PETSc.Mat-class.html#solveForward
petsc4py.PETSc.Mat.getISLocalMat petsc4py.PETSc.Mat-class.html#getISLocalMat
petsc4py.PETSc.Mat.createAIJ petsc4py.PETSc.Mat-class.html#createAIJ
petsc4py.PETSc.Mat.__truediv__ petsc4py.PETSc.Mat-class.html#__truediv__
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Mat.getBlockSize petsc4py.PETSc.Mat-class.html#getBlockSize
petsc4py.PETSc.Mat.getNearNullSpace petsc4py.PETSc.Mat-class.html#getNearNullSpace
petsc4py.PETSc.Mat.multHermitian petsc4py.PETSc.Mat-class.html#multHermitian
petsc4py.PETSc.Mat.scale petsc4py.PETSc.Mat-class.html#scale
petsc4py.PETSc.Mat.getTransposeNullSpace petsc4py.PETSc.Mat-class.html#getTransposeNullSpace
petsc4py.PETSc.Mat.setPreallocationNNZ petsc4py.PETSc.Mat-class.html#setPreallocationNNZ
petsc4py.PETSc.Mat.createScatter petsc4py.PETSc.Mat-class.html#createScatter
petsc4py.PETSc.Mat.createVecRight petsc4py.PETSc.Mat-class.html#createVecRight
petsc4py.PETSc.Mat.zeroRowsLocal petsc4py.PETSc.Mat-class.html#zeroRowsLocal
petsc4py.PETSc.Mat.symmetric petsc4py.PETSc.Mat-class.html#symmetric
petsc4py.PETSc.Mat.assemblyEnd petsc4py.PETSc.Mat-class.html#assemblyEnd
petsc4py.PETSc.Mat.isTranspose petsc4py.PETSc.Mat-class.html#isTranspose
petsc4py.PETSc.Mat.createVecs petsc4py.PETSc.Mat-class.html#createVecs
petsc4py.PETSc.Mat.setType petsc4py.PETSc.Mat-class.html#setType
petsc4py.PETSc.Mat.setBlockSizes petsc4py.PETSc.Mat-class.html#setBlockSizes
petsc4py.PETSc.Mat.matTransposeMult petsc4py.PETSc.Mat-class.html#matTransposeMult
petsc4py.PETSc.Mat.getBlockSizes petsc4py.PETSc.Mat-class.html#getBlockSizes
petsc4py.PETSc.Mat.setValue petsc4py.PETSc.Mat-class.html#setValue
petsc4py.PETSc.Mat.getRow petsc4py.PETSc.Mat-class.html#getRow
petsc4py.PETSc.Mat.matMult petsc4py.PETSc.Mat-class.html#matMult
petsc4py.PETSc.Mat.setUp petsc4py.PETSc.Mat-class.html#setUp
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Mat.transpose petsc4py.PETSc.Mat-class.html#transpose
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Mat.createPython petsc4py.PETSc.Mat-class.html#createPython
petsc4py.PETSc.Mat.PtAP petsc4py.PETSc.Mat-class.html#PtAP
petsc4py.PETSc.Mat.getDM petsc4py.PETSc.Mat-class.html#getDM
petsc4py.PETSc.Mat.setISLocalMat petsc4py.PETSc.Mat-class.html#setISLocalMat
petsc4py.PETSc.Mat.__setitem__ petsc4py.PETSc.Mat-class.html#__setitem__
petsc4py.PETSc.Mat.SolverType petsc4py.PETSc.Mat.SolverType-class.html
petsc4py.PETSc.Mat.createLRC petsc4py.PETSc.Mat-class.html#createLRC
petsc4py.PETSc.Mat.assemblyBegin petsc4py.PETSc.Mat-class.html#assemblyBegin
petsc4py.PETSc.Mat.setValuesBlocked petsc4py.PETSc.Mat-class.html#setValuesBlocked
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Mat.assemble petsc4py.PETSc.Mat-class.html#assemble
petsc4py.PETSc.Mat.factorILU petsc4py.PETSc.Mat-class.html#factorILU
petsc4py.PETSc.Mat.owner_range petsc4py.PETSc.Mat-class.html#owner_range
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Mat.convert petsc4py.PETSc.Mat-class.html#convert
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Mat.createSubMatrixVirtual petsc4py.PETSc.Mat-class.html#createSubMatrixVirtual
petsc4py.PETSc.Mat.__imul__ petsc4py.PETSc.Mat-class.html#__imul__
petsc4py.PETSc.Mat.getLocalSize petsc4py.PETSc.Mat-class.html#getLocalSize
petsc4py.PETSc.Mat.zeroRowsColumnsLocal petsc4py.PETSc.Mat-class.html#zeroRowsColumnsLocal
petsc4py.PETSc.Mat.shift petsc4py.PETSc.Mat-class.html#shift
petsc4py.PETSc.Mat.getColumnVector petsc4py.PETSc.Mat-class.html#getColumnVector
petsc4py.PETSc.Mat.getLocalSubMatrix petsc4py.PETSc.Mat-class.html#getLocalSubMatrix
petsc4py.PETSc.Mat.local_size petsc4py.PETSc.Mat-class.html#local_size
petsc4py.PETSc.Mat.getPythonContext petsc4py.PETSc.Mat-class.html#getPythonContext
petsc4py.PETSc.Mat.setValueStagStencil petsc4py.PETSc.Mat-class.html#setValueStagStencil
petsc4py.PETSc.Mat.chop petsc4py.PETSc.Mat-class.html#chop
petsc4py.PETSc.Mat.setValueLocal petsc4py.PETSc.Mat-class.html#setValueLocal
petsc4py.PETSc.Mat.setMumpsCntl petsc4py.PETSc.Mat-class.html#setMumpsCntl
petsc4py.PETSc.Mat.__mul__ petsc4py.PETSc.Mat-class.html#__mul__
petsc4py.PETSc.Mat.factorCholesky petsc4py.PETSc.Mat-class.html#factorCholesky
petsc4py.PETSc.Mat.getDiagonalBlock petsc4py.PETSc.Mat-class.html#getDiagonalBlock
petsc4py.PETSc.Mat.solveBackward petsc4py.PETSc.Mat-class.html#solveBackward
petsc4py.PETSc.Mat.getVecRight petsc4py.PETSc.Mat-class.html#getVecRight
petsc4py.PETSc.Mat.setValuesBlockedLocalIJV petsc4py.PETSc.Mat-class.html#setValuesBlockedLocalIJV
petsc4py.PETSc.Mat.createNormal petsc4py.PETSc.Mat-class.html#createNormal
petsc4py.PETSc.Mat.setNullSpace petsc4py.PETSc.Mat-class.html#setNullSpace
petsc4py.PETSc.Mat.getColumnIJ petsc4py.PETSc.Mat-class.html#getColumnIJ
petsc4py.PETSc.Mat.zeroRows petsc4py.PETSc.Mat-class.html#zeroRows
petsc4py.PETSc.Mat.matSolve petsc4py.PETSc.Mat-class.html#matSolve
petsc4py.PETSc.Mat.diagonalScale petsc4py.PETSc.Mat-class.html#diagonalScale
petsc4py.PETSc.Mat.block_sizes petsc4py.PETSc.Mat-class.html#block_sizes
petsc4py.PETSc.Mat.FactorShiftType petsc4py.PETSc.Mat.FactorShiftType-class.html
petsc4py.PETSc.Mat.setStencil petsc4py.PETSc.Mat-class.html#setStencil
petsc4py.PETSc.Mat.hermitian petsc4py.PETSc.Mat-class.html#hermitian
petsc4py.PETSc.Mat.__rsub__ petsc4py.PETSc.Mat-class.html#__rsub__
petsc4py.PETSc.Mat.setValuesRCV petsc4py.PETSc.Mat-class.html#setValuesRCV
petsc4py.PETSc.Mat.block_size petsc4py.PETSc.Mat-class.html#block_size
petsc4py.PETSc.Mat.getValues petsc4py.PETSc.Mat-class.html#getValues
petsc4py.PETSc.Mat.isSymmetricKnown petsc4py.PETSc.Mat-class.html#isSymmetricKnown
petsc4py.PETSc.Mat.size petsc4py.PETSc.Mat-class.html#size
petsc4py.PETSc.Mat.invertBlockDiagonal petsc4py.PETSc.Mat-class.html#invertBlockDiagonal
petsc4py.PETSc.Mat.setTransposeNullSpace petsc4py.PETSc.Mat-class.html#setTransposeNullSpace
petsc4py.PETSc.Mat.AssemblyType petsc4py.PETSc.Mat.AssemblyType-class.html
petsc4py.PETSc.Mat.create petsc4py.PETSc.Mat-class.html#create
petsc4py.PETSc.Mat.factorICC petsc4py.PETSc.Mat-class.html#factorICC
petsc4py.PETSc.Mat.SORType petsc4py.PETSc.Mat.SORType-class.html
petsc4py.PETSc.Mat.duplicate petsc4py.PETSc.Mat-class.html#duplicate
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Mat.mult petsc4py.PETSc.Mat-class.html#mult
petsc4py.PETSc.Mat.factorSymbolicILU petsc4py.PETSc.Mat-class.html#factorSymbolicILU
petsc4py.PETSc.Mat.getMumpsCntl petsc4py.PETSc.Mat-class.html#getMumpsCntl
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Mat.__itruediv__ petsc4py.PETSc.Mat-class.html#__itruediv__
petsc4py.PETSc.Mat.__isub__ petsc4py.PETSc.Mat-class.html#__isub__
petsc4py.PETSc.Mat.multTranspose petsc4py.PETSc.Mat-class.html#multTranspose
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Mat.setLGMap petsc4py.PETSc.Mat-class.html#setLGMap
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Mat.aypx petsc4py.PETSc.Mat-class.html#aypx
petsc4py.PETSc.Mat.getMumpsInfo petsc4py.PETSc.Mat-class.html#getMumpsInfo
petsc4py.PETSc.Mat.getType petsc4py.PETSc.Mat-class.html#getType
petsc4py.PETSc.Mat.setValuesBlockedRCV petsc4py.PETSc.Mat-class.html#setValuesBlockedRCV
petsc4py.PETSc.Mat.createAIJWithArrays petsc4py.PETSc.Mat-class.html#createAIJWithArrays
petsc4py.PETSc.Mat.getNullSpace petsc4py.PETSc.Mat-class.html#getNullSpace
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Mat.setValuesLocalIJV petsc4py.PETSc.Mat-class.html#setValuesLocalIJV
petsc4py.PETSc.Mat.solveTranspose petsc4py.PETSc.Mat-class.html#solveTranspose
petsc4py.PETSc.Mat.setValues petsc4py.PETSc.Mat-class.html#setValues
petsc4py.PETSc.Mat.setValuesLocalRCV petsc4py.PETSc.Mat-class.html#setValuesLocalRCV
petsc4py.PETSc.Mat.increaseOverlap petsc4py.PETSc.Mat-class.html#increaseOverlap
petsc4py.PETSc.Mat.getMumpsIcntl petsc4py.PETSc.Mat-class.html#getMumpsIcntl
petsc4py.PETSc.Mat.getDenseLocalMatrix petsc4py.PETSc.Mat-class.html#getDenseLocalMatrix
petsc4py.PETSc.Mat.setMumpsIcntl petsc4py.PETSc.Mat-class.html#setMumpsIcntl
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.Mat.getNestSubMatrix petsc4py.PETSc.Mat-class.html#getNestSubMatrix
petsc4py.PETSc.Mat.getDiagonal petsc4py.PETSc.Mat-class.html#getDiagonal
petsc4py.PETSc.Mat.factorSymbolicCholesky petsc4py.PETSc.Mat-class.html#factorSymbolicCholesky
petsc4py.PETSc.Mat.setValueStencil petsc4py.PETSc.Mat-class.html#setValueStencil
petsc4py.PETSc.Mat.__iadd__ petsc4py.PETSc.Mat-class.html#__iadd__
petsc4py.PETSc.Mat.getValue petsc4py.PETSc.Mat-class.html#getValue
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Mat.getDenseArray petsc4py.PETSc.Mat-class.html#getDenseArray
petsc4py.PETSc.Mat.solveTransposeAdd petsc4py.PETSc.Mat-class.html#solveTransposeAdd
petsc4py.PETSc.Mat.transposeMatMult petsc4py.PETSc.Mat-class.html#transposeMatMult
petsc4py.PETSc.Mat.getRowSum petsc4py.PETSc.Mat-class.html#getRowSum
petsc4py.PETSc.Mat.__sub__ petsc4py.PETSc.Mat-class.html#__sub__
petsc4py.PETSc.Mat.structsymm petsc4py.PETSc.Mat-class.html#structsymm
petsc4py.PETSc.Mat.getRedundantMatrix petsc4py.PETSc.Mat-class.html#getRedundantMatrix
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Mat.__rtruediv__ petsc4py.PETSc.Mat-class.html#__rtruediv__
petsc4py.PETSc.Mat.zeroEntries petsc4py.PETSc.Mat-class.html#zeroEntries
petsc4py.PETSc.Mat.equal petsc4py.PETSc.Mat-class.html#equal
petsc4py.PETSc.Mat.multTransposeAdd petsc4py.PETSc.Mat-class.html#multTransposeAdd
petsc4py.PETSc.Mat.conjugate petsc4py.PETSc.Mat-class.html#conjugate
petsc4py.PETSc.Mat.getOptionsPrefix petsc4py.PETSc.Mat-class.html#getOptionsPrefix
petsc4py.PETSc.Mat.factorNumericLU petsc4py.PETSc.Mat-class.html#factorNumericLU
petsc4py.PETSc.Mat.axpy petsc4py.PETSc.Mat-class.html#axpy
petsc4py.PETSc.Mat.setValuesBlockedCSR petsc4py.PETSc.Mat-class.html#setValuesBlockedCSR
petsc4py.PETSc.Mat.setValuesBlockedLocal petsc4py.PETSc.Mat-class.html#setValuesBlockedLocal
petsc4py.PETSc.Mat.setValuesLocalCSR petsc4py.PETSc.Mat-class.html#setValuesLocalCSR
petsc4py.PETSc.Mat.Type petsc4py.PETSc.Mat.Type-class.html
petsc4py.PETSc.Mat.setOption petsc4py.PETSc.Mat-class.html#setOption
petsc4py.PETSc.Mat.__div__ petsc4py.PETSc.Mat-class.html#__div__
petsc4py.PETSc.Mat.fixISLocalEmpty petsc4py.PETSc.Mat-class.html#fixISLocalEmpty
petsc4py.PETSc.Mat.__pos__ petsc4py.PETSc.Mat-class.html#__pos__
petsc4py.PETSc.Mat.SOR petsc4py.PETSc.Mat-class.html#SOR
petsc4py.PETSc.Mat.sizes petsc4py.PETSc.Mat-class.html#sizes
petsc4py.PETSc.Mat.createTranspose petsc4py.PETSc.Mat-class.html#createTranspose
petsc4py.PETSc.Mat.setValueBlockedStencil petsc4py.PETSc.Mat-class.html#setValueBlockedStencil
petsc4py.PETSc.Mat.getNestLocalISs petsc4py.PETSc.Mat-class.html#getNestLocalISs
petsc4py.PETSc.Mat.getOwnershipRangeColumn petsc4py.PETSc.Mat-class.html#getOwnershipRangeColumn
petsc4py.PETSc.Mat.setValuesBlockedLocalCSR petsc4py.PETSc.Mat-class.html#setValuesBlockedLocalCSR
petsc4py.PETSc.Mat.Structure petsc4py.PETSc.Mat.Structure-class.html
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Mat.factorLU petsc4py.PETSc.Mat-class.html#factorLU
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Mat.getMumpsRinfo petsc4py.PETSc.Mat-class.html#getMumpsRinfo
petsc4py.PETSc.Mat.InfoType petsc4py.PETSc.Mat.InfoType-class.html
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Mat.__idiv__ petsc4py.PETSc.Mat-class.html#__idiv__
petsc4py.PETSc.Mat.getOwnershipRange petsc4py.PETSc.Mat-class.html#getOwnershipRange
petsc4py.PETSc.Mat.createBAIJ petsc4py.PETSc.Mat-class.html#createBAIJ
petsc4py.PETSc.Mat.__add__ petsc4py.PETSc.Mat-class.html#__add__
petsc4py.PETSc.Mat.solveAdd petsc4py.PETSc.Mat-class.html#solveAdd
petsc4py.PETSc.Mat.getSizes petsc4py.PETSc.Mat-class.html#getSizes
petsc4py.PETSc.Mat.__new__ petsc4py.PETSc.Mat-class.html#__new__
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.Mat.setPythonType petsc4py.PETSc.Mat-class.html#setPythonType
petsc4py.PETSc.Mat.__radd__ petsc4py.PETSc.Mat-class.html#__radd__
petsc4py.PETSc.Mat.restoreISLocalMat petsc4py.PETSc.Mat-class.html#restoreISLocalMat
petsc4py.PETSc.Mat.getMumpsInfog petsc4py.PETSc.Mat-class.html#getMumpsInfog
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Mat.storeValues petsc4py.PETSc.Mat-class.html#storeValues
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.Mat.createSubMatrix petsc4py.PETSc.Mat-class.html#createSubMatrix
petsc4py.PETSc.Mat.__getitem__ petsc4py.PETSc.Mat-class.html#__getitem__
petsc4py.PETSc.Mat.solve petsc4py.PETSc.Mat-class.html#solve
petsc4py.PETSc.Mat.__neg__ petsc4py.PETSc.Mat-class.html#__neg__
petsc4py.PETSc.Mat.getVecs petsc4py.PETSc.Mat-class.html#getVecs
petsc4py.PETSc.Mat.zeroRowsColumns petsc4py.PETSc.Mat-class.html#zeroRowsColumns
petsc4py.PETSc.Mat.multAdd petsc4py.PETSc.Mat-class.html#multAdd
petsc4py.PETSc.Mat.getInertia petsc4py.PETSc.Mat-class.html#getInertia
petsc4py.PETSc.Mat.setValuesCSR petsc4py.PETSc.Mat-class.html#setValuesCSR
petsc4py.PETSc.Mat.getLRCMats petsc4py.PETSc.Mat-class.html#getLRCMats
petsc4py.PETSc.Mat.restoreLocalSubMatrix petsc4py.PETSc.Mat-class.html#restoreLocalSubMatrix
petsc4py.PETSc.Mat.AssemblyType petsc4py.PETSc.Mat.AssemblyType-class.html
petsc4py.PETSc.Mat.AssemblyType.FINAL_ASSEMBLY petsc4py.PETSc.Mat.AssemblyType-class.html#FINAL_ASSEMBLY
petsc4py.PETSc.Mat.AssemblyType.__qualname__ petsc4py.PETSc.Mat.AssemblyType-class.html#__qualname__
petsc4py.PETSc.Mat.AssemblyType.FLUSH_ASSEMBLY petsc4py.PETSc.Mat.AssemblyType-class.html#FLUSH_ASSEMBLY
petsc4py.PETSc.Mat.AssemblyType.FLUSH petsc4py.PETSc.Mat.AssemblyType-class.html#FLUSH
petsc4py.PETSc.Mat.AssemblyType.FINAL petsc4py.PETSc.Mat.AssemblyType-class.html#FINAL
petsc4py.PETSc.Mat.FactorShiftType petsc4py.PETSc.Mat.FactorShiftType-class.html
petsc4py.PETSc.Mat.FactorShiftType.NONZERO petsc4py.PETSc.Mat.FactorShiftType-class.html#NONZERO
petsc4py.PETSc.Mat.FactorShiftType.POSITIVE_DEFINITE petsc4py.PETSc.Mat.FactorShiftType-class.html#POSITIVE_DEFINITE
petsc4py.PETSc.Mat.FactorShiftType.NONE petsc4py.PETSc.Mat.FactorShiftType-class.html#NONE
petsc4py.PETSc.Mat.FactorShiftType.__qualname__ petsc4py.PETSc.Mat.FactorShiftType-class.html#__qualname__
petsc4py.PETSc.Mat.FactorShiftType.NZ petsc4py.PETSc.Mat.FactorShiftType-class.html#NZ
petsc4py.PETSc.Mat.FactorShiftType.PD petsc4py.PETSc.Mat.FactorShiftType-class.html#PD
petsc4py.PETSc.Mat.FactorShiftType.INBLOCKS petsc4py.PETSc.Mat.FactorShiftType-class.html#INBLOCKS
petsc4py.PETSc.Mat.InfoType petsc4py.PETSc.Mat.InfoType-class.html
petsc4py.PETSc.Mat.InfoType.GLOBAL_SUM petsc4py.PETSc.Mat.InfoType-class.html#GLOBAL_SUM
petsc4py.PETSc.Mat.InfoType.__qualname__ petsc4py.PETSc.Mat.InfoType-class.html#__qualname__
petsc4py.PETSc.Mat.InfoType.GLOBAL_MAX petsc4py.PETSc.Mat.InfoType-class.html#GLOBAL_MAX
petsc4py.PETSc.Mat.InfoType.LOCAL petsc4py.PETSc.Mat.InfoType-class.html#LOCAL
petsc4py.PETSc.Mat.Option petsc4py.PETSc.Mat.Option-class.html
petsc4py.PETSc.Mat.Option.IGNORE_OFF_PROC_ENTRIES petsc4py.PETSc.Mat.Option-class.html#IGNORE_OFF_PROC_ENTRIES
petsc4py.PETSc.Mat.Option.IGNORE_ZERO_ENTRIES petsc4py.PETSc.Mat.Option-class.html#IGNORE_ZERO_ENTRIES
petsc4py.PETSc.Mat.Option.SYMMETRIC petsc4py.PETSc.Mat.Option-class.html#SYMMETRIC
petsc4py.PETSc.Mat.Option.NEW_DIAGONALS petsc4py.PETSc.Mat.Option-class.html#NEW_DIAGONALS
petsc4py.PETSc.Mat.Option.SUBMAT_SINGLEIS petsc4py.PETSc.Mat.Option-class.html#SUBMAT_SINGLEIS
petsc4py.PETSc.Mat.Option.ROW_ORIENTED petsc4py.PETSc.Mat.Option-class.html#ROW_ORIENTED
petsc4py.PETSc.Mat.Option.OPTION_MIN petsc4py.PETSc.Mat.Option-class.html#OPTION_MIN
petsc4py.PETSc.Mat.Option.NEW_NONZERO_LOCATION_ERR petsc4py.PETSc.Mat.Option-class.html#NEW_NONZERO_LOCATION_ERR
petsc4py.PETSc.Mat.Option.USE_HASH_TABLE petsc4py.PETSc.Mat.Option-class.html#USE_HASH_TABLE
petsc4py.PETSc.Mat.Option.SPD petsc4py.PETSc.Mat.Option-class.html#SPD
petsc4py.PETSc.Mat.Option.STRUCTURALLY_SYMMETRIC petsc4py.PETSc.Mat.Option-class.html#STRUCTURALLY_SYMMETRIC
petsc4py.PETSc.Mat.Option.KEEP_NONZERO_PATTERN petsc4py.PETSc.Mat.Option-class.html#KEEP_NONZERO_PATTERN
petsc4py.PETSc.Mat.Option.USE_INODES petsc4py.PETSc.Mat.Option-class.html#USE_INODES
petsc4py.PETSc.Mat.Option.SYMMETRY_ETERNAL petsc4py.PETSc.Mat.Option-class.html#SYMMETRY_ETERNAL
petsc4py.PETSc.Mat.Option.NEW_NONZERO_LOCATIONS petsc4py.PETSc.Mat.Option-class.html#NEW_NONZERO_LOCATIONS
petsc4py.PETSc.Mat.Option.ERROR_LOWER_TRIANGULAR petsc4py.PETSc.Mat.Option-class.html#ERROR_LOWER_TRIANGULAR
petsc4py.PETSc.Mat.Option.OPTION_MAX petsc4py.PETSc.Mat.Option-class.html#OPTION_MAX
petsc4py.PETSc.Mat.Option.SUBSET_OFF_PROC_ENTRIES petsc4py.PETSc.Mat.Option-class.html#SUBSET_OFF_PROC_ENTRIES
petsc4py.PETSc.Mat.Option.SORTED_FULL petsc4py.PETSc.Mat.Option-class.html#SORTED_FULL
petsc4py.PETSc.Mat.Option.IGNORE_LOWER_TRIANGULAR petsc4py.PETSc.Mat.Option-class.html#IGNORE_LOWER_TRIANGULAR
petsc4py.PETSc.Mat.Option.NO_OFF_PROC_ENTRIES petsc4py.PETSc.Mat.Option-class.html#NO_OFF_PROC_ENTRIES
petsc4py.PETSc.Mat.Option.UNUSED_NONZERO_LOCATION_ERR petsc4py.PETSc.Mat.Option-class.html#UNUSED_NONZERO_LOCATION_ERR
petsc4py.PETSc.Mat.Option.NEW_NONZERO_ALLOCATION_ERR petsc4py.PETSc.Mat.Option-class.html#NEW_NONZERO_ALLOCATION_ERR
petsc4py.PETSc.Mat.Option.__qualname__ petsc4py.PETSc.Mat.Option-class.html#__qualname__
petsc4py.PETSc.Mat.Option.HERMITIAN petsc4py.PETSc.Mat.Option-class.html#HERMITIAN
petsc4py.PETSc.Mat.Option.GETROW_UPPERTRIANGULAR petsc4py.PETSc.Mat.Option-class.html#GETROW_UPPERTRIANGULAR
petsc4py.PETSc.Mat.Option.STRUCTURE_ONLY petsc4py.PETSc.Mat.Option-class.html#STRUCTURE_ONLY
petsc4py.PETSc.Mat.Option.NO_OFF_PROC_ZERO_ROWS petsc4py.PETSc.Mat.Option-class.html#NO_OFF_PROC_ZERO_ROWS
petsc4py.PETSc.Mat.OrderingType petsc4py.PETSc.Mat.OrderingType-class.html
petsc4py.PETSc.Mat.OrderingType.RCM petsc4py.PETSc.Mat.OrderingType-class.html#RCM
petsc4py.PETSc.Mat.OrderingType.WBM petsc4py.PETSc.Mat.OrderingType-class.html#WBM
petsc4py.PETSc.Mat.OrderingType.SPECTRAL petsc4py.PETSc.Mat.OrderingType-class.html#SPECTRAL
petsc4py.PETSc.Mat.OrderingType.OWD petsc4py.PETSc.Mat.OrderingType-class.html#OWD
petsc4py.PETSc.Mat.OrderingType.ND petsc4py.PETSc.Mat.OrderingType-class.html#ND
petsc4py.PETSc.Mat.OrderingType.AMD petsc4py.PETSc.Mat.OrderingType-class.html#AMD
petsc4py.PETSc.Mat.OrderingType.QMD petsc4py.PETSc.Mat.OrderingType-class.html#QMD
petsc4py.PETSc.Mat.OrderingType.ROWLENGTH petsc4py.PETSc.Mat.OrderingType-class.html#ROWLENGTH
petsc4py.PETSc.Mat.OrderingType.NATURAL petsc4py.PETSc.Mat.OrderingType-class.html#NATURAL
petsc4py.PETSc.Mat.OrderingType.__qualname__ petsc4py.PETSc.Mat.OrderingType-class.html#__qualname__
petsc4py.PETSc.Mat.SORType petsc4py.PETSc.Mat.SORType-class.html
petsc4py.PETSc.Mat.SORType.APPLY_LOWER petsc4py.PETSc.Mat.SORType-class.html#APPLY_LOWER
petsc4py.PETSc.Mat.SORType.ZERO_INITIAL_GUESS petsc4py.PETSc.Mat.SORType-class.html#ZERO_INITIAL_GUESS
petsc4py.PETSc.Mat.SORType.EISENSTAT petsc4py.PETSc.Mat.SORType-class.html#EISENSTAT
petsc4py.PETSc.Mat.SORType.SYMMETRY_SWEEP petsc4py.PETSc.Mat.SORType-class.html#SYMMETRY_SWEEP
petsc4py.PETSc.Mat.SORType.APPLY_UPPER petsc4py.PETSc.Mat.SORType-class.html#APPLY_UPPER
petsc4py.PETSc.Mat.SORType.LOCAL_SYMMETRIC_SWEEP petsc4py.PETSc.Mat.SORType-class.html#LOCAL_SYMMETRIC_SWEEP
petsc4py.PETSc.Mat.SORType.LOCAL_FORWARD_SWEEP petsc4py.PETSc.Mat.SORType-class.html#LOCAL_FORWARD_SWEEP
petsc4py.PETSc.Mat.SORType.FORWARD_SWEEP petsc4py.PETSc.Mat.SORType-class.html#FORWARD_SWEEP
petsc4py.PETSc.Mat.SORType.BACKWARD_SWEEP petsc4py.PETSc.Mat.SORType-class.html#BACKWARD_SWEEP
petsc4py.PETSc.Mat.SORType.__qualname__ petsc4py.PETSc.Mat.SORType-class.html#__qualname__
petsc4py.PETSc.Mat.SORType.LOCAL_BACKWARD_SWEEP petsc4py.PETSc.Mat.SORType-class.html#LOCAL_BACKWARD_SWEEP
petsc4py.PETSc.Mat.SolverType petsc4py.PETSc.Mat.SolverType-class.html
petsc4py.PETSc.Mat.SolverType.PASTIX petsc4py.PETSc.Mat.SolverType-class.html#PASTIX
petsc4py.PETSc.Mat.SolverType.BAS petsc4py.PETSc.Mat.SolverType-class.html#BAS
petsc4py.PETSc.Mat.SolverType.SUPERLU_DIST petsc4py.PETSc.Mat.SolverType-class.html#SUPERLU_DIST
petsc4py.PETSc.Mat.SolverType.SCALAPACK petsc4py.PETSc.Mat.SolverType-class.html#SCALAPACK
petsc4py.PETSc.Mat.SolverType.SUPERLU petsc4py.PETSc.Mat.SolverType-class.html#SUPERLU
petsc4py.PETSc.Mat.SolverType.UMFPACK petsc4py.PETSc.Mat.SolverType-class.html#UMFPACK
petsc4py.PETSc.Mat.SolverType.CUDA petsc4py.PETSc.Mat.SolverType-class.html#CUDA
petsc4py.PETSc.Mat.SolverType.SPARSEELEMENTAL petsc4py.PETSc.Mat.SolverType-class.html#SPARSEELEMENTAL
petsc4py.PETSc.Mat.SolverType.MATLAB petsc4py.PETSc.Mat.SolverType-class.html#MATLAB
petsc4py.PETSc.Mat.SolverType.MKL_CPARDISO petsc4py.PETSc.Mat.SolverType-class.html#MKL_CPARDISO
petsc4py.PETSc.Mat.SolverType.ELEMENTAL petsc4py.PETSc.Mat.SolverType-class.html#ELEMENTAL
petsc4py.PETSc.Mat.SolverType.PETSC petsc4py.PETSc.Mat.SolverType-class.html#PETSC
petsc4py.PETSc.Mat.SolverType.KLU petsc4py.PETSc.Mat.SolverType-class.html#KLU
petsc4py.PETSc.Mat.SolverType.MUMPS petsc4py.PETSc.Mat.SolverType-class.html#MUMPS
petsc4py.PETSc.Mat.SolverType.MKL_PARDISO petsc4py.PETSc.Mat.SolverType-class.html#MKL_PARDISO
petsc4py.PETSc.Mat.SolverType.ESSL petsc4py.PETSc.Mat.SolverType-class.html#ESSL
petsc4py.PETSc.Mat.SolverType.LUSOL petsc4py.PETSc.Mat.SolverType-class.html#LUSOL
petsc4py.PETSc.Mat.SolverType.STRUMPACK petsc4py.PETSc.Mat.SolverType-class.html#STRUMPACK
petsc4py.PETSc.Mat.SolverType.__qualname__ petsc4py.PETSc.Mat.SolverType-class.html#__qualname__
petsc4py.PETSc.Mat.SolverType.CHOLMOD petsc4py.PETSc.Mat.SolverType-class.html#CHOLMOD
petsc4py.PETSc.Mat.SolverType.CUSPARSE petsc4py.PETSc.Mat.SolverType-class.html#CUSPARSE
petsc4py.PETSc.Mat.Structure petsc4py.PETSc.Mat.Structure-class.html
petsc4py.PETSc.Mat.Structure.SUBSET petsc4py.PETSc.Mat.Structure-class.html#SUBSET
petsc4py.PETSc.Mat.Structure.SAME_NZ petsc4py.PETSc.Mat.Structure-class.html#SAME_NZ
petsc4py.PETSc.Mat.Structure.SUBSET_NZ petsc4py.PETSc.Mat.Structure-class.html#SUBSET_NZ
petsc4py.PETSc.Mat.Structure.DIFFERENT petsc4py.PETSc.Mat.Structure-class.html#DIFFERENT
petsc4py.PETSc.Mat.Structure.DIFFERENT_NZ petsc4py.PETSc.Mat.Structure-class.html#DIFFERENT_NZ
petsc4py.PETSc.Mat.Structure.SAME_NONZERO_PATTERN petsc4py.PETSc.Mat.Structure-class.html#SAME_NONZERO_PATTERN
petsc4py.PETSc.Mat.Structure.DIFFERENT_NONZERO_PATTERN petsc4py.PETSc.Mat.Structure-class.html#DIFFERENT_NONZERO_PATTERN
petsc4py.PETSc.Mat.Structure.SAME petsc4py.PETSc.Mat.Structure-class.html#SAME
petsc4py.PETSc.Mat.Structure.__qualname__ petsc4py.PETSc.Mat.Structure-class.html#__qualname__
petsc4py.PETSc.Mat.Structure.SUBSET_NONZERO_PATTERN petsc4py.PETSc.Mat.Structure-class.html#SUBSET_NONZERO_PATTERN
petsc4py.PETSc.Mat.Type petsc4py.PETSc.Mat.Type-class.html
petsc4py.PETSc.Mat.Type.HYPRE petsc4py.PETSc.Mat.Type-class.html#HYPRE
petsc4py.PETSc.Mat.Type.MPIAIJCUSPARSE petsc4py.PETSc.Mat.Type-class.html#MPIAIJCUSPARSE
petsc4py.PETSc.Mat.Type.MPISBAIJ petsc4py.PETSc.Mat.Type-class.html#MPISBAIJ
petsc4py.PETSc.Mat.Type.LMVMDIAGBBROYDEN petsc4py.PETSc.Mat.Type-class.html#LMVMDIAGBBROYDEN
petsc4py.PETSc.Mat.Type.BAIJMKL petsc4py.PETSc.Mat.Type-class.html#BAIJMKL
petsc4py.PETSc.Mat.Type.SHELL petsc4py.PETSc.Mat.Type-class.html#SHELL
petsc4py.PETSc.Mat.Type.SUBMATRIX petsc4py.PETSc.Mat.Type-class.html#SUBMATRIX
petsc4py.PETSc.Mat.Type.TRANSPOSEMAT petsc4py.PETSc.Mat.Type-class.html#TRANSPOSEMAT
petsc4py.PETSc.Mat.Type.CONSTANTDIAGONAL petsc4py.PETSc.Mat.Type-class.html#CONSTANTDIAGONAL
petsc4py.PETSc.Mat.Type.MPIAIJ petsc4py.PETSc.Mat.Type-class.html#MPIAIJ
petsc4py.PETSc.Mat.Type.LMVMSR1 petsc4py.PETSc.Mat.Type-class.html#LMVMSR1
petsc4py.PETSc.Mat.Type.FFT petsc4py.PETSc.Mat.Type-class.html#FFT
petsc4py.PETSc.Mat.Type.__qualname__ petsc4py.PETSc.Mat.Type-class.html#__qualname__
petsc4py.PETSc.Mat.Type.AIJSELL petsc4py.PETSc.Mat.Type-class.html#AIJSELL
petsc4py.PETSc.Mat.Type.SEQMAIJ petsc4py.PETSc.Mat.Type-class.html#SEQMAIJ
petsc4py.PETSc.Mat.Type.MAIJ petsc4py.PETSc.Mat.Type-class.html#MAIJ
petsc4py.PETSc.Mat.Type.SEQAIJ petsc4py.PETSc.Mat.Type-class.html#SEQAIJ
petsc4py.PETSc.Mat.Type.NORMAL petsc4py.PETSc.Mat.Type-class.html#NORMAL
petsc4py.PETSc.Mat.Type.MPIAIJMKL petsc4py.PETSc.Mat.Type-class.html#MPIAIJMKL
petsc4py.PETSc.Mat.Type.NEST petsc4py.PETSc.Mat.Type-class.html#NEST
petsc4py.PETSc.Mat.Type.AIJCUSPARSE petsc4py.PETSc.Mat.Type-class.html#AIJCUSPARSE
petsc4py.PETSc.Mat.Type.MPIAIJSELL petsc4py.PETSc.Mat.Type-class.html#MPIAIJSELL
petsc4py.PETSc.Mat.Type.MPISELL petsc4py.PETSc.Mat.Type-class.html#MPISELL
petsc4py.PETSc.Mat.Type.SCATTER petsc4py.PETSc.Mat.Type-class.html#SCATTER
petsc4py.PETSc.Mat.Type.LMVMBROYDEN petsc4py.PETSc.Mat.Type-class.html#LMVMBROYDEN
petsc4py.PETSc.Mat.Type.AIJPERM petsc4py.PETSc.Mat.Type-class.html#AIJPERM
petsc4py.PETSc.Mat.Type.SBAIJ petsc4py.PETSc.Mat.Type-class.html#SBAIJ
petsc4py.PETSc.Mat.Type.LMVMBFGS petsc4py.PETSc.Mat.Type-class.html#LMVMBFGS
petsc4py.PETSc.Mat.Type.SEQSBAIJ petsc4py.PETSc.Mat.Type-class.html#SEQSBAIJ
petsc4py.PETSc.Mat.Type.MPIAIJPERM petsc4py.PETSc.Mat.Type-class.html#MPIAIJPERM
petsc4py.PETSc.Mat.Type.LOCALREF petsc4py.PETSc.Mat.Type-class.html#LOCALREF
petsc4py.PETSc.Mat.Type.LRC petsc4py.PETSc.Mat.Type-class.html#LRC
petsc4py.PETSc.Mat.Type.BLOCKMAT petsc4py.PETSc.Mat.Type-class.html#BLOCKMAT
petsc4py.PETSc.Mat.Type.COMPOSITE petsc4py.PETSc.Mat.Type-class.html#COMPOSITE
petsc4py.PETSc.Mat.Type.MPIKAIJ petsc4py.PETSc.Mat.Type-class.html#MPIKAIJ
petsc4py.PETSc.Mat.Type.AIJVIENNACL petsc4py.PETSc.Mat.Type-class.html#AIJVIENNACL
petsc4py.PETSc.Mat.Type.LMVMSYMBROYDEN petsc4py.PETSc.Mat.Type-class.html#LMVMSYMBROYDEN
petsc4py.PETSc.Mat.Type.HARA petsc4py.PETSc.Mat.Type-class.html#HARA
petsc4py.PETSc.Mat.Type.SEQAIJCRL petsc4py.PETSc.Mat.Type-class.html#SEQAIJCRL
petsc4py.PETSc.Mat.Type.MPIAIJVIENNACL petsc4py.PETSc.Mat.Type-class.html#MPIAIJVIENNACL
petsc4py.PETSc.Mat.Type.HYPRESTRUCT petsc4py.PETSc.Mat.Type-class.html#HYPRESTRUCT
petsc4py.PETSc.Mat.Type.SEQKAIJ petsc4py.PETSc.Mat.Type-class.html#SEQKAIJ
petsc4py.PETSc.Mat.Type.MPIADJ petsc4py.PETSc.Mat.Type-class.html#MPIADJ
petsc4py.PETSc.Mat.Type.KAIJ petsc4py.PETSc.Mat.Type-class.html#KAIJ
petsc4py.PETSc.Mat.Type.MPIDENSE petsc4py.PETSc.Mat.Type-class.html#MPIDENSE
petsc4py.PETSc.Mat.Type.MPIBAIJMKL petsc4py.PETSc.Mat.Type-class.html#MPIBAIJMKL
petsc4py.PETSc.Mat.Type.DUMMY petsc4py.PETSc.Mat.Type-class.html#DUMMY
petsc4py.PETSc.Mat.Type.AIJMKL petsc4py.PETSc.Mat.Type-class.html#AIJMKL
petsc4py.PETSc.Mat.Type.DENSE petsc4py.PETSc.Mat.Type-class.html#DENSE
petsc4py.PETSc.Mat.Type.ELEMENTAL petsc4py.PETSc.Mat.Type-class.html#ELEMENTAL
petsc4py.PETSc.Mat.Type.LMVMDFP petsc4py.PETSc.Mat.Type-class.html#LMVMDFP
petsc4py.PETSc.Mat.Type.HYPRESSTRUCT petsc4py.PETSc.Mat.Type-class.html#HYPRESSTRUCT
petsc4py.PETSc.Mat.Type.SEQSELL petsc4py.PETSc.Mat.Type-class.html#SEQSELL
petsc4py.PETSc.Mat.Type.SEQBAIJ petsc4py.PETSc.Mat.Type-class.html#SEQBAIJ
petsc4py.PETSc.Mat.Type.SEQAIJPERM petsc4py.PETSc.Mat.Type-class.html#SEQAIJPERM
petsc4py.PETSc.Mat.Type.FFTW petsc4py.PETSc.Mat.Type-class.html#FFTW
petsc4py.PETSc.Mat.Type.MFFD petsc4py.PETSc.Mat.Type-class.html#MFFD
petsc4py.PETSc.Mat.Type.SCHURCOMPLEMENT petsc4py.PETSc.Mat.Type-class.html#SCHURCOMPLEMENT
petsc4py.PETSc.Mat.Type.SEQDENSECUDA petsc4py.PETSc.Mat.Type-class.html#SEQDENSECUDA
petsc4py.PETSc.Mat.Type.PREALLOCATOR petsc4py.PETSc.Mat.Type-class.html#PREALLOCATOR
petsc4py.PETSc.Mat.Type.NORMALHERMITIAN petsc4py.PETSc.Mat.Type-class.html#NORMALHERMITIAN
petsc4py.PETSc.Mat.Type.SEQAIJSELL petsc4py.PETSc.Mat.Type-class.html#SEQAIJSELL
petsc4py.PETSc.Mat.Type.PYTHON petsc4py.PETSc.Mat.Type-class.html#PYTHON
petsc4py.PETSc.Mat.Type.LMVMBADBROYDEN petsc4py.PETSc.Mat.Type-class.html#LMVMBADBROYDEN
petsc4py.PETSc.Mat.Type.AIJ petsc4py.PETSc.Mat.Type-class.html#AIJ
petsc4py.PETSc.Mat.Type.MPIMAIJ petsc4py.PETSc.Mat.Type-class.html#MPIMAIJ
petsc4py.PETSc.Mat.Type.BAIJ petsc4py.PETSc.Mat.Type-class.html#BAIJ
petsc4py.PETSc.Mat.Type.MPIBAIJ petsc4py.PETSc.Mat.Type-class.html#MPIBAIJ
petsc4py.PETSc.Mat.Type.SEQAIJCUSPARSE petsc4py.PETSc.Mat.Type-class.html#SEQAIJCUSPARSE
petsc4py.PETSc.Mat.Type.AIJCRL petsc4py.PETSc.Mat.Type-class.html#AIJCRL
petsc4py.PETSc.Mat.Type.IS petsc4py.PETSc.Mat.Type-class.html#IS
petsc4py.PETSc.Mat.Type.LMVM petsc4py.PETSc.Mat.Type-class.html#LMVM
petsc4py.PETSc.Mat.Type.SEQAIJMKL petsc4py.PETSc.Mat.Type-class.html#SEQAIJMKL
petsc4py.PETSc.Mat.Type.SEQCUFFT petsc4py.PETSc.Mat.Type-class.html#SEQCUFFT
petsc4py.PETSc.Mat.Type.SEQBAIJMKL petsc4py.PETSc.Mat.Type-class.html#SEQBAIJMKL
petsc4py.PETSc.Mat.Type.MPIAIJCRL petsc4py.PETSc.Mat.Type-class.html#MPIAIJCRL
petsc4py.PETSc.Mat.Type.SELL petsc4py.PETSc.Mat.Type-class.html#SELL
petsc4py.PETSc.Mat.Type.SEQAIJVIENNACL petsc4py.PETSc.Mat.Type-class.html#SEQAIJVIENNACL
petsc4py.PETSc.Mat.Type.SAME petsc4py.PETSc.Mat.Type-class.html#SAME
petsc4py.PETSc.Mat.Type.SEQDENSE petsc4py.PETSc.Mat.Type-class.html#SEQDENSE
petsc4py.PETSc.Mat.Type.LMVMSYMBADBROYDEN petsc4py.PETSc.Mat.Type-class.html#LMVMSYMBADBROYDEN
petsc4py.PETSc.NormType petsc4py.PETSc.NormType-class.html
petsc4py.PETSc.NormType.FRB petsc4py.PETSc.NormType-class.html#FRB
petsc4py.PETSc.NormType.NORM_MAX petsc4py.PETSc.NormType-class.html#NORM_MAX
petsc4py.PETSc.NormType.INFINITY petsc4py.PETSc.NormType-class.html#INFINITY
petsc4py.PETSc.NormType.FROBENIUS petsc4py.PETSc.NormType-class.html#FROBENIUS
petsc4py.PETSc.NormType.NORM_FROBENIUS petsc4py.PETSc.NormType-class.html#NORM_FROBENIUS
petsc4py.PETSc.NormType.NORM_1_AND_2 petsc4py.PETSc.NormType-class.html#NORM_1_AND_2
petsc4py.PETSc.NormType.N1 petsc4py.PETSc.NormType-class.html#N1
petsc4py.PETSc.NormType.N2 petsc4py.PETSc.NormType-class.html#N2
petsc4py.PETSc.NormType.N12 petsc4py.PETSc.NormType-class.html#N12
petsc4py.PETSc.NormType.NORM_1 petsc4py.PETSc.NormType-class.html#NORM_1
petsc4py.PETSc.NormType.NORM_2 petsc4py.PETSc.NormType-class.html#NORM_2
petsc4py.PETSc.NormType.MAX petsc4py.PETSc.NormType-class.html#MAX
petsc4py.PETSc.NormType.NORM_INFINITY petsc4py.PETSc.NormType-class.html#NORM_INFINITY
petsc4py.PETSc.NormType.__qualname__ petsc4py.PETSc.NormType-class.html#__qualname__
petsc4py.PETSc.NormType.INF petsc4py.PETSc.NormType-class.html#INF
petsc4py.PETSc.NullSpace petsc4py.PETSc.NullSpace-class.html
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.NullSpace.getVecs petsc4py.PETSc.NullSpace-class.html#getVecs
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.NullSpace.hasConstant petsc4py.PETSc.NullSpace-class.html#hasConstant
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.NullSpace.setFunction petsc4py.PETSc.NullSpace-class.html#setFunction
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.NullSpace.__new__ petsc4py.PETSc.NullSpace-class.html#__new__
petsc4py.PETSc.NullSpace.create petsc4py.PETSc.NullSpace-class.html#create
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.NullSpace.__call__ petsc4py.PETSc.NullSpace-class.html#__call__
petsc4py.PETSc.NullSpace.destroy petsc4py.PETSc.NullSpace-class.html#destroy
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.Object.setFromOptions petsc4py.PETSc.Object-class.html#setFromOptions
petsc4py.PETSc.Object.getType petsc4py.PETSc.Object-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.NullSpace.test petsc4py.PETSc.NullSpace-class.html#test
petsc4py.PETSc.NullSpace.createRigidBody petsc4py.PETSc.NullSpace-class.html#createRigidBody
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.NullSpace.getFunction petsc4py.PETSc.NullSpace-class.html#getFunction
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.NullSpace.remove petsc4py.PETSc.NullSpace-class.html#remove
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.NullSpace.view petsc4py.PETSc.NullSpace-class.html#view
petsc4py.PETSc.Object petsc4py.PETSc.Object-class.html
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.Object.__new__ petsc4py.PETSc.Object-class.html#__new__
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.Object.destroy petsc4py.PETSc.Object-class.html#destroy
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.Object.getType petsc4py.PETSc.Object-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Object.setFromOptions petsc4py.PETSc.Object-class.html#setFromOptions
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.view petsc4py.PETSc.Object-class.html#view
petsc4py.PETSc.Options petsc4py.PETSc.Options-class.html
petsc4py.PETSc.Options.prefixPush petsc4py.PETSc.Options-class.html#prefixPush
petsc4py.PETSc.Options.getString petsc4py.PETSc.Options-class.html#getString
petsc4py.PETSc.Options.getAll petsc4py.PETSc.Options-class.html#getAll
petsc4py.PETSc.Options.delValue petsc4py.PETSc.Options-class.html#delValue
petsc4py.PETSc.Options.prefix petsc4py.PETSc.Options-class.html#prefix
petsc4py.PETSc.Options.__init__ petsc4py.PETSc.Options-class.html#__init__
petsc4py.PETSc.Options.__new__ petsc4py.PETSc.Options-class.html#__new__
petsc4py.PETSc.Options.__contains__ petsc4py.PETSc.Options-class.html#__contains__
petsc4py.PETSc.Options.create petsc4py.PETSc.Options-class.html#create
petsc4py.PETSc.Options.hasName petsc4py.PETSc.Options-class.html#hasName
petsc4py.PETSc.Options.prefixPop petsc4py.PETSc.Options-class.html#prefixPop
petsc4py.PETSc.Options.destroy petsc4py.PETSc.Options-class.html#destroy
petsc4py.PETSc.Options.getReal petsc4py.PETSc.Options-class.html#getReal
petsc4py.PETSc.Options.setValue petsc4py.PETSc.Options-class.html#setValue
petsc4py.PETSc.Options.__getitem__ petsc4py.PETSc.Options-class.html#__getitem__
petsc4py.PETSc.Options.getBool petsc4py.PETSc.Options-class.html#getBool
petsc4py.PETSc.Options.getInt petsc4py.PETSc.Options-class.html#getInt
petsc4py.PETSc.Options.__setitem__ petsc4py.PETSc.Options-class.html#__setitem__
petsc4py.PETSc.Options.__delitem__ petsc4py.PETSc.Options-class.html#__delitem__
petsc4py.PETSc.Options.clear petsc4py.PETSc.Options-class.html#clear
petsc4py.PETSc.Options.insertString petsc4py.PETSc.Options-class.html#insertString
petsc4py.PETSc.Options.getScalar petsc4py.PETSc.Options-class.html#getScalar
petsc4py.PETSc.Options.view petsc4py.PETSc.Options-class.html#view
petsc4py.PETSc.PC petsc4py.PETSc.PC-class.html
petsc4py.PETSc.PC.setDM petsc4py.PETSc.PC-class.html#setDM
petsc4py.PETSc.PC.getMGRScale petsc4py.PETSc.PC-class.html#getMGRScale
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.PC.setGASMType petsc4py.PETSc.PC-class.html#setGASMType
petsc4py.PETSc.PC.setGASMOverlap petsc4py.PETSc.PC-class.html#setGASMOverlap
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.PC.setBDDCLevels petsc4py.PETSc.PC-class.html#setBDDCLevels
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.PC.setPatchComputeFunction petsc4py.PETSc.PC-class.html#setPatchComputeFunction
petsc4py.PETSc.PC.setMGRScale petsc4py.PETSc.PC-class.html#setMGRScale
petsc4py.PETSc.PC.setOperators petsc4py.PETSc.PC-class.html#setOperators
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.PC.__call__ petsc4py.PETSc.PC-class.html#__call__
petsc4py.PETSc.PC.setPatchComputeFunctionInteriorFacets petsc4py.PETSc.PC-class.html#setPatchComputeFunctionInteriorFacets
petsc4py.PETSc.PC.setOptionsPrefix petsc4py.PETSc.PC-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.PC.getMGLevels petsc4py.PETSc.PC-class.html#getMGLevels
petsc4py.PETSc.PC.setBDDCCoarseningRatio petsc4py.PETSc.PC-class.html#setBDDCCoarseningRatio
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.PC.setFromOptions petsc4py.PETSc.PC-class.html#setFromOptions
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.PC.setASMTotalSubdomains petsc4py.PETSc.PC-class.html#setASMTotalSubdomains
petsc4py.PETSc.PC.ASMType petsc4py.PETSc.PC.ASMType-class.html
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.PC.setFactorSolverType petsc4py.PETSc.PC-class.html#setFactorSolverType
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.PC.setASMType petsc4py.PETSc.PC-class.html#setASMType
petsc4py.PETSc.PC.getCompositePC petsc4py.PETSc.PC-class.html#getCompositePC
petsc4py.PETSc.PC.GAMGType petsc4py.PETSc.PC.GAMGType-class.html
petsc4py.PETSc.PC.setPatchComputeOperator petsc4py.PETSc.PC-class.html#setPatchComputeOperator
petsc4py.PETSc.PC.setUpOnBlocks petsc4py.PETSc.PC-class.html#setUpOnBlocks
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.PC.view petsc4py.PETSc.PC-class.html#view
petsc4py.PETSc.PC.getMGType petsc4py.PETSc.PC-class.html#getMGType
petsc4py.PETSc.PC.setBDDCDirichletBoundariesLocal petsc4py.PETSc.PC-class.html#setBDDCDirichletBoundariesLocal
petsc4py.PETSc.PC.getASMSubKSP petsc4py.PETSc.PC-class.html#getASMSubKSP
petsc4py.PETSc.PC.setBDDCDofsSplitting petsc4py.PETSc.PC-class.html#setBDDCDofsSplitting
petsc4py.PETSc.PC.getMGCoarseSolve petsc4py.PETSc.PC-class.html#getMGCoarseSolve
petsc4py.PETSc.PC.applySymmetricRight petsc4py.PETSc.PC-class.html#applySymmetricRight
petsc4py.PETSc.PC.getKSP petsc4py.PETSc.PC-class.html#getKSP
petsc4py.PETSc.PC.Type petsc4py.PETSc.PC.Type-class.html
petsc4py.PETSc.PC.setMGInterpolation petsc4py.PETSc.PC-class.html#setMGInterpolation
petsc4py.PETSc.PC.getFieldSplitSchurGetSubKSP petsc4py.PETSc.PC-class.html#getFieldSplitSchurGetSubKSP
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.PC.setBDDCDirichletBoundaries petsc4py.PETSc.PC-class.html#setBDDCDirichletBoundaries
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.PC.setMGType petsc4py.PETSc.PC-class.html#setMGType
petsc4py.PETSc.PC.setBDDCPrimalVerticesLocalIS petsc4py.PETSc.PC-class.html#setBDDCPrimalVerticesLocalIS
petsc4py.PETSc.PC.MGType petsc4py.PETSc.PC.MGType-class.html
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.PC.setBDDCDivergenceMat petsc4py.PETSc.PC-class.html#setBDDCDivergenceMat
petsc4py.PETSc.PC.setUp petsc4py.PETSc.PC-class.html#setUp
petsc4py.PETSc.PC.createPython petsc4py.PETSc.PC-class.html#createPython
petsc4py.PETSc.PC.getDM petsc4py.PETSc.PC-class.html#getDM
petsc4py.PETSc.PC.MGCycleType petsc4py.PETSc.PC.MGCycleType-class.html
petsc4py.PETSc.PC.getOptionsPrefix petsc4py.PETSc.PC-class.html#getOptionsPrefix
petsc4py.PETSc.PC.setFieldSplitSchurFactType petsc4py.PETSc.PC-class.html#setFieldSplitSchurFactType
petsc4py.PETSc.PC.setMGCycleType petsc4py.PETSc.PC-class.html#setMGCycleType
petsc4py.PETSc.PC.setCompositeType petsc4py.PETSc.PC-class.html#setCompositeType
petsc4py.PETSc.PC.setASMOverlap petsc4py.PETSc.PC-class.html#setASMOverlap
petsc4py.PETSc.PC.getMGInterpolation petsc4py.PETSc.PC-class.html#getMGInterpolation
petsc4py.PETSc.PC.setUseAmat petsc4py.PETSc.PC-class.html#setUseAmat
petsc4py.PETSc.PC.setFieldSplitType petsc4py.PETSc.PC-class.html#setFieldSplitType
petsc4py.PETSc.PC.setFactorSetUpSolverType petsc4py.PETSc.PC-class.html#setFactorSetUpSolverType
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.PC.getFactorSolverType petsc4py.PETSc.PC-class.html#getFactorSolverType
petsc4py.PETSc.PC.setMGR petsc4py.PETSc.PC-class.html#setMGR
petsc4py.PETSc.PC.setBDDCPrimalVerticesIS petsc4py.PETSc.PC-class.html#setBDDCPrimalVerticesIS
petsc4py.PETSc.PC.setBDDCNeumannBoundariesLocal petsc4py.PETSc.PC-class.html#setBDDCNeumannBoundariesLocal
petsc4py.PETSc.PC.setMGX petsc4py.PETSc.PC-class.html#setMGX
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.PC.getPythonContext petsc4py.PETSc.PC-class.html#getPythonContext
petsc4py.PETSc.PC.setBDDCChangeOfBasisMat petsc4py.PETSc.PC-class.html#setBDDCChangeOfBasisMat
petsc4py.PETSc.PC.setGAMGSmooths petsc4py.PETSc.PC-class.html#setGAMGSmooths
petsc4py.PETSc.PC.setCoordinates petsc4py.PETSc.PC-class.html#setCoordinates
petsc4py.PETSc.PC.setBDDCDiscreteGradient petsc4py.PETSc.PC-class.html#setBDDCDiscreteGradient
petsc4py.PETSc.PC.GASMType petsc4py.PETSc.PC.GASMType-class.html
petsc4py.PETSc.PC.setFieldSplitFields petsc4py.PETSc.PC-class.html#setFieldSplitFields
petsc4py.PETSc.PC.setHYPRESetBetaPoissonMatrix petsc4py.PETSc.PC-class.html#setHYPRESetBetaPoissonMatrix
petsc4py.PETSc.PC.setASMLocalSubdomains petsc4py.PETSc.PC-class.html#setASMLocalSubdomains
petsc4py.PETSc.PC.apply petsc4py.PETSc.PC-class.html#apply
petsc4py.PETSc.PC.setFactorLevels petsc4py.PETSc.PC-class.html#setFactorLevels
petsc4py.PETSc.PC.setGAMGLevels petsc4py.PETSc.PC-class.html#setGAMGLevels
petsc4py.PETSc.PC.setType petsc4py.PETSc.PC-class.html#setType
petsc4py.PETSc.PC.SchurFactType petsc4py.PETSc.PC.SchurFactType-class.html
petsc4py.PETSc.PC.getOperators petsc4py.PETSc.PC-class.html#getOperators
petsc4py.PETSc.PC.create petsc4py.PETSc.PC-class.html#create
petsc4py.PETSc.PC.setBDDCNeumannBoundaries petsc4py.PETSc.PC-class.html#setBDDCNeumannBoundaries
petsc4py.PETSc.PC.addCompositePC petsc4py.PETSc.PC-class.html#addCompositePC
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.PC.getMGRestriction petsc4py.PETSc.PC-class.html#getMGRestriction
petsc4py.PETSc.PC.setMGRhs petsc4py.PETSc.PC-class.html#setMGRhs
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.PC.PatchConstructType petsc4py.PETSc.PC.PatchConstructType-class.html
petsc4py.PETSc.PC.getType petsc4py.PETSc.PC-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.PC.getMGSmootherDown petsc4py.PETSc.PC-class.html#getMGSmootherDown
petsc4py.PETSc.PC.setPatchComputeOperatorInteriorFacets petsc4py.PETSc.PC-class.html#setPatchComputeOperatorInteriorFacets
petsc4py.PETSc.PC.setMGCycleTypeOnLevel petsc4py.PETSc.PC-class.html#setMGCycleTypeOnLevel
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.PC.setMGLevels petsc4py.PETSc.PC-class.html#setMGLevels
petsc4py.PETSc.PC.reset petsc4py.PETSc.PC-class.html#reset
petsc4py.PETSc.PC.setFactorShift petsc4py.PETSc.PC-class.html#setFactorShift
petsc4py.PETSc.PC.applyTranspose petsc4py.PETSc.PC-class.html#applyTranspose
petsc4py.PETSc.PC.setHYPRESetAlphaPoissonMatrix petsc4py.PETSc.PC-class.html#setHYPRESetAlphaPoissonMatrix
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.PC.setGAMGType petsc4py.PETSc.PC-class.html#setGAMGType
petsc4py.PETSc.PC.applySymmetricLeft petsc4py.PETSc.PC-class.html#applySymmetricLeft
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.PC.setPatchDiscretisationInfo petsc4py.PETSc.PC-class.html#setPatchDiscretisationInfo
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.PC.setHYPREType petsc4py.PETSc.PC-class.html#setHYPREType
petsc4py.PETSc.PC.setHYPREDiscreteGradient petsc4py.PETSc.PC-class.html#setHYPREDiscreteGradient
petsc4py.PETSc.PC.getMGSmootherUp petsc4py.PETSc.PC-class.html#getMGSmootherUp
petsc4py.PETSc.PC.setReusePreconditioner petsc4py.PETSc.PC-class.html#setReusePreconditioner
petsc4py.PETSc.PC.setFactorPivot petsc4py.PETSc.PC-class.html#setFactorPivot
petsc4py.PETSc.PC.setFieldSplitIS petsc4py.PETSc.PC-class.html#setFieldSplitIS
petsc4py.PETSc.PC.getHYPREType petsc4py.PETSc.PC-class.html#getHYPREType
petsc4py.PETSc.PC.SchurPreType petsc4py.PETSc.PC.SchurPreType-class.html
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.PC.setMGRestriction petsc4py.PETSc.PC-class.html#setMGRestriction
petsc4py.PETSc.PC.setHYPREDiscreteCurl petsc4py.PETSc.PC-class.html#setHYPREDiscreteCurl
petsc4py.PETSc.PC.__new__ petsc4py.PETSc.PC-class.html#__new__
petsc4py.PETSc.PC.getMGSmoother petsc4py.PETSc.PC-class.html#getMGSmoother
petsc4py.PETSc.PC.destroy petsc4py.PETSc.PC-class.html#destroy
petsc4py.PETSc.PC.setPatchConstructType petsc4py.PETSc.PC-class.html#setPatchConstructType
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.PC.setHYPRESetEdgeConstantVectors petsc4py.PETSc.PC-class.html#setHYPRESetEdgeConstantVectors
petsc4py.PETSc.PC.CompositeType petsc4py.PETSc.PC.CompositeType-class.html
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.PC.setPatchCellNumbering petsc4py.PETSc.PC-class.html#setPatchCellNumbering
petsc4py.PETSc.PC.getFactorMatrix petsc4py.PETSc.PC-class.html#getFactorMatrix
petsc4py.PETSc.PC.setFactorOrdering petsc4py.PETSc.PC-class.html#setFactorOrdering
petsc4py.PETSc.PC.getFieldSplitSubKSP petsc4py.PETSc.PC-class.html#getFieldSplitSubKSP
petsc4py.PETSc.PC.Side petsc4py.PETSc.PC.Side-class.html
petsc4py.PETSc.PC.setPythonType petsc4py.PETSc.PC-class.html#setPythonType
petsc4py.PETSc.PC.setFieldSplitSchurPreType petsc4py.PETSc.PC-class.html#setFieldSplitSchurPreType
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.PC.setBDDCDofsSplittingLocal petsc4py.PETSc.PC-class.html#setBDDCDofsSplittingLocal
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.PC.setPythonContext petsc4py.PETSc.PC-class.html#setPythonContext
petsc4py.PETSc.PC.ASMType petsc4py.PETSc.PC.ASMType-class.html
petsc4py.PETSc.PC.ASMType.__qualname__ petsc4py.PETSc.PC.ASMType-class.html#__qualname__
petsc4py.PETSc.PC.ASMType.NONE petsc4py.PETSc.PC.ASMType-class.html#NONE
petsc4py.PETSc.PC.ASMType.INTERPOLATE petsc4py.PETSc.PC.ASMType-class.html#INTERPOLATE
petsc4py.PETSc.PC.ASMType.RESTRICT petsc4py.PETSc.PC.ASMType-class.html#RESTRICT
petsc4py.PETSc.PC.ASMType.BASIC petsc4py.PETSc.PC.ASMType-class.html#BASIC
petsc4py.PETSc.PC.CompositeType petsc4py.PETSc.PC.CompositeType-class.html
petsc4py.PETSc.PC.CompositeType.SCHUR petsc4py.PETSc.PC.CompositeType-class.html#SCHUR
petsc4py.PETSc.PC.CompositeType.ADDITIVE petsc4py.PETSc.PC.CompositeType-class.html#ADDITIVE
petsc4py.PETSc.PC.CompositeType.SYMMETRIC_MULTIPLICATIVE petsc4py.PETSc.PC.CompositeType-class.html#SYMMETRIC_MULTIPLICATIVE
petsc4py.PETSc.PC.CompositeType.__qualname__ petsc4py.PETSc.PC.CompositeType-class.html#__qualname__
petsc4py.PETSc.PC.CompositeType.MULTIPLICATIVE petsc4py.PETSc.PC.CompositeType-class.html#MULTIPLICATIVE
petsc4py.PETSc.PC.CompositeType.SPECIAL petsc4py.PETSc.PC.CompositeType-class.html#SPECIAL
petsc4py.PETSc.PC.GAMGType petsc4py.PETSc.PC.GAMGType-class.html
petsc4py.PETSc.PC.GAMGType.CLASSICAL petsc4py.PETSc.PC.GAMGType-class.html#CLASSICAL
petsc4py.PETSc.PC.GAMGType.AGG petsc4py.PETSc.PC.GAMGType-class.html#AGG
petsc4py.PETSc.PC.GAMGType.__qualname__ petsc4py.PETSc.PC.GAMGType-class.html#__qualname__
petsc4py.PETSc.PC.GAMGType.GEO petsc4py.PETSc.PC.GAMGType-class.html#GEO
petsc4py.PETSc.PC.GASMType petsc4py.PETSc.PC.GASMType-class.html
petsc4py.PETSc.PC.GASMType.__qualname__ petsc4py.PETSc.PC.GASMType-class.html#__qualname__
petsc4py.PETSc.PC.GASMType.NONE petsc4py.PETSc.PC.GASMType-class.html#NONE
petsc4py.PETSc.PC.GASMType.INTERPOLATE petsc4py.PETSc.PC.GASMType-class.html#INTERPOLATE
petsc4py.PETSc.PC.GASMType.RESTRICT petsc4py.PETSc.PC.GASMType-class.html#RESTRICT
petsc4py.PETSc.PC.GASMType.BASIC petsc4py.PETSc.PC.GASMType-class.html#BASIC
petsc4py.PETSc.PC.MGCycleType petsc4py.PETSc.PC.MGCycleType-class.html
petsc4py.PETSc.PC.MGCycleType.__qualname__ petsc4py.PETSc.PC.MGCycleType-class.html#__qualname__
petsc4py.PETSc.PC.MGCycleType.W petsc4py.PETSc.PC.MGCycleType-class.html#W
petsc4py.PETSc.PC.MGCycleType.V petsc4py.PETSc.PC.MGCycleType-class.html#V
petsc4py.PETSc.PC.MGType petsc4py.PETSc.PC.MGType-class.html
petsc4py.PETSc.PC.MGType.KASKADE petsc4py.PETSc.PC.MGType-class.html#KASKADE
petsc4py.PETSc.PC.MGType.FULL petsc4py.PETSc.PC.MGType-class.html#FULL
petsc4py.PETSc.PC.MGType.ADDITIVE petsc4py.PETSc.PC.MGType-class.html#ADDITIVE
petsc4py.PETSc.PC.MGType.__qualname__ petsc4py.PETSc.PC.MGType-class.html#__qualname__
petsc4py.PETSc.PC.MGType.MULTIPLICATIVE petsc4py.PETSc.PC.MGType-class.html#MULTIPLICATIVE
petsc4py.PETSc.PC.PatchConstructType petsc4py.PETSc.PC.PatchConstructType-class.html
petsc4py.PETSc.PC.PatchConstructType.STAR petsc4py.PETSc.PC.PatchConstructType-class.html#STAR
petsc4py.PETSc.PC.PatchConstructType.PYTHON petsc4py.PETSc.PC.PatchConstructType-class.html#PYTHON
petsc4py.PETSc.PC.PatchConstructType.__qualname__ petsc4py.PETSc.PC.PatchConstructType-class.html#__qualname__
petsc4py.PETSc.PC.PatchConstructType.PARDECOMP petsc4py.PETSc.PC.PatchConstructType-class.html#PARDECOMP
petsc4py.PETSc.PC.PatchConstructType.USER petsc4py.PETSc.PC.PatchConstructType-class.html#USER
petsc4py.PETSc.PC.PatchConstructType.VANKA petsc4py.PETSc.PC.PatchConstructType-class.html#VANKA
petsc4py.PETSc.PC.SchurFactType petsc4py.PETSc.PC.SchurFactType-class.html
petsc4py.PETSc.PC.SchurFactType.UPPER petsc4py.PETSc.PC.SchurFactType-class.html#UPPER
petsc4py.PETSc.PC.SchurFactType.LOWER petsc4py.PETSc.PC.SchurFactType-class.html#LOWER
petsc4py.PETSc.PC.SchurFactType.FULL petsc4py.PETSc.PC.SchurFactType-class.html#FULL
petsc4py.PETSc.PC.SchurFactType.DIAG petsc4py.PETSc.PC.SchurFactType-class.html#DIAG
petsc4py.PETSc.PC.SchurFactType.__qualname__ petsc4py.PETSc.PC.SchurFactType-class.html#__qualname__
petsc4py.PETSc.PC.SchurPreType petsc4py.PETSc.PC.SchurPreType-class.html
petsc4py.PETSc.PC.SchurPreType.FULL petsc4py.PETSc.PC.SchurPreType-class.html#FULL
petsc4py.PETSc.PC.SchurPreType.A11 petsc4py.PETSc.PC.SchurPreType-class.html#A11
petsc4py.PETSc.PC.SchurPreType.SELF petsc4py.PETSc.PC.SchurPreType-class.html#SELF
petsc4py.PETSc.PC.SchurPreType.__qualname__ petsc4py.PETSc.PC.SchurPreType-class.html#__qualname__
petsc4py.PETSc.PC.SchurPreType.USER petsc4py.PETSc.PC.SchurPreType-class.html#USER
petsc4py.PETSc.PC.SchurPreType.SELFP petsc4py.PETSc.PC.SchurPreType-class.html#SELFP
petsc4py.PETSc.PC.Side petsc4py.PETSc.PC.Side-class.html
petsc4py.PETSc.PC.Side.SYMMETRIC petsc4py.PETSc.PC.Side-class.html#SYMMETRIC
petsc4py.PETSc.PC.Side.RIGHT petsc4py.PETSc.PC.Side-class.html#RIGHT
petsc4py.PETSc.PC.Side.L petsc4py.PETSc.PC.Side-class.html#L
petsc4py.PETSc.PC.Side.__qualname__ petsc4py.PETSc.PC.Side-class.html#__qualname__
petsc4py.PETSc.PC.Side.S petsc4py.PETSc.PC.Side-class.html#S
petsc4py.PETSc.PC.Side.R petsc4py.PETSc.PC.Side-class.html#R
petsc4py.PETSc.PC.Side.LEFT petsc4py.PETSc.PC.Side-class.html#LEFT
petsc4py.PETSc.PC.Type petsc4py.PETSc.PC.Type-class.html
petsc4py.PETSc.PC.Type.HYPRE petsc4py.PETSc.PC.Type-class.html#HYPRE
petsc4py.PETSc.PC.Type.GASM petsc4py.PETSc.PC.Type-class.html#GASM
petsc4py.PETSc.PC.Type.KSP petsc4py.PETSc.PC.Type-class.html#KSP
petsc4py.PETSc.PC.Type.CHOWILUVIENNACL petsc4py.PETSc.PC.Type-class.html#CHOWILUVIENNACL
petsc4py.PETSc.PC.Type.GALERKIN petsc4py.PETSc.PC.Type-class.html#GALERKIN
petsc4py.PETSc.PC.Type.PYTHON petsc4py.PETSc.PC.Type-class.html#PYTHON
petsc4py.PETSc.PC.Type.SYSPFMG petsc4py.PETSc.PC.Type-class.html#SYSPFMG
petsc4py.PETSc.PC.Type.PATCH petsc4py.PETSc.PC.Type-class.html#PATCH
petsc4py.PETSc.PC.Type.GAMG petsc4py.PETSc.PC.Type-class.html#GAMG
petsc4py.PETSc.PC.Type.HARA petsc4py.PETSc.PC.Type-class.html#HARA
petsc4py.PETSc.PC.Type.ILU petsc4py.PETSc.PC.Type-class.html#ILU
petsc4py.PETSc.PC.Type.BFBT petsc4py.PETSc.PC.Type-class.html#BFBT
petsc4py.PETSc.PC.Type.PBJACOBI petsc4py.PETSc.PC.Type-class.html#PBJACOBI
petsc4py.PETSc.PC.Type.EISENSTAT petsc4py.PETSc.PC.Type-class.html#EISENSTAT
petsc4py.PETSc.PC.Type.ROWSCALINGVIENNACL petsc4py.PETSc.PC.Type-class.html#ROWSCALINGVIENNACL
petsc4py.PETSc.PC.Type.NONE petsc4py.PETSc.PC.Type-class.html#NONE
petsc4py.PETSc.PC.Type.SHELL petsc4py.PETSc.PC.Type-class.html#SHELL
petsc4py.PETSc.PC.Type.LSC petsc4py.PETSc.PC.Type-class.html#LSC
petsc4py.PETSc.PC.Type.NN petsc4py.PETSc.PC.Type-class.html#NN
petsc4py.PETSc.PC.Type.BJACOBI petsc4py.PETSc.PC.Type-class.html#BJACOBI
petsc4py.PETSc.PC.Type.BDDC petsc4py.PETSc.PC.Type-class.html#BDDC
petsc4py.PETSc.PC.Type.LU petsc4py.PETSc.PC.Type-class.html#LU
petsc4py.PETSc.PC.Type.HPDDM petsc4py.PETSc.PC.Type-class.html#HPDDM
petsc4py.PETSc.PC.Type.HMG petsc4py.PETSc.PC.Type-class.html#HMG
petsc4py.PETSc.PC.Type.KACZMARZ petsc4py.PETSc.PC.Type-class.html#KACZMARZ
petsc4py.PETSc.PC.Type.ASM petsc4py.PETSc.PC.Type-class.html#ASM
petsc4py.PETSc.PC.Type.EXOTIC petsc4py.PETSc.PC.Type-class.html#EXOTIC
petsc4py.PETSc.PC.Type.SAVIENNACL petsc4py.PETSc.PC.Type-class.html#SAVIENNACL
petsc4py.PETSc.PC.Type.ICC petsc4py.PETSc.PC.Type-class.html#ICC
petsc4py.PETSc.PC.Type.SVD petsc4py.PETSc.PC.Type-class.html#SVD
petsc4py.PETSc.PC.Type.REDISTRIBUTE petsc4py.PETSc.PC.Type-class.html#REDISTRIBUTE
petsc4py.PETSc.PC.Type.FIELDSPLIT petsc4py.PETSc.PC.Type-class.html#FIELDSPLIT
petsc4py.PETSc.PC.Type.PFMG petsc4py.PETSc.PC.Type-class.html#PFMG
petsc4py.PETSc.PC.Type.REDUNDANT petsc4py.PETSc.PC.Type-class.html#REDUNDANT
petsc4py.PETSc.PC.Type.CP petsc4py.PETSc.PC.Type-class.html#CP
petsc4py.PETSc.PC.Type.TELESCOPE petsc4py.PETSc.PC.Type-class.html#TELESCOPE
petsc4py.PETSc.PC.Type.MG petsc4py.PETSc.PC.Type-class.html#MG
petsc4py.PETSc.PC.Type.SPAI petsc4py.PETSc.PC.Type-class.html#SPAI
petsc4py.PETSc.PC.Type.CHOLESKY petsc4py.PETSc.PC.Type-class.html#CHOLESKY
petsc4py.PETSc.PC.Type.MAT petsc4py.PETSc.PC.Type-class.html#MAT
petsc4py.PETSc.PC.Type.COMPOSITE petsc4py.PETSc.PC.Type-class.html#COMPOSITE
petsc4py.PETSc.PC.Type.ML petsc4py.PETSc.PC.Type-class.html#ML
petsc4py.PETSc.PC.Type.DEFLATION petsc4py.PETSc.PC.Type-class.html#DEFLATION
petsc4py.PETSc.PC.Type.SOR petsc4py.PETSc.PC.Type-class.html#SOR
petsc4py.PETSc.PC.Type.__qualname__ petsc4py.PETSc.PC.Type-class.html#__qualname__
petsc4py.PETSc.PC.Type.VPBJACOBI petsc4py.PETSc.PC.Type-class.html#VPBJACOBI
petsc4py.PETSc.PC.Type.LMVM petsc4py.PETSc.PC.Type-class.html#LMVM
petsc4py.PETSc.PC.Type.JACOBI petsc4py.PETSc.PC.Type-class.html#JACOBI
petsc4py.PETSc.PC.Type.PARMS petsc4py.PETSc.PC.Type-class.html#PARMS
petsc4py.PETSc.PC.Type.TFS petsc4py.PETSc.PC.Type-class.html#TFS
petsc4py.PETSc.Partitioner petsc4py.PETSc.Partitioner-class.html
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.Partitioner.Type petsc4py.PETSc.PartitionerType-class.html
petsc4py.PETSc.Partitioner.setType petsc4py.PETSc.Partitioner-class.html#setType
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.Partitioner.__new__ petsc4py.PETSc.Partitioner-class.html#__new__
petsc4py.PETSc.Partitioner.create petsc4py.PETSc.Partitioner-class.html#create
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.Partitioner.destroy petsc4py.PETSc.Partitioner-class.html#destroy
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.Partitioner.setUp petsc4py.PETSc.Partitioner-class.html#setUp
petsc4py.PETSc.Partitioner.getType petsc4py.PETSc.Partitioner-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Partitioner.setFromOptions petsc4py.PETSc.Partitioner-class.html#setFromOptions
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Partitioner.reset petsc4py.PETSc.Partitioner-class.html#reset
petsc4py.PETSc.Partitioner.setShellPartition petsc4py.PETSc.Partitioner-class.html#setShellPartition
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Partitioner.view petsc4py.PETSc.Partitioner-class.html#view
petsc4py.PETSc.PartitionerType petsc4py.PETSc.PartitionerType-class.html
petsc4py.PETSc.PartitionerType.CHACO petsc4py.PETSc.PartitionerType-class.html#CHACO
petsc4py.PETSc.PartitionerType.MATPARTITIONING petsc4py.PETSc.PartitionerType-class.html#MATPARTITIONING
petsc4py.PETSc.PartitionerType.SIMPLE petsc4py.PETSc.PartitionerType-class.html#SIMPLE
petsc4py.PETSc.PartitionerType.SHELL petsc4py.PETSc.PartitionerType-class.html#SHELL
petsc4py.PETSc.PartitionerType.PARMETIS petsc4py.PETSc.PartitionerType-class.html#PARMETIS
petsc4py.PETSc.PartitionerType.PTSCOTCH petsc4py.PETSc.PartitionerType-class.html#PTSCOTCH
petsc4py.PETSc.PartitionerType.GATHER petsc4py.PETSc.PartitionerType-class.html#GATHER
petsc4py.PETSc.PartitionerType.__qualname__ petsc4py.PETSc.PartitionerType-class.html#__qualname__
petsc4py.PETSc.Quad petsc4py.PETSc.Quad-class.html
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.Quad.__new__ petsc4py.PETSc.Quad-class.html#__new__
petsc4py.PETSc.Quad.create petsc4py.PETSc.Quad-class.html#create
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.Quad.destroy petsc4py.PETSc.Quad-class.html#destroy
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.Object.setFromOptions petsc4py.PETSc.Object-class.html#setFromOptions
petsc4py.PETSc.Object.getType petsc4py.PETSc.Object-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.view petsc4py.PETSc.Object-class.html#view
petsc4py.PETSc.Random petsc4py.PETSc.Random-class.html
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Random.getSeed petsc4py.PETSc.Random-class.html#getSeed
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Random.getValueReal petsc4py.PETSc.Random-class.html#getValueReal
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.Random.Type petsc4py.PETSc.Random.Type-class.html
petsc4py.PETSc.Random.setType petsc4py.PETSc.Random-class.html#setType
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.Random.__new__ petsc4py.PETSc.Random-class.html#__new__
petsc4py.PETSc.Random.create petsc4py.PETSc.Random-class.html#create
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Random.__call__ petsc4py.PETSc.Random-class.html#__call__
petsc4py.PETSc.Random.destroy petsc4py.PETSc.Random-class.html#destroy
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Random.getInterval petsc4py.PETSc.Random-class.html#getInterval
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.Random.setInterval petsc4py.PETSc.Random-class.html#setInterval
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.Random.getType petsc4py.PETSc.Random-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Random.setFromOptions petsc4py.PETSc.Random-class.html#setFromOptions
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Random.interval petsc4py.PETSc.Random-class.html#interval
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.Random.getValue petsc4py.PETSc.Random-class.html#getValue
petsc4py.PETSc.Random.setSeed petsc4py.PETSc.Random-class.html#setSeed
petsc4py.PETSc.Random.seed petsc4py.PETSc.Random-class.html#seed
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Random.view petsc4py.PETSc.Random-class.html#view
petsc4py.PETSc.Random.Type petsc4py.PETSc.Random.Type-class.html
petsc4py.PETSc.Random.Type.RANDER48 petsc4py.PETSc.Random.Type-class.html#RANDER48
petsc4py.PETSc.Random.Type.RAND petsc4py.PETSc.Random.Type-class.html#RAND
petsc4py.PETSc.Random.Type.RANDOM123 petsc4py.PETSc.Random.Type-class.html#RANDOM123
petsc4py.PETSc.Random.Type.RAND48 petsc4py.PETSc.Random.Type-class.html#RAND48
petsc4py.PETSc.Random.Type.__qualname__ petsc4py.PETSc.Random.Type-class.html#__qualname__
petsc4py.PETSc.Random.Type.SPRNG petsc4py.PETSc.Random.Type-class.html#SPRNG
petsc4py.PETSc.SF petsc4py.PETSc.SF-class.html
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.SF.gatherBegin petsc4py.PETSc.SF-class.html#gatherBegin
petsc4py.PETSc.SF.setGraph petsc4py.PETSc.SF-class.html#setGraph
petsc4py.PETSc.SF.createInverse petsc4py.PETSc.SF-class.html#createInverse
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.SF.scatterBegin petsc4py.PETSc.SF-class.html#scatterBegin
petsc4py.PETSc.SF.reduceEnd petsc4py.PETSc.SF-class.html#reduceEnd
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.SF.gatherEnd petsc4py.PETSc.SF-class.html#gatherEnd
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.SF.Type petsc4py.PETSc.SF.Type-class.html
petsc4py.PETSc.SF.fetchAndOpBegin petsc4py.PETSc.SF-class.html#fetchAndOpBegin
petsc4py.PETSc.SF.setType petsc4py.PETSc.SF-class.html#setType
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.SF.scatterEnd petsc4py.PETSc.SF-class.html#scatterEnd
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.SF.__new__ petsc4py.PETSc.SF-class.html#__new__
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.SF.bcastBegin petsc4py.PETSc.SF-class.html#bcastBegin
petsc4py.PETSc.SF.create petsc4py.PETSc.SF-class.html#create
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.SF.createEmbeddedLeafSF petsc4py.PETSc.SF-class.html#createEmbeddedLeafSF
petsc4py.PETSc.SF.createEmbeddedSF petsc4py.PETSc.SF-class.html#createEmbeddedSF
petsc4py.PETSc.SF.reduceBegin petsc4py.PETSc.SF-class.html#reduceBegin
petsc4py.PETSc.SF.getMulti petsc4py.PETSc.SF-class.html#getMulti
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.SF.setUp petsc4py.PETSc.SF-class.html#setUp
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.SF.getGraph petsc4py.PETSc.SF-class.html#getGraph
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.SF.computeDegree petsc4py.PETSc.SF-class.html#computeDegree
petsc4py.PETSc.SF.getType petsc4py.PETSc.SF-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.SF.setFromOptions petsc4py.PETSc.SF-class.html#setFromOptions
petsc4py.PETSc.SF.destroy petsc4py.PETSc.SF-class.html#destroy
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.SF.bcastEnd petsc4py.PETSc.SF-class.html#bcastEnd
petsc4py.PETSc.SF.reset petsc4py.PETSc.SF-class.html#reset
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.SF.setRankOrder petsc4py.PETSc.SF-class.html#setRankOrder
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.SF.fetchAndOpEnd petsc4py.PETSc.SF-class.html#fetchAndOpEnd
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.SF.view petsc4py.PETSc.SF-class.html#view
petsc4py.PETSc.SF.Type petsc4py.PETSc.SF.Type-class.html
petsc4py.PETSc.SF.Type.BASIC petsc4py.PETSc.SF.Type-class.html#BASIC
petsc4py.PETSc.SF.Type.ALLTOALL petsc4py.PETSc.SF.Type-class.html#ALLTOALL
petsc4py.PETSc.SF.Type.ALLGATHER petsc4py.PETSc.SF.Type-class.html#ALLGATHER
petsc4py.PETSc.SF.Type.NEIGHBOR petsc4py.PETSc.SF.Type-class.html#NEIGHBOR
petsc4py.PETSc.SF.Type.GATHERV petsc4py.PETSc.SF.Type-class.html#GATHERV
petsc4py.PETSc.SF.Type.GATHER petsc4py.PETSc.SF.Type-class.html#GATHER
petsc4py.PETSc.SF.Type.ALLGATHERV petsc4py.PETSc.SF.Type-class.html#ALLGATHERV
petsc4py.PETSc.SF.Type.__qualname__ petsc4py.PETSc.SF.Type-class.html#__qualname__
petsc4py.PETSc.SF.Type.WINDOW petsc4py.PETSc.SF.Type-class.html#WINDOW
petsc4py.PETSc.SNES petsc4py.PETSc.SNES-class.html
petsc4py.PETSc.SNES.setFASLevels petsc4py.PETSc.SNES-class.html#setFASLevels
petsc4py.PETSc.SNES.setDM petsc4py.PETSc.SNES-class.html#setDM
petsc4py.PETSc.SNES.setTolerances petsc4py.PETSc.SNES-class.html#setTolerances
petsc4py.PETSc.SNES.getConvergenceHistory petsc4py.PETSc.SNES-class.html#getConvergenceHistory
petsc4py.PETSc.SNES.cancelMonitor petsc4py.PETSc.SNES-class.html#cancelMonitor
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.SNES.max_it petsc4py.PETSc.SNES-class.html#max_it
petsc4py.PETSc.SNES.computeNGS petsc4py.PETSc.SNES-class.html#computeNGS
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.SNES.setUseFD petsc4py.PETSc.SNES-class.html#setUseFD
petsc4py.PETSc.SNES.getObjective petsc4py.PETSc.SNES-class.html#getObjective
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.SNES.its petsc4py.PETSc.SNES-class.html#its
petsc4py.PETSc.SNES.getFASCycleSNES petsc4py.PETSc.SNES-class.html#getFASCycleSNES
petsc4py.PETSc.SNES.setUpdate petsc4py.PETSc.SNES-class.html#setUpdate
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.SNES.monitor petsc4py.PETSc.SNES-class.html#monitor
petsc4py.PETSc.SNES.setPatchComputeFunction petsc4py.PETSc.SNES-class.html#setPatchComputeFunction
petsc4py.PETSc.SNES.getMaxKSPFailures petsc4py.PETSc.SNES-class.html#getMaxKSPFailures
petsc4py.PETSc.SNES.setMonitor petsc4py.PETSc.SNES-class.html#setMonitor
petsc4py.PETSc.SNES.rtol petsc4py.PETSc.SNES-class.html#rtol
petsc4py.PETSc.SNES.getConvergedReason petsc4py.PETSc.SNES-class.html#getConvergedReason
petsc4py.PETSc.SNES.norm petsc4py.PETSc.SNES-class.html#norm
petsc4py.PETSc.SNES.getCompositeSNES petsc4py.PETSc.SNES-class.html#getCompositeSNES
petsc4py.PETSc.SNES.dm petsc4py.PETSc.SNES-class.html#dm
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.SNES.NormSchedule petsc4py.PETSc.SNES.NormSchedule-class.html
petsc4py.PETSc.SNES.setOptionsPrefix petsc4py.PETSc.SNES-class.html#setOptionsPrefix
petsc4py.PETSc.SNES.callConvergenceTest petsc4py.PETSc.SNES-class.html#callConvergenceTest
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.SNES.getMaxStepFailures petsc4py.PETSc.SNES-class.html#getMaxStepFailures
petsc4py.PETSc.SNES.getLinearSolveIterations petsc4py.PETSc.SNES-class.html#getLinearSolveIterations
petsc4py.PETSc.SNES.stol petsc4py.PETSc.SNES-class.html#stol
petsc4py.PETSc.SNES.setFromOptions petsc4py.PETSc.SNES-class.html#setFromOptions
petsc4py.PETSc.SNES.getNGS petsc4py.PETSc.SNES-class.html#getNGS
petsc4py.PETSc.SNES.destroy petsc4py.PETSc.SNES-class.html#destroy
petsc4py.PETSc.SNES.setMaxNonlinearStepFailures petsc4py.PETSc.SNES-class.html#setMaxNonlinearStepFailures
petsc4py.PETSc.SNES.getSolutionUpdate petsc4py.PETSc.SNES-class.html#getSolutionUpdate
petsc4py.PETSc.SNES.getNASMSNES petsc4py.PETSc.SNES-class.html#getNASMSNES
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.SNES.setAppCtx petsc4py.PETSc.SNES-class.html#setAppCtx
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.SNES.use_mf petsc4py.PETSc.SNES-class.html#use_mf
petsc4py.PETSc.SNES.setConvergenceHistory petsc4py.PETSc.SNES-class.html#setConvergenceHistory
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.SNES.getFASSmoother petsc4py.PETSc.SNES-class.html#getFASSmoother
petsc4py.PETSc.SNES.setPatchComputeOperator petsc4py.PETSc.SNES-class.html#setPatchComputeOperator
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.SNES.setMaxFunctionEvaluations petsc4py.PETSc.SNES-class.html#setMaxFunctionEvaluations
petsc4py.PETSc.SNES.setFASInterpolation petsc4py.PETSc.SNES-class.html#setFASInterpolation
petsc4py.PETSc.SNES.getFunctionNorm petsc4py.PETSc.SNES-class.html#getFunctionNorm
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.SNES.ConvergedReason petsc4py.PETSc.SNES.ConvergedReason-class.html
petsc4py.PETSc.SNES.setJacobian petsc4py.PETSc.SNES-class.html#setJacobian
petsc4py.PETSc.SNES.setFASRScale petsc4py.PETSc.SNES-class.html#setFASRScale
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.SNES.getStepFailures petsc4py.PETSc.SNES-class.html#getStepFailures
petsc4py.PETSc.SNES.setMaxKSPFailures petsc4py.PETSc.SNES-class.html#setMaxKSPFailures
petsc4py.PETSc.SNES.Type petsc4py.PETSc.SNES.Type-class.html
petsc4py.PETSc.SNES.setObjective petsc4py.PETSc.SNES-class.html#setObjective
petsc4py.PETSc.SNES.setPatchCellNumbering petsc4py.PETSc.SNES-class.html#setPatchCellNumbering
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.SNES.iterating petsc4py.PETSc.SNES-class.html#iterating
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.SNES.getFASInterpolation petsc4py.PETSc.SNES-class.html#getFASInterpolation
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.SNES.setParamsEW petsc4py.PETSc.SNES-class.html#setParamsEW
petsc4py.PETSc.SNES.getFASInjection petsc4py.PETSc.SNES-class.html#getFASInjection
petsc4py.PETSc.SNES.computeJacobian petsc4py.PETSc.SNES-class.html#computeJacobian
petsc4py.PETSc.SNES.setUp petsc4py.PETSc.SNES-class.html#setUp
petsc4py.PETSc.SNES.setUseEW petsc4py.PETSc.SNES-class.html#setUseEW
petsc4py.PETSc.SNES.setSolution petsc4py.PETSc.SNES-class.html#setSolution
petsc4py.PETSc.SNES.getTolerances petsc4py.PETSc.SNES-class.html#getTolerances
petsc4py.PETSc.SNES.getDM petsc4py.PETSc.SNES-class.html#getDM
petsc4py.PETSc.SNES.setFASRestriction petsc4py.PETSc.SNES-class.html#setFASRestriction
petsc4py.PETSc.SNES.reason petsc4py.PETSc.SNES-class.html#reason
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.SNES.createPython petsc4py.PETSc.SNES-class.html#createPython
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.SNES.ksp petsc4py.PETSc.SNES-class.html#ksp
petsc4py.PETSc.SNES.computeFunction petsc4py.PETSc.SNES-class.html#computeFunction
petsc4py.PETSc.SNES.setUseMF petsc4py.PETSc.SNES-class.html#setUseMF
petsc4py.PETSc.SNES.getFunction petsc4py.PETSc.SNES-class.html#getFunction
petsc4py.PETSc.SNES.appctx petsc4py.PETSc.SNES-class.html#appctx
petsc4py.PETSc.SNES.setNPC petsc4py.PETSc.SNES-class.html#setNPC
petsc4py.PETSc.SNES.getConvergenceTest petsc4py.PETSc.SNES-class.html#getConvergenceTest
petsc4py.PETSc.SNES.getFASLevels petsc4py.PETSc.SNES-class.html#getFASLevels
petsc4py.PETSc.SNES.setIterationNumber petsc4py.PETSc.SNES-class.html#setIterationNumber
petsc4py.PETSc.SNES.view petsc4py.PETSc.SNES-class.html#view
petsc4py.PETSc.SNES.vec_rhs petsc4py.PETSc.SNES-class.html#vec_rhs
petsc4py.PETSc.SNES.getPythonContext petsc4py.PETSc.SNES-class.html#getPythonContext
petsc4py.PETSc.SNES.getMaxFunctionEvaluations petsc4py.PETSc.SNES-class.html#getMaxFunctionEvaluations
petsc4py.PETSc.SNES.setNGS petsc4py.PETSc.SNES-class.html#setNGS
petsc4py.PETSc.SNES.setMaxStepFailures petsc4py.PETSc.SNES-class.html#setMaxStepFailures
petsc4py.PETSc.SNES.getJacobian petsc4py.PETSc.SNES-class.html#getJacobian
petsc4py.PETSc.SNES.getFunctionEvaluations petsc4py.PETSc.SNES-class.html#getFunctionEvaluations
petsc4py.PETSc.SNES.setInitialGuess petsc4py.PETSc.SNES-class.html#setInitialGuess
petsc4py.PETSc.SNES.setLineSearchPreCheck petsc4py.PETSc.SNES-class.html#setLineSearchPreCheck
petsc4py.PETSc.SNES.setType petsc4py.PETSc.SNES-class.html#setType
petsc4py.PETSc.SNES.setFunction petsc4py.PETSc.SNES-class.html#setFunction
petsc4py.PETSc.SNES.getFASRestriction petsc4py.PETSc.SNES-class.html#getFASRestriction
petsc4py.PETSc.SNES.getUpdate petsc4py.PETSc.SNES-class.html#getUpdate
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.SNES.create petsc4py.PETSc.SNES-class.html#create
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.SNES.getParamsEW petsc4py.PETSc.SNES-class.html#getParamsEW
petsc4py.PETSc.SNES.setMaxLinearSolveFailures petsc4py.PETSc.SNES-class.html#setMaxLinearSolveFailures
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.SNES.getFASSmootherUp petsc4py.PETSc.SNES-class.html#getFASSmootherUp
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.SNES.getInitialGuess petsc4py.PETSc.SNES-class.html#getInitialGuess
petsc4py.PETSc.SNES.getType petsc4py.PETSc.SNES-class.html#getType
petsc4py.PETSc.SNES.getMonitor petsc4py.PETSc.SNES-class.html#getMonitor
petsc4py.PETSc.SNES.getAppCtx petsc4py.PETSc.SNES-class.html#getAppCtx
petsc4py.PETSc.SNES.hasNPC petsc4py.PETSc.SNES-class.html#hasNPC
petsc4py.PETSc.SNES.atol petsc4py.PETSc.SNES-class.html#atol
petsc4py.PETSc.SNES.getFASSmootherDown petsc4py.PETSc.SNES-class.html#getFASSmootherDown
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.SNES.setFunctionNorm petsc4py.PETSc.SNES-class.html#setFunctionNorm
petsc4py.PETSc.SNES.reset petsc4py.PETSc.SNES-class.html#reset
petsc4py.PETSc.SNES.getRhs petsc4py.PETSc.SNES-class.html#getRhs
petsc4py.PETSc.SNES.setVariableBounds petsc4py.PETSc.SNES-class.html#setVariableBounds
petsc4py.PETSc.SNES.max_funcs petsc4py.PETSc.SNES-class.html#max_funcs
petsc4py.PETSc.SNES.computeObjective petsc4py.PETSc.SNES-class.html#computeObjective
petsc4py.PETSc.SNES.setConvergenceTest petsc4py.PETSc.SNES-class.html#setConvergenceTest
petsc4py.PETSc.SNES.setPatchDiscretisationInfo petsc4py.PETSc.SNES-class.html#setPatchDiscretisationInfo
petsc4py.PETSc.SNES.getIterationNumber petsc4py.PETSc.SNES-class.html#getIterationNumber
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.SNES.history petsc4py.PETSc.SNES-class.html#history
petsc4py.PETSc.SNES.setKSP petsc4py.PETSc.SNES-class.html#setKSP
petsc4py.PETSc.SNES.use_ew petsc4py.PETSc.SNES-class.html#use_ew
petsc4py.PETSc.SNES.getVIInactiveSet petsc4py.PETSc.SNES-class.html#getVIInactiveSet
petsc4py.PETSc.SNES.vec_sol petsc4py.PETSc.SNES-class.html#vec_sol
petsc4py.PETSc.SNES.setConvergedReason petsc4py.PETSc.SNES-class.html#setConvergedReason
petsc4py.PETSc.SNES.getCompositeNumber petsc4py.PETSc.SNES-class.html#getCompositeNumber
petsc4py.PETSc.SNES.getSolution petsc4py.PETSc.SNES-class.html#getSolution
petsc4py.PETSc.SNES.diverged petsc4py.PETSc.SNES-class.html#diverged
petsc4py.PETSc.SNES.getOptionsPrefix petsc4py.PETSc.SNES-class.html#getOptionsPrefix
petsc4py.PETSc.SNES.getNonlinearStepFailures petsc4py.PETSc.SNES-class.html#getNonlinearStepFailures
petsc4py.PETSc.SNES.__new__ petsc4py.PETSc.SNES-class.html#__new__
petsc4py.PETSc.SNES.logConvergenceHistory petsc4py.PETSc.SNES-class.html#logConvergenceHistory
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.SNES.getUseMF petsc4py.PETSc.SNES-class.html#getUseMF
petsc4py.PETSc.SNES.converged petsc4py.PETSc.SNES-class.html#converged
petsc4py.PETSc.SNES.getUseEW petsc4py.PETSc.SNES-class.html#getUseEW
petsc4py.PETSc.SNES.setPatchConstructType petsc4py.PETSc.SNES-class.html#setPatchConstructType
petsc4py.PETSc.SNES.vec_upd petsc4py.PETSc.SNES-class.html#vec_upd
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.SNES.getFASCoarseSolve petsc4py.PETSc.SNES-class.html#getFASCoarseSolve
petsc4py.PETSc.SNES.getKSP petsc4py.PETSc.SNES-class.html#getKSP
petsc4py.PETSc.SNES.setNormSchedule petsc4py.PETSc.SNES-class.html#setNormSchedule
petsc4py.PETSc.SNES.getNPC petsc4py.PETSc.SNES-class.html#getNPC
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.SNES.getNormSchedule petsc4py.PETSc.SNES-class.html#getNormSchedule
petsc4py.PETSc.SNES.npc petsc4py.PETSc.SNES-class.html#npc
petsc4py.PETSc.SNES.getNASMNumber petsc4py.PETSc.SNES-class.html#getNASMNumber
petsc4py.PETSc.SNES.setFASInjection petsc4py.PETSc.SNES-class.html#setFASInjection
petsc4py.PETSc.SNES.getLinearSolveFailures petsc4py.PETSc.SNES-class.html#getLinearSolveFailures
petsc4py.PETSc.SNES.getKSPFailures petsc4py.PETSc.SNES-class.html#getKSPFailures
petsc4py.PETSc.SNES.setPythonType petsc4py.PETSc.SNES-class.html#setPythonType
petsc4py.PETSc.SNES.getMaxLinearSolveFailures petsc4py.PETSc.SNES-class.html#getMaxLinearSolveFailures
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.SNES.getUseFD petsc4py.PETSc.SNES-class.html#getUseFD
petsc4py.PETSc.SNES.setResetCounters petsc4py.PETSc.SNES-class.html#setResetCounters
petsc4py.PETSc.SNES.solve petsc4py.PETSc.SNES-class.html#solve
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.SNES.setPythonContext petsc4py.PETSc.SNES-class.html#setPythonContext
petsc4py.PETSc.SNES.getMaxNonlinearStepFailures petsc4py.PETSc.SNES-class.html#getMaxNonlinearStepFailures
petsc4py.PETSc.SNES.use_fd petsc4py.PETSc.SNES-class.html#use_fd
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.SNES.ConvergedReason petsc4py.PETSc.SNES.ConvergedReason-class.html
petsc4py.PETSc.SNES.ConvergedReason.DIVERGED_JACOBIAN_DOMAIN petsc4py.PETSc.SNES.ConvergedReason-class.html#DIVERGED_JACOBIAN_DOMAIN
petsc4py.PETSc.SNES.ConvergedReason.DIVERGED_MAX_IT petsc4py.PETSc.SNES.ConvergedReason-class.html#DIVERGED_MAX_IT
petsc4py.PETSc.SNES.ConvergedReason.DIVERGED_FNORM_NAN petsc4py.PETSc.SNES.ConvergedReason-class.html#DIVERGED_FNORM_NAN
petsc4py.PETSc.SNES.ConvergedReason.DIVERGED_INNER petsc4py.PETSc.SNES.ConvergedReason-class.html#DIVERGED_INNER
petsc4py.PETSc.SNES.ConvergedReason.DIVERGED_LINE_SEARCH petsc4py.PETSc.SNES.ConvergedReason-class.html#DIVERGED_LINE_SEARCH
petsc4py.PETSc.SNES.ConvergedReason.CONVERGED_FNORM_ABS petsc4py.PETSc.SNES.ConvergedReason-class.html#CONVERGED_FNORM_ABS
petsc4py.PETSc.SNES.ConvergedReason.DIVERGED_TR_DELTA petsc4py.PETSc.SNES.ConvergedReason-class.html#DIVERGED_TR_DELTA
petsc4py.PETSc.SNES.ConvergedReason.ITERATING petsc4py.PETSc.SNES.ConvergedReason-class.html#ITERATING
petsc4py.PETSc.SNES.ConvergedReason.CONVERGED_ITS petsc4py.PETSc.SNES.ConvergedReason-class.html#CONVERGED_ITS
petsc4py.PETSc.SNES.ConvergedReason.CONVERGED_SNORM_RELATIVE petsc4py.PETSc.SNES.ConvergedReason-class.html#CONVERGED_SNORM_RELATIVE
petsc4py.PETSc.SNES.ConvergedReason.CONVERGED_FNORM_RELATIVE petsc4py.PETSc.SNES.ConvergedReason-class.html#CONVERGED_FNORM_RELATIVE
petsc4py.PETSc.SNES.ConvergedReason.DIVERGED_LOCAL_MIN petsc4py.PETSc.SNES.ConvergedReason-class.html#DIVERGED_LOCAL_MIN
petsc4py.PETSc.SNES.ConvergedReason.DIVERGED_DTOL petsc4py.PETSc.SNES.ConvergedReason-class.html#DIVERGED_DTOL
petsc4py.PETSc.SNES.ConvergedReason.DIVERGED_FUNCTION_COUNT petsc4py.PETSc.SNES.ConvergedReason-class.html#DIVERGED_FUNCTION_COUNT
petsc4py.PETSc.SNES.ConvergedReason.DIVERGED_FUNCTION_DOMAIN petsc4py.PETSc.SNES.ConvergedReason-class.html#DIVERGED_FUNCTION_DOMAIN
petsc4py.PETSc.SNES.ConvergedReason.__qualname__ petsc4py.PETSc.SNES.ConvergedReason-class.html#__qualname__
petsc4py.PETSc.SNES.ConvergedReason.CONVERGED_ITERATING petsc4py.PETSc.SNES.ConvergedReason-class.html#CONVERGED_ITERATING
petsc4py.PETSc.SNES.ConvergedReason.DIVERGED_LINEAR_SOLVE petsc4py.PETSc.SNES.ConvergedReason-class.html#DIVERGED_LINEAR_SOLVE
petsc4py.PETSc.SNES.NormSchedule petsc4py.PETSc.SNES.NormSchedule-class.html
petsc4py.PETSc.SNES.NormSchedule.NORM_INITIAL_FINAL_ONLY petsc4py.PETSc.SNES.NormSchedule-class.html#NORM_INITIAL_FINAL_ONLY
petsc4py.PETSc.SNES.NormSchedule.DEFAULT petsc4py.PETSc.SNES.NormSchedule-class.html#DEFAULT
petsc4py.PETSc.SNES.NormSchedule.NORM_NONE petsc4py.PETSc.SNES.NormSchedule-class.html#NORM_NONE
petsc4py.PETSc.SNES.NormSchedule.NONE petsc4py.PETSc.SNES.NormSchedule-class.html#NONE
petsc4py.PETSc.SNES.NormSchedule.INITIAL_ONLY petsc4py.PETSc.SNES.NormSchedule-class.html#INITIAL_ONLY
petsc4py.PETSc.SNES.NormSchedule.FINAL_ONLY petsc4py.PETSc.SNES.NormSchedule-class.html#FINAL_ONLY
petsc4py.PETSc.SNES.NormSchedule.NORM_INITIAL_ONLY petsc4py.PETSc.SNES.NormSchedule-class.html#NORM_INITIAL_ONLY
petsc4py.PETSc.SNES.NormSchedule.NORM_DEFAULT petsc4py.PETSc.SNES.NormSchedule-class.html#NORM_DEFAULT
petsc4py.PETSc.SNES.NormSchedule.INITIAL_FINAL_ONLY petsc4py.PETSc.SNES.NormSchedule-class.html#INITIAL_FINAL_ONLY
petsc4py.PETSc.SNES.NormSchedule.ALWAYS petsc4py.PETSc.SNES.NormSchedule-class.html#ALWAYS
petsc4py.PETSc.SNES.NormSchedule.NORM_ALWAYS petsc4py.PETSc.SNES.NormSchedule-class.html#NORM_ALWAYS
petsc4py.PETSc.SNES.NormSchedule.__qualname__ petsc4py.PETSc.SNES.NormSchedule-class.html#__qualname__
petsc4py.PETSc.SNES.NormSchedule.NORM_FINAL_ONLY petsc4py.PETSc.SNES.NormSchedule-class.html#NORM_FINAL_ONLY
petsc4py.PETSc.SNES.Type petsc4py.PETSc.SNES.Type-class.html
petsc4py.PETSc.SNES.Type.NEWTONTR petsc4py.PETSc.SNES.Type-class.html#NEWTONTR
petsc4py.PETSc.SNES.Type.PYTHON petsc4py.PETSc.SNES.Type-class.html#PYTHON
petsc4py.PETSc.SNES.Type.PATCH petsc4py.PETSc.SNES.Type-class.html#PATCH
petsc4py.PETSc.SNES.Type.NASM petsc4py.PETSc.SNES.Type-class.html#NASM
petsc4py.PETSc.SNES.Type.NGS petsc4py.PETSc.SNES.Type-class.html#NGS
petsc4py.PETSc.SNES.Type.NEWTONLS petsc4py.PETSc.SNES.Type-class.html#NEWTONLS
petsc4py.PETSc.SNES.Type.ASPIN petsc4py.PETSc.SNES.Type-class.html#ASPIN
petsc4py.PETSc.SNES.Type.SHELL petsc4py.PETSc.SNES.Type-class.html#SHELL
petsc4py.PETSc.SNES.Type.FAS petsc4py.PETSc.SNES.Type-class.html#FAS
petsc4py.PETSc.SNES.Type.ANDERSON petsc4py.PETSc.SNES.Type-class.html#ANDERSON
petsc4py.PETSc.SNES.Type.NRICHARDSON petsc4py.PETSc.SNES.Type-class.html#NRICHARDSON
petsc4py.PETSc.SNES.Type.VINEWTONRSLS petsc4py.PETSc.SNES.Type-class.html#VINEWTONRSLS
petsc4py.PETSc.SNES.Type.MS petsc4py.PETSc.SNES.Type-class.html#MS
petsc4py.PETSc.SNES.Type.KSPONLY petsc4py.PETSc.SNES.Type-class.html#KSPONLY
petsc4py.PETSc.SNES.Type.VINEWTONSSLS petsc4py.PETSc.SNES.Type-class.html#VINEWTONSSLS
petsc4py.PETSc.SNES.Type.COMPOSITE petsc4py.PETSc.SNES.Type-class.html#COMPOSITE
petsc4py.PETSc.SNES.Type.__qualname__ petsc4py.PETSc.SNES.Type-class.html#__qualname__
petsc4py.PETSc.SNES.Type.KSPTRANSPOSEONLY petsc4py.PETSc.SNES.Type-class.html#KSPTRANSPOSEONLY
petsc4py.PETSc.SNES.Type.NGMRES petsc4py.PETSc.SNES.Type-class.html#NGMRES
petsc4py.PETSc.SNES.Type.NCG petsc4py.PETSc.SNES.Type-class.html#NCG
petsc4py.PETSc.SNES.Type.QN petsc4py.PETSc.SNES.Type-class.html#QN
petsc4py.PETSc.Scatter petsc4py.PETSc.Scatter-class.html
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Scatter.toAll petsc4py.PETSc.Scatter-class.html#toAll
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Scatter.toZero petsc4py.PETSc.Scatter-class.html#toZero
petsc4py.PETSc.Scatter.scatterBegin petsc4py.PETSc.Scatter-class.html#scatterBegin
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.Scatter.Type petsc4py.PETSc.Scatter.Type-class.html
petsc4py.PETSc.Scatter.setType petsc4py.PETSc.Scatter-class.html#setType
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Scatter.scatterEnd petsc4py.PETSc.Scatter-class.html#scatterEnd
petsc4py.PETSc.Scatter.end petsc4py.PETSc.Scatter-class.html#end
petsc4py.PETSc.Scatter.__new__ petsc4py.PETSc.Scatter-class.html#__new__
petsc4py.PETSc.Scatter.create petsc4py.PETSc.Scatter-class.html#create
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.Scatter.__call__ petsc4py.PETSc.Scatter-class.html#__call__
petsc4py.PETSc.Scatter.destroy petsc4py.PETSc.Scatter-class.html#destroy
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Scatter.begin petsc4py.PETSc.Scatter-class.html#begin
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.Scatter.setUp petsc4py.PETSc.Scatter-class.html#setUp
petsc4py.PETSc.Scatter.getType petsc4py.PETSc.Scatter-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Scatter.setFromOptions petsc4py.PETSc.Scatter-class.html#setFromOptions
petsc4py.PETSc.Scatter.Mode petsc4py.PETSc.ScatterMode-class.html
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.Scatter.copy petsc4py.PETSc.Scatter-class.html#copy
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Scatter.scatter petsc4py.PETSc.Scatter-class.html#scatter
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Scatter.view petsc4py.PETSc.Scatter-class.html#view
petsc4py.PETSc.Scatter.Type petsc4py.PETSc.Scatter.Type-class.html
petsc4py.PETSc.Scatter.Type.SEQ petsc4py.PETSc.Scatter.Type-class.html#SEQ
petsc4py.PETSc.Scatter.Type.MPI3NODE petsc4py.PETSc.Scatter.Type-class.html#MPI3NODE
petsc4py.PETSc.Scatter.Type.__qualname__ petsc4py.PETSc.Scatter.Type-class.html#__qualname__
petsc4py.PETSc.Scatter.Type.MPI1 petsc4py.PETSc.Scatter.Type-class.html#MPI1
petsc4py.PETSc.Scatter.Type.MPI3 petsc4py.PETSc.Scatter.Type-class.html#MPI3
petsc4py.PETSc.Scatter.Type.SF petsc4py.PETSc.Scatter.Type-class.html#SF
petsc4py.PETSc.ScatterMode petsc4py.PETSc.ScatterMode-class.html
petsc4py.PETSc.ScatterMode.REVERSE petsc4py.PETSc.ScatterMode-class.html#REVERSE
petsc4py.PETSc.ScatterMode.SCATTER_FORWARD petsc4py.PETSc.ScatterMode-class.html#SCATTER_FORWARD
petsc4py.PETSc.ScatterMode.REVERSE_LOCAL petsc4py.PETSc.ScatterMode-class.html#REVERSE_LOCAL
petsc4py.PETSc.ScatterMode.SCATTER_LOCAL petsc4py.PETSc.ScatterMode-class.html#SCATTER_LOCAL
petsc4py.PETSc.ScatterMode.SCATTER_FORWARD_LOCAL petsc4py.PETSc.ScatterMode-class.html#SCATTER_FORWARD_LOCAL
petsc4py.PETSc.ScatterMode.SCATTER_REVERSE petsc4py.PETSc.ScatterMode-class.html#SCATTER_REVERSE
petsc4py.PETSc.ScatterMode.SCATTER_REVERSE_LOCAL petsc4py.PETSc.ScatterMode-class.html#SCATTER_REVERSE_LOCAL
petsc4py.PETSc.ScatterMode.FORWARD petsc4py.PETSc.ScatterMode-class.html#FORWARD
petsc4py.PETSc.ScatterMode.__qualname__ petsc4py.PETSc.ScatterMode-class.html#__qualname__
petsc4py.PETSc.ScatterMode.FORWARD_LOCAL petsc4py.PETSc.ScatterMode-class.html#FORWARD_LOCAL
petsc4py.PETSc.Section petsc4py.PETSc.Section-class.html
petsc4py.PETSc.Section.setFieldConstraintIndices petsc4py.PETSc.Section-class.html#setFieldConstraintIndices
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Section.getChart petsc4py.PETSc.Section-class.html#getChart
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.Section.addConstraintDof petsc4py.PETSc.Section-class.html#addConstraintDof
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.Section.getConstraintIndices petsc4py.PETSc.Section-class.html#getConstraintIndices
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.Section.setOffset petsc4py.PETSc.Section-class.html#setOffset
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.Section.setNumFields petsc4py.PETSc.Section-class.html#setNumFields
petsc4py.PETSc.Object.setFromOptions petsc4py.PETSc.Object-class.html#setFromOptions
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Section.setConstraintDof petsc4py.PETSc.Section-class.html#setConstraintDof
petsc4py.PETSc.Section.addDof petsc4py.PETSc.Section-class.html#addDof
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Section.getFieldComponents petsc4py.PETSc.Section-class.html#getFieldComponents
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Section.view petsc4py.PETSc.Section-class.html#view
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Section.setFieldComponents petsc4py.PETSc.Section-class.html#setFieldComponents
petsc4py.PETSc.Section.setChart petsc4py.PETSc.Section-class.html#setChart
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Section.setConstraintIndices petsc4py.PETSc.Section-class.html#setConstraintIndices
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Section.getDof petsc4py.PETSc.Section-class.html#getDof
petsc4py.PETSc.Section.setUp petsc4py.PETSc.Section-class.html#setUp
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Section.createGlobalSection petsc4py.PETSc.Section-class.html#createGlobalSection
petsc4py.PETSc.Section.setFieldName petsc4py.PETSc.Section-class.html#setFieldName
petsc4py.PETSc.Section.setFieldConstraintDof petsc4py.PETSc.Section-class.html#setFieldConstraintDof
petsc4py.PETSc.Section.addFieldConstraintDof petsc4py.PETSc.Section-class.html#addFieldConstraintDof
petsc4py.PETSc.Section.getStorageSize petsc4py.PETSc.Section-class.html#getStorageSize
petsc4py.PETSc.Section.getFieldConstraintIndices petsc4py.PETSc.Section-class.html#getFieldConstraintIndices
petsc4py.PETSc.Section.getOffsetRange petsc4py.PETSc.Section-class.html#getOffsetRange
petsc4py.PETSc.Section.create petsc4py.PETSc.Section-class.html#create
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Section.setDof petsc4py.PETSc.Section-class.html#setDof
petsc4py.PETSc.Object.getType petsc4py.PETSc.Object-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Section.getFieldOffset petsc4py.PETSc.Section-class.html#getFieldOffset
petsc4py.PETSc.Section.reset petsc4py.PETSc.Section-class.html#reset
petsc4py.PETSc.Section.getOffset petsc4py.PETSc.Section-class.html#getOffset
petsc4py.PETSc.Section.getFieldName petsc4py.PETSc.Section-class.html#getFieldName
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Section.__new__ petsc4py.PETSc.Section-class.html#__new__
petsc4py.PETSc.Section.getFieldConstraintDof petsc4py.PETSc.Section-class.html#getFieldConstraintDof
petsc4py.PETSc.Section.getMaxDof petsc4py.PETSc.Section-class.html#getMaxDof
petsc4py.PETSc.Section.setFieldOffset petsc4py.PETSc.Section-class.html#setFieldOffset
petsc4py.PETSc.Section.setFieldDof petsc4py.PETSc.Section-class.html#setFieldDof
petsc4py.PETSc.Section.destroy petsc4py.PETSc.Section-class.html#destroy
petsc4py.PETSc.Section.getConstraintDof petsc4py.PETSc.Section-class.html#getConstraintDof
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Section.getConstrainedStorageSize petsc4py.PETSc.Section-class.html#getConstrainedStorageSize
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Section.clone petsc4py.PETSc.Section-class.html#clone
petsc4py.PETSc.Section.getFieldDof petsc4py.PETSc.Section-class.html#getFieldDof
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.Section.getNumFields petsc4py.PETSc.Section-class.html#getNumFields
petsc4py.PETSc.Section.addFieldDof petsc4py.PETSc.Section-class.html#addFieldDof
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Sys petsc4py.PETSc.Sys-class.html
petsc4py.PETSc.Sys.pushErrorHandler petsc4py.PETSc.Sys-class.html#pushErrorHandler
petsc4py.PETSc.Sys.getDefaultComm petsc4py.PETSc.Sys-class.html#getDefaultComm
petsc4py.PETSc.Sys.popSignalHandler petsc4py.PETSc.Sys-class.html#popSignalHandler
petsc4py.PETSc.Sys.sleep petsc4py.PETSc.Sys-class.html#sleep
petsc4py.PETSc.Sys.Print petsc4py.PETSc.Sys-class.html#Print
petsc4py.PETSc.Sys.syncFlush petsc4py.PETSc.Sys-class.html#syncFlush
petsc4py.PETSc.Sys.getVersion petsc4py.PETSc.Sys-class.html#getVersion
petsc4py.PETSc.Sys.__new__ petsc4py.PETSc.Sys-class.html#__new__
petsc4py.PETSc.Sys.isFinalized petsc4py.PETSc.Sys-class.html#isFinalized
petsc4py.PETSc.Sys.splitOwnership petsc4py.PETSc.Sys-class.html#splitOwnership
petsc4py.PETSc.Sys.infoAllow petsc4py.PETSc.Sys-class.html#infoAllow
petsc4py.PETSc.Sys.isInitialized petsc4py.PETSc.Sys-class.html#isInitialized
petsc4py.PETSc.Sys.getVersionInfo petsc4py.PETSc.Sys-class.html#getVersionInfo
petsc4py.PETSc.Sys.setDefaultComm petsc4py.PETSc.Sys-class.html#setDefaultComm
petsc4py.PETSc.Sys.popErrorHandler petsc4py.PETSc.Sys-class.html#popErrorHandler
petsc4py.PETSc.Sys.syncPrint petsc4py.PETSc.Sys-class.html#syncPrint
petsc4py.PETSc.Sys.registerCitation petsc4py.PETSc.Sys-class.html#registerCitation
petsc4py.PETSc.TAO petsc4py.PETSc.TAO-class.html
petsc4py.PETSc.TAO.getFunctionValue petsc4py.PETSc.TAO-class.html#getFunctionValue
petsc4py.PETSc.TAO.setMonitor petsc4py.PETSc.TAO-class.html#setMonitor
petsc4py.PETSc.TAO.cancelMonitor petsc4py.PETSc.TAO-class.html#cancelMonitor
petsc4py.PETSc.TAO.setGradient petsc4py.PETSc.TAO-class.html#setGradient
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.TAO.computeObjectiveGradient petsc4py.PETSc.TAO-class.html#computeObjectiveGradient
petsc4py.PETSc.TAO.computeConstraints petsc4py.PETSc.TAO-class.html#computeConstraints
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.TAO.its petsc4py.PETSc.TAO-class.html#its
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.TAO.ksp petsc4py.PETSc.TAO-class.html#ksp
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.TAO.Reason petsc4py.PETSc.TAO.Reason-class.html
petsc4py.PETSc.TAO.reason petsc4py.PETSc.TAO-class.html#reason
petsc4py.PETSc.TAO.getConvergedReason petsc4py.PETSc.TAO-class.html#getConvergedReason
petsc4py.PETSc.TAO.getGradientNorm petsc4py.PETSc.TAO-class.html#getGradientNorm
petsc4py.PETSc.TAO.setConstraintTolerances petsc4py.PETSc.TAO-class.html#setConstraintTolerances
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.TAO.setOptionsPrefix petsc4py.PETSc.TAO-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.TAO.getObjectiveValue petsc4py.PETSc.TAO-class.html#getObjectiveValue
petsc4py.PETSc.TAO.converged petsc4py.PETSc.TAO-class.html#converged
petsc4py.PETSc.TAO.computeGradient petsc4py.PETSc.TAO-class.html#computeGradient
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.TAO.setConstraints petsc4py.PETSc.TAO-class.html#setConstraints
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.TAO.setAppCtx petsc4py.PETSc.TAO-class.html#setAppCtx
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.TAO.solution petsc4py.PETSc.TAO-class.html#solution
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.TAO.view petsc4py.PETSc.TAO-class.html#view
petsc4py.PETSc.TAO.ctol petsc4py.PETSc.TAO-class.html#ctol
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.TAO.setJacobian petsc4py.PETSc.TAO-class.html#setJacobian
petsc4py.PETSc.TAO.setGradientNorm petsc4py.PETSc.TAO-class.html#setGradientNorm
petsc4py.PETSc.TAO.Type petsc4py.PETSc.TAO.Type-class.html
petsc4py.PETSc.TAO.setObjective petsc4py.PETSc.TAO-class.html#setObjective
petsc4py.PETSc.TAO.iterating petsc4py.PETSc.TAO-class.html#iterating
petsc4py.PETSc.TAO.getGradient petsc4py.PETSc.TAO-class.html#getGradient
petsc4py.PETSc.TAO.gradient petsc4py.PETSc.TAO-class.html#gradient
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.TAO.ftol petsc4py.PETSc.TAO-class.html#ftol
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.TAO.computeJacobian petsc4py.PETSc.TAO-class.html#computeJacobian
petsc4py.PETSc.TAO.setUp petsc4py.PETSc.TAO-class.html#setUp
petsc4py.PETSc.TAO.getLMVMH0 petsc4py.PETSc.TAO-class.html#getLMVMH0
petsc4py.PETSc.TAO.getOptionsPrefix petsc4py.PETSc.TAO-class.html#getOptionsPrefix
petsc4py.PETSc.TAO.setInitialTrustRegionRadius petsc4py.PETSc.TAO-class.html#setInitialTrustRegionRadius
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.TAO.setJacobianDesign petsc4py.PETSc.TAO-class.html#setJacobianDesign
petsc4py.PETSc.TAO.appctx petsc4py.PETSc.TAO-class.html#appctx
petsc4py.PETSc.TAO.getConvergenceTest petsc4py.PETSc.TAO-class.html#getConvergenceTest
petsc4py.PETSc.TAO.gnorm petsc4py.PETSc.TAO-class.html#gnorm
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.TAO.setHessian petsc4py.PETSc.TAO-class.html#setHessian
petsc4py.PETSc.TAO.getConstraintTolerances petsc4py.PETSc.TAO-class.html#getConstraintTolerances
petsc4py.PETSc.TAO.setLMVMH0 petsc4py.PETSc.TAO-class.html#setLMVMH0
petsc4py.PETSc.TAO.setTolerances petsc4py.PETSc.TAO-class.html#setTolerances
petsc4py.PETSc.TAO.setInitial petsc4py.PETSc.TAO-class.html#setInitial
petsc4py.PETSc.TAO.getSolutionNorm petsc4py.PETSc.TAO-class.html#getSolutionNorm
petsc4py.PETSc.TAO.setType petsc4py.PETSc.TAO-class.html#setType
petsc4py.PETSc.TAO.getVariableBounds petsc4py.PETSc.TAO-class.html#getVariableBounds
petsc4py.PETSc.TAO.create petsc4py.PETSc.TAO-class.html#create
petsc4py.PETSc.TAO.computeVariableBounds petsc4py.PETSc.TAO-class.html#computeVariableBounds
petsc4py.PETSc.TAO.setJacobianState petsc4py.PETSc.TAO-class.html#setJacobianState
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.TAO.function petsc4py.PETSc.TAO-class.html#function
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.TAO.getType petsc4py.PETSc.TAO-class.html#getType
petsc4py.PETSc.TAO.getMonitor petsc4py.PETSc.TAO-class.html#getMonitor
petsc4py.PETSc.TAO.computeDualVariables petsc4py.PETSc.TAO-class.html#computeDualVariables
petsc4py.PETSc.TAO.getAppCtx petsc4py.PETSc.TAO-class.html#getAppCtx
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.TAO.computeHessian petsc4py.PETSc.TAO-class.html#computeHessian
petsc4py.PETSc.TAO.getLMVMH0KSP petsc4py.PETSc.TAO-class.html#getLMVMH0KSP
petsc4py.PETSc.TAO.setVariableBounds petsc4py.PETSc.TAO-class.html#setVariableBounds
petsc4py.PETSc.TAO.computeResidual petsc4py.PETSc.TAO-class.html#computeResidual
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.TAO.computeObjective petsc4py.PETSc.TAO-class.html#computeObjective
petsc4py.PETSc.TAO.setConvergenceTest petsc4py.PETSc.TAO-class.html#setConvergenceTest
petsc4py.PETSc.TAO.getIterationNumber petsc4py.PETSc.TAO-class.html#getIterationNumber
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.TAO.setObjectiveGradient petsc4py.PETSc.TAO-class.html#setObjectiveGradient
petsc4py.PETSc.TAO.setConvergedReason petsc4py.PETSc.TAO-class.html#setConvergedReason
petsc4py.PETSc.TAO.getSolution petsc4py.PETSc.TAO-class.html#getSolution
petsc4py.PETSc.TAO.diverged petsc4py.PETSc.TAO-class.html#diverged
petsc4py.PETSc.TAO.__new__ petsc4py.PETSc.TAO-class.html#__new__
petsc4py.PETSc.TAO.setResidual petsc4py.PETSc.TAO-class.html#setResidual
petsc4py.PETSc.TAO.objective petsc4py.PETSc.TAO-class.html#objective
petsc4py.PETSc.TAO.destroy petsc4py.PETSc.TAO-class.html#destroy
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.TAO.getKSP petsc4py.PETSc.TAO-class.html#getKSP
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.TAO.getTolerances petsc4py.PETSc.TAO-class.html#getTolerances
petsc4py.PETSc.TAO.getSolutionStatus petsc4py.PETSc.TAO-class.html#getSolutionStatus
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.TAO.gtol petsc4py.PETSc.TAO-class.html#gtol
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.TAO.setStateDesignIS petsc4py.PETSc.TAO-class.html#setStateDesignIS
petsc4py.PETSc.TAO.solve petsc4py.PETSc.TAO-class.html#solve
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.TAO.setFromOptions petsc4py.PETSc.TAO-class.html#setFromOptions
petsc4py.PETSc.TAO.cnorm petsc4py.PETSc.TAO-class.html#cnorm
petsc4py.PETSc.TAO.Reason petsc4py.PETSc.TAO.Reason-class.html
petsc4py.PETSc.TAO.Reason.CONVERGED_MINF petsc4py.PETSc.TAO.Reason-class.html#CONVERGED_MINF
petsc4py.PETSc.TAO.Reason.CONVERGED_GATOL petsc4py.PETSc.TAO.Reason-class.html#CONVERGED_GATOL
petsc4py.PETSc.TAO.Reason.CONVERGED_GRTOL petsc4py.PETSc.TAO.Reason-class.html#CONVERGED_GRTOL
petsc4py.PETSc.TAO.Reason.ITERATING petsc4py.PETSc.TAO.Reason-class.html#ITERATING
petsc4py.PETSc.TAO.Reason.DIVERGED_TR_REDUCTION petsc4py.PETSc.TAO.Reason-class.html#DIVERGED_TR_REDUCTION
petsc4py.PETSc.TAO.Reason.DIVERGED_USER petsc4py.PETSc.TAO.Reason-class.html#DIVERGED_USER
petsc4py.PETSc.TAO.Reason.CONVERGED_STEPTOL petsc4py.PETSc.TAO.Reason-class.html#CONVERGED_STEPTOL
petsc4py.PETSc.TAO.Reason.DIVERGED_NAN petsc4py.PETSc.TAO.Reason-class.html#DIVERGED_NAN
petsc4py.PETSc.TAO.Reason.DIVERGED_MAXITS petsc4py.PETSc.TAO.Reason-class.html#DIVERGED_MAXITS
petsc4py.PETSc.TAO.Reason.CONTINUE_ITERATING petsc4py.PETSc.TAO.Reason-class.html#CONTINUE_ITERATING
petsc4py.PETSc.TAO.Reason.__qualname__ petsc4py.PETSc.TAO.Reason-class.html#__qualname__
petsc4py.PETSc.TAO.Reason.CONVERGED_GTTOL petsc4py.PETSc.TAO.Reason-class.html#CONVERGED_GTTOL
petsc4py.PETSc.TAO.Reason.CONVERGED_USER petsc4py.PETSc.TAO.Reason-class.html#CONVERGED_USER
petsc4py.PETSc.TAO.Reason.CONVERGED_ITERATING petsc4py.PETSc.TAO.Reason-class.html#CONVERGED_ITERATING
petsc4py.PETSc.TAO.Reason.DIVERGED_LS_FAILURE petsc4py.PETSc.TAO.Reason-class.html#DIVERGED_LS_FAILURE
petsc4py.PETSc.TAO.Reason.DIVERGED_MAXFCN petsc4py.PETSc.TAO.Reason-class.html#DIVERGED_MAXFCN
petsc4py.PETSc.TAO.Type petsc4py.PETSc.TAO.Type-class.html
petsc4py.PETSc.TAO.Type.BQNKLS petsc4py.PETSc.TAO.Type-class.html#BQNKLS
petsc4py.PETSc.TAO.Type.BMRM petsc4py.PETSc.TAO.Type-class.html#BMRM
petsc4py.PETSc.TAO.Type.BNCG petsc4py.PETSc.TAO.Type-class.html#BNCG
petsc4py.PETSc.TAO.Type.ASFLS petsc4py.PETSc.TAO.Type-class.html#ASFLS
petsc4py.PETSc.TAO.Type.TRON petsc4py.PETSc.TAO.Type-class.html#TRON
petsc4py.PETSc.TAO.Type.NLS petsc4py.PETSc.TAO.Type-class.html#NLS
petsc4py.PETSc.TAO.Type.SHELL petsc4py.PETSc.TAO.Type-class.html#SHELL
petsc4py.PETSc.TAO.Type.NM petsc4py.PETSc.TAO.Type-class.html#NM
petsc4py.PETSc.TAO.Type.GPCG petsc4py.PETSc.TAO.Type-class.html#GPCG
petsc4py.PETSc.TAO.Type.BNLS petsc4py.PETSc.TAO.Type-class.html#BNLS
petsc4py.PETSc.TAO.Type.BNTL petsc4py.PETSc.TAO.Type-class.html#BNTL
petsc4py.PETSc.TAO.Type.SSILS petsc4py.PETSc.TAO.Type-class.html#SSILS
petsc4py.PETSc.TAO.Type.OWLQN petsc4py.PETSc.TAO.Type-class.html#OWLQN
petsc4py.PETSc.TAO.Type.BNTR petsc4py.PETSc.TAO.Type-class.html#BNTR
petsc4py.PETSc.TAO.Type.BQPIP petsc4py.PETSc.TAO.Type-class.html#BQPIP
petsc4py.PETSc.TAO.Type.SSFLS petsc4py.PETSc.TAO.Type-class.html#SSFLS
petsc4py.PETSc.TAO.Type.ADMM petsc4py.PETSc.TAO.Type-class.html#ADMM
petsc4py.PETSc.TAO.Type.PDIPM petsc4py.PETSc.TAO.Type-class.html#PDIPM
petsc4py.PETSc.TAO.Type.CG petsc4py.PETSc.TAO.Type-class.html#CG
petsc4py.PETSc.TAO.Type.LMVM petsc4py.PETSc.TAO.Type-class.html#LMVM
petsc4py.PETSc.TAO.Type.BLMVM petsc4py.PETSc.TAO.Type-class.html#BLMVM
petsc4py.PETSc.TAO.Type.BQNLS petsc4py.PETSc.TAO.Type-class.html#BQNLS
petsc4py.PETSc.TAO.Type.ASILS petsc4py.PETSc.TAO.Type-class.html#ASILS
petsc4py.PETSc.TAO.Type.BQNKTR petsc4py.PETSc.TAO.Type-class.html#BQNKTR
petsc4py.PETSc.TAO.Type.NTR petsc4py.PETSc.TAO.Type-class.html#NTR
petsc4py.PETSc.TAO.Type.IPM petsc4py.PETSc.TAO.Type-class.html#IPM
petsc4py.PETSc.TAO.Type.__qualname__ petsc4py.PETSc.TAO.Type-class.html#__qualname__
petsc4py.PETSc.TAO.Type.BQNKTL petsc4py.PETSc.TAO.Type-class.html#BQNKTL
petsc4py.PETSc.TAO.Type.NTL petsc4py.PETSc.TAO.Type-class.html#NTL
petsc4py.PETSc.TAO.Type.LCL petsc4py.PETSc.TAO.Type-class.html#LCL
petsc4py.PETSc.TAO.Type.BRGN petsc4py.PETSc.TAO.Type-class.html#BRGN
petsc4py.PETSc.TAO.Type.POUNDERS petsc4py.PETSc.TAO.Type-class.html#POUNDERS
petsc4py.PETSc.TS petsc4py.PETSc.TS-class.html
petsc4py.PETSc.TS.getConvergedReason petsc4py.PETSc.TS-class.html#getConvergedReason
petsc4py.PETSc.TS.setDM petsc4py.PETSc.TS-class.html#setDM
petsc4py.PETSc.TS.computeRHSJacobian petsc4py.PETSc.TS-class.html#computeRHSJacobian
petsc4py.PETSc.TS.ExactFinalTime petsc4py.PETSc.TS.ExactFinalTime-class.html
petsc4py.PETSc.TS.getTime petsc4py.PETSc.TS-class.html#getTime
petsc4py.PETSc.TS.cancelMonitor petsc4py.PETSc.TS-class.html#cancelMonitor
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.TS.getEquationType petsc4py.PETSc.TS-class.html#getEquationType
petsc4py.PETSc.TS.computeRHSFunction petsc4py.PETSc.TS-class.html#computeRHSFunction
petsc4py.PETSc.TS.setIJacobianP petsc4py.PETSc.TS-class.html#setIJacobianP
petsc4py.PETSc.TS.setTheta petsc4py.PETSc.TS-class.html#setTheta
petsc4py.PETSc.TS.getTimeStep petsc4py.PETSc.TS-class.html#getTimeStep
petsc4py.PETSc.TS.setExactFinalTime petsc4py.PETSc.TS-class.html#setExactFinalTime
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.TS.monitor petsc4py.PETSc.TS-class.html#monitor
petsc4py.PETSc.TS.getStepRejections petsc4py.PETSc.TS-class.html#getStepRejections
petsc4py.PETSc.TS.setMonitor petsc4py.PETSc.TS-class.html#setMonitor
petsc4py.PETSc.TS.rtol petsc4py.PETSc.TS-class.html#rtol
petsc4py.PETSc.TS.computeRHSFunctionLinear petsc4py.PETSc.TS-class.html#computeRHSFunctionLinear
petsc4py.PETSc.TS.computeRHSJacobianConstant petsc4py.PETSc.TS-class.html#computeRHSJacobianConstant
petsc4py.PETSc.TS.createQuadratureTS petsc4py.PETSc.TS-class.html#createQuadratureTS
petsc4py.PETSc.TS.vec_sol petsc4py.PETSc.TS-class.html#vec_sol
petsc4py.PETSc.TS.dm petsc4py.PETSc.TS-class.html#dm
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.TS.setOptionsPrefix petsc4py.PETSc.TS-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.TS.ProblemType petsc4py.PETSc.TS.ProblemType-class.html
petsc4py.PETSc.TS.getI2Jacobian petsc4py.PETSc.TS-class.html#getI2Jacobian
petsc4py.PETSc.TS.setFromOptions petsc4py.PETSc.TS-class.html#setFromOptions
petsc4py.PETSc.TS.destroy petsc4py.PETSc.TS-class.html#destroy
petsc4py.PETSc.TS.setMaxSNESFailures petsc4py.PETSc.TS-class.html#setMaxSNESFailures
petsc4py.PETSc.TS.getRHSFunction petsc4py.PETSc.TS-class.html#getRHSFunction
petsc4py.PETSc.TS.setCostGradients petsc4py.PETSc.TS-class.html#setCostGradients
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.TS.setSaveTrajectory petsc4py.PETSc.TS-class.html#setSaveTrajectory
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.TS.setAppCtx petsc4py.PETSc.TS-class.html#setAppCtx
petsc4py.PETSc.TS.step_number petsc4py.PETSc.TS-class.html#step_number
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.TS.adjointSolve petsc4py.PETSc.TS-class.html#adjointSolve
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.TS.setStepNumber petsc4py.PETSc.TS-class.html#setStepNumber
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.TS.ExactFinalTimeOption petsc4py.PETSc.TS.ExactFinalTime-class.html
petsc4py.PETSc.TS.adjointSetUp petsc4py.PETSc.TS-class.html#adjointSetUp
petsc4py.PETSc.TS.setPythonContext petsc4py.PETSc.TS-class.html#setPythonContext
petsc4py.PETSc.TS.computeI2Function petsc4py.PETSc.TS-class.html#computeI2Function
petsc4py.PETSc.TS.ConvergedReason petsc4py.PETSc.TS.ConvergedReason-class.html
petsc4py.PETSc.TS.getKSPIterations petsc4py.PETSc.TS-class.html#getKSPIterations
petsc4py.PETSc.TS.getSNESFailures petsc4py.PETSc.TS-class.html#getSNESFailures
petsc4py.PETSc.TS.computeIFunction petsc4py.PETSc.TS-class.html#computeIFunction
petsc4py.PETSc.TS.time_step petsc4py.PETSc.TS-class.html#time_step
petsc4py.PETSc.TS.Type petsc4py.PETSc.TS.Type-class.html
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.TS.iterating petsc4py.PETSc.TS-class.html#iterating
petsc4py.PETSc.TS.setErrorIfStepFails petsc4py.PETSc.TS-class.html#setErrorIfStepFails
petsc4py.PETSc.TS.getRHSJacobian petsc4py.PETSc.TS-class.html#getRHSJacobian
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.TS.setMaxSteps petsc4py.PETSc.TS-class.html#setMaxSteps
petsc4py.PETSc.TS.setI2Jacobian petsc4py.PETSc.TS-class.html#setI2Jacobian
petsc4py.PETSc.TS.getIFunction petsc4py.PETSc.TS-class.html#getIFunction
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.TS.getMaxTime petsc4py.PETSc.TS-class.html#getMaxTime
petsc4py.PETSc.TS.getPostStep petsc4py.PETSc.TS-class.html#getPostStep
petsc4py.PETSc.TS.restartStep petsc4py.PETSc.TS-class.html#restartStep
petsc4py.PETSc.TS.setUp petsc4py.PETSc.TS-class.html#setUp
petsc4py.PETSc.TS.view petsc4py.PETSc.TS-class.html#view
petsc4py.PETSc.TS.interpolate petsc4py.PETSc.TS-class.html#interpolate
petsc4py.PETSc.TS.getDM petsc4py.PETSc.TS-class.html#getDM
petsc4py.PETSc.TS.reason petsc4py.PETSc.TS-class.html#reason
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.TS.setI2Function petsc4py.PETSc.TS-class.html#setI2Function
petsc4py.PETSc.TS.setSolution petsc4py.PETSc.TS-class.html#setSolution
petsc4py.PETSc.TS.setThetaEndpoint petsc4py.PETSc.TS-class.html#setThetaEndpoint
petsc4py.PETSc.TS.setAlphaParams petsc4py.PETSc.TS-class.html#setAlphaParams
petsc4py.PETSc.TS.setPostStep petsc4py.PETSc.TS-class.html#setPostStep
petsc4py.PETSc.TS.ksp petsc4py.PETSc.TS-class.html#ksp
petsc4py.PETSc.TS.createPython petsc4py.PETSc.TS-class.html#createPython
petsc4py.PETSc.TS.getRKType petsc4py.PETSc.TS-class.html#getRKType
petsc4py.PETSc.TS.getStepNumber petsc4py.PETSc.TS-class.html#getStepNumber
petsc4py.PETSc.TS.getARKIMEXType petsc4py.PETSc.TS-class.html#getARKIMEXType
petsc4py.PETSc.TS.appctx petsc4py.PETSc.TS-class.html#appctx
petsc4py.PETSc.TS.setRKType petsc4py.PETSc.TS-class.html#setRKType
petsc4py.PETSc.TS.step petsc4py.PETSc.TS-class.html#step
petsc4py.PETSc.TS.computeIJacobian petsc4py.PETSc.TS-class.html#computeIJacobian
petsc4py.PETSc.TS.setMaxStepRejections petsc4py.PETSc.TS-class.html#setMaxStepRejections
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.TS.adjointSetSteps petsc4py.PETSc.TS-class.html#adjointSetSteps
petsc4py.PETSc.TS.computeIJacobianP petsc4py.PETSc.TS-class.html#computeIJacobianP
petsc4py.PETSc.TS.load petsc4py.PETSc.TS-class.html#load
petsc4py.PETSc.TS.setTolerances petsc4py.PETSc.TS-class.html#setTolerances
petsc4py.PETSc.TS.getPythonContext petsc4py.PETSc.TS-class.html#getPythonContext
petsc4py.PETSc.TS.getQuadratureTS petsc4py.PETSc.TS-class.html#getQuadratureTS
petsc4py.PETSc.TS.getIJacobian petsc4py.PETSc.TS-class.html#getIJacobian
petsc4py.PETSc.TS.setMaxTime petsc4py.PETSc.TS-class.html#setMaxTime
petsc4py.PETSc.TS.computeI2Jacobian petsc4py.PETSc.TS-class.html#computeI2Jacobian
petsc4py.PETSc.TS.setRHSFunction petsc4py.PETSc.TS-class.html#setRHSFunction
petsc4py.PETSc.TS.problem_type petsc4py.PETSc.TS-class.html#problem_type
petsc4py.PETSc.TS.setType petsc4py.PETSc.TS-class.html#setType
petsc4py.PETSc.TS.getSNES petsc4py.PETSc.TS-class.html#getSNES
petsc4py.PETSc.TS.getCostIntegral petsc4py.PETSc.TS-class.html#getCostIntegral
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.TS.create petsc4py.PETSc.TS-class.html#create
petsc4py.PETSc.TS.getAlphaParams petsc4py.PETSc.TS-class.html#getAlphaParams
petsc4py.PETSc.TS.setRHSJacobianP petsc4py.PETSc.TS-class.html#setRHSJacobianP
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.TS.getSolution2 petsc4py.PETSc.TS-class.html#getSolution2
petsc4py.PETSc.TS.snes petsc4py.PETSc.TS-class.html#snes
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.TS.getProblemType petsc4py.PETSc.TS-class.html#getProblemType
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.TS.getType petsc4py.PETSc.TS-class.html#getType
petsc4py.PETSc.TS.getMonitor petsc4py.PETSc.TS-class.html#getMonitor
petsc4py.PETSc.TS.getAppCtx petsc4py.PETSc.TS-class.html#getAppCtx
petsc4py.PETSc.TS.atol petsc4py.PETSc.TS-class.html#atol
petsc4py.PETSc.TS.rollBack petsc4py.PETSc.TS-class.html#rollBack
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.TS.reset petsc4py.PETSc.TS-class.html#reset
petsc4py.PETSc.TS.RKType petsc4py.PETSc.TS.RKType-class.html
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.TS.max_steps petsc4py.PETSc.TS-class.html#max_steps
petsc4py.PETSc.TS.getCostGradients petsc4py.PETSc.TS-class.html#getCostGradients
petsc4py.PETSc.TS.getSolveTime petsc4py.PETSc.TS-class.html#getSolveTime
petsc4py.PETSc.TS.getI2Function petsc4py.PETSc.TS-class.html#getI2Function
petsc4py.PETSc.TS.setIJacobian petsc4py.PETSc.TS-class.html#setIJacobian
petsc4py.PETSc.TS.setTimeStep petsc4py.PETSc.TS-class.html#setTimeStep
petsc4py.PETSc.TS.getThetaEndpoint petsc4py.PETSc.TS-class.html#getThetaEndpoint
petsc4py.PETSc.TS.adjointStep petsc4py.PETSc.TS-class.html#adjointStep
petsc4py.PETSc.TS.setConvergedReason petsc4py.PETSc.TS-class.html#setConvergedReason
petsc4py.PETSc.TS.getTheta petsc4py.PETSc.TS-class.html#getTheta
petsc4py.PETSc.TS.getSolution petsc4py.PETSc.TS-class.html#getSolution
petsc4py.PETSc.TS.diverged petsc4py.PETSc.TS-class.html#diverged
petsc4py.PETSc.TS.getOptionsPrefix petsc4py.PETSc.TS-class.html#getOptionsPrefix
petsc4py.PETSc.TS.computeRHSJacobianP petsc4py.PETSc.TS-class.html#computeRHSJacobianP
petsc4py.PETSc.TS.getPreStep petsc4py.PETSc.TS-class.html#getPreStep
petsc4py.PETSc.TS.setSolution2 petsc4py.PETSc.TS-class.html#setSolution2
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.TS.setIFunction petsc4py.PETSc.TS-class.html#setIFunction
petsc4py.PETSc.TS.converged petsc4py.PETSc.TS-class.html#converged
petsc4py.PETSc.TS.setRHSJacobian petsc4py.PETSc.TS-class.html#setRHSJacobian
petsc4py.PETSc.TS.getPrevTime petsc4py.PETSc.TS-class.html#getPrevTime
petsc4py.PETSc.TS.equation_type petsc4py.PETSc.TS-class.html#equation_type
petsc4py.PETSc.TS.setEquationType petsc4py.PETSc.TS-class.html#setEquationType
petsc4py.PETSc.TS.EquationType petsc4py.PETSc.TS.EquationType-class.html
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.TS.setARKIMEXType petsc4py.PETSc.TS-class.html#setARKIMEXType
petsc4py.PETSc.TS.getKSP petsc4py.PETSc.TS-class.html#getKSP
petsc4py.PETSc.TS.ARKIMEXType petsc4py.PETSc.TS.ARKIMEXType-class.html
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.TS.clone petsc4py.PETSc.TS-class.html#clone
petsc4py.PETSc.TS.setProblemType petsc4py.PETSc.TS-class.html#setProblemType
petsc4py.PETSc.TS.getTolerances petsc4py.PETSc.TS-class.html#getTolerances
petsc4py.PETSc.TS.getSNESIterations petsc4py.PETSc.TS-class.html#getSNESIterations
petsc4py.PETSc.TS.setAlphaRadius petsc4py.PETSc.TS-class.html#setAlphaRadius
petsc4py.PETSc.TS.setTime petsc4py.PETSc.TS-class.html#setTime
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.TS.__new__ petsc4py.PETSc.TS-class.html#__new__
petsc4py.PETSc.TS.getMaxSteps petsc4py.PETSc.TS-class.html#getMaxSteps
petsc4py.PETSc.TS.setPythonType petsc4py.PETSc.TS-class.html#setPythonType
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.TS.solve petsc4py.PETSc.TS-class.html#solve
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.TS.max_time petsc4py.PETSc.TS-class.html#max_time
petsc4py.PETSc.TS.time petsc4py.PETSc.TS-class.html#time
petsc4py.PETSc.TS.setPreStep petsc4py.PETSc.TS-class.html#setPreStep
petsc4py.PETSc.TS.ARKIMEXType petsc4py.PETSc.TS.ARKIMEXType-class.html
petsc4py.PETSc.TS.ARKIMEXType.ARKIMEX1BEE petsc4py.PETSc.TS.ARKIMEXType-class.html#ARKIMEX1BEE
petsc4py.PETSc.TS.ARKIMEXType.ARKIMEXARS443 petsc4py.PETSc.TS.ARKIMEXType-class.html#ARKIMEXARS443
petsc4py.PETSc.TS.ARKIMEXType.ARKIMEXBPR3 petsc4py.PETSc.TS.ARKIMEXType-class.html#ARKIMEXBPR3
petsc4py.PETSc.TS.ARKIMEXType.ARKIMEXPRSSP2 petsc4py.PETSc.TS.ARKIMEXType-class.html#ARKIMEXPRSSP2
petsc4py.PETSc.TS.ARKIMEXType.ARKIMEXARS122 petsc4py.PETSc.TS.ARKIMEXType-class.html#ARKIMEXARS122
petsc4py.PETSc.TS.ARKIMEXType.ARKIMEXL2 petsc4py.PETSc.TS.ARKIMEXType-class.html#ARKIMEXL2
petsc4py.PETSc.TS.ARKIMEXType.ARKIMEX2D petsc4py.PETSc.TS.ARKIMEXType-class.html#ARKIMEX2D
petsc4py.PETSc.TS.ARKIMEXType.ARKIMEX2E petsc4py.PETSc.TS.ARKIMEXType-class.html#ARKIMEX2E
petsc4py.PETSc.TS.ARKIMEXType.ARKIMEX2C petsc4py.PETSc.TS.ARKIMEXType-class.html#ARKIMEX2C
petsc4py.PETSc.TS.ARKIMEXType.ARKIMEXA2 petsc4py.PETSc.TS.ARKIMEXType-class.html#ARKIMEXA2
petsc4py.PETSc.TS.ARKIMEXType.ARKIMEX5 petsc4py.PETSc.TS.ARKIMEXType-class.html#ARKIMEX5
petsc4py.PETSc.TS.ARKIMEXType.ARKIMEX4 petsc4py.PETSc.TS.ARKIMEXType-class.html#ARKIMEX4
petsc4py.PETSc.TS.ARKIMEXType.ARKIMEX3 petsc4py.PETSc.TS.ARKIMEXType-class.html#ARKIMEX3
petsc4py.PETSc.TS.ARKIMEXType.__qualname__ petsc4py.PETSc.TS.ARKIMEXType-class.html#__qualname__
petsc4py.PETSc.TS.ConvergedReason petsc4py.PETSc.TS.ConvergedReason-class.html
petsc4py.PETSc.TS.ConvergedReason.DIVERGED_STEP_REJECTED petsc4py.PETSc.TS.ConvergedReason-class.html#DIVERGED_STEP_REJECTED
petsc4py.PETSc.TS.ConvergedReason.CONVERGED_USER petsc4py.PETSc.TS.ConvergedReason-class.html#CONVERGED_USER
petsc4py.PETSc.TS.ConvergedReason.CONVERGED_TIME petsc4py.PETSc.TS.ConvergedReason-class.html#CONVERGED_TIME
petsc4py.PETSc.TS.ConvergedReason.CONVERGED_EVENT petsc4py.PETSc.TS.ConvergedReason-class.html#CONVERGED_EVENT
petsc4py.PETSc.TS.ConvergedReason.ITERATING petsc4py.PETSc.TS.ConvergedReason-class.html#ITERATING
petsc4py.PETSc.TS.ConvergedReason.CONVERGED_ITS petsc4py.PETSc.TS.ConvergedReason-class.html#CONVERGED_ITS
petsc4py.PETSc.TS.ConvergedReason.CONVERGED_ITERATING petsc4py.PETSc.TS.ConvergedReason-class.html#CONVERGED_ITERATING
petsc4py.PETSc.TS.ConvergedReason.DIVERGED_NONLINEAR_SOLVE petsc4py.PETSc.TS.ConvergedReason-class.html#DIVERGED_NONLINEAR_SOLVE
petsc4py.PETSc.TS.ConvergedReason.__qualname__ petsc4py.PETSc.TS.ConvergedReason-class.html#__qualname__
petsc4py.PETSc.TS.EquationType petsc4py.PETSc.TS.EquationType-class.html
petsc4py.PETSc.TS.EquationType.DAE_IMPLICIT_INDEX3 petsc4py.PETSc.TS.EquationType-class.html#DAE_IMPLICIT_INDEX3
petsc4py.PETSc.TS.EquationType.DAE_IMPLICIT_INDEX1 petsc4py.PETSc.TS.EquationType-class.html#DAE_IMPLICIT_INDEX1
petsc4py.PETSc.TS.EquationType.DAE_IMPLICIT_INDEX2 petsc4py.PETSc.TS.EquationType-class.html#DAE_IMPLICIT_INDEX2
petsc4py.PETSc.TS.EquationType.DAE_SEMI_EXPLICIT_INDEXHI petsc4py.PETSc.TS.EquationType-class.html#DAE_SEMI_EXPLICIT_INDEXHI
petsc4py.PETSc.TS.EquationType.__qualname__ petsc4py.PETSc.TS.EquationType-class.html#__qualname__
petsc4py.PETSc.TS.EquationType.ODE_EXPLICIT petsc4py.PETSc.TS.EquationType-class.html#ODE_EXPLICIT
petsc4py.PETSc.TS.EquationType.EXPLICIT petsc4py.PETSc.TS.EquationType-class.html#EXPLICIT
petsc4py.PETSc.TS.EquationType.DAE_SEMI_EXPLICIT_INDEX1 petsc4py.PETSc.TS.EquationType-class.html#DAE_SEMI_EXPLICIT_INDEX1
petsc4py.PETSc.TS.EquationType.DAE_SEMI_EXPLICIT_INDEX3 petsc4py.PETSc.TS.EquationType-class.html#DAE_SEMI_EXPLICIT_INDEX3
petsc4py.PETSc.TS.EquationType.DAE_SEMI_EXPLICIT_INDEX2 petsc4py.PETSc.TS.EquationType-class.html#DAE_SEMI_EXPLICIT_INDEX2
petsc4py.PETSc.TS.EquationType.DAE_IMPLICIT_INDEXHI petsc4py.PETSc.TS.EquationType-class.html#DAE_IMPLICIT_INDEXHI
petsc4py.PETSc.TS.EquationType.UNSPECIFIED petsc4py.PETSc.TS.EquationType-class.html#UNSPECIFIED
petsc4py.PETSc.TS.EquationType.IMPLICIT petsc4py.PETSc.TS.EquationType-class.html#IMPLICIT
petsc4py.PETSc.TS.EquationType.ODE_IMPLICIT petsc4py.PETSc.TS.EquationType-class.html#ODE_IMPLICIT
petsc4py.PETSc.TS.ExactFinalTime petsc4py.PETSc.TS.ExactFinalTime-class.html
petsc4py.PETSc.TS.ExactFinalTime.MATCHSTEP petsc4py.PETSc.TS.ExactFinalTime-class.html#MATCHSTEP
petsc4py.PETSc.TS.ExactFinalTime.INTERPOLATE petsc4py.PETSc.TS.ExactFinalTime-class.html#INTERPOLATE
petsc4py.PETSc.TS.ExactFinalTime.__qualname__ petsc4py.PETSc.TS.ExactFinalTime-class.html#__qualname__
petsc4py.PETSc.TS.ExactFinalTime.UNSPECIFIED petsc4py.PETSc.TS.ExactFinalTime-class.html#UNSPECIFIED
petsc4py.PETSc.TS.ExactFinalTime.STEPOVER petsc4py.PETSc.TS.ExactFinalTime-class.html#STEPOVER
petsc4py.PETSc.TS.ProblemType petsc4py.PETSc.TS.ProblemType-class.html
petsc4py.PETSc.TS.ProblemType.NONLINEAR petsc4py.PETSc.TS.ProblemType-class.html#NONLINEAR
petsc4py.PETSc.TS.ProblemType.LINEAR petsc4py.PETSc.TS.ProblemType-class.html#LINEAR
petsc4py.PETSc.TS.ProblemType.__qualname__ petsc4py.PETSc.TS.ProblemType-class.html#__qualname__
petsc4py.PETSc.TS.RKType petsc4py.PETSc.TS.RKType-class.html
petsc4py.PETSc.TS.RKType.RK5F petsc4py.PETSc.TS.RKType-class.html#RK5F
petsc4py.PETSc.TS.RKType.RK7VR petsc4py.PETSc.TS.RKType-class.html#RK7VR
petsc4py.PETSc.TS.RKType.RK4 petsc4py.PETSc.TS.RKType-class.html#RK4
petsc4py.PETSc.TS.RKType.RK3 petsc4py.PETSc.TS.RKType-class.html#RK3
petsc4py.PETSc.TS.RKType.RK2A petsc4py.PETSc.TS.RKType-class.html#RK2A
petsc4py.PETSc.TS.RKType.RK5DP petsc4py.PETSc.TS.RKType-class.html#RK5DP
petsc4py.PETSc.TS.RKType.RK5BS petsc4py.PETSc.TS.RKType-class.html#RK5BS
petsc4py.PETSc.TS.RKType.RK8VR petsc4py.PETSc.TS.RKType-class.html#RK8VR
petsc4py.PETSc.TS.RKType.RK6VR petsc4py.PETSc.TS.RKType-class.html#RK6VR
petsc4py.PETSc.TS.RKType.RK1FE petsc4py.PETSc.TS.RKType-class.html#RK1FE
petsc4py.PETSc.TS.RKType.__qualname__ petsc4py.PETSc.TS.RKType-class.html#__qualname__
petsc4py.PETSc.TS.RKType.RK3BS petsc4py.PETSc.TS.RKType-class.html#RK3BS
petsc4py.PETSc.TS.Type petsc4py.PETSc.TS.Type-class.html
petsc4py.PETSc.TS.Type.BE petsc4py.PETSc.TS.Type-class.html#BE
petsc4py.PETSc.TS.Type.PYTHON petsc4py.PETSc.TS.Type-class.html#PYTHON
petsc4py.PETSc.TS.Type.MIMEX petsc4py.PETSc.TS.Type-class.html#MIMEX
petsc4py.PETSc.TS.Type.GLLE petsc4py.PETSc.TS.Type-class.html#GLLE
petsc4py.PETSc.TS.Type.FE petsc4py.PETSc.TS.Type-class.html#FE
petsc4py.PETSc.TS.Type.BASICSYMPLECTIC petsc4py.PETSc.TS.Type-class.html#BASICSYMPLECTIC
petsc4py.PETSc.TS.Type.EULER petsc4py.PETSc.TS.Type-class.html#EULER
petsc4py.PETSc.TS.Type.RADAU5 petsc4py.PETSc.TS.Type-class.html#RADAU5
petsc4py.PETSc.TS.Type.PSEUDO petsc4py.PETSc.TS.Type-class.html#PSEUDO
petsc4py.PETSc.TS.Type.ARKIMEX petsc4py.PETSc.TS.Type-class.html#ARKIMEX
petsc4py.PETSc.TS.Type.BEULER petsc4py.PETSc.TS.Type-class.html#BEULER
petsc4py.PETSc.TS.Type.TH petsc4py.PETSc.TS.Type-class.html#TH
petsc4py.PETSc.TS.Type.CRANK_NICOLSON petsc4py.PETSc.TS.Type-class.html#CRANK_NICOLSON
petsc4py.PETSc.TS.Type.RK petsc4py.PETSc.TS.Type-class.html#RK
petsc4py.PETSc.TS.Type.ALPHA2 petsc4py.PETSc.TS.Type-class.html#ALPHA2
petsc4py.PETSc.TS.Type.BDF petsc4py.PETSc.TS.Type-class.html#BDF
petsc4py.PETSc.TS.Type.CN petsc4py.PETSc.TS.Type-class.html#CN
petsc4py.PETSc.TS.Type.SUNDIALS petsc4py.PETSc.TS.Type-class.html#SUNDIALS
petsc4py.PETSc.TS.Type.RUNGE_KUTTA petsc4py.PETSc.TS.Type-class.html#RUNGE_KUTTA
petsc4py.PETSc.TS.Type.EIMEX petsc4py.PETSc.TS.Type-class.html#EIMEX
petsc4py.PETSc.TS.Type.THETA petsc4py.PETSc.TS.Type-class.html#THETA
petsc4py.PETSc.TS.Type.DISCGRAD petsc4py.PETSc.TS.Type-class.html#DISCGRAD
petsc4py.PETSc.TS.Type.MPRK petsc4py.PETSc.TS.Type-class.html#MPRK
petsc4py.PETSc.TS.Type.GLEE petsc4py.PETSc.TS.Type-class.html#GLEE
petsc4py.PETSc.TS.Type.SSP petsc4py.PETSc.TS.Type-class.html#SSP
petsc4py.PETSc.TS.Type.__qualname__ petsc4py.PETSc.TS.Type-class.html#__qualname__
petsc4py.PETSc.TS.Type.ALPHA petsc4py.PETSc.TS.Type-class.html#ALPHA
petsc4py.PETSc.TS.Type.ROSW petsc4py.PETSc.TS.Type-class.html#ROSW
petsc4py.PETSc.Vec petsc4py.PETSc.Vec-class.html
petsc4py.PETSc.Vec.getLGMap petsc4py.PETSc.Vec-class.html#getLGMap
petsc4py.PETSc.Vec.mDotBegin petsc4py.PETSc.Vec-class.html#mDotBegin
petsc4py.PETSc.Vec.createShared petsc4py.PETSc.Vec-class.html#createShared
petsc4py.PETSc.Vec.getSize petsc4py.PETSc.Vec-class.html#getSize
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Vec.owner_range petsc4py.PETSc.Vec-class.html#owner_range
petsc4py.PETSc.Vec.__rdiv__ petsc4py.PETSc.Vec-class.html#__rdiv__
petsc4py.PETSc.Vec.__rmul__ petsc4py.PETSc.Vec-class.html#__rmul__
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.Vec.permute petsc4py.PETSc.Vec-class.html#permute
petsc4py.PETSc.Vec.ghostUpdateBegin petsc4py.PETSc.Vec-class.html#ghostUpdateBegin
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Vec.copy petsc4py.PETSc.Vec-class.html#copy
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.Vec.pointwiseMaxAbs petsc4py.PETSc.Vec-class.html#pointwiseMaxAbs
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Vec.__enter__ petsc4py.PETSc.Vec-class.html#__enter__
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.Vec.array_r petsc4py.PETSc.Vec-class.html#array_r
petsc4py.PETSc.Vec.swap petsc4py.PETSc.Vec-class.html#swap
petsc4py.PETSc.Vec.array_w petsc4py.PETSc.Vec-class.html#array_w
petsc4py.PETSc.Vec.pointwiseMult petsc4py.PETSc.Vec-class.html#pointwiseMult
petsc4py.PETSc.Vec.norm petsc4py.PETSc.Vec-class.html#norm
petsc4py.PETSc.Vec.mDot petsc4py.PETSc.Vec-class.html#mDot
petsc4py.PETSc.Vec.__exit__ petsc4py.PETSc.Vec-class.html#__exit__
petsc4py.PETSc.Vec.tDot petsc4py.PETSc.Vec-class.html#tDot
petsc4py.PETSc.Vec.__getitem__ petsc4py.PETSc.Vec-class.html#__getitem__
petsc4py.PETSc.Vec.strideSum petsc4py.PETSc.Vec-class.html#strideSum
petsc4py.PETSc.Vec.sqrtabs petsc4py.PETSc.Vec-class.html#sqrtabs
petsc4py.PETSc.Vec.dotEnd petsc4py.PETSc.Vec-class.html#dotEnd
petsc4py.PETSc.Vec.setBlockSize petsc4py.PETSc.Vec-class.html#setBlockSize
petsc4py.PETSc.Vec.owner_ranges petsc4py.PETSc.Vec-class.html#owner_ranges
petsc4py.PETSc.Vec.setFromOptions petsc4py.PETSc.Vec-class.html#setFromOptions
petsc4py.PETSc.Vec.strideScatter petsc4py.PETSc.Vec-class.html#strideScatter
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Vec.__delitem__ petsc4py.PETSc.Vec-class.html#__delitem__
petsc4py.PETSc.Vec.mDotEnd petsc4py.PETSc.Vec-class.html#mDotEnd
petsc4py.PETSc.Vec.getArray petsc4py.PETSc.Vec-class.html#getArray
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Vec.sizes petsc4py.PETSc.Vec-class.html#sizes
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Vec.normEnd petsc4py.PETSc.Vec-class.html#normEnd
petsc4py.PETSc.Vec.getOwnershipRanges petsc4py.PETSc.Vec-class.html#getOwnershipRanges
petsc4py.PETSc.Vec.strideScale petsc4py.PETSc.Vec-class.html#strideScale
petsc4py.PETSc.Vec.strideGather petsc4py.PETSc.Vec-class.html#strideGather
petsc4py.PETSc.Vec.createNest petsc4py.PETSc.Vec-class.html#createNest
petsc4py.PETSc.Vec.setMPIGhost petsc4py.PETSc.Vec-class.html#setMPIGhost
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Vec.getSizes petsc4py.PETSc.Vec-class.html#getSizes
petsc4py.PETSc.Vec.view petsc4py.PETSc.Vec-class.html#view
petsc4py.PETSc.Vec.set petsc4py.PETSc.Vec-class.html#set
petsc4py.PETSc.Vec.getCUDAHandle petsc4py.PETSc.Vec-class.html#getCUDAHandle
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Vec.createSeq petsc4py.PETSc.Vec-class.html#createSeq
petsc4py.PETSc.Vec.__truediv__ petsc4py.PETSc.Vec-class.html#__truediv__
petsc4py.PETSc.Vec.getBlockSize petsc4py.PETSc.Vec-class.html#getBlockSize
petsc4py.PETSc.Vec.Type petsc4py.PETSc.Vec.Type-class.html
petsc4py.PETSc.Vec.scale petsc4py.PETSc.Vec-class.html#scale
petsc4py.PETSc.Vec.Option petsc4py.PETSc.Vec.Option-class.html
petsc4py.PETSc.Vec.sum petsc4py.PETSc.Vec-class.html#sum
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Vec.normBegin petsc4py.PETSc.Vec-class.html#normBegin
petsc4py.PETSc.Vec.abs petsc4py.PETSc.Vec-class.html#abs
petsc4py.PETSc.Vec.mtDotBegin petsc4py.PETSc.Vec-class.html#mtDotBegin
petsc4py.PETSc.Vec.strideMax petsc4py.PETSc.Vec-class.html#strideMax
petsc4py.PETSc.Vec.setType petsc4py.PETSc.Vec-class.html#setType
petsc4py.PETSc.Vec.pointwiseDivide petsc4py.PETSc.Vec-class.html#pointwiseDivide
petsc4py.PETSc.Vec.axpby petsc4py.PETSc.Vec-class.html#axpby
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Vec.setValue petsc4py.PETSc.Vec-class.html#setValue
petsc4py.PETSc.Vec.createWithArray petsc4py.PETSc.Vec-class.html#createWithArray
petsc4py.PETSc.Vec.restoreSubVector petsc4py.PETSc.Vec-class.html#restoreSubVector
petsc4py.PETSc.Vec.assemblyEnd petsc4py.PETSc.Vec-class.html#assemblyEnd
petsc4py.PETSc.Vec.setUp petsc4py.PETSc.Vec-class.html#setUp
petsc4py.PETSc.Vec.assemblyBegin petsc4py.PETSc.Vec-class.html#assemblyBegin
petsc4py.PETSc.Vec.__setitem__ petsc4py.PETSc.Vec-class.html#__setitem__
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Vec.strideMin petsc4py.PETSc.Vec-class.html#strideMin
petsc4py.PETSc.Vec.setValuesBlocked petsc4py.PETSc.Vec-class.html#setValuesBlocked
petsc4py.PETSc.Vec.tDotEnd petsc4py.PETSc.Vec-class.html#tDotEnd
petsc4py.PETSc.Vec.assemble petsc4py.PETSc.Vec-class.html#assemble
petsc4py.PETSc.Vec.isset petsc4py.PETSc.Vec-class.html#isset
petsc4py.PETSc.Vec.log petsc4py.PETSc.Vec-class.html#log
petsc4py.PETSc.Vec.createGhostWithArray petsc4py.PETSc.Vec-class.html#createGhostWithArray
petsc4py.PETSc.Vec.isaxpy petsc4py.PETSc.Vec-class.html#isaxpy
petsc4py.PETSc.Vec.__imul__ petsc4py.PETSc.Vec-class.html#__imul__
petsc4py.PETSc.Vec.getLocalSize petsc4py.PETSc.Vec-class.html#getLocalSize
petsc4py.PETSc.Vec.shift petsc4py.PETSc.Vec-class.html#shift
petsc4py.PETSc.Vec.equal petsc4py.PETSc.Vec-class.html#equal
petsc4py.PETSc.Vec.chop petsc4py.PETSc.Vec-class.html#chop
petsc4py.PETSc.Vec.setValueLocal petsc4py.PETSc.Vec-class.html#setValueLocal
petsc4py.PETSc.Vec.__mul__ petsc4py.PETSc.Vec-class.html#__mul__
petsc4py.PETSc.Vec.maxpy petsc4py.PETSc.Vec-class.html#maxpy
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Vec.load petsc4py.PETSc.Vec-class.html#load
petsc4py.PETSc.Vec.getSubVector petsc4py.PETSc.Vec-class.html#getSubVector
petsc4py.PETSc.Vec.__rsub__ petsc4py.PETSc.Vec-class.html#__rsub__
petsc4py.PETSc.Vec.array petsc4py.PETSc.Vec-class.html#array
petsc4py.PETSc.Vec.block_size petsc4py.PETSc.Vec-class.html#block_size
petsc4py.PETSc.Vec.restoreCUDAHandle petsc4py.PETSc.Vec-class.html#restoreCUDAHandle
petsc4py.PETSc.Vec.size petsc4py.PETSc.Vec-class.html#size
petsc4py.PETSc.Vec.buffer_w petsc4py.PETSc.Vec-class.html#buffer_w
petsc4py.PETSc.Vec.buffer_r petsc4py.PETSc.Vec-class.html#buffer_r
petsc4py.PETSc.Vec.create petsc4py.PETSc.Vec-class.html#create
petsc4py.PETSc.Vec.setOptionsPrefix petsc4py.PETSc.Vec-class.html#setOptionsPrefix
petsc4py.PETSc.Vec.__abs__ petsc4py.PETSc.Vec-class.html#__abs__
petsc4py.PETSc.Vec.maxPointwiseDivide petsc4py.PETSc.Vec-class.html#maxPointwiseDivide
petsc4py.PETSc.Vec.duplicate petsc4py.PETSc.Vec-class.html#duplicate
petsc4py.PETSc.Vec.getNestSubVecs petsc4py.PETSc.Vec-class.html#getNestSubVecs
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Vec.__itruediv__ petsc4py.PETSc.Vec-class.html#__itruediv__
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Vec.__isub__ petsc4py.PETSc.Vec-class.html#__isub__
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Vec.setValuesStagStencil petsc4py.PETSc.Vec-class.html#setValuesStagStencil
petsc4py.PETSc.Vec.aypx petsc4py.PETSc.Vec-class.html#aypx
petsc4py.PETSc.Vec.getType petsc4py.PETSc.Vec-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Vec.setRandom petsc4py.PETSc.Vec-class.html#setRandom
petsc4py.PETSc.Vec.setValues petsc4py.PETSc.Vec-class.html#setValues
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Vec.setLGMap petsc4py.PETSc.Vec-class.html#setLGMap
petsc4py.PETSc.Vec.createMPI petsc4py.PETSc.Vec-class.html#createMPI
petsc4py.PETSc.Vec.tDotBegin petsc4py.PETSc.Vec-class.html#tDotBegin
petsc4py.PETSc.Vec.reciprocal petsc4py.PETSc.Vec-class.html#reciprocal
petsc4py.PETSc.Vec.__iadd__ petsc4py.PETSc.Vec-class.html#__iadd__
petsc4py.PETSc.Vec.getValue petsc4py.PETSc.Vec-class.html#getValue
petsc4py.PETSc.Vec.dotBegin petsc4py.PETSc.Vec-class.html#dotBegin
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Vec.__sub__ petsc4py.PETSc.Vec-class.html#__sub__
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Vec.ghostUpdate petsc4py.PETSc.Vec-class.html#ghostUpdate
petsc4py.PETSc.Vec.__rtruediv__ petsc4py.PETSc.Vec-class.html#__rtruediv__
petsc4py.PETSc.Vec.zeroEntries petsc4py.PETSc.Vec-class.html#zeroEntries
petsc4py.PETSc.Vec.pointwiseMin petsc4py.PETSc.Vec-class.html#pointwiseMin
petsc4py.PETSc.Vec.conjugate petsc4py.PETSc.Vec-class.html#conjugate
petsc4py.PETSc.Vec.local_size petsc4py.PETSc.Vec-class.html#local_size
petsc4py.PETSc.Vec.ghostUpdateEnd petsc4py.PETSc.Vec-class.html#ghostUpdateEnd
petsc4py.PETSc.Vec.getOptionsPrefix petsc4py.PETSc.Vec-class.html#getOptionsPrefix
petsc4py.PETSc.Vec.getValuesStagStencil petsc4py.PETSc.Vec-class.html#getValuesStagStencil
petsc4py.PETSc.Vec.axpy petsc4py.PETSc.Vec-class.html#axpy
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Vec.normalize petsc4py.PETSc.Vec-class.html#normalize
petsc4py.PETSc.Vec.pointwiseMax petsc4py.PETSc.Vec-class.html#pointwiseMax
petsc4py.PETSc.Vec.setValuesBlockedLocal petsc4py.PETSc.Vec-class.html#setValuesBlockedLocal
petsc4py.PETSc.Vec.min petsc4py.PETSc.Vec-class.html#min
petsc4py.PETSc.Vec.setOption petsc4py.PETSc.Vec-class.html#setOption
petsc4py.PETSc.Vec.__pos__ petsc4py.PETSc.Vec-class.html#__pos__
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.Vec.waxpy petsc4py.PETSc.Vec-class.html#waxpy
petsc4py.PETSc.Vec.destroy petsc4py.PETSc.Vec-class.html#destroy
petsc4py.PETSc.Vec.createGhost petsc4py.PETSc.Vec-class.html#createGhost
petsc4py.PETSc.Vec.mtDotEnd petsc4py.PETSc.Vec-class.html#mtDotEnd
petsc4py.PETSc.Vec.setSizes petsc4py.PETSc.Vec-class.html#setSizes
petsc4py.PETSc.Vec.resetArray petsc4py.PETSc.Vec-class.html#resetArray
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Vec.getValues petsc4py.PETSc.Vec-class.html#getValues
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Vec.setValuesLocal petsc4py.PETSc.Vec-class.html#setValuesLocal
petsc4py.PETSc.Vec.buffer petsc4py.PETSc.Vec-class.html#buffer
petsc4py.PETSc.Vec.max petsc4py.PETSc.Vec-class.html#max
petsc4py.PETSc.Vec.__idiv__ petsc4py.PETSc.Vec-class.html#__idiv__
petsc4py.PETSc.Vec.getOwnershipRange petsc4py.PETSc.Vec-class.html#getOwnershipRange
petsc4py.PETSc.Vec.strideNorm petsc4py.PETSc.Vec-class.html#strideNorm
petsc4py.PETSc.Vec.__add__ petsc4py.PETSc.Vec-class.html#__add__
petsc4py.PETSc.Vec.__array_interface__ petsc4py.PETSc.Vec-class.html#__array_interface__
petsc4py.PETSc.Vec.mtDot petsc4py.PETSc.Vec-class.html#mtDot
petsc4py.PETSc.Vec.getBuffer petsc4py.PETSc.Vec-class.html#getBuffer
petsc4py.PETSc.Vec.__new__ petsc4py.PETSc.Vec-class.html#__new__
petsc4py.PETSc.Vec.placeArray petsc4py.PETSc.Vec-class.html#placeArray
petsc4py.PETSc.Vec.__radd__ petsc4py.PETSc.Vec-class.html#__radd__
petsc4py.PETSc.Vec.setNestSubVecs petsc4py.PETSc.Vec-class.html#setNestSubVecs
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.Vec.__div__ petsc4py.PETSc.Vec-class.html#__div__
petsc4py.PETSc.Vec.__neg__ petsc4py.PETSc.Vec-class.html#__neg__
petsc4py.PETSc.Vec.exp petsc4py.PETSc.Vec-class.html#exp
petsc4py.PETSc.Vec.setArray petsc4py.PETSc.Vec-class.html#setArray
petsc4py.PETSc.Vec.localForm petsc4py.PETSc.Vec-class.html#localForm
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Vec.dot petsc4py.PETSc.Vec-class.html#dot
petsc4py.PETSc.Vec.Option petsc4py.PETSc.Vec.Option-class.html
petsc4py.PETSc.Vec.Option.IGNORE_NEGATIVE_INDICES petsc4py.PETSc.Vec.Option-class.html#IGNORE_NEGATIVE_INDICES
petsc4py.PETSc.Vec.Option.IGNORE_OFF_PROC_ENTRIES petsc4py.PETSc.Vec.Option-class.html#IGNORE_OFF_PROC_ENTRIES
petsc4py.PETSc.Vec.Option.__qualname__ petsc4py.PETSc.Vec.Option-class.html#__qualname__
petsc4py.PETSc.Vec.Type petsc4py.PETSc.Vec.Type-class.html
petsc4py.PETSc.Vec.Type.MPICUDA petsc4py.PETSc.Vec.Type-class.html#MPICUDA
petsc4py.PETSc.Vec.Type.KOKKOS petsc4py.PETSc.Vec.Type-class.html#KOKKOS
petsc4py.PETSc.Vec.Type.SEQCUDA petsc4py.PETSc.Vec.Type-class.html#SEQCUDA
petsc4py.PETSc.Vec.Type.SEQ petsc4py.PETSc.Vec.Type-class.html#SEQ
petsc4py.PETSc.Vec.Type.CUDA petsc4py.PETSc.Vec.Type-class.html#CUDA
petsc4py.PETSc.Vec.Type.SEQVIENNACL petsc4py.PETSc.Vec.Type-class.html#SEQVIENNACL
petsc4py.PETSc.Vec.Type.NODE petsc4py.PETSc.Vec.Type-class.html#NODE
petsc4py.PETSc.Vec.Type.SEQKOKKOS petsc4py.PETSc.Vec.Type-class.html#SEQKOKKOS
petsc4py.PETSc.Vec.Type.STANDARD petsc4py.PETSc.Vec.Type-class.html#STANDARD
petsc4py.PETSc.Vec.Type.MPIKOKKOS petsc4py.PETSc.Vec.Type-class.html#MPIKOKKOS
petsc4py.PETSc.Vec.Type.MPI petsc4py.PETSc.Vec.Type-class.html#MPI
petsc4py.PETSc.Vec.Type.__qualname__ petsc4py.PETSc.Vec.Type-class.html#__qualname__
petsc4py.PETSc.Vec.Type.MPIVIENNACL petsc4py.PETSc.Vec.Type-class.html#MPIVIENNACL
petsc4py.PETSc.Vec.Type.NEST petsc4py.PETSc.Vec.Type-class.html#NEST
petsc4py.PETSc.Vec.Type.SHARED petsc4py.PETSc.Vec.Type-class.html#SHARED
petsc4py.PETSc.Vec.Type.VIENNACL petsc4py.PETSc.Vec.Type-class.html#VIENNACL
petsc4py.PETSc.Viewer petsc4py.PETSc.Viewer-class.html
petsc4py.PETSc.Viewer.printfASCII petsc4py.PETSc.Viewer-class.html#printfASCII
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Viewer.printfASCIISynchronized petsc4py.PETSc.Viewer-class.html#printfASCIISynchronized
petsc4py.PETSc.Viewer.createVTK petsc4py.PETSc.Viewer-class.html#createVTK
petsc4py.PETSc.Viewer.popASCIITab petsc4py.PETSc.Viewer-class.html#popASCIITab
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.Viewer.__call__ petsc4py.PETSc.Viewer-class.html#__call__
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.Object.setFromOptions petsc4py.PETSc.Object-class.html#setFromOptions
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Viewer.createDraw petsc4py.PETSc.Viewer-class.html#createDraw
petsc4py.PETSc.Viewer.BINARY petsc4py.PETSc.Viewer-class.html#BINARY
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Viewer.createBinary petsc4py.PETSc.Viewer-class.html#createBinary
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Viewer.pushASCIITab petsc4py.PETSc.Viewer-class.html#pushASCIITab
petsc4py.PETSc.Viewer.popFormat petsc4py.PETSc.Viewer-class.html#popFormat
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Viewer.ASCII petsc4py.PETSc.Viewer-class.html#ASCII
petsc4py.PETSc.Viewer.view petsc4py.PETSc.Viewer-class.html#view
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.Viewer.flush petsc4py.PETSc.Viewer-class.html#flush
petsc4py.PETSc.Viewer.Type petsc4py.PETSc.Viewer.Type-class.html
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Viewer.popASCIISynchronized petsc4py.PETSc.Viewer-class.html#popASCIISynchronized
petsc4py.PETSc.Viewer.createHDF5 petsc4py.PETSc.Viewer-class.html#createHDF5
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.Viewer.getFormat petsc4py.PETSc.Viewer-class.html#getFormat
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Viewer.STDERR petsc4py.PETSc.Viewer-class.html#STDERR
petsc4py.PETSc.Viewer.setASCIITab petsc4py.PETSc.Viewer-class.html#setASCIITab
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Viewer.pushFormat petsc4py.PETSc.Viewer-class.html#pushFormat
petsc4py.PETSc.Viewer.setType petsc4py.PETSc.Viewer-class.html#setType
petsc4py.PETSc.Viewer.getASCIITab petsc4py.PETSc.Viewer-class.html#getASCIITab
petsc4py.PETSc.Viewer.create petsc4py.PETSc.Viewer-class.html#create
petsc4py.PETSc.Viewer.clearDraw petsc4py.PETSc.Viewer-class.html#clearDraw
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Viewer.DRAW petsc4py.PETSc.Viewer-class.html#DRAW
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Viewer.getType petsc4py.PETSc.Viewer-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Viewer.setDrawInfo petsc4py.PETSc.Viewer-class.html#setDrawInfo
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Viewer.getFileName petsc4py.PETSc.Viewer-class.html#getFileName
petsc4py.PETSc.Viewer.createASCII petsc4py.PETSc.Viewer-class.html#createASCII
petsc4py.PETSc.Viewer.pushASCIISynchronized petsc4py.PETSc.Viewer-class.html#pushASCIISynchronized
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Viewer.Size petsc4py.PETSc.Viewer.Size-class.html
petsc4py.PETSc.Viewer.getFileMode petsc4py.PETSc.Viewer-class.html#getFileMode
petsc4py.PETSc.Viewer.STDOUT petsc4py.PETSc.Viewer-class.html#STDOUT
petsc4py.PETSc.Viewer.addASCIITab petsc4py.PETSc.Viewer-class.html#addASCIITab
petsc4py.PETSc.Viewer.__new__ petsc4py.PETSc.Viewer-class.html#__new__
petsc4py.PETSc.Viewer.Format petsc4py.PETSc.Viewer.Format-class.html
petsc4py.PETSc.Viewer.setFileMode petsc4py.PETSc.Viewer-class.html#setFileMode
petsc4py.PETSc.Viewer.destroy petsc4py.PETSc.Viewer-class.html#destroy
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.Viewer.useASCIITabs petsc4py.PETSc.Viewer-class.html#useASCIITabs
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Viewer.Mode petsc4py.PETSc.Viewer.Mode-class.html
petsc4py.PETSc.Viewer.createMPIIO petsc4py.PETSc.Viewer-class.html#createMPIIO
petsc4py.PETSc.Viewer.subtractASCIITab petsc4py.PETSc.Viewer-class.html#subtractASCIITab
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Viewer.setFileName petsc4py.PETSc.Viewer-class.html#setFileName
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc.Viewer.Format petsc4py.PETSc.Viewer.Format-class.html
petsc4py.PETSc.Viewer.Format.NOFORMAT petsc4py.PETSc.Viewer.Format-class.html#NOFORMAT
petsc4py.PETSc.Viewer.Format.DRAW_LG petsc4py.PETSc.Viewer.Format-class.html#DRAW_LG
petsc4py.PETSc.Viewer.Format.ASCII_VTK_COORDS petsc4py.PETSc.Viewer.Format-class.html#ASCII_VTK_COORDS
petsc4py.PETSc.Viewer.Format.ASCII_PYTHON petsc4py.PETSc.Viewer.Format-class.html#ASCII_PYTHON
petsc4py.PETSc.Viewer.Format.DEFAULT petsc4py.PETSc.Viewer.Format-class.html#DEFAULT
petsc4py.PETSc.Viewer.Format.DRAW_BASIC petsc4py.PETSc.Viewer.Format-class.html#DRAW_BASIC
petsc4py.PETSc.Viewer.Format.ASCII_INDEX petsc4py.PETSc.Viewer.Format-class.html#ASCII_INDEX
petsc4py.PETSc.Viewer.Format.ASCII_IMPL petsc4py.PETSc.Viewer.Format-class.html#ASCII_IMPL
petsc4py.PETSc.Viewer.Format.HDF5_PETSC petsc4py.PETSc.Viewer.Format-class.html#HDF5_PETSC
petsc4py.PETSc.Viewer.Format.ASCII_MATRIXMARKET petsc4py.PETSc.Viewer.Format-class.html#ASCII_MATRIXMARKET
petsc4py.PETSc.Viewer.Format.VTK_VTS petsc4py.PETSc.Viewer.Format-class.html#VTK_VTS
petsc4py.PETSc.Viewer.Format.VTK_VTR petsc4py.PETSc.Viewer.Format-class.html#VTK_VTR
petsc4py.PETSc.Viewer.Format.VTK_VTU petsc4py.PETSc.Viewer.Format-class.html#VTK_VTU
petsc4py.PETSc.Viewer.Format.NATIVE petsc4py.PETSc.Viewer.Format-class.html#NATIVE
petsc4py.PETSc.Viewer.Format.DRAW_LG_XRANGE petsc4py.PETSc.Viewer.Format-class.html#DRAW_LG_XRANGE
petsc4py.PETSc.Viewer.Format.ASCII_LATEX petsc4py.PETSc.Viewer.Format-class.html#ASCII_LATEX
petsc4py.PETSc.Viewer.Format.ASCII_GLVIS petsc4py.PETSc.Viewer.Format-class.html#ASCII_GLVIS
petsc4py.PETSc.Viewer.Format.ASCII_VTK petsc4py.PETSc.Viewer.Format-class.html#ASCII_VTK
petsc4py.PETSc.Viewer.Format.DRAW_CONTOUR petsc4py.PETSc.Viewer.Format-class.html#DRAW_CONTOUR
petsc4py.PETSc.Viewer.Format.ASCII_CSV petsc4py.PETSc.Viewer.Format-class.html#ASCII_CSV
petsc4py.PETSc.Viewer.Format.LOAD_BALANCE petsc4py.PETSc.Viewer.Format-class.html#LOAD_BALANCE
petsc4py.PETSc.Viewer.Format.ASCII_INFO petsc4py.PETSc.Viewer.Format-class.html#ASCII_INFO
petsc4py.PETSc.Viewer.Format.ASCII_MATLAB petsc4py.PETSc.Viewer.Format-class.html#ASCII_MATLAB
petsc4py.PETSc.Viewer.Format.ASCII_FACTOR_INFO petsc4py.PETSc.Viewer.Format-class.html#ASCII_FACTOR_INFO
petsc4py.PETSc.Viewer.Format.HDF5_XDMF petsc4py.PETSc.Viewer.Format-class.html#HDF5_XDMF
petsc4py.PETSc.Viewer.Format.ASCII_XML petsc4py.PETSc.Viewer.Format-class.html#ASCII_XML
petsc4py.PETSc.Viewer.Format.ASCII_SYMMODU petsc4py.PETSc.Viewer.Format-class.html#ASCII_SYMMODU
petsc4py.PETSc.Viewer.Format.HDF5_VIZ petsc4py.PETSc.Viewer.Format-class.html#HDF5_VIZ
petsc4py.PETSc.Viewer.Format.HDF5_MAT petsc4py.PETSc.Viewer.Format-class.html#HDF5_MAT
petsc4py.PETSc.Viewer.Format.ASCII_VTK_CELL petsc4py.PETSc.Viewer.Format-class.html#ASCII_VTK_CELL
petsc4py.PETSc.Viewer.Format.ASCII_INFO_DETAIL petsc4py.PETSc.Viewer.Format-class.html#ASCII_INFO_DETAIL
petsc4py.PETSc.Viewer.Format.ASCII_MATHEMATICA petsc4py.PETSc.Viewer.Format-class.html#ASCII_MATHEMATICA
petsc4py.PETSc.Viewer.Format.ASCII_PCICE petsc4py.PETSc.Viewer.Format-class.html#ASCII_PCICE
petsc4py.PETSc.Viewer.Format.__qualname__ petsc4py.PETSc.Viewer.Format-class.html#__qualname__
petsc4py.PETSc.Viewer.Format.FAILED petsc4py.PETSc.Viewer.Format-class.html#FAILED
petsc4py.PETSc.Viewer.Format.ASCII_COMMON petsc4py.PETSc.Viewer.Format-class.html#ASCII_COMMON
petsc4py.PETSc.Viewer.Format.ASCII_DENSE petsc4py.PETSc.Viewer.Format-class.html#ASCII_DENSE
petsc4py.PETSc.Viewer.Format.DRAW_PORTS petsc4py.PETSc.Viewer.Format-class.html#DRAW_PORTS
petsc4py.PETSc.Viewer.Format.BINARY_MATLAB petsc4py.PETSc.Viewer.Format-class.html#BINARY_MATLAB
petsc4py.PETSc.Viewer.Mode petsc4py.PETSc.Viewer.Mode-class.html
petsc4py.PETSc.Viewer.Mode.READ petsc4py.PETSc.Viewer.Mode-class.html#READ
petsc4py.PETSc.Viewer.Mode.APPEND petsc4py.PETSc.Viewer.Mode-class.html#APPEND
petsc4py.PETSc.Viewer.Mode.APPEND_UPDATE petsc4py.PETSc.Viewer.Mode-class.html#APPEND_UPDATE
petsc4py.PETSc.Viewer.Mode.A petsc4py.PETSc.Viewer.Mode-class.html#A
petsc4py.PETSc.Viewer.Mode.UPDATE petsc4py.PETSc.Viewer.Mode-class.html#UPDATE
petsc4py.PETSc.Viewer.Mode.WRITE petsc4py.PETSc.Viewer.Mode-class.html#WRITE
petsc4py.PETSc.Viewer.Mode.U petsc4py.PETSc.Viewer.Mode-class.html#U
petsc4py.PETSc.Viewer.Mode.W petsc4py.PETSc.Viewer.Mode-class.html#W
petsc4py.PETSc.Viewer.Mode.__qualname__ petsc4py.PETSc.Viewer.Mode-class.html#__qualname__
petsc4py.PETSc.Viewer.Mode.R petsc4py.PETSc.Viewer.Mode-class.html#R
petsc4py.PETSc.Viewer.Mode.AU petsc4py.PETSc.Viewer.Mode-class.html#AU
petsc4py.PETSc.Viewer.Mode.UA petsc4py.PETSc.Viewer.Mode-class.html#UA
petsc4py.PETSc.Viewer.Size petsc4py.PETSc.Viewer.Size-class.html
petsc4py.PETSc.Viewer.Size.HALF_SIZE petsc4py.PETSc.Viewer.Size-class.html#HALF_SIZE
petsc4py.PETSc.Viewer.Size.FULL_SIZE petsc4py.PETSc.Viewer.Size-class.html#FULL_SIZE
petsc4py.PETSc.Viewer.Size.FULL petsc4py.PETSc.Viewer.Size-class.html#FULL
petsc4py.PETSc.Viewer.Size.THIRD petsc4py.PETSc.Viewer.Size-class.html#THIRD
petsc4py.PETSc.Viewer.Size.HALF petsc4py.PETSc.Viewer.Size-class.html#HALF
petsc4py.PETSc.Viewer.Size.QUARTER petsc4py.PETSc.Viewer.Size-class.html#QUARTER
petsc4py.PETSc.Viewer.Size.QUARTER_SIZE petsc4py.PETSc.Viewer.Size-class.html#QUARTER_SIZE
petsc4py.PETSc.Viewer.Size.__qualname__ petsc4py.PETSc.Viewer.Size-class.html#__qualname__
petsc4py.PETSc.Viewer.Size.THIRD_SIZE petsc4py.PETSc.Viewer.Size-class.html#THIRD_SIZE
petsc4py.PETSc.Viewer.Type petsc4py.PETSc.Viewer.Type-class.html
petsc4py.PETSc.Viewer.Type.HDF5 petsc4py.PETSc.Viewer.Type-class.html#HDF5
petsc4py.PETSc.Viewer.Type.SAWS petsc4py.PETSc.Viewer.Type-class.html#SAWS
petsc4py.PETSc.Viewer.Type.ADIOS2 petsc4py.PETSc.Viewer.Type-class.html#ADIOS2
petsc4py.PETSc.Viewer.Type.MATLAB petsc4py.PETSc.Viewer.Type-class.html#MATLAB
petsc4py.PETSc.Viewer.Type.ADIOS petsc4py.PETSc.Viewer.Type-class.html#ADIOS
petsc4py.PETSc.Viewer.Type.DRAW petsc4py.PETSc.Viewer.Type-class.html#DRAW
petsc4py.PETSc.Viewer.Type.STRING petsc4py.PETSc.Viewer.Type-class.html#STRING
petsc4py.PETSc.Viewer.Type.VTK petsc4py.PETSc.Viewer.Type-class.html#VTK
petsc4py.PETSc.Viewer.Type.MATHEMATICA petsc4py.PETSc.Viewer.Type-class.html#MATHEMATICA
petsc4py.PETSc.Viewer.Type.GLVIS petsc4py.PETSc.Viewer.Type-class.html#GLVIS
petsc4py.PETSc.Viewer.Type.VU petsc4py.PETSc.Viewer.Type-class.html#VU
petsc4py.PETSc.Viewer.Type.BINARY petsc4py.PETSc.Viewer.Type-class.html#BINARY
petsc4py.PETSc.Viewer.Type.SOCKET petsc4py.PETSc.Viewer.Type-class.html#SOCKET
petsc4py.PETSc.Viewer.Type.EXODUSII petsc4py.PETSc.Viewer.Type-class.html#EXODUSII
petsc4py.PETSc.Viewer.Type.__qualname__ petsc4py.PETSc.Viewer.Type-class.html#__qualname__
petsc4py.PETSc.Viewer.Type.ASCII petsc4py.PETSc.Viewer.Type-class.html#ASCII
petsc4py.PETSc.ViewerHDF5 petsc4py.PETSc.ViewerHDF5-class.html
petsc4py.PETSc.Viewer.printfASCII petsc4py.PETSc.Viewer-class.html#printfASCII
petsc4py.PETSc.Object.getAttr petsc4py.PETSc.Object-class.html#getAttr
petsc4py.PETSc.Object.query petsc4py.PETSc.Object-class.html#query
petsc4py.PETSc.Object.__lt__ petsc4py.PETSc.Object-class.html#__lt__
petsc4py.PETSc.ViewerHDF5.getGroup petsc4py.PETSc.ViewerHDF5-class.html#getGroup
petsc4py.PETSc.Object.getTabLevel petsc4py.PETSc.Object-class.html#getTabLevel
petsc4py.PETSc.Viewer.printfASCIISynchronized petsc4py.PETSc.Viewer-class.html#printfASCIISynchronized
petsc4py.PETSc.Viewer.createVTK petsc4py.PETSc.Viewer-class.html#createVTK
petsc4py.PETSc.Viewer.popASCIITab petsc4py.PETSc.Viewer-class.html#popASCIITab
petsc4py.PETSc.Object.fortran petsc4py.PETSc.Object-class.html#fortran
petsc4py.PETSc.Viewer.__call__ petsc4py.PETSc.Viewer-class.html#__call__
petsc4py.PETSc.Object.handle petsc4py.PETSc.Object-class.html#handle
petsc4py.PETSc.Object.setOptionsPrefix petsc4py.PETSc.Object-class.html#setOptionsPrefix
petsc4py.PETSc.Object.__deepcopy__ petsc4py.PETSc.Object-class.html#__deepcopy__
petsc4py.PETSc.Object.setFromOptions petsc4py.PETSc.Object-class.html#setFromOptions
petsc4py.PETSc.Object.__gt__ petsc4py.PETSc.Object-class.html#__gt__
petsc4py.PETSc.Viewer.createDraw petsc4py.PETSc.Viewer-class.html#createDraw
petsc4py.PETSc.Viewer.BINARY petsc4py.PETSc.Viewer-class.html#BINARY
petsc4py.PETSc.Object.__nonzero__ petsc4py.PETSc.Object-class.html#__nonzero__
petsc4py.PETSc.Object.name petsc4py.PETSc.Object-class.html#name
petsc4py.PETSc.Viewer.createBinary petsc4py.PETSc.Viewer-class.html#createBinary
petsc4py.PETSc.Object.getClassId petsc4py.PETSc.Object-class.html#getClassId
petsc4py.PETSc.Object.prefix petsc4py.PETSc.Object-class.html#prefix
petsc4py.PETSc.Viewer.pushASCIITab petsc4py.PETSc.Viewer-class.html#pushASCIITab
petsc4py.PETSc.Viewer.popFormat petsc4py.PETSc.Viewer-class.html#popFormat
petsc4py.PETSc.Object.__copy__ petsc4py.PETSc.Object-class.html#__copy__
petsc4py.PETSc.Viewer.ASCII petsc4py.PETSc.Viewer-class.html#ASCII
petsc4py.PETSc.Viewer.view petsc4py.PETSc.Viewer-class.html#view
petsc4py.PETSc.Object.decRef petsc4py.PETSc.Object-class.html#decRef
petsc4py.PETSc.ViewerHDF5.popGroup petsc4py.PETSc.ViewerHDF5-class.html#popGroup
petsc4py.PETSc.Viewer.flush petsc4py.PETSc.Viewer-class.html#flush
petsc4py.PETSc.Viewer.Type petsc4py.PETSc.Viewer.Type-class.html
petsc4py.PETSc.Object.getName petsc4py.PETSc.Object-class.html#getName
petsc4py.PETSc.Object.incrementTabLevel petsc4py.PETSc.Object-class.html#incrementTabLevel
petsc4py.PETSc.Object.__ne__ petsc4py.PETSc.Object-class.html#__ne__
petsc4py.PETSc.Viewer.popASCIISynchronized petsc4py.PETSc.Viewer-class.html#popASCIISynchronized
petsc4py.PETSc.Viewer.createHDF5 petsc4py.PETSc.Viewer-class.html#createHDF5
petsc4py.PETSc.Object.getOptionsPrefix petsc4py.PETSc.Object-class.html#getOptionsPrefix
petsc4py.PETSc.Object.compose petsc4py.PETSc.Object-class.html#compose
petsc4py.PETSc.Object.comm petsc4py.PETSc.Object-class.html#comm
petsc4py.PETSc.Object.viewFromOptions petsc4py.PETSc.Object-class.html#viewFromOptions
petsc4py.PETSc.Viewer.getFormat petsc4py.PETSc.Viewer-class.html#getFormat
petsc4py.PETSc.ViewerHDF5.incrementTimestep petsc4py.PETSc.ViewerHDF5-class.html#incrementTimestep
petsc4py.PETSc.Object.getDict petsc4py.PETSc.Object-class.html#getDict
petsc4py.PETSc.Viewer.STDERR petsc4py.PETSc.Viewer-class.html#STDERR
petsc4py.PETSc.Viewer.setASCIITab petsc4py.PETSc.Viewer-class.html#setASCIITab
petsc4py.PETSc.Object.classid petsc4py.PETSc.Object-class.html#classid
petsc4py.PETSc.Viewer.pushFormat petsc4py.PETSc.Viewer-class.html#pushFormat
petsc4py.PETSc.Viewer.setType petsc4py.PETSc.Viewer-class.html#setType
petsc4py.PETSc.Viewer.getASCIITab petsc4py.PETSc.Viewer-class.html#getASCIITab
petsc4py.PETSc.ViewerHDF5.create petsc4py.PETSc.ViewerHDF5-class.html#create
petsc4py.PETSc.Viewer.clearDraw petsc4py.PETSc.Viewer-class.html#clearDraw
petsc4py.PETSc.Object.type petsc4py.PETSc.Object-class.html#type
petsc4py.PETSc.Viewer.DRAW petsc4py.PETSc.Viewer-class.html#DRAW
petsc4py.PETSc.Object.getRefCount petsc4py.PETSc.Object-class.html#getRefCount
petsc4py.PETSc.Object.incRef petsc4py.PETSc.Object-class.html#incRef
petsc4py.PETSc.Object.setName petsc4py.PETSc.Object-class.html#setName
petsc4py.PETSc.Viewer.getType petsc4py.PETSc.Viewer-class.html#getType
petsc4py.PETSc.Object.refcount petsc4py.PETSc.Object-class.html#refcount
petsc4py.PETSc.Viewer.setDrawInfo petsc4py.PETSc.Viewer-class.html#setDrawInfo
petsc4py.PETSc.Object.__eq__ petsc4py.PETSc.Object-class.html#__eq__
petsc4py.PETSc.Viewer.getFileName petsc4py.PETSc.Viewer-class.html#getFileName
petsc4py.PETSc.Viewer.createASCII petsc4py.PETSc.Viewer-class.html#createASCII
petsc4py.PETSc.Viewer.pushASCIISynchronized petsc4py.PETSc.Viewer-class.html#pushASCIISynchronized
petsc4py.PETSc.Object.__le__ petsc4py.PETSc.Object-class.html#__le__
petsc4py.PETSc.ViewerHDF5.getTimestep petsc4py.PETSc.ViewerHDF5-class.html#getTimestep
petsc4py.PETSc.Object.getClassName petsc4py.PETSc.Object-class.html#getClassName
petsc4py.PETSc.Object.__ge__ petsc4py.PETSc.Object-class.html#__ge__
petsc4py.PETSc.Viewer.Size petsc4py.PETSc.Viewer.Size-class.html
petsc4py.PETSc.Viewer.getFileMode petsc4py.PETSc.Viewer-class.html#getFileMode
petsc4py.PETSc.Viewer.STDOUT petsc4py.PETSc.Viewer-class.html#STDOUT
petsc4py.PETSc.Viewer.addASCIITab petsc4py.PETSc.Viewer-class.html#addASCIITab
petsc4py.PETSc.ViewerHDF5.__new__ petsc4py.PETSc.ViewerHDF5-class.html#__new__
petsc4py.PETSc.Viewer.Format petsc4py.PETSc.Viewer.Format-class.html
petsc4py.PETSc.Viewer.setFileMode petsc4py.PETSc.Viewer-class.html#setFileMode
petsc4py.PETSc.Viewer.destroy petsc4py.PETSc.Viewer-class.html#destroy
petsc4py.PETSc.Object.stateIncrease petsc4py.PETSc.Object-class.html#stateIncrease
petsc4py.PETSc.ViewerHDF5.pushGroup petsc4py.PETSc.ViewerHDF5-class.html#pushGroup
petsc4py.PETSc.Viewer.useASCIITabs petsc4py.PETSc.Viewer-class.html#useASCIITabs
petsc4py.PETSc.Object.setAttr petsc4py.PETSc.Object-class.html#setAttr
petsc4py.PETSc.Viewer.Mode petsc4py.PETSc.Viewer.Mode-class.html
petsc4py.PETSc.Viewer.createMPIIO petsc4py.PETSc.Viewer-class.html#createMPIIO
petsc4py.PETSc.Viewer.subtractASCIITab petsc4py.PETSc.Viewer-class.html#subtractASCIITab
petsc4py.PETSc.ViewerHDF5.setTimestep petsc4py.PETSc.ViewerHDF5-class.html#setTimestep
petsc4py.PETSc.Object.getComm petsc4py.PETSc.Object-class.html#getComm
petsc4py.PETSc.Viewer.setFileName petsc4py.PETSc.Viewer-class.html#setFileName
petsc4py.PETSc.Object.setTabLevel petsc4py.PETSc.Object-class.html#setTabLevel
petsc4py.PETSc.Object.klass petsc4py.PETSc.Object-class.html#klass
petsc4py.PETSc._DMComposite_access petsc4py.PETSc._DMComposite_access-class.html
petsc4py.PETSc._DMComposite_access.__exit__ petsc4py.PETSc._DMComposite_access-class.html#__exit__
petsc4py.PETSc._DMComposite_access.__new__ petsc4py.PETSc._DMComposite_access-class.html#__new__
petsc4py.PETSc._DMComposite_access.__enter__ petsc4py.PETSc._DMComposite_access-class.html#__enter__
petsc4py.PETSc._DMDA_Vec_array petsc4py.PETSc._DMDA_Vec_array-class.html
petsc4py.PETSc._DMDA_Vec_array.shape petsc4py.PETSc._DMDA_Vec_array-class.html#shape
petsc4py.PETSc._DMDA_Vec_array.array petsc4py.PETSc._DMDA_Vec_array-class.html#array
petsc4py.PETSc._DMDA_Vec_array.__new__ petsc4py.PETSc._DMDA_Vec_array-class.html#__new__
petsc4py.PETSc._DMDA_Vec_array.__enter__ petsc4py.PETSc._DMDA_Vec_array-class.html#__enter__
petsc4py.PETSc._DMDA_Vec_array.__exit__ petsc4py.PETSc._DMDA_Vec_array-class.html#__exit__
petsc4py.PETSc._DMDA_Vec_array.__getitem__ petsc4py.PETSc._DMDA_Vec_array-class.html#__getitem__
petsc4py.PETSc._DMDA_Vec_array.strides petsc4py.PETSc._DMDA_Vec_array-class.html#strides
petsc4py.PETSc._DMDA_Vec_array.__setitem__ petsc4py.PETSc._DMDA_Vec_array-class.html#__setitem__
petsc4py.PETSc._DMDA_Vec_array.__delitem__ petsc4py.PETSc._DMDA_Vec_array-class.html#__delitem__
petsc4py.PETSc._DMDA_Vec_array.sizes petsc4py.PETSc._DMDA_Vec_array-class.html#sizes
petsc4py.PETSc._DMDA_Vec_array.starts petsc4py.PETSc._DMDA_Vec_array-class.html#starts
petsc4py.PETSc._IS_buffer petsc4py.PETSc._IS_buffer-class.html
petsc4py.PETSc._IS_buffer.__exit__ petsc4py.PETSc._IS_buffer-class.html#__exit__
petsc4py.PETSc._IS_buffer.__new__ petsc4py.PETSc._IS_buffer-class.html#__new__
petsc4py.PETSc._IS_buffer.__enter__ petsc4py.PETSc._IS_buffer-class.html#__enter__
petsc4py.PETSc._IS_buffer.__array_interface__ petsc4py.PETSc._IS_buffer-class.html#__array_interface__
petsc4py.PETSc._Mat_Stencil petsc4py.PETSc._Mat_Stencil-class.html
petsc4py.PETSc._Mat_Stencil.index petsc4py.PETSc._Mat_Stencil-class.html#index
petsc4py.PETSc._Mat_Stencil.c petsc4py.PETSc._Mat_Stencil-class.html#c
petsc4py.PETSc._Mat_Stencil.__new__ petsc4py.PETSc._Mat_Stencil-class.html#__new__
petsc4py.PETSc._Mat_Stencil.i petsc4py.PETSc._Mat_Stencil-class.html#i
petsc4py.PETSc._Mat_Stencil.k petsc4py.PETSc._Mat_Stencil-class.html#k
petsc4py.PETSc._Mat_Stencil.j petsc4py.PETSc._Mat_Stencil-class.html#j
petsc4py.PETSc._Mat_Stencil.field petsc4py.PETSc._Mat_Stencil-class.html#field
petsc4py.PETSc._Vec_LocalForm petsc4py.PETSc._Vec_LocalForm-class.html
petsc4py.PETSc._Vec_LocalForm.__exit__ petsc4py.PETSc._Vec_LocalForm-class.html#__exit__
petsc4py.PETSc._Vec_LocalForm.__new__ petsc4py.PETSc._Vec_LocalForm-class.html#__new__
petsc4py.PETSc._Vec_LocalForm.__enter__ petsc4py.PETSc._Vec_LocalForm-class.html#__enter__
petsc4py.PETSc._Vec_LocalForm.__init__ petsc4py.PETSc._Vec_LocalForm-class.html#__init__
petsc4py.PETSc._Vec_buffer petsc4py.PETSc._Vec_buffer-class.html
petsc4py.PETSc._Vec_buffer.__exit__ petsc4py.PETSc._Vec_buffer-class.html#__exit__
petsc4py.PETSc._Vec_buffer.__new__ petsc4py.PETSc._Vec_buffer-class.html#__new__
petsc4py.PETSc._Vec_buffer.__enter__ petsc4py.PETSc._Vec_buffer-class.html#__enter__
petsc4py.PETSc._Vec_buffer.__array_interface__ petsc4py.PETSc._Vec_buffer-class.html#__array_interface__
|