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
|
<!DOCTYPE html>
<html lang="en" data-content_root="../" >
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
<title>slepc4py.SLEPc.PEP — Python 3.24.1 documentation</title>
<script data-cfasync="false">
document.documentElement.dataset.mode = localStorage.getItem("mode") || "";
document.documentElement.dataset.theme = localStorage.getItem("theme") || "";
</script>
<!--
this give us a css class that will be invisible only if js is disabled
-->
<noscript>
<style>
.pst-js-only { display: none !important; }
</style>
</noscript>
<!-- Loaded before other Sphinx assets -->
<link href="../_static/styles/theme.css?digest=8878045cc6db502f8baf" rel="stylesheet" />
<link href="../_static/styles/pydata-sphinx-theme.css?digest=8878045cc6db502f8baf" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=8f2a1f02" />
<link rel="stylesheet" type="text/css" href="../_static/css/slepc.css?v=d285b177" />
<!-- So that users can add custom icons -->
<script src="../_static/scripts/fontawesome.js?digest=8878045cc6db502f8baf"></script>
<!-- Pre-loaded scripts that we'll load fully later -->
<link rel="preload" as="script" href="../_static/scripts/bootstrap.js?digest=8878045cc6db502f8baf" />
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=8878045cc6db502f8baf" />
<script src="../_static/documentation_options.js?v=d1c46438"></script>
<script src="../_static/doctools.js?v=9a2dae69"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script async="async" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<script>DOCUMENTATION_OPTIONS.pagename = 'reference/slepc4py.SLEPc.PEP';</script>
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="slepc4py.SLEPc.PEP.Basis" href="slepc4py.SLEPc.PEP.Basis.html" />
<link rel="prev" title="slepc4py.SLEPc.NEP.Which" href="slepc4py.SLEPc.NEP.Which.html" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="docsearch:language" content="en"/>
<meta name="docsearch:version" content="3.24" />
<meta name="docbuild:last-update" content="2025-11-07T09:28:35+0100 (v3.24.1)"/>
</head>
<body data-bs-spy="scroll" data-bs-target=".bd-toc-nav" data-offset="180" data-bs-root-margin="0px 0px -60%" data-default-mode="">
<div id="pst-skip-link" class="skip-link d-print-none"><a href="#main-content">Skip to main content</a></div>
<div id="pst-scroll-pixel-helper"></div>
<button type="button" class="btn rounded-pill" id="pst-back-to-top">
<i class="fa-solid fa-arrow-up"></i>Back to top</button>
<dialog id="pst-search-dialog">
<form class="bd-search d-flex align-items-center"
action="../search.html"
method="get">
<i class="fa-solid fa-magnifying-glass"></i>
<input type="search"
class="form-control"
name="q"
placeholder="Search the docs ..."
aria-label="Search the docs ..."
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="false"/>
<span class="search-button__kbd-shortcut"><kbd class="kbd-shortcut__modifier">Ctrl</kbd>+<kbd>K</kbd></span>
</form>
</dialog>
<div class="pst-async-banner-revealer d-none">
<aside id="bd-header-version-warning" class="d-none d-print-none" aria-label="Version warning"></aside>
</div>
<header class="bd-header navbar navbar-expand-lg bd-navbar d-print-none">
<div class="bd-header__inner bd-page-width">
<button class="pst-navbar-icon sidebar-toggle primary-toggle" aria-label="Site navigation">
<span class="fa-solid fa-bars"></span>
</button>
<div class="col-lg-3 navbar-header-items__start">
<div class="navbar-item">
<a class="navbar-brand logo" href="../index.html">
<p class="title logo__title">Python 3.24.1 documentation</p>
</a></div>
</div>
<div class="col-lg-9 navbar-header-items">
<div class="me-auto navbar-header-items__center">
<div class="navbar-item">
<nav>
<ul class="bd-navbar-elements navbar-nav">
<li class="nav-item ">
<a class="nav-link nav-internal" href="../overview.html">
Overview
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../tutorial.html">
Tutorial
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../install.html">
Installation
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../citing.html">
Citations
</a>
</li>
<li class="nav-item current active">
<a class="nav-link nav-internal" href="../reference.html">
Reference
</a>
</li>
<li class="nav-item dropdown">
<button class="btn dropdown-toggle nav-item" type="button"
data-bs-toggle="dropdown" aria-expanded="false"
aria-controls="pst-nav-more-links">
More
</button>
<ul id="pst-nav-more-links" class="dropdown-menu">
<li class=" ">
<a class="nav-link dropdown-item nav-internal" href="../demo/demo.html">
slepc4py demos
</a>
</li>
</ul>
</li>
</ul>
</nav></div>
</div>
<div class="navbar-header-items__end">
<div class="navbar-item navbar-persistent--container">
<button class="btn search-button-field search-button__button pst-js-only" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass"></i>
<span class="search-button__default-text">Search</span>
<span class="search-button__kbd-shortcut"><kbd class="kbd-shortcut__modifier">Ctrl</kbd>+<kbd class="kbd-shortcut__modifier">K</kbd></span>
</button>
</div>
<div class="navbar-item">
<button class="btn btn-sm nav-link pst-navbar-icon theme-switch-button pst-js-only" aria-label="Color mode" data-bs-title="Color mode" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="theme-switch fa-solid fa-sun fa-lg" data-mode="light" title="Light"></i>
<i class="theme-switch fa-solid fa-moon fa-lg" data-mode="dark" title="Dark"></i>
<i class="theme-switch fa-solid fa-circle-half-stroke fa-lg" data-mode="auto" title="System Settings"></i>
</button></div>
</div>
</div>
<div class="navbar-persistent--mobile">
<button class="btn search-button-field search-button__button pst-js-only" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass"></i>
<span class="search-button__default-text">Search</span>
<span class="search-button__kbd-shortcut"><kbd class="kbd-shortcut__modifier">Ctrl</kbd>+<kbd class="kbd-shortcut__modifier">K</kbd></span>
</button>
</div>
<button class="pst-navbar-icon sidebar-toggle secondary-toggle" aria-label="On this page">
<span class="fa-solid fa-outdent"></span>
</button>
</div>
</header>
<div class="bd-container">
<div class="bd-container__inner bd-page-width">
<dialog id="pst-primary-sidebar-modal"></dialog>
<div id="pst-primary-sidebar" class="bd-sidebar-primary bd-sidebar">
<div class="sidebar-header-items sidebar-primary__section">
<div class="sidebar-header-items__center">
<div class="navbar-item">
<nav>
<ul class="bd-navbar-elements navbar-nav">
<li class="nav-item ">
<a class="nav-link nav-internal" href="../overview.html">
Overview
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../tutorial.html">
Tutorial
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../install.html">
Installation
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../citing.html">
Citations
</a>
</li>
<li class="nav-item current active">
<a class="nav-link nav-internal" href="../reference.html">
Reference
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../demo/demo.html">
slepc4py demos
</a>
</li>
</ul>
</nav></div>
</div>
<div class="sidebar-header-items__end">
<div class="navbar-item">
<button class="btn btn-sm nav-link pst-navbar-icon theme-switch-button pst-js-only" aria-label="Color mode" data-bs-title="Color mode" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="theme-switch fa-solid fa-sun fa-lg" data-mode="light" title="Light"></i>
<i class="theme-switch fa-solid fa-moon fa-lg" data-mode="dark" title="Dark"></i>
<i class="theme-switch fa-solid fa-circle-half-stroke fa-lg" data-mode="auto" title="System Settings"></i>
</button></div>
</div>
</div>
<div class="sidebar-primary-items__start sidebar-primary__section">
<div class="sidebar-primary-item">
<nav class="bd-docs-nav bd-links"
aria-label="Section Navigation">
<p class="bd-links__title" role="heading" aria-level="1">Section Navigation</p>
<div class="bd-toc-item navbar-nav"><ul class="current nav bd-sidenav">
<li class="toctree-l1 has-children"><a class="reference internal" href="slepc4py.html">slepc4py</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.get_config.html">slepc4py.get_config</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.get_include.html">slepc4py.get_include</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.init.html">slepc4py.init</a></li>
</ul>
</details></li>
<li class="toctree-l1 has-children"><a class="reference internal" href="slepc4py.typing.html">slepc4py.typing</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.Scalar.html">slepc4py.typing.Scalar</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.ArrayInt.html">slepc4py.typing.ArrayInt</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.ArrayReal.html">slepc4py.typing.ArrayReal</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.ArrayComplex.html">slepc4py.typing.ArrayComplex</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.ArrayScalar.html">slepc4py.typing.ArrayScalar</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.LayoutSizeSpec.html">slepc4py.typing.LayoutSizeSpec</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.EPSStoppingFunction.html">slepc4py.typing.EPSStoppingFunction</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.EPSArbitraryFunction.html">slepc4py.typing.EPSArbitraryFunction</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.EPSEigenvalueComparison.html">slepc4py.typing.EPSEigenvalueComparison</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.EPSMonitorFunction.html">slepc4py.typing.EPSMonitorFunction</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.PEPStoppingFunction.html">slepc4py.typing.PEPStoppingFunction</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.PEPMonitorFunction.html">slepc4py.typing.PEPMonitorFunction</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.NEPStoppingFunction.html">slepc4py.typing.NEPStoppingFunction</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.NEPMonitorFunction.html">slepc4py.typing.NEPMonitorFunction</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.NEPFunction.html">slepc4py.typing.NEPFunction</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.NEPJacobian.html">slepc4py.typing.NEPJacobian</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.SVDStoppingFunction.html">slepc4py.typing.SVDStoppingFunction</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.SVDMonitorFunction.html">slepc4py.typing.SVDMonitorFunction</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.MFNMonitorFunction.html">slepc4py.typing.MFNMonitorFunction</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.typing.LMEMonitorFunction.html">slepc4py.typing.LMEMonitorFunction</a></li>
</ul>
</details></li>
<li class="toctree-l1 current active has-children"><a class="reference internal" href="slepc4py.SLEPc.html">slepc4py.SLEPc</a><details open="open"><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul class="current">
<li class="toctree-l2 has-children"><a class="reference internal" href="slepc4py.SLEPc.BV.html">slepc4py.SLEPc.BV</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.BV.MatMultType.html">slepc4py.SLEPc.BV.MatMultType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.BV.OrthogBlockType.html">slepc4py.SLEPc.BV.OrthogBlockType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.BV.OrthogRefineType.html">slepc4py.SLEPc.BV.OrthogRefineType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.BV.OrthogType.html">slepc4py.SLEPc.BV.OrthogType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.BV.Type.html">slepc4py.SLEPc.BV.Type</a></li>
</ul>
</details></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.SLEPc.BVSVDMethod.html">slepc4py.SLEPc.BVSVDMethod</a></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="slepc4py.SLEPc.DS.html">slepc4py.SLEPc.DS</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.DS.MatType.html">slepc4py.SLEPc.DS.MatType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.DS.ParallelType.html">slepc4py.SLEPc.DS.ParallelType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.DS.StateType.html">slepc4py.SLEPc.DS.StateType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.DS.Type.html">slepc4py.SLEPc.DS.Type</a></li>
</ul>
</details></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="slepc4py.SLEPc.EPS.html">slepc4py.SLEPc.EPS</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.EPS.Balance.html">slepc4py.SLEPc.EPS.Balance</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.EPS.CISSExtraction.html">slepc4py.SLEPc.EPS.CISSExtraction</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.EPS.CISSQuadRule.html">slepc4py.SLEPc.EPS.CISSQuadRule</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.EPS.Conv.html">slepc4py.SLEPc.EPS.Conv</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.EPS.ConvergedReason.html">slepc4py.SLEPc.EPS.ConvergedReason</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.EPS.ErrorType.html">slepc4py.SLEPc.EPS.ErrorType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.EPS.Extraction.html">slepc4py.SLEPc.EPS.Extraction</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.EPS.KrylovSchurBSEType.html">slepc4py.SLEPc.EPS.KrylovSchurBSEType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.EPS.LanczosReorthogType.html">slepc4py.SLEPc.EPS.LanczosReorthogType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.EPS.PowerShiftType.html">slepc4py.SLEPc.EPS.PowerShiftType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.EPS.ProblemType.html">slepc4py.SLEPc.EPS.ProblemType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.EPS.Stop.html">slepc4py.SLEPc.EPS.Stop</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.EPS.Type.html">slepc4py.SLEPc.EPS.Type</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.EPS.Which.html">slepc4py.SLEPc.EPS.Which</a></li>
</ul>
</details></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.SLEPc.EPSKrylovSchurBSEType.html">slepc4py.SLEPc.EPSKrylovSchurBSEType</a></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="slepc4py.SLEPc.FN.html">slepc4py.SLEPc.FN</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.FN.CombineType.html">slepc4py.SLEPc.FN.CombineType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.FN.ParallelType.html">slepc4py.SLEPc.FN.ParallelType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.FN.Type.html">slepc4py.SLEPc.FN.Type</a></li>
</ul>
</details></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="slepc4py.SLEPc.LME.html">slepc4py.SLEPc.LME</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.LME.ConvergedReason.html">slepc4py.SLEPc.LME.ConvergedReason</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.LME.ProblemType.html">slepc4py.SLEPc.LME.ProblemType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.LME.Type.html">slepc4py.SLEPc.LME.Type</a></li>
</ul>
</details></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="slepc4py.SLEPc.MFN.html">slepc4py.SLEPc.MFN</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.MFN.ConvergedReason.html">slepc4py.SLEPc.MFN.ConvergedReason</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.MFN.Type.html">slepc4py.SLEPc.MFN.Type</a></li>
</ul>
</details></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="slepc4py.SLEPc.NEP.html">slepc4py.SLEPc.NEP</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.NEP.CISSExtraction.html">slepc4py.SLEPc.NEP.CISSExtraction</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.NEP.Conv.html">slepc4py.SLEPc.NEP.Conv</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.NEP.ConvergedReason.html">slepc4py.SLEPc.NEP.ConvergedReason</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.NEP.ErrorType.html">slepc4py.SLEPc.NEP.ErrorType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.NEP.ProblemType.html">slepc4py.SLEPc.NEP.ProblemType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.NEP.Refine.html">slepc4py.SLEPc.NEP.Refine</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.NEP.RefineScheme.html">slepc4py.SLEPc.NEP.RefineScheme</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.NEP.Stop.html">slepc4py.SLEPc.NEP.Stop</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.NEP.Type.html">slepc4py.SLEPc.NEP.Type</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.NEP.Which.html">slepc4py.SLEPc.NEP.Which</a></li>
</ul>
</details></li>
<li class="toctree-l2 current active has-children"><a class="current reference internal" href="#">slepc4py.SLEPc.PEP</a><details open="open"><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.PEP.Basis.html">slepc4py.SLEPc.PEP.Basis</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.PEP.CISSExtraction.html">slepc4py.SLEPc.PEP.CISSExtraction</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.PEP.Conv.html">slepc4py.SLEPc.PEP.Conv</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.PEP.ConvergedReason.html">slepc4py.SLEPc.PEP.ConvergedReason</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.PEP.ErrorType.html">slepc4py.SLEPc.PEP.ErrorType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.PEP.Extract.html">slepc4py.SLEPc.PEP.Extract</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.PEP.JDProjection.html">slepc4py.SLEPc.PEP.JDProjection</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.PEP.ProblemType.html">slepc4py.SLEPc.PEP.ProblemType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.PEP.Refine.html">slepc4py.SLEPc.PEP.Refine</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.PEP.RefineScheme.html">slepc4py.SLEPc.PEP.RefineScheme</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.PEP.Scale.html">slepc4py.SLEPc.PEP.Scale</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.PEP.Stop.html">slepc4py.SLEPc.PEP.Stop</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.PEP.Type.html">slepc4py.SLEPc.PEP.Type</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.PEP.Which.html">slepc4py.SLEPc.PEP.Which</a></li>
</ul>
</details></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="slepc4py.SLEPc.RG.html">slepc4py.SLEPc.RG</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.RG.QuadRule.html">slepc4py.SLEPc.RG.QuadRule</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.RG.Type.html">slepc4py.SLEPc.RG.Type</a></li>
</ul>
</details></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="slepc4py.SLEPc.ST.html">slepc4py.SLEPc.ST</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.ST.FilterDamping.html">slepc4py.SLEPc.ST.FilterDamping</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.ST.FilterType.html">slepc4py.SLEPc.ST.FilterType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.ST.MatMode.html">slepc4py.SLEPc.ST.MatMode</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.ST.Type.html">slepc4py.SLEPc.ST.Type</a></li>
</ul>
</details></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.SLEPc.STFilterDamping.html">slepc4py.SLEPc.STFilterDamping</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.SLEPc.STFilterType.html">slepc4py.SLEPc.STFilterType</a></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="slepc4py.SLEPc.SVD.html">slepc4py.SLEPc.SVD</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.SVD.Conv.html">slepc4py.SLEPc.SVD.Conv</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.SVD.ConvergedReason.html">slepc4py.SLEPc.SVD.ConvergedReason</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.SVD.ErrorType.html">slepc4py.SLEPc.SVD.ErrorType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.SVD.ProblemType.html">slepc4py.SLEPc.SVD.ProblemType</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.SVD.Stop.html">slepc4py.SLEPc.SVD.Stop</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.SVD.TRLanczosGBidiag.html">slepc4py.SLEPc.SVD.TRLanczosGBidiag</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.SVD.Type.html">slepc4py.SLEPc.SVD.Type</a></li>
<li class="toctree-l3"><a class="reference internal" href="slepc4py.SLEPc.SVD.Which.html">slepc4py.SLEPc.SVD.Which</a></li>
</ul>
</details></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.SLEPc.Sys.html">slepc4py.SLEPc.Sys</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.SLEPc.Util.html">slepc4py.SLEPc.Util</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.SLEPc.DECIDE.html">slepc4py.SLEPc.DECIDE</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.SLEPc.DEFAULT.html">slepc4py.SLEPc.DEFAULT</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.SLEPc.DETERMINE.html">slepc4py.SLEPc.DETERMINE</a></li>
<li class="toctree-l2"><a class="reference internal" href="slepc4py.SLEPc.CURRENT.html">slepc4py.SLEPc.CURRENT</a></li>
</ul>
</details></li>
</ul>
</div>
</nav></div>
</div>
<div class="sidebar-primary-items__end sidebar-primary__section">
<div class="sidebar-primary-item">
<div id="ethical-ad-placement"
class="flat"
data-ea-publisher="readthedocs"
data-ea-type="readthedocs-sidebar"
data-ea-manual="true">
</div></div>
</div>
</div>
<main id="main-content" class="bd-main" role="main">
<div class="bd-content">
<div class="bd-article-container">
<div class="bd-header-article d-print-none">
<div class="header-article-items header-article__inner">
<div class="header-article-items__start">
<div class="header-article-item">
<nav aria-label="Breadcrumb" class="d-print-none">
<ul class="bd-breadcrumbs">
<li class="breadcrumb-item breadcrumb-home">
<a href="../index.html" class="nav-link" aria-label="Home">
<i class="fa-solid fa-home"></i>
</a>
</li>
<li class="breadcrumb-item"><a href="../reference.html" class="nav-link">Reference</a></li>
<li class="breadcrumb-item"><a href="slepc4py.SLEPc.html" class="nav-link">slepc4py.SLEPc</a></li>
<li class="breadcrumb-item active" aria-current="page"><span class="ellipsis">slepc4py.SLEPc.PEP</span></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<div id="searchbox"></div>
<article class="bd-article">
<section id="slepc4py-slepc-pep">
<h1>slepc4py.SLEPc.PEP<a class="headerlink" href="#slepc4py-slepc-pep" title="Link to this heading">#</a></h1>
<dl class="py class">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP">
<em class="property"><span class="pre">class</span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">slepc4py.SLEPc.</span></span><span class="sig-name descname"><span class="pre">PEP</span></span><a class="headerlink" href="#slepc4py.SLEPc.PEP" title="Link to this definition">#</a></dt>
<dd><p>Bases: <a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Object.html#petsc4py.PETSc.Object" title="(in Python v3.24)"><code class="xref py py-class docutils literal notranslate"><span class="pre">Object</span></code></a></p>
<p>PEP.</p>
<p class="rubric">Enumerations</p>
<div class="pst-scrollable-table-container"><table class="autosummary longtable table autosummary">
<tbody>
<tr class="row-odd"><td><p><a class="reference internal" href="slepc4py.SLEPc.PEP.Basis.html#slepc4py.SLEPc.PEP.Basis" title="slepc4py.SLEPc.PEP.Basis"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Basis</span></code></a></p></td>
<td><p>PEP basis type for the representation of the polynomial.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="slepc4py.SLEPc.PEP.CISSExtraction.html#slepc4py.SLEPc.PEP.CISSExtraction" title="slepc4py.SLEPc.PEP.CISSExtraction"><code class="xref py py-obj docutils literal notranslate"><span class="pre">CISSExtraction</span></code></a></p></td>
<td><p>PEP CISS extraction technique.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="slepc4py.SLEPc.PEP.Conv.html#slepc4py.SLEPc.PEP.Conv" title="slepc4py.SLEPc.PEP.Conv"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Conv</span></code></a></p></td>
<td><p>PEP convergence test.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="slepc4py.SLEPc.PEP.ConvergedReason.html#slepc4py.SLEPc.PEP.ConvergedReason" title="slepc4py.SLEPc.PEP.ConvergedReason"><code class="xref py py-obj docutils literal notranslate"><span class="pre">ConvergedReason</span></code></a></p></td>
<td><p>PEP convergence reasons.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="slepc4py.SLEPc.PEP.ErrorType.html#slepc4py.SLEPc.PEP.ErrorType" title="slepc4py.SLEPc.PEP.ErrorType"><code class="xref py py-obj docutils literal notranslate"><span class="pre">ErrorType</span></code></a></p></td>
<td><p>PEP error type to assess accuracy of computed solutions.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="slepc4py.SLEPc.PEP.Extract.html#slepc4py.SLEPc.PEP.Extract" title="slepc4py.SLEPc.PEP.Extract"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Extract</span></code></a></p></td>
<td><p>PEP extraction strategy used.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="slepc4py.SLEPc.PEP.JDProjection.html#slepc4py.SLEPc.PEP.JDProjection" title="slepc4py.SLEPc.PEP.JDProjection"><code class="xref py py-obj docutils literal notranslate"><span class="pre">JDProjection</span></code></a></p></td>
<td><p>PEP type of projection to be used in the Jacobi-Davidson solver.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="slepc4py.SLEPc.PEP.ProblemType.html#slepc4py.SLEPc.PEP.ProblemType" title="slepc4py.SLEPc.PEP.ProblemType"><code class="xref py py-obj docutils literal notranslate"><span class="pre">ProblemType</span></code></a></p></td>
<td><p>PEP problem type.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="slepc4py.SLEPc.PEP.Refine.html#slepc4py.SLEPc.PEP.Refine" title="slepc4py.SLEPc.PEP.Refine"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Refine</span></code></a></p></td>
<td><p>PEP refinement strategy.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="slepc4py.SLEPc.PEP.RefineScheme.html#slepc4py.SLEPc.PEP.RefineScheme" title="slepc4py.SLEPc.PEP.RefineScheme"><code class="xref py py-obj docutils literal notranslate"><span class="pre">RefineScheme</span></code></a></p></td>
<td><p>PEP scheme for solving linear systems during iterative refinement.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="slepc4py.SLEPc.PEP.Scale.html#slepc4py.SLEPc.PEP.Scale" title="slepc4py.SLEPc.PEP.Scale"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Scale</span></code></a></p></td>
<td><p>PEP scaling strategy.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="slepc4py.SLEPc.PEP.Stop.html#slepc4py.SLEPc.PEP.Stop" title="slepc4py.SLEPc.PEP.Stop"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Stop</span></code></a></p></td>
<td><p>PEP stopping test.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="slepc4py.SLEPc.PEP.Type.html#slepc4py.SLEPc.PEP.Type" title="slepc4py.SLEPc.PEP.Type"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Type</span></code></a></p></td>
<td><p>PEP type.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="slepc4py.SLEPc.PEP.Which.html#slepc4py.SLEPc.PEP.Which" title="slepc4py.SLEPc.PEP.Which"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Which</span></code></a></p></td>
<td><p>PEP desired part of spectrum.</p></td>
</tr>
</tbody>
</table>
</div>
<p class="rubric">Methods Summary</p>
<div class="pst-scrollable-table-container"><table class="autosummary longtable table autosummary">
<tbody>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.appendOptionsPrefix" title="slepc4py.SLEPc.PEP.appendOptionsPrefix"><code class="xref py py-obj docutils literal notranslate"><span class="pre">appendOptionsPrefix</span></code></a>([prefix])</p></td>
<td><p>Append to the prefix used for searching for all PEP options in the database.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.cancelMonitor" title="slepc4py.SLEPc.PEP.cancelMonitor"><code class="xref py py-obj docutils literal notranslate"><span class="pre">cancelMonitor</span></code></a>()</p></td>
<td><p>Clear all monitors for a <a class="reference internal" href="#slepc4py.SLEPc.PEP" title="slepc4py.SLEPc.PEP"><code class="xref any py py-class docutils literal notranslate"><span class="pre">PEP</span></code></a> object.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.computeError" title="slepc4py.SLEPc.PEP.computeError"><code class="xref py py-obj docutils literal notranslate"><span class="pre">computeError</span></code></a>(i[, etype])</p></td>
<td><p>Compute the error associated with the i-th computed eigenpair.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.create" title="slepc4py.SLEPc.PEP.create"><code class="xref py py-obj docutils literal notranslate"><span class="pre">create</span></code></a>([comm])</p></td>
<td><p>Create the PEP object.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.destroy" title="slepc4py.SLEPc.PEP.destroy"><code class="xref py py-obj docutils literal notranslate"><span class="pre">destroy</span></code></a>()</p></td>
<td><p>Destroy the PEP object.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.errorView" title="slepc4py.SLEPc.PEP.errorView"><code class="xref py py-obj docutils literal notranslate"><span class="pre">errorView</span></code></a>([etype, viewer])</p></td>
<td><p>Display the errors associated with the computed solution.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getBV" title="slepc4py.SLEPc.PEP.getBV"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getBV</span></code></a>()</p></td>
<td><p>Get the basis vectors object associated to the eigensolver.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getBasis" title="slepc4py.SLEPc.PEP.getBasis"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getBasis</span></code></a>()</p></td>
<td><p>Get the type of polynomial basis used.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getCISSExtraction" title="slepc4py.SLEPc.PEP.getCISSExtraction"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getCISSExtraction</span></code></a>()</p></td>
<td><p>Get the extraction technique used in the CISS solver.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getCISSKSPs" title="slepc4py.SLEPc.PEP.getCISSKSPs"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getCISSKSPs</span></code></a>()</p></td>
<td><p>Get the array of linear solver objects associated with the CISS solver.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getCISSRefinement" title="slepc4py.SLEPc.PEP.getCISSRefinement"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getCISSRefinement</span></code></a>()</p></td>
<td><p>Get the values of various refinement parameters in the CISS solver.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getCISSSizes" title="slepc4py.SLEPc.PEP.getCISSSizes"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getCISSSizes</span></code></a>()</p></td>
<td><p>Get the values of various size parameters in the CISS solver.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getCISSThreshold" title="slepc4py.SLEPc.PEP.getCISSThreshold"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getCISSThreshold</span></code></a>()</p></td>
<td><p>Get the values of various threshold parameters in the CISS solver.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getConverged" title="slepc4py.SLEPc.PEP.getConverged"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getConverged</span></code></a>()</p></td>
<td><p>Get the number of converged eigenpairs.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getConvergedReason" title="slepc4py.SLEPc.PEP.getConvergedReason"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getConvergedReason</span></code></a>()</p></td>
<td><p>Get the reason why the <a class="reference internal" href="#slepc4py.SLEPc.PEP.solve" title="slepc4py.SLEPc.PEP.solve"><code class="xref any py py-meth docutils literal notranslate"><span class="pre">solve()</span></code></a> iteration was stopped.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getConvergenceTest" title="slepc4py.SLEPc.PEP.getConvergenceTest"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getConvergenceTest</span></code></a>()</p></td>
<td><p>Get the method used to compute the error estimate used in the convergence test.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getDS" title="slepc4py.SLEPc.PEP.getDS"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getDS</span></code></a>()</p></td>
<td><p>Get the direct solver associated to the eigensolver.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getDimensions" title="slepc4py.SLEPc.PEP.getDimensions"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getDimensions</span></code></a>()</p></td>
<td><p>Get the number of eigenvalues to compute and the dimension of the subspace.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getEigenpair" title="slepc4py.SLEPc.PEP.getEigenpair"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getEigenpair</span></code></a>(i[, Vr, Vi])</p></td>
<td><p>Get the i-th solution of the eigenproblem as computed by <a class="reference internal" href="#slepc4py.SLEPc.PEP.solve" title="slepc4py.SLEPc.PEP.solve"><code class="xref any py py-meth docutils literal notranslate"><span class="pre">solve()</span></code></a>.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getErrorEstimate" title="slepc4py.SLEPc.PEP.getErrorEstimate"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getErrorEstimate</span></code></a>(i)</p></td>
<td><p>Get the error estimate associated to the i-th computed eigenpair.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getExtract" title="slepc4py.SLEPc.PEP.getExtract"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getExtract</span></code></a>()</p></td>
<td><p>Get the extraction technique used by the <a class="reference internal" href="#slepc4py.SLEPc.PEP" title="slepc4py.SLEPc.PEP"><code class="xref any py py-class docutils literal notranslate"><span class="pre">PEP</span></code></a> object.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getInterval" title="slepc4py.SLEPc.PEP.getInterval"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getInterval</span></code></a>()</p></td>
<td><p>Get the computational interval for spectrum slicing.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getIterationNumber" title="slepc4py.SLEPc.PEP.getIterationNumber"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getIterationNumber</span></code></a>()</p></td>
<td><p>Get the current iteration number.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getJDFix" title="slepc4py.SLEPc.PEP.getJDFix"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getJDFix</span></code></a>()</p></td>
<td><p>Get threshold for changing the target in the correction equation.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getJDMinimalityIndex" title="slepc4py.SLEPc.PEP.getJDMinimalityIndex"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getJDMinimalityIndex</span></code></a>()</p></td>
<td><p>Get the maximum allowed value of the minimality index.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getJDProjection" title="slepc4py.SLEPc.PEP.getJDProjection"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getJDProjection</span></code></a>()</p></td>
<td><p>Get the type of projection to be used in the Jacobi-Davidson solver.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getJDRestart" title="slepc4py.SLEPc.PEP.getJDRestart"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getJDRestart</span></code></a>()</p></td>
<td><p>Get the restart parameter used in the Jacobi-Davidson method.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getJDReusePreconditioner" title="slepc4py.SLEPc.PEP.getJDReusePreconditioner"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getJDReusePreconditioner</span></code></a>()</p></td>
<td><p>Get the flag for reusing the preconditioner.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getLinearEPS" title="slepc4py.SLEPc.PEP.getLinearEPS"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getLinearEPS</span></code></a>()</p></td>
<td><p>Get the eigensolver object associated to the polynomial eigenvalue solver.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getLinearExplicitMatrix" title="slepc4py.SLEPc.PEP.getLinearExplicitMatrix"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getLinearExplicitMatrix</span></code></a>()</p></td>
<td><p>Get if the matrices A and B for the linearization are built explicitly.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getLinearLinearization" title="slepc4py.SLEPc.PEP.getLinearLinearization"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getLinearLinearization</span></code></a>()</p></td>
<td><p>Get the coeffs.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getMonitor" title="slepc4py.SLEPc.PEP.getMonitor"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getMonitor</span></code></a>()</p></td>
<td><p>Get the list of monitor functions.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getOperators" title="slepc4py.SLEPc.PEP.getOperators"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getOperators</span></code></a>()</p></td>
<td><p>Get the matrices associated with the eigenvalue problem.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getOptionsPrefix" title="slepc4py.SLEPc.PEP.getOptionsPrefix"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getOptionsPrefix</span></code></a>()</p></td>
<td><p>Get the prefix used for searching for all PEP options in the database.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getProblemType" title="slepc4py.SLEPc.PEP.getProblemType"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getProblemType</span></code></a>()</p></td>
<td><p>Get the problem type from the PEP object.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getQArnoldiLocking" title="slepc4py.SLEPc.PEP.getQArnoldiLocking"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getQArnoldiLocking</span></code></a>()</p></td>
<td><p>Get the locking flag used in the Q-Arnoldi method.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getQArnoldiRestart" title="slepc4py.SLEPc.PEP.getQArnoldiRestart"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getQArnoldiRestart</span></code></a>()</p></td>
<td><p>Get the restart parameter used in the Q-Arnoldi method.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getRG" title="slepc4py.SLEPc.PEP.getRG"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getRG</span></code></a>()</p></td>
<td><p>Get the region object associated to the eigensolver.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getRefine" title="slepc4py.SLEPc.PEP.getRefine"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getRefine</span></code></a>()</p></td>
<td><p>Get the refinement strategy used by the PEP object.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getRefineKSP" title="slepc4py.SLEPc.PEP.getRefineKSP"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getRefineKSP</span></code></a>()</p></td>
<td><p>Get the <code class="docutils literal notranslate"><span class="pre">KSP</span></code> object used by the eigensolver in the refinement phase.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getST" title="slepc4py.SLEPc.PEP.getST"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getST</span></code></a>()</p></td>
<td><p>Get the <a class="reference internal" href="slepc4py.SLEPc.ST.html#slepc4py.SLEPc.ST" title="slepc4py.SLEPc.ST"><code class="xref any py py-class docutils literal notranslate"><span class="pre">ST</span></code></a> object associated to the eigensolver object.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getSTOARCheckEigenvalueType" title="slepc4py.SLEPc.PEP.getSTOARCheckEigenvalueType"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getSTOARCheckEigenvalueType</span></code></a>()</p></td>
<td><p>Get the flag for the eigenvalue type check in spectrum slicing.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getSTOARDetectZeros" title="slepc4py.SLEPc.PEP.getSTOARDetectZeros"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getSTOARDetectZeros</span></code></a>()</p></td>
<td><p>Get the flag that enforces zero detection in spectrum slicing.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getSTOARDimensions" title="slepc4py.SLEPc.PEP.getSTOARDimensions"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getSTOARDimensions</span></code></a>()</p></td>
<td><p>Get the dimensions used for each subsolve step.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getSTOARInertias" title="slepc4py.SLEPc.PEP.getSTOARInertias"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getSTOARInertias</span></code></a>()</p></td>
<td><p>Get the values of the shifts and their corresponding inertias.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getSTOARLinearization" title="slepc4py.SLEPc.PEP.getSTOARLinearization"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getSTOARLinearization</span></code></a>()</p></td>
<td><p>Get the coefficients that define the linearization of a quadratic eigenproblem.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getSTOARLocking" title="slepc4py.SLEPc.PEP.getSTOARLocking"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getSTOARLocking</span></code></a>()</p></td>
<td><p>Get the locking flag used in the STOAR method.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getScale" title="slepc4py.SLEPc.PEP.getScale"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getScale</span></code></a>([Dl, Dr])</p></td>
<td><p>Get the strategy used for scaling the polynomial eigenproblem.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getStoppingTest" title="slepc4py.SLEPc.PEP.getStoppingTest"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getStoppingTest</span></code></a>()</p></td>
<td><p>Get the stopping function.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getTOARLocking" title="slepc4py.SLEPc.PEP.getTOARLocking"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getTOARLocking</span></code></a>()</p></td>
<td><p>Get the locking flag used in the TOAR method.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getTOARRestart" title="slepc4py.SLEPc.PEP.getTOARRestart"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getTOARRestart</span></code></a>()</p></td>
<td><p>Get the restart parameter used in the TOAR method.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getTarget" title="slepc4py.SLEPc.PEP.getTarget"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getTarget</span></code></a>()</p></td>
<td><p>Get the value of the target.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getTolerances" title="slepc4py.SLEPc.PEP.getTolerances"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getTolerances</span></code></a>()</p></td>
<td><p>Get the tolerance and maximum iteration count.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getTrackAll" title="slepc4py.SLEPc.PEP.getTrackAll"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getTrackAll</span></code></a>()</p></td>
<td><p>Get the flag indicating whether all residual norms must be computed.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getType" title="slepc4py.SLEPc.PEP.getType"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getType</span></code></a>()</p></td>
<td><p>Get the PEP type of this object.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.getWhichEigenpairs" title="slepc4py.SLEPc.PEP.getWhichEigenpairs"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getWhichEigenpairs</span></code></a>()</p></td>
<td><p>Get which portion of the spectrum is to be sought.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.reset" title="slepc4py.SLEPc.PEP.reset"><code class="xref py py-obj docutils literal notranslate"><span class="pre">reset</span></code></a>()</p></td>
<td><p>Reset the PEP object.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setBV" title="slepc4py.SLEPc.PEP.setBV"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setBV</span></code></a>(bv)</p></td>
<td><p>Set a basis vectors object associated to the eigensolver.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setBasis" title="slepc4py.SLEPc.PEP.setBasis"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setBasis</span></code></a>(basis)</p></td>
<td><p>Set the type of polynomial basis used.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setCISSExtraction" title="slepc4py.SLEPc.PEP.setCISSExtraction"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setCISSExtraction</span></code></a>(extraction)</p></td>
<td><p>Set the extraction technique used in the CISS solver.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setCISSRefinement" title="slepc4py.SLEPc.PEP.setCISSRefinement"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setCISSRefinement</span></code></a>([inner, blsize])</p></td>
<td><p>Set the values of various refinement parameters in the CISS solver.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setCISSSizes" title="slepc4py.SLEPc.PEP.setCISSSizes"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setCISSSizes</span></code></a>([ip, bs, ms, npart, bsmax, ...])</p></td>
<td><p>Set the values of various size parameters in the CISS solver.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setCISSThreshold" title="slepc4py.SLEPc.PEP.setCISSThreshold"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setCISSThreshold</span></code></a>([delta, spur])</p></td>
<td><p>Set the values of various threshold parameters in the CISS solver.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setConvergenceTest" title="slepc4py.SLEPc.PEP.setConvergenceTest"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setConvergenceTest</span></code></a>(conv)</p></td>
<td><p>Set how to compute the error estimate used in the convergence test.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setDS" title="slepc4py.SLEPc.PEP.setDS"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setDS</span></code></a>(ds)</p></td>
<td><p>Set a direct solver object associated to the eigensolver.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setDimensions" title="slepc4py.SLEPc.PEP.setDimensions"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setDimensions</span></code></a>([nev, ncv, mpd])</p></td>
<td><p>Set the number of eigenvalues to compute and the dimension of the subspace.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setExtract" title="slepc4py.SLEPc.PEP.setExtract"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setExtract</span></code></a>(extract)</p></td>
<td><p>Set the extraction strategy to be used.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setFromOptions" title="slepc4py.SLEPc.PEP.setFromOptions"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setFromOptions</span></code></a>()</p></td>
<td><p>Set PEP options from the options database.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setInitialSpace" title="slepc4py.SLEPc.PEP.setInitialSpace"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setInitialSpace</span></code></a>(space)</p></td>
<td><p>Set the initial space from which the eigensolver starts to iterate.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setInterval" title="slepc4py.SLEPc.PEP.setInterval"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setInterval</span></code></a>(inta, intb)</p></td>
<td><p>Set the computational interval for spectrum slicing.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setJDFix" title="slepc4py.SLEPc.PEP.setJDFix"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setJDFix</span></code></a>(fix)</p></td>
<td><p>Set the threshold for changing the target in the correction equation.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setJDMinimalityIndex" title="slepc4py.SLEPc.PEP.setJDMinimalityIndex"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setJDMinimalityIndex</span></code></a>(flag)</p></td>
<td><p>Set the maximum allowed value for the minimality index.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setJDProjection" title="slepc4py.SLEPc.PEP.setJDProjection"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setJDProjection</span></code></a>(proj)</p></td>
<td><p>Set the type of projection to be used in the Jacobi-Davidson solver.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setJDRestart" title="slepc4py.SLEPc.PEP.setJDRestart"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setJDRestart</span></code></a>(keep)</p></td>
<td><p>Set the restart parameter for the Jacobi-Davidson method.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setJDReusePreconditioner" title="slepc4py.SLEPc.PEP.setJDReusePreconditioner"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setJDReusePreconditioner</span></code></a>(flag)</p></td>
<td><p>Set a flag indicating whether the preconditioner must be reused or not.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setLinearEPS" title="slepc4py.SLEPc.PEP.setLinearEPS"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setLinearEPS</span></code></a>(eps)</p></td>
<td><p>Set an eigensolver object associated to the polynomial eigenvalue solver.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setLinearExplicitMatrix" title="slepc4py.SLEPc.PEP.setLinearExplicitMatrix"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setLinearExplicitMatrix</span></code></a>(flag)</p></td>
<td><p>Set flag to explicitly build the matrices A and B.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setLinearLinearization" title="slepc4py.SLEPc.PEP.setLinearLinearization"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setLinearLinearization</span></code></a>([alpha, beta])</p></td>
<td><p>Set the coefficients that define the linearization of a quadratic eigenproblem.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setMonitor" title="slepc4py.SLEPc.PEP.setMonitor"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setMonitor</span></code></a>(monitor[, args, kargs])</p></td>
<td><p>Append a monitor function to the list of monitors.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setOperators" title="slepc4py.SLEPc.PEP.setOperators"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setOperators</span></code></a>(operators)</p></td>
<td><p>Set the matrices associated with the eigenvalue problem.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setOptionsPrefix" title="slepc4py.SLEPc.PEP.setOptionsPrefix"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setOptionsPrefix</span></code></a>([prefix])</p></td>
<td><p>Set the prefix used for searching for all PEP options in the database.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setProblemType" title="slepc4py.SLEPc.PEP.setProblemType"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setProblemType</span></code></a>(problem_type)</p></td>
<td><p>Set the type of the eigenvalue problem.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setQArnoldiLocking" title="slepc4py.SLEPc.PEP.setQArnoldiLocking"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setQArnoldiLocking</span></code></a>(lock)</p></td>
<td><p>Toggle between locking and non-locking variants of the Q-Arnoldi method.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setQArnoldiRestart" title="slepc4py.SLEPc.PEP.setQArnoldiRestart"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setQArnoldiRestart</span></code></a>(keep)</p></td>
<td><p>Set the restart parameter for the Q-Arnoldi method.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setRG" title="slepc4py.SLEPc.PEP.setRG"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setRG</span></code></a>(rg)</p></td>
<td><p>Set a region object associated to the eigensolver.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setRefine" title="slepc4py.SLEPc.PEP.setRefine"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setRefine</span></code></a>(ref[, npart, tol, its, scheme])</p></td>
<td><p>Set the refinement strategy used by the PEP object.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setST" title="slepc4py.SLEPc.PEP.setST"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setST</span></code></a>(st)</p></td>
<td><p>Set a spectral transformation object associated to the eigensolver.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setSTOARCheckEigenvalueType" title="slepc4py.SLEPc.PEP.setSTOARCheckEigenvalueType"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setSTOARCheckEigenvalueType</span></code></a>(flag)</p></td>
<td><p>Set flag to check if all eigenvalues have the same definite type.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setSTOARDetectZeros" title="slepc4py.SLEPc.PEP.setSTOARDetectZeros"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setSTOARDetectZeros</span></code></a>(detect)</p></td>
<td><p>Set flag to enforce detection of zeros during the factorizations.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setSTOARDimensions" title="slepc4py.SLEPc.PEP.setSTOARDimensions"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setSTOARDimensions</span></code></a>([nev, ncv, mpd])</p></td>
<td><p>Set the dimensions used for each subsolve step.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setSTOARLinearization" title="slepc4py.SLEPc.PEP.setSTOARLinearization"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setSTOARLinearization</span></code></a>([alpha, beta])</p></td>
<td><p>Set the coefficients that define the linearization of a quadratic eigenproblem.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setSTOARLocking" title="slepc4py.SLEPc.PEP.setSTOARLocking"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setSTOARLocking</span></code></a>(lock)</p></td>
<td><p>Toggle between locking and non-locking variants of the STOAR method.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setScale" title="slepc4py.SLEPc.PEP.setScale"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setScale</span></code></a>(scale[, alpha, Dl, Dr, its, lbda])</p></td>
<td><p>Set the scaling strategy to be used.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setStoppingTest" title="slepc4py.SLEPc.PEP.setStoppingTest"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setStoppingTest</span></code></a>(stopping[, args, kargs])</p></td>
<td><p>Set a function to decide when to stop the outer iteration of the eigensolver.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setTOARLocking" title="slepc4py.SLEPc.PEP.setTOARLocking"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setTOARLocking</span></code></a>(lock)</p></td>
<td><p>Toggle between locking and non-locking variants of the TOAR method.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setTOARRestart" title="slepc4py.SLEPc.PEP.setTOARRestart"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setTOARRestart</span></code></a>(keep)</p></td>
<td><p>Set the restart parameter for the TOAR method.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setTarget" title="slepc4py.SLEPc.PEP.setTarget"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setTarget</span></code></a>(target)</p></td>
<td><p>Set the value of the target.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setTolerances" title="slepc4py.SLEPc.PEP.setTolerances"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setTolerances</span></code></a>([tol, max_it])</p></td>
<td><p>Set the tolerance and maximum iteration count.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setTrackAll" title="slepc4py.SLEPc.PEP.setTrackAll"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setTrackAll</span></code></a>(trackall)</p></td>
<td><p>Set flag to compute the residual of all approximate eigenpairs.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setType" title="slepc4py.SLEPc.PEP.setType"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setType</span></code></a>(pep_type)</p></td>
<td><p>Set the particular solver to be used in the PEP object.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setUp" title="slepc4py.SLEPc.PEP.setUp"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setUp</span></code></a>()</p></td>
<td><p>Set up all the necessary internal data structures.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.setWhichEigenpairs" title="slepc4py.SLEPc.PEP.setWhichEigenpairs"><code class="xref py py-obj docutils literal notranslate"><span class="pre">setWhichEigenpairs</span></code></a>(which)</p></td>
<td><p>Set which portion of the spectrum is to be sought.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.solve" title="slepc4py.SLEPc.PEP.solve"><code class="xref py py-obj docutils literal notranslate"><span class="pre">solve</span></code></a>()</p></td>
<td><p>Solve the eigensystem.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.valuesView" title="slepc4py.SLEPc.PEP.valuesView"><code class="xref py py-obj docutils literal notranslate"><span class="pre">valuesView</span></code></a>([viewer])</p></td>
<td><p>Display the computed eigenvalues in a viewer.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.vectorsView" title="slepc4py.SLEPc.PEP.vectorsView"><code class="xref py py-obj docutils literal notranslate"><span class="pre">vectorsView</span></code></a>([viewer])</p></td>
<td><p>Output computed eigenvectors to a viewer.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.view" title="slepc4py.SLEPc.PEP.view"><code class="xref py py-obj docutils literal notranslate"><span class="pre">view</span></code></a>([viewer])</p></td>
<td><p>Print the PEP data structure.</p></td>
</tr>
</tbody>
</table>
</div>
<p class="rubric">Attributes Summary</p>
<div class="pst-scrollable-table-container"><table class="autosummary longtable table autosummary">
<tbody>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.bv" title="slepc4py.SLEPc.PEP.bv"><code class="xref py py-obj docutils literal notranslate"><span class="pre">bv</span></code></a></p></td>
<td><p>The basis vectors (BV) object associated.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.ds" title="slepc4py.SLEPc.PEP.ds"><code class="xref py py-obj docutils literal notranslate"><span class="pre">ds</span></code></a></p></td>
<td><p>The direct solver (DS) object associated.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.extract" title="slepc4py.SLEPc.PEP.extract"><code class="xref py py-obj docutils literal notranslate"><span class="pre">extract</span></code></a></p></td>
<td><p>The type of extraction technique to be employed.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.max_it" title="slepc4py.SLEPc.PEP.max_it"><code class="xref py py-obj docutils literal notranslate"><span class="pre">max_it</span></code></a></p></td>
<td><p>The maximum iteration count.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.problem_type" title="slepc4py.SLEPc.PEP.problem_type"><code class="xref py py-obj docutils literal notranslate"><span class="pre">problem_type</span></code></a></p></td>
<td><p>The type of the eigenvalue problem.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.rg" title="slepc4py.SLEPc.PEP.rg"><code class="xref py py-obj docutils literal notranslate"><span class="pre">rg</span></code></a></p></td>
<td><p>The region (RG) object associated.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.st" title="slepc4py.SLEPc.PEP.st"><code class="xref py py-obj docutils literal notranslate"><span class="pre">st</span></code></a></p></td>
<td><p>The spectral transformation (ST) object associated.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.target" title="slepc4py.SLEPc.PEP.target"><code class="xref py py-obj docutils literal notranslate"><span class="pre">target</span></code></a></p></td>
<td><p>The value of the target.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.tol" title="slepc4py.SLEPc.PEP.tol"><code class="xref py py-obj docutils literal notranslate"><span class="pre">tol</span></code></a></p></td>
<td><p>The tolerance.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.track_all" title="slepc4py.SLEPc.PEP.track_all"><code class="xref py py-obj docutils literal notranslate"><span class="pre">track_all</span></code></a></p></td>
<td><p>Compute the residual norm of all approximate eigenpairs.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#slepc4py.SLEPc.PEP.which" title="slepc4py.SLEPc.PEP.which"><code class="xref py py-obj docutils literal notranslate"><span class="pre">which</span></code></a></p></td>
<td><p>The portion of the spectrum to be sought.</p></td>
</tr>
</tbody>
</table>
</div>
<p class="rubric">Methods Documentation</p>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.appendOptionsPrefix">
<span class="sig-name descname"><span class="pre">appendOptionsPrefix</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">prefix</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.appendOptionsPrefix" title="Link to this definition">#</a></dt>
<dd><p>Append to the prefix used for searching for all PEP options in the database.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>prefix</strong> (<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.14)"><em>str</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – The prefix string to prepend to all PEP option requests.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L353">Source code at slepc4py/SLEPc/PEP.pyx:353</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.cancelMonitor">
<span class="sig-name descname"><span class="pre">cancelMonitor</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.cancelMonitor" title="Link to this definition">#</a></dt>
<dd><p>Clear all monitors for a <a class="reference internal" href="#slepc4py.SLEPc.PEP" title="slepc4py.SLEPc.PEP"><code class="xref any py py-class docutils literal notranslate"><span class="pre">PEP</span></code></a> object.</p>
<p>Logically collective.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1162">Source code at slepc4py/SLEPc/PEP.pyx:1162</a></p>
<dl class="field-list simple">
<dt class="field-odd">Return type<span class="colon">:</span></dt>
<dd class="field-odd"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.computeError">
<span class="sig-name descname"><span class="pre">computeError</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">i</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">etype</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.computeError" title="Link to this definition">#</a></dt>
<dd><p>Compute the error associated with the i-th computed eigenpair.</p>
<p>Collective.</p>
<p>Compute the error (based on the residual norm) associated with the i-th
computed eigenpair.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>i</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a>) – Index of the solution to be considered.</p></li>
<li><p><strong>etype</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.ErrorType.html#slepc4py.SLEPc.PEP.ErrorType" title="slepc4py.SLEPc.PEP.ErrorType"><em>ErrorType</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – The error type to compute.</p></li>
</ul>
</dd>
<dt class="field-even">Returns<span class="colon">:</span></dt>
<dd class="field-even"><p>The error bound, computed in various ways from the residual norm
<span class="math notranslate nohighlight">\(||P(l)x||_2\)</span> where <span class="math notranslate nohighlight">\(l\)</span> is the eigenvalue and <span class="math notranslate nohighlight">\(x\)</span>
is the eigenvector.</p>
</dd>
<dt class="field-odd">Return type<span class="colon">:</span></dt>
<dd class="field-odd"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>The index <code class="docutils literal notranslate"><span class="pre">i</span></code> should be a value between <code class="docutils literal notranslate"><span class="pre">0</span></code> and
<code class="docutils literal notranslate"><span class="pre">nconv-1</span></code> (see <a class="reference internal" href="#slepc4py.SLEPc.PEP.getConverged" title="slepc4py.SLEPc.PEP.getConverged"><code class="xref any py py-meth docutils literal notranslate"><span class="pre">getConverged()</span></code></a>).</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1290">Source code at slepc4py/SLEPc/PEP.pyx:1290</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.create">
<span class="sig-name descname"><span class="pre">create</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">comm</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.create" title="Link to this definition">#</a></dt>
<dd><p>Create the PEP object.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>comm</strong> (<a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Comm.html#petsc4py.PETSc.Comm" title="(in Python v3.24)"><em>Comm</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – MPI communicator. If not provided, it defaults to all processes.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/typing.html#typing.Self" title="(in Python v3.14)"><em>Self</em></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L276">Source code at slepc4py/SLEPc/PEP.pyx:276</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.destroy">
<span class="sig-name descname"><span class="pre">destroy</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.destroy" title="Link to this definition">#</a></dt>
<dd><p>Destroy the PEP object.</p>
<p>Collective.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L258">Source code at slepc4py/SLEPc/PEP.pyx:258</a></p>
<dl class="field-list simple">
<dt class="field-odd">Return type<span class="colon">:</span></dt>
<dd class="field-odd"><p><a class="reference external" href="https://docs.python.org/3/library/typing.html#typing.Self" title="(in Python v3.14)"><em>Self</em></a></p>
</dd>
</dl>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.errorView">
<span class="sig-name descname"><span class="pre">errorView</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">etype</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">viewer</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.errorView" title="Link to this definition">#</a></dt>
<dd><p>Display the errors associated with the computed solution.</p>
<p>Collective.</p>
<p>Display the errors and the eigenvalues.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>etype</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.ErrorType.html#slepc4py.SLEPc.PEP.ErrorType" title="slepc4py.SLEPc.PEP.ErrorType"><em>ErrorType</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – The error type to compute.</p></li>
<li><p><strong>viewer</strong> (<a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Viewer.html#petsc4py.PETSc.Viewer" title="(in Python v3.24)"><em>petsc4py.PETSc.Viewer</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Visualization context; if not provided, the standard
output is used.</p></li>
</ul>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>By default, this function checks the error of all eigenpairs and prints
the eigenvalues if all of them are below the requested tolerance.
If the viewer has format <code class="docutils literal notranslate"><span class="pre">ASCII_INFO_DETAIL</span></code> then a table with
eigenvalues and corresponding errors is printed.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1324">Source code at slepc4py/SLEPc/PEP.pyx:1324</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getBV">
<span class="sig-name descname"><span class="pre">getBV</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getBV" title="Link to this definition">#</a></dt>
<dd><p>Get the basis vectors object associated to the eigensolver.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The basis vectors context.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference internal" href="slepc4py.SLEPc.BV.html#slepc4py.SLEPc.BV" title="slepc4py.SLEPc.BV"><code class="xref any py py-class docutils literal notranslate"><span class="pre">BV</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L954">Source code at slepc4py/SLEPc/PEP.pyx:954</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getBasis">
<span class="sig-name descname"><span class="pre">getBasis</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getBasis" title="Link to this definition">#</a></dt>
<dd><p>Get the type of polynomial basis used.</p>
<p>Not collective.</p>
<p>Get the type of polynomial basis used to describe the polynomial
eigenvalue problem.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The basis that was previously set.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference internal" href="slepc4py.SLEPc.PEP.Basis.html#slepc4py.SLEPc.PEP.Basis" title="slepc4py.SLEPc.PEP.Basis"><code class="xref any py py-class docutils literal notranslate"><span class="pre">Basis</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L379">Source code at slepc4py/SLEPc/PEP.pyx:379</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getCISSExtraction">
<span class="sig-name descname"><span class="pre">getCISSExtraction</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getCISSExtraction" title="Link to this definition">#</a></dt>
<dd><p>Get the extraction technique used in the CISS solver.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The extraction technique.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference internal" href="slepc4py.SLEPc.PEP.CISSExtraction.html#slepc4py.SLEPc.PEP.CISSExtraction" title="slepc4py.SLEPc.PEP.CISSExtraction"><code class="xref any py py-class docutils literal notranslate"><span class="pre">CISSExtraction</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2049">Source code at slepc4py/SLEPc/PEP.pyx:2049</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getCISSKSPs">
<span class="sig-name descname"><span class="pre">getCISSKSPs</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getCISSKSPs" title="Link to this definition">#</a></dt>
<dd><p>Get the array of linear solver objects associated with the CISS solver.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The linear solver objects.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#list" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">list</span></code></a> of <a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.KSP.html#petsc4py.PETSc.KSP" title="(in Python v3.24)"><code class="xref any docutils literal notranslate"><span class="pre">petsc4py.PETSc.KSP</span></code></a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>The number of <a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.KSP.html#petsc4py.PETSc.KSP" title="(in Python v3.24)"><code class="xref any docutils literal notranslate"><span class="pre">petsc4py.PETSc.KSP</span></code></a> solvers is equal to the number of
integration points divided by the number of partitions. This value is
halved in the case of real matrices with a region centered at the real
axis.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2218">Source code at slepc4py/SLEPc/PEP.pyx:2218</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getCISSRefinement">
<span class="sig-name descname"><span class="pre">getCISSRefinement</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getCISSRefinement" title="Link to this definition">#</a></dt>
<dd><p>Get the values of various refinement parameters in the CISS solver.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p><ul class="simple">
<li><p><strong>inner</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – Number of iterative refinement iterations (inner loop).</p></li>
<li><p><strong>blsize</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – Number of iterative refinement iterations (blocksize loop).</p></li>
</ul>
</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.14)">tuple</a>[<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>]</p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2200">Source code at slepc4py/SLEPc/PEP.pyx:2200</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getCISSSizes">
<span class="sig-name descname"><span class="pre">getCISSSizes</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getCISSSizes" title="Link to this definition">#</a></dt>
<dd><p>Get the values of various size parameters in the CISS solver.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p><ul class="simple">
<li><p><strong>ip</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – Number of integration points.</p></li>
<li><p><strong>bs</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – Block size.</p></li>
<li><p><strong>ms</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – Moment size.</p></li>
<li><p><strong>npart</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – Number of partitions when splitting the communicator.</p></li>
<li><p><strong>bsmax</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – Maximum block size.</p></li>
<li><p><strong>realmats</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">bool</span></code></a>) – True if A and B are real.</p></li>
</ul>
</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.14)">tuple</a>[<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)">bool</a>]</p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2114">Source code at slepc4py/SLEPc/PEP.pyx:2114</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getCISSThreshold">
<span class="sig-name descname"><span class="pre">getCISSThreshold</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getCISSThreshold" title="Link to this definition">#</a></dt>
<dd><p>Get the values of various threshold parameters in the CISS solver.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p><ul class="simple">
<li><p><strong>delta</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a>) – Threshold for numerical rank.</p></li>
<li><p><strong>spur</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a>) – Spurious threshold (to discard spurious eigenpairs.</p></li>
</ul>
</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.14)">tuple</a>[<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)">float</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)">float</a>]</p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2163">Source code at slepc4py/SLEPc/PEP.pyx:2163</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getConverged">
<span class="sig-name descname"><span class="pre">getConverged</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getConverged" title="Link to this definition">#</a></dt>
<dd><p>Get the number of converged eigenpairs.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>Number of converged eigenpairs.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1226">Source code at slepc4py/SLEPc/PEP.pyx:1226</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getConvergedReason">
<span class="sig-name descname"><span class="pre">getConvergedReason</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getConvergedReason" title="Link to this definition">#</a></dt>
<dd><p>Get the reason why the <a class="reference internal" href="#slepc4py.SLEPc.PEP.solve" title="slepc4py.SLEPc.PEP.solve"><code class="xref any py py-meth docutils literal notranslate"><span class="pre">solve()</span></code></a> iteration was stopped.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>Negative value indicates diverged, positive value
converged.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference internal" href="slepc4py.SLEPc.PEP.ConvergedReason.html#slepc4py.SLEPc.PEP.ConvergedReason" title="slepc4py.SLEPc.PEP.ConvergedReason"><code class="xref any py py-class docutils literal notranslate"><span class="pre">ConvergedReason</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1210">Source code at slepc4py/SLEPc/PEP.pyx:1210</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getConvergenceTest">
<span class="sig-name descname"><span class="pre">getConvergenceTest</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getConvergenceTest" title="Link to this definition">#</a></dt>
<dd><p>Get the method used to compute the error estimate used in the convergence test.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The method used to compute the error estimate
used in the convergence test.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference internal" href="slepc4py.SLEPc.PEP.Conv.html#slepc4py.SLEPc.PEP.Conv" title="slepc4py.SLEPc.PEP.Conv"><code class="xref any py py-class docutils literal notranslate"><span class="pre">Conv</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L601">Source code at slepc4py/SLEPc/PEP.pyx:601</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getDS">
<span class="sig-name descname"><span class="pre">getDS</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getDS" title="Link to this definition">#</a></dt>
<dd><p>Get the direct solver associated to the eigensolver.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The direct solver context.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference internal" href="slepc4py.SLEPc.DS.html#slepc4py.SLEPc.DS" title="slepc4py.SLEPc.DS"><code class="xref any py py-class docutils literal notranslate"><span class="pre">DS</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1012">Source code at slepc4py/SLEPc/PEP.pyx:1012</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getDimensions">
<span class="sig-name descname"><span class="pre">getDimensions</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getDimensions" title="Link to this definition">#</a></dt>
<dd><p>Get the number of eigenvalues to compute and the dimension of the subspace.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p><ul class="simple">
<li><p><strong>nev</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – Number of eigenvalues to compute.</p></li>
<li><p><strong>ncv</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – Maximum dimension of the subspace to be used by the solver.</p></li>
<li><p><strong>mpd</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – Maximum dimension allowed for the projected problem.</p></li>
</ul>
</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.14)">tuple</a>[<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>]</p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L779">Source code at slepc4py/SLEPc/PEP.pyx:779</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getEigenpair">
<span class="sig-name descname"><span class="pre">getEigenpair</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">i</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">Vr</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">Vi</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getEigenpair" title="Link to this definition">#</a></dt>
<dd><p>Get the i-th solution of the eigenproblem as computed by <a class="reference internal" href="#slepc4py.SLEPc.PEP.solve" title="slepc4py.SLEPc.PEP.solve"><code class="xref any py py-meth docutils literal notranslate"><span class="pre">solve()</span></code></a>.</p>
<p>Collective.</p>
<p>The solution consists of both the eigenvalue and the eigenvector.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>i</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a>) – Index of the solution to be obtained.</p></li>
<li><p><strong>Vr</strong> (<a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Vec.html#petsc4py.PETSc.Vec" title="(in Python v3.24)"><em>Vec</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Placeholder for the returned eigenvector (real part).</p></li>
<li><p><strong>Vi</strong> (<a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Vec.html#petsc4py.PETSc.Vec" title="(in Python v3.24)"><em>Vec</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Placeholder for the returned eigenvector (imaginary part).</p></li>
</ul>
</dd>
<dt class="field-even">Returns<span class="colon">:</span></dt>
<dd class="field-even"><p>The computed eigenvalue.</p>
</dd>
<dt class="field-odd">Return type<span class="colon">:</span></dt>
<dd class="field-odd"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#complex" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">complex</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1241">Source code at slepc4py/SLEPc/PEP.pyx:1241</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getErrorEstimate">
<span class="sig-name descname"><span class="pre">getErrorEstimate</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">i</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getErrorEstimate" title="Link to this definition">#</a></dt>
<dd><p>Get the error estimate associated to the i-th computed eigenpair.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>i</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a>) – Index of the solution to be considered.</p>
</dd>
<dt class="field-even">Returns<span class="colon">:</span></dt>
<dd class="field-even"><p>Error estimate.</p>
</dd>
<dt class="field-odd">Return type<span class="colon">:</span></dt>
<dd class="field-odd"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1270">Source code at slepc4py/SLEPc/PEP.pyx:1270</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getExtract">
<span class="sig-name descname"><span class="pre">getExtract</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getExtract" title="Link to this definition">#</a></dt>
<dd><p>Get the extraction technique used by the <a class="reference internal" href="#slepc4py.SLEPc.PEP" title="slepc4py.SLEPc.PEP"><code class="xref any py py-class docutils literal notranslate"><span class="pre">PEP</span></code></a> object.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The extraction strategy.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference internal" href="slepc4py.SLEPc.PEP.Extract.html#slepc4py.SLEPc.PEP.Extract" title="slepc4py.SLEPc.PEP.Extract"><code class="xref any py py-class docutils literal notranslate"><span class="pre">Extract</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L732">Source code at slepc4py/SLEPc/PEP.pyx:732</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getInterval">
<span class="sig-name descname"><span class="pre">getInterval</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getInterval" title="Link to this definition">#</a></dt>
<dd><p>Get the computational interval for spectrum slicing.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p><ul class="simple">
<li><p><strong>inta</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a>) – The left end of the interval.</p></li>
<li><p><strong>intb</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a>) – The right end of the interval.</p></li>
</ul>
</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.14)">tuple</a>[<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)">float</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)">float</a>]</p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>If the interval was not set by the user, then zeros are returned.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L554">Source code at slepc4py/SLEPc/PEP.pyx:554</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getIterationNumber">
<span class="sig-name descname"><span class="pre">getIterationNumber</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getIterationNumber" title="Link to this definition">#</a></dt>
<dd><p>Get the current iteration number.</p>
<p>Not collective.</p>
<p>If the call to <a class="reference internal" href="#slepc4py.SLEPc.PEP.solve" title="slepc4py.SLEPc.PEP.solve"><code class="xref any py py-meth docutils literal notranslate"><span class="pre">solve()</span></code></a> is complete, then it returns the number of
iterations carried out by the solution method.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>Iteration number.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1192">Source code at slepc4py/SLEPc/PEP.pyx:1192</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getJDFix">
<span class="sig-name descname"><span class="pre">getJDFix</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getJDFix" title="Link to this definition">#</a></dt>
<dd><p>Get threshold for changing the target in the correction equation.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The threshold for changing the target.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1931">Source code at slepc4py/SLEPc/PEP.pyx:1931</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getJDMinimalityIndex">
<span class="sig-name descname"><span class="pre">getJDMinimalityIndex</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getJDMinimalityIndex" title="Link to this definition">#</a></dt>
<dd><p>Get the maximum allowed value of the minimality index.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The maximum minimality index.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1989">Source code at slepc4py/SLEPc/PEP.pyx:1989</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getJDProjection">
<span class="sig-name descname"><span class="pre">getJDProjection</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getJDProjection" title="Link to this definition">#</a></dt>
<dd><p>Get the type of projection to be used in the Jacobi-Davidson solver.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The type of projection.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference internal" href="slepc4py.SLEPc.PEP.JDProjection.html#slepc4py.SLEPc.PEP.JDProjection" title="slepc4py.SLEPc.PEP.JDProjection"><code class="xref any py py-class docutils literal notranslate"><span class="pre">JDProjection</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2018">Source code at slepc4py/SLEPc/PEP.pyx:2018</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getJDRestart">
<span class="sig-name descname"><span class="pre">getJDRestart</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getJDRestart" title="Link to this definition">#</a></dt>
<dd><p>Get the restart parameter used in the Jacobi-Davidson method.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The number of vectors to be kept at restart.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1896">Source code at slepc4py/SLEPc/PEP.pyx:1896</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getJDReusePreconditioner">
<span class="sig-name descname"><span class="pre">getJDReusePreconditioner</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getJDReusePreconditioner" title="Link to this definition">#</a></dt>
<dd><p>Get the flag for reusing the preconditioner.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The reuse flag.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">bool</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1960">Source code at slepc4py/SLEPc/PEP.pyx:1960</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getLinearEPS">
<span class="sig-name descname"><span class="pre">getLinearEPS</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getLinearEPS" title="Link to this definition">#</a></dt>
<dd><p>Get the eigensolver object associated to the polynomial eigenvalue solver.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The linear eigensolver.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference internal" href="slepc4py.SLEPc.EPS.html#slepc4py.SLEPc.EPS" title="slepc4py.SLEPc.EPS"><code class="xref any py py-class docutils literal notranslate"><span class="pre">EPS</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1398">Source code at slepc4py/SLEPc/PEP.pyx:1398</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getLinearExplicitMatrix">
<span class="sig-name descname"><span class="pre">getLinearExplicitMatrix</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getLinearExplicitMatrix" title="Link to this definition">#</a></dt>
<dd><p>Get if the matrices A and B for the linearization are built explicitly.</p>
<p>Not collective.</p>
<p>Get the flag indicating if the matrices A and B for the linearization
are built explicitly.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>Boolean flag indicating if the matrices are built explicitly.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">bool</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1472">Source code at slepc4py/SLEPc/PEP.pyx:1472</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getLinearLinearization">
<span class="sig-name descname"><span class="pre">getLinearLinearization</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getLinearLinearization" title="Link to this definition">#</a></dt>
<dd><p>Get the coeffs. defining the linearization of a quadratic eigenproblem.</p>
<p>Not collective.</p>
<p>Return the coefficients that define the linearization of a quadratic
eigenproblem.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p><ul class="simple">
<li><p><strong>alpha</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a>) – First parameter of the linearization.</p></li>
<li><p><strong>beta</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a>) – Second parameter of the linearization.</p></li>
</ul>
</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.14)">tuple</a>[<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)">float</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)">float</a>]</p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1434">Source code at slepc4py/SLEPc/PEP.pyx:1434</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getMonitor">
<span class="sig-name descname"><span class="pre">getMonitor</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getMonitor" title="Link to this definition">#</a></dt>
<dd><p>Get the list of monitor functions.</p>
<p>Not collective.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1154">Source code at slepc4py/SLEPc/PEP.pyx:1154</a></p>
<dl class="field-list simple">
<dt class="field-odd">Return type<span class="colon">:</span></dt>
<dd class="field-odd"><p><a class="reference internal" href="slepc4py.typing.PEPMonitorFunction.html#slepc4py.typing.PEPMonitorFunction" title="slepc4py.typing.PEPMonitorFunction"><em>PEPMonitorFunction</em></a></p>
</dd>
</dl>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getOperators">
<span class="sig-name descname"><span class="pre">getOperators</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getOperators" title="Link to this definition">#</a></dt>
<dd><p>Get the matrices associated with the eigenvalue problem.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The matrices associated with the eigensystem.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#list" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">list</span></code></a> of <a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Mat.html#petsc4py.PETSc.Mat" title="(in Python v3.24)"><code class="xref any docutils literal notranslate"><span class="pre">petsc4py.PETSc.Mat</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1041">Source code at slepc4py/SLEPc/PEP.pyx:1041</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getOptionsPrefix">
<span class="sig-name descname"><span class="pre">getOptionsPrefix</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getOptionsPrefix" title="Link to this definition">#</a></dt>
<dd><p>Get the prefix used for searching for all PEP options in the database.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The prefix string set for this PEP object.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">str</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L323">Source code at slepc4py/SLEPc/PEP.pyx:323</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getProblemType">
<span class="sig-name descname"><span class="pre">getProblemType</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getProblemType" title="Link to this definition">#</a></dt>
<dd><p>Get the problem type from the PEP object.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The problem type that was previously set.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference internal" href="slepc4py.SLEPc.PEP.ProblemType.html#slepc4py.SLEPc.PEP.ProblemType" title="slepc4py.SLEPc.PEP.ProblemType"><code class="xref any py py-class docutils literal notranslate"><span class="pre">ProblemType</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L414">Source code at slepc4py/SLEPc/PEP.pyx:414</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getQArnoldiLocking">
<span class="sig-name descname"><span class="pre">getQArnoldiLocking</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getQArnoldiLocking" title="Link to this definition">#</a></dt>
<dd><p>Get the locking flag used in the Q-Arnoldi method.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The locking flag.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">bool</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1550">Source code at slepc4py/SLEPc/PEP.pyx:1550</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getQArnoldiRestart">
<span class="sig-name descname"><span class="pre">getQArnoldiRestart</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getQArnoldiRestart" title="Link to this definition">#</a></dt>
<dd><p>Get the restart parameter used in the Q-Arnoldi method.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The number of vectors to be kept at restart.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1514">Source code at slepc4py/SLEPc/PEP.pyx:1514</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getRG">
<span class="sig-name descname"><span class="pre">getRG</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getRG" title="Link to this definition">#</a></dt>
<dd><p>Get the region object associated to the eigensolver.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The region context.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference internal" href="slepc4py.SLEPc.RG.html#slepc4py.SLEPc.RG" title="slepc4py.SLEPc.RG"><code class="xref any py py-class docutils literal notranslate"><span class="pre">RG</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L983">Source code at slepc4py/SLEPc/PEP.pyx:983</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getRefine">
<span class="sig-name descname"><span class="pre">getRefine</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getRefine" title="Link to this definition">#</a></dt>
<dd><p>Get the refinement strategy used by the PEP object.</p>
<p>Not collective.</p>
<p>Get the refinement strategy used by the PEP object, and the associated
parameters.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p><ul class="simple">
<li><p><strong>ref</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.Refine.html#slepc4py.SLEPc.PEP.Refine" title="slepc4py.SLEPc.PEP.Refine"><code class="xref any py py-class docutils literal notranslate"><span class="pre">Refine</span></code></a>) – The refinement type.</p></li>
<li><p><strong>npart</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – The number of partitions of the communicator.</p></li>
<li><p><strong>tol</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a>) – The convergence tolerance.</p></li>
<li><p><strong>its</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – The maximum number of refinement iterations.</p></li>
<li><p><strong>scheme</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.RefineScheme.html#slepc4py.SLEPc.PEP.RefineScheme" title="slepc4py.SLEPc.PEP.RefineScheme"><code class="xref any py py-class docutils literal notranslate"><span class="pre">RefineScheme</span></code></a>) – Scheme for solving linear systems</p></li>
</ul>
</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.14)">tuple</a>[<a class="reference internal" href="slepc4py.SLEPc.PEP.Refine.html#slepc4py.SLEPc.PEP.Refine" title="slepc4py.SLEPc.PEP.Refine">Refine</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)">float</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>, <a class="reference internal" href="slepc4py.SLEPc.PEP.RefineScheme.html#slepc4py.SLEPc.PEP.RefineScheme" title="slepc4py.SLEPc.PEP.RefineScheme">RefineScheme</a>]</p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L632">Source code at slepc4py/SLEPc/PEP.pyx:632</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getRefineKSP">
<span class="sig-name descname"><span class="pre">getRefineKSP</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getRefineKSP" title="Link to this definition">#</a></dt>
<dd><p>Get the <code class="docutils literal notranslate"><span class="pre">KSP</span></code> object used by the eigensolver in the refinement phase.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The linear solver object.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.KSP.html#petsc4py.PETSc.KSP" title="(in Python v3.24)"><code class="xref any docutils literal notranslate"><span class="pre">petsc4py.PETSc.KSP</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L702">Source code at slepc4py/SLEPc/PEP.pyx:702</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getST">
<span class="sig-name descname"><span class="pre">getST</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getST" title="Link to this definition">#</a></dt>
<dd><p>Get the <a class="reference internal" href="slepc4py.SLEPc.ST.html#slepc4py.SLEPc.ST" title="slepc4py.SLEPc.ST"><code class="xref any py py-class docutils literal notranslate"><span class="pre">ST</span></code></a> object associated to the eigensolver object.</p>
<p>Not collective.</p>
<p>Get the spectral transformation object associated to the eigensolver
object.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The spectral transformation.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference internal" href="slepc4py.SLEPc.ST.html#slepc4py.SLEPc.ST" title="slepc4py.SLEPc.ST"><code class="xref any py py-class docutils literal notranslate"><span class="pre">ST</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L828">Source code at slepc4py/SLEPc/PEP.pyx:828</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getSTOARCheckEigenvalueType">
<span class="sig-name descname"><span class="pre">getSTOARCheckEigenvalueType</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getSTOARCheckEigenvalueType" title="Link to this definition">#</a></dt>
<dd><p>Get the flag for the eigenvalue type check in spectrum slicing.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>Whether the eigenvalue type is checked or not.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">bool</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1857">Source code at slepc4py/SLEPc/PEP.pyx:1857</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getSTOARDetectZeros">
<span class="sig-name descname"><span class="pre">getSTOARDetectZeros</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getSTOARDetectZeros" title="Link to this definition">#</a></dt>
<dd><p>Get the flag that enforces zero detection in spectrum slicing.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The zero detection flag.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">bool</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1739">Source code at slepc4py/SLEPc/PEP.pyx:1739</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getSTOARDimensions">
<span class="sig-name descname"><span class="pre">getSTOARDimensions</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getSTOARDimensions" title="Link to this definition">#</a></dt>
<dd><p>Get the dimensions used for each subsolve step.</p>
<p>Not collective.</p>
<p>Get the dimensions used for each subsolve step in case of doing
spectrum slicing for a computational interval.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p><ul class="simple">
<li><p><strong>nev</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – Number of eigenvalues to compute.</p></li>
<li><p><strong>ncv</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – Maximum dimension of the subspace to be used by the solver.</p></li>
<li><p><strong>mpd</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – Maximum dimension allowed for the projected problem.</p></li>
</ul>
</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.14)">tuple</a>[<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>]</p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1786">Source code at slepc4py/SLEPc/PEP.pyx:1786</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getSTOARInertias">
<span class="sig-name descname"><span class="pre">getSTOARInertias</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getSTOARInertias" title="Link to this definition">#</a></dt>
<dd><p>Get the values of the shifts and their corresponding inertias.</p>
<p>Not collective.</p>
<p>Get the values of the shifts and their corresponding inertias
in case of doing spectrum slicing for a computational interval.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p><ul class="simple">
<li><p><strong>shifts</strong> (<a class="reference internal" href="slepc4py.typing.ArrayReal.html#slepc4py.typing.ArrayReal" title="slepc4py.typing.ArrayReal"><code class="xref any py py-data docutils literal notranslate"><span class="pre">ArrayReal</span></code></a>) – The values of the shifts used internally in the solver.</p></li>
<li><p><strong>inertias</strong> (<a class="reference internal" href="slepc4py.typing.ArrayInt.html#slepc4py.typing.ArrayInt" title="slepc4py.typing.ArrayInt"><code class="xref any py py-data docutils literal notranslate"><span class="pre">ArrayInt</span></code></a>) – The values of the inertia in each shift.</p></li>
</ul>
</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.14)">tuple</a>[<a class="reference internal" href="slepc4py.typing.ArrayReal.html#slepc4py.typing.ArrayReal" title="slepc4py.typing.ArrayReal"><em>ArrayReal</em></a>, <a class="reference internal" href="slepc4py.typing.ArrayInt.html#slepc4py.typing.ArrayInt" title="slepc4py.typing.ArrayInt"><em>ArrayInt</em></a>]</p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1810">Source code at slepc4py/SLEPc/PEP.pyx:1810</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getSTOARLinearization">
<span class="sig-name descname"><span class="pre">getSTOARLinearization</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getSTOARLinearization" title="Link to this definition">#</a></dt>
<dd><p>Get the coefficients that define the linearization of a quadratic eigenproblem.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p><ul class="simple">
<li><p><strong>alpha</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a>) – First parameter of the linearization.</p></li>
<li><p><strong>beta</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a>) – Second parameter of the linearization.</p></li>
</ul>
</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.14)">tuple</a>[<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)">float</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)">float</a>]</p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1659">Source code at slepc4py/SLEPc/PEP.pyx:1659</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getSTOARLocking">
<span class="sig-name descname"><span class="pre">getSTOARLocking</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getSTOARLocking" title="Link to this definition">#</a></dt>
<dd><p>Get the locking flag used in the STOAR method.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The locking flag.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">bool</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1698">Source code at slepc4py/SLEPc/PEP.pyx:1698</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getScale">
<span class="sig-name descname"><span class="pre">getScale</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">Dl</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">Dr</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getScale" title="Link to this definition">#</a></dt>
<dd><p>Get the strategy used for scaling the polynomial eigenproblem.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>Dl</strong> (<a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Vec.html#petsc4py.PETSc.Vec" title="(in Python v3.24)"><em>petsc4py.PETSc.Vec</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Placeholder for the returned left diagonal matrix.</p></li>
<li><p><strong>Dr</strong> (<a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Vec.html#petsc4py.PETSc.Vec" title="(in Python v3.24)"><em>petsc4py.PETSc.Vec</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Placeholder for the returned right diagonal matrix.</p></li>
</ul>
</dd>
<dt class="field-even">Returns<span class="colon">:</span></dt>
<dd class="field-even"><p><ul class="simple">
<li><p><strong>scale</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.Scale.html#slepc4py.SLEPc.PEP.Scale" title="slepc4py.SLEPc.PEP.Scale"><code class="xref any py py-class docutils literal notranslate"><span class="pre">Scale</span></code></a>) – The scaling strategy.</p></li>
<li><p><strong>alpha</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a>) – The scaling factor.</p></li>
<li><p><strong>its</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – The number of iteration of diagonal scaling.</p></li>
<li><p><strong>lbda</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a>) – Approximation of the wanted eigenvalues (modulus).</p></li>
</ul>
</p>
</dd>
<dt class="field-odd">Return type<span class="colon">:</span></dt>
<dd class="field-odd"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.14)">tuple</a>[<a class="reference internal" href="slepc4py.SLEPc.PEP.Scale.html#slepc4py.SLEPc.PEP.Scale" title="slepc4py.SLEPc.PEP.Scale">Scale</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)">float</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)">float</a>]</p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L860">Source code at slepc4py/SLEPc/PEP.pyx:860</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getStoppingTest">
<span class="sig-name descname"><span class="pre">getStoppingTest</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getStoppingTest" title="Link to this definition">#</a></dt>
<dd><p>Get the stopping function.</p>
<p>Not collective.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1123">Source code at slepc4py/SLEPc/PEP.pyx:1123</a></p>
<dl class="field-list simple">
<dt class="field-odd">Return type<span class="colon">:</span></dt>
<dd class="field-odd"><p><a class="reference internal" href="slepc4py.typing.PEPStoppingFunction.html#slepc4py.typing.PEPStoppingFunction" title="slepc4py.typing.PEPStoppingFunction"><em>PEPStoppingFunction</em></a></p>
</dd>
</dl>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getTOARLocking">
<span class="sig-name descname"><span class="pre">getTOARLocking</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getTOARLocking" title="Link to this definition">#</a></dt>
<dd><p>Get the locking flag used in the TOAR method.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The locking flag.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">bool</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1625">Source code at slepc4py/SLEPc/PEP.pyx:1625</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getTOARRestart">
<span class="sig-name descname"><span class="pre">getTOARRestart</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getTOARRestart" title="Link to this definition">#</a></dt>
<dd><p>Get the restart parameter used in the TOAR method.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The number of vectors to be kept at restart.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1589">Source code at slepc4py/SLEPc/PEP.pyx:1589</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getTarget">
<span class="sig-name descname"><span class="pre">getTarget</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getTarget" title="Link to this definition">#</a></dt>
<dd><p>Get the value of the target.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The value of the target.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference internal" href="slepc4py.typing.Scalar.html#slepc4py.typing.Scalar" title="slepc4py.typing.Scalar"><code class="xref any py py-data docutils literal notranslate"><span class="pre">Scalar</span></code></a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>If the target was not set by the user, then zero is returned.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L472">Source code at slepc4py/SLEPc/PEP.pyx:472</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getTolerances">
<span class="sig-name descname"><span class="pre">getTolerances</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getTolerances" title="Link to this definition">#</a></dt>
<dd><p>Get the tolerance and maximum iteration count.</p>
<p>Not collective.</p>
<p>Get the tolerance and maximum iteration count used by the default PEP
convergence tests.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p><ul class="simple">
<li><p><strong>tol</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">float</span></code></a>) – The convergence tolerance.</p></li>
<li><p><strong>max_it</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">int</span></code></a>) – The maximum number of iterations</p></li>
</ul>
</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.14)">tuple</a>[<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)">float</a>, <a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)">int</a>]</p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L511">Source code at slepc4py/SLEPc/PEP.pyx:511</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getTrackAll">
<span class="sig-name descname"><span class="pre">getTrackAll</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getTrackAll" title="Link to this definition">#</a></dt>
<dd><p>Get the flag indicating whether all residual norms must be computed.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>Whether the solver compute all residuals or not.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">bool</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L747">Source code at slepc4py/SLEPc/PEP.pyx:747</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getType">
<span class="sig-name descname"><span class="pre">getType</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getType" title="Link to this definition">#</a></dt>
<dd><p>Get the PEP type of this object.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The solver currently being used.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.14)"><code class="xref any docutils literal notranslate"><span class="pre">str</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L308">Source code at slepc4py/SLEPc/PEP.pyx:308</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.getWhichEigenpairs">
<span class="sig-name descname"><span class="pre">getWhichEigenpairs</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.getWhichEigenpairs" title="Link to this definition">#</a></dt>
<dd><p>Get which portion of the spectrum is to be sought.</p>
<p>Not collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The portion of the spectrum to be sought by the solver.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference internal" href="slepc4py.SLEPc.PEP.Which.html#slepc4py.SLEPc.PEP.Which" title="slepc4py.SLEPc.PEP.Which"><code class="xref any py py-class docutils literal notranslate"><span class="pre">Which</span></code></a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L443">Source code at slepc4py/SLEPc/PEP.pyx:443</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.reset">
<span class="sig-name descname"><span class="pre">reset</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.reset" title="Link to this definition">#</a></dt>
<dd><p>Reset the PEP object.</p>
<p>Collective.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L268">Source code at slepc4py/SLEPc/PEP.pyx:268</a></p>
<dl class="field-list simple">
<dt class="field-odd">Return type<span class="colon">:</span></dt>
<dd class="field-odd"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setBV">
<span class="sig-name descname"><span class="pre">setBV</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">bv</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setBV" title="Link to this definition">#</a></dt>
<dd><p>Set a basis vectors object associated to the eigensolver.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>bv</strong> (<a class="reference internal" href="slepc4py.SLEPc.BV.html#slepc4py.SLEPc.BV" title="slepc4py.SLEPc.BV"><em>BV</em></a>) – The basis vectors context.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L970">Source code at slepc4py/SLEPc/PEP.pyx:970</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setBasis">
<span class="sig-name descname"><span class="pre">setBasis</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">basis</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setBasis" title="Link to this definition">#</a></dt>
<dd><p>Set the type of polynomial basis used.</p>
<p>Logically collective.</p>
<p>Set the type of polynomial basis used to describe the polynomial
eigenvalue problem.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>basis</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.Basis.html#slepc4py.SLEPc.PEP.Basis" title="slepc4py.SLEPc.PEP.Basis"><em>Basis</em></a>) – The basis to be set.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L397">Source code at slepc4py/SLEPc/PEP.pyx:397</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setCISSExtraction">
<span class="sig-name descname"><span class="pre">setCISSExtraction</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">extraction</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setCISSExtraction" title="Link to this definition">#</a></dt>
<dd><p>Set the extraction technique used in the CISS solver.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>extraction</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.CISSExtraction.html#slepc4py.SLEPc.PEP.CISSExtraction" title="slepc4py.SLEPc.PEP.CISSExtraction"><em>CISSExtraction</em></a>) – The extraction technique.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2035">Source code at slepc4py/SLEPc/PEP.pyx:2035</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setCISSRefinement">
<span class="sig-name descname"><span class="pre">setCISSRefinement</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">inner</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">blsize</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setCISSRefinement" title="Link to this definition">#</a></dt>
<dd><p>Set the values of various refinement parameters in the CISS solver.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>inner</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Number of iterative refinement iterations (inner loop).</p></li>
<li><p><strong>blsize</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Number of iterative refinement iterations (blocksize loop).</p></li>
</ul>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2181">Source code at slepc4py/SLEPc/PEP.pyx:2181</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setCISSSizes">
<span class="sig-name descname"><span class="pre">setCISSSizes</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">ip</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">bs</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">ms</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">npart</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">bsmax</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">realmats</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">False</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setCISSSizes" title="Link to this definition">#</a></dt>
<dd><p>Set the values of various size parameters in the CISS solver.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>ip</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Number of integration points.</p></li>
<li><p><strong>bs</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Block size.</p></li>
<li><p><strong>ms</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Moment size.</p></li>
<li><p><strong>npart</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Number of partitions when splitting the communicator.</p></li>
<li><p><strong>bsmax</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Maximum block size.</p></li>
<li><p><strong>realmats</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><em>bool</em></a>) – True if A and B are real.</p></li>
</ul>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>The default number of partitions is 1. This means the internal
<a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.KSP.html#petsc4py.PETSc.KSP" title="(in Python v3.24)"><code class="xref any docutils literal notranslate"><span class="pre">petsc4py.PETSc.KSP</span></code></a> object is shared among all processes of the <a class="reference internal" href="#slepc4py.SLEPc.PEP" title="slepc4py.SLEPc.PEP"><code class="xref any py py-class docutils literal notranslate"><span class="pre">PEP</span></code></a>
communicator. Otherwise, the communicator is split into npart
communicators, so that <code class="docutils literal notranslate"><span class="pre">npart</span></code> <a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.KSP.html#petsc4py.PETSc.KSP" title="(in Python v3.24)"><code class="xref any docutils literal notranslate"><span class="pre">petsc4py.PETSc.KSP</span></code></a> solves proceed
simultaneously.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2064">Source code at slepc4py/SLEPc/PEP.pyx:2064</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setCISSThreshold">
<span class="sig-name descname"><span class="pre">setCISSThreshold</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">delta</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">spur</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setCISSThreshold" title="Link to this definition">#</a></dt>
<dd><p>Set the values of various threshold parameters in the CISS solver.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>delta</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Threshold for numerical rank.</p></li>
<li><p><strong>spur</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Spurious threshold (to discard spurious eigenpairs).</p></li>
</ul>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2144">Source code at slepc4py/SLEPc/PEP.pyx:2144</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setConvergenceTest">
<span class="sig-name descname"><span class="pre">setConvergenceTest</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">conv</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setConvergenceTest" title="Link to this definition">#</a></dt>
<dd><p>Set how to compute the error estimate used in the convergence test.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>conv</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.Conv.html#slepc4py.SLEPc.PEP.Conv" title="slepc4py.SLEPc.PEP.Conv"><em>Conv</em></a>) – The method used to compute the error estimate
used in the convergence test.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L617">Source code at slepc4py/SLEPc/PEP.pyx:617</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setDS">
<span class="sig-name descname"><span class="pre">setDS</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">ds</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setDS" title="Link to this definition">#</a></dt>
<dd><p>Set a direct solver object associated to the eigensolver.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>ds</strong> (<a class="reference internal" href="slepc4py.SLEPc.DS.html#slepc4py.SLEPc.DS" title="slepc4py.SLEPc.DS"><em>DS</em></a>) – The direct solver context.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1028">Source code at slepc4py/SLEPc/PEP.pyx:1028</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setDimensions">
<span class="sig-name descname"><span class="pre">setDimensions</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">nev</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">ncv</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">mpd</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setDimensions" title="Link to this definition">#</a></dt>
<dd><p>Set the number of eigenvalues to compute and the dimension of the subspace.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>nev</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Number of eigenvalues to compute.</p></li>
<li><p><strong>ncv</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Maximum dimension of the subspace to be used by the solver.</p></li>
<li><p><strong>mpd</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Maximum dimension allowed for the projected problem.</p></li>
</ul>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L800">Source code at slepc4py/SLEPc/PEP.pyx:800</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setExtract">
<span class="sig-name descname"><span class="pre">setExtract</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">extract</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setExtract" title="Link to this definition">#</a></dt>
<dd><p>Set the extraction strategy to be used.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>extract</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.Extract.html#slepc4py.SLEPc.PEP.Extract" title="slepc4py.SLEPc.PEP.Extract"><em>Extract</em></a>) – The extraction strategy.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L718">Source code at slepc4py/SLEPc/PEP.pyx:718</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setFromOptions">
<span class="sig-name descname"><span class="pre">setFromOptions</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setFromOptions" title="Link to this definition">#</a></dt>
<dd><p>Set PEP options from the options database.</p>
<p>Collective.</p>
<p>This routine must be called before <a class="reference internal" href="#slepc4py.SLEPc.PEP.setUp" title="slepc4py.SLEPc.PEP.setUp"><code class="xref any py py-meth docutils literal notranslate"><span class="pre">setUp()</span></code></a> if the user is to be
allowed to set the solver type.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L368">Source code at slepc4py/SLEPc/PEP.pyx:368</a></p>
<dl class="field-list simple">
<dt class="field-odd">Return type<span class="colon">:</span></dt>
<dd class="field-odd"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setInitialSpace">
<span class="sig-name descname"><span class="pre">setInitialSpace</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">space</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setInitialSpace" title="Link to this definition">#</a></dt>
<dd><p>Set the initial space from which the eigensolver starts to iterate.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>space</strong> (<a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Vec.html#petsc4py.PETSc.Vec" title="(in Python v3.24)"><em>Vec</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#list" title="(in Python v3.14)"><em>list</em></a><em>[</em><a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Vec.html#petsc4py.PETSc.Vec" title="(in Python v3.24)"><em>Vec</em></a><em>]</em>) – The initial space</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1083">Source code at slepc4py/SLEPc/PEP.pyx:1083</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setInterval">
<span class="sig-name descname"><span class="pre">setInterval</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">inta</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">intb</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setInterval" title="Link to this definition">#</a></dt>
<dd><p>Set the computational interval for spectrum slicing.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>inta</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a>) – The left end of the interval.</p></li>
<li><p><strong>intb</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a>) – The right end of the interval.</p></li>
</ul>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>Spectrum slicing is a technique employed for computing all
eigenvalues of symmetric quadratic eigenproblems in a given interval.
This function provides the interval to be considered. It must
be used in combination with <a class="reference internal" href="slepc4py.SLEPc.PEP.Which.html#slepc4py.SLEPc.PEP.Which.ALL" title="slepc4py.SLEPc.PEP.Which.ALL"><code class="xref any py py-attr docutils literal notranslate"><span class="pre">PEP.Which.ALL</span></code></a>, see
<a class="reference internal" href="#slepc4py.SLEPc.PEP.setWhichEigenpairs" title="slepc4py.SLEPc.PEP.setWhichEigenpairs"><code class="xref any py py-meth docutils literal notranslate"><span class="pre">setWhichEigenpairs()</span></code></a>.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L576">Source code at slepc4py/SLEPc/PEP.pyx:576</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setJDFix">
<span class="sig-name descname"><span class="pre">setJDFix</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">fix</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setJDFix" title="Link to this definition">#</a></dt>
<dd><p>Set the threshold for changing the target in the correction equation.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>fix</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a>) – Threshold for changing the target.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>The target in the correction equation is fixed at the first iterations.
When the norm of the residual vector is lower than the fix value,
the target is set to the corresponding eigenvalue.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1911">Source code at slepc4py/SLEPc/PEP.pyx:1911</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setJDMinimalityIndex">
<span class="sig-name descname"><span class="pre">setJDMinimalityIndex</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">flag</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setJDMinimalityIndex" title="Link to this definition">#</a></dt>
<dd><p>Set the maximum allowed value for the minimality index.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>flag</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a>) – The maximum minimality index.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1975">Source code at slepc4py/SLEPc/PEP.pyx:1975</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setJDProjection">
<span class="sig-name descname"><span class="pre">setJDProjection</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">proj</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setJDProjection" title="Link to this definition">#</a></dt>
<dd><p>Set the type of projection to be used in the Jacobi-Davidson solver.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>proj</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.JDProjection.html#slepc4py.SLEPc.PEP.JDProjection" title="slepc4py.SLEPc.PEP.JDProjection"><em>JDProjection</em></a>) – The type of projection.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2004">Source code at slepc4py/SLEPc/PEP.pyx:2004</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setJDRestart">
<span class="sig-name descname"><span class="pre">setJDRestart</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">keep</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setJDRestart" title="Link to this definition">#</a></dt>
<dd><p>Set the restart parameter for the Jacobi-Davidson method.</p>
<p>Logically collective.</p>
<p>Set the restart parameter for the Jacobi-Davidson method, in
particular the proportion of basis vectors that must be kept
after restart.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>keep</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a>) – The number of vectors to be kept at restart.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>Allowed values are in the range [0.1,0.9]. The default is 0.5.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1874">Source code at slepc4py/SLEPc/PEP.pyx:1874</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setJDReusePreconditioner">
<span class="sig-name descname"><span class="pre">setJDReusePreconditioner</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">flag</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setJDReusePreconditioner" title="Link to this definition">#</a></dt>
<dd><p>Set a flag indicating whether the preconditioner must be reused or not.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>flag</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><em>bool</em></a>) – The reuse flag.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1946">Source code at slepc4py/SLEPc/PEP.pyx:1946</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setLinearEPS">
<span class="sig-name descname"><span class="pre">setLinearEPS</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">eps</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setLinearEPS" title="Link to this definition">#</a></dt>
<dd><p>Set an eigensolver object associated to the polynomial eigenvalue solver.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>eps</strong> (<a class="reference internal" href="slepc4py.SLEPc.EPS.html#slepc4py.SLEPc.EPS" title="slepc4py.SLEPc.EPS"><em>EPS</em></a>) – The linear eigensolver.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1385">Source code at slepc4py/SLEPc/PEP.pyx:1385</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setLinearExplicitMatrix">
<span class="sig-name descname"><span class="pre">setLinearExplicitMatrix</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">flag</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setLinearExplicitMatrix" title="Link to this definition">#</a></dt>
<dd><p>Set flag to explicitly build the matrices A and B.</p>
<p>Logically collective.</p>
<p>Toggle if the matrices A and B for the linearization of the problem
must be built explicitly.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>flag</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><em>bool</em></a>) – Boolean flag indicating if the matrices are built explicitly.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1455">Source code at slepc4py/SLEPc/PEP.pyx:1455</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setLinearLinearization">
<span class="sig-name descname"><span class="pre">setLinearLinearization</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">alpha</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">1.0</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">beta</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">0.0</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setLinearLinearization" title="Link to this definition">#</a></dt>
<dd><p>Set the coefficients that define the linearization of a quadratic eigenproblem.</p>
<p>Logically collective.</p>
<p>Set the coefficients that define the linearization of a quadratic
eigenproblem.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>alpha</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a>) – First parameter of the linearization.</p></li>
<li><p><strong>beta</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a>) – Second parameter of the linearization.</p></li>
</ul>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1414">Source code at slepc4py/SLEPc/PEP.pyx:1414</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setMonitor">
<span class="sig-name descname"><span class="pre">setMonitor</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">monitor</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">args</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">kargs</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setMonitor" title="Link to this definition">#</a></dt>
<dd><p>Append a monitor function to the list of monitors.</p>
<p>Logically collective.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1133">Source code at slepc4py/SLEPc/PEP.pyx:1133</a></p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>monitor</strong> (<a class="reference internal" href="slepc4py.typing.PEPMonitorFunction.html#slepc4py.typing.PEPMonitorFunction" title="slepc4py.typing.PEPMonitorFunction"><em>PEPMonitorFunction</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>)</p></li>
<li><p><strong>args</strong> (<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.14)"><em>tuple</em></a><em>[</em><em>Any</em><em>, </em><em>...</em><em>] </em><em>| </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>)</p></li>
<li><p><strong>kargs</strong> (<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#dict" title="(in Python v3.14)"><em>dict</em></a><em>[</em><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.14)"><em>str</em></a><em>, </em><em>Any</em><em>] </em><em>| </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>)</p></li>
</ul>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setOperators">
<span class="sig-name descname"><span class="pre">setOperators</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">operators</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setOperators" title="Link to this definition">#</a></dt>
<dd><p>Set the matrices associated with the eigenvalue problem.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>operators</strong> (<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#list" title="(in Python v3.14)"><em>list</em></a><em>[</em><a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Mat.html#petsc4py.PETSc.Mat" title="(in Python v3.24)"><em>Mat</em></a><em>]</em>) – The matrices associated with the eigensystem.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1063">Source code at slepc4py/SLEPc/PEP.pyx:1063</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setOptionsPrefix">
<span class="sig-name descname"><span class="pre">setOptionsPrefix</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">prefix</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setOptionsPrefix" title="Link to this definition">#</a></dt>
<dd><p>Set the prefix used for searching for all PEP options in the database.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>prefix</strong> (<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.14)"><em>str</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – The prefix string to prepend to all PEP option requests.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L338">Source code at slepc4py/SLEPc/PEP.pyx:338</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setProblemType">
<span class="sig-name descname"><span class="pre">setProblemType</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">problem_type</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setProblemType" title="Link to this definition">#</a></dt>
<dd><p>Set the type of the eigenvalue problem.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>problem_type</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.ProblemType.html#slepc4py.SLEPc.PEP.ProblemType" title="slepc4py.SLEPc.PEP.ProblemType"><em>ProblemType</em></a>) – The problem type to be set.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L429">Source code at slepc4py/SLEPc/PEP.pyx:429</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setQArnoldiLocking">
<span class="sig-name descname"><span class="pre">setQArnoldiLocking</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">lock</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setQArnoldiLocking" title="Link to this definition">#</a></dt>
<dd><p>Toggle between locking and non-locking variants of the Q-Arnoldi method.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>lock</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><em>bool</em></a>) – True if the locking variant must be selected.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>The default is to lock converged eigenpairs when the method restarts.
This behavior can be changed so that all directions are kept in the
working subspace even if already converged to working accuracy (the
non-locking variant).</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1529">Source code at slepc4py/SLEPc/PEP.pyx:1529</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setQArnoldiRestart">
<span class="sig-name descname"><span class="pre">setQArnoldiRestart</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">keep</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setQArnoldiRestart" title="Link to this definition">#</a></dt>
<dd><p>Set the restart parameter for the Q-Arnoldi method.</p>
<p>Logically collective.</p>
<p>Set the restart parameter for the Q-Arnoldi method, in
particular the proportion of basis vectors that must be kept
after restart.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>keep</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a>) – The number of vectors to be kept at restart.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>Allowed values are in the range [0.1,0.9]. The default is 0.5.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1492">Source code at slepc4py/SLEPc/PEP.pyx:1492</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setRG">
<span class="sig-name descname"><span class="pre">setRG</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">rg</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setRG" title="Link to this definition">#</a></dt>
<dd><p>Set a region object associated to the eigensolver.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>rg</strong> (<a class="reference internal" href="slepc4py.SLEPc.RG.html#slepc4py.SLEPc.RG" title="slepc4py.SLEPc.RG"><em>RG</em></a>) – The region context.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L999">Source code at slepc4py/SLEPc/PEP.pyx:999</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setRefine">
<span class="sig-name descname"><span class="pre">setRefine</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">ref</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">npart</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">tol</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">its</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">scheme</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setRefine" title="Link to this definition">#</a></dt>
<dd><p>Set the refinement strategy used by the PEP object.</p>
<p>Logically collective.</p>
<p>Set the refinement strategy used by the PEP object, and the associated
parameters.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>ref</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.Refine.html#slepc4py.SLEPc.PEP.Refine" title="slepc4py.SLEPc.PEP.Refine"><em>Refine</em></a>) – The refinement type.</p></li>
<li><p><strong>npart</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – The number of partitions of the communicator.</p></li>
<li><p><strong>tol</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – The convergence tolerance.</p></li>
<li><p><strong>its</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – The maximum number of refinement iterations.</p></li>
<li><p><strong>scheme</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.RefineScheme.html#slepc4py.SLEPc.PEP.RefineScheme" title="slepc4py.SLEPc.PEP.RefineScheme"><em>RefineScheme</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Scheme for linear system solves</p></li>
</ul>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L662">Source code at slepc4py/SLEPc/PEP.pyx:662</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setST">
<span class="sig-name descname"><span class="pre">setST</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">st</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setST" title="Link to this definition">#</a></dt>
<dd><p>Set a spectral transformation object associated to the eigensolver.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>st</strong> (<a class="reference internal" href="slepc4py.SLEPc.ST.html#slepc4py.SLEPc.ST" title="slepc4py.SLEPc.ST"><em>ST</em></a>) – The spectral transformation.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L847">Source code at slepc4py/SLEPc/PEP.pyx:847</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setSTOARCheckEigenvalueType">
<span class="sig-name descname"><span class="pre">setSTOARCheckEigenvalueType</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">flag</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setSTOARCheckEigenvalueType" title="Link to this definition">#</a></dt>
<dd><p>Set flag to check if all eigenvalues have the same definite type.</p>
<p>Logically collective.</p>
<p>Set a flag to check that all the eigenvalues obtained throughout the
spectrum slicing computation have the same definite type.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>flag</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><em>bool</em></a>) – Whether the eigenvalue type is checked or not.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1840">Source code at slepc4py/SLEPc/PEP.pyx:1840</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setSTOARDetectZeros">
<span class="sig-name descname"><span class="pre">setSTOARDetectZeros</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">detect</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setSTOARDetectZeros" title="Link to this definition">#</a></dt>
<dd><p>Set flag to enforce detection of zeros during the factorizations.</p>
<p>Logically collective.</p>
<p>Set a flag to enforce detection of zeros during the factorizations
throughout the spectrum slicing computation.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>detect</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><em>bool</em></a>) – True if zeros must checked for.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>A zero in the factorization indicates that a shift coincides with
an eigenvalue.</p>
<p>This flag is turned off by default, and may be necessary in some cases.
This feature currently requires an external package for factorizations
with support for zero detection, e.g. MUMPS.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1713">Source code at slepc4py/SLEPc/PEP.pyx:1713</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setSTOARDimensions">
<span class="sig-name descname"><span class="pre">setSTOARDimensions</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">nev</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">ncv</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">mpd</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setSTOARDimensions" title="Link to this definition">#</a></dt>
<dd><p>Set the dimensions used for each subsolve step.</p>
<p>Logically collective.</p>
<p>Set the dimensions used for each subsolve step in case of doing
spectrum slicing for a computational interval. The meaning of the
parameters is the same as in <a class="reference internal" href="#slepc4py.SLEPc.PEP.setDimensions" title="slepc4py.SLEPc.PEP.setDimensions"><code class="xref any py py-meth docutils literal notranslate"><span class="pre">setDimensions()</span></code></a>.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>nev</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Number of eigenvalues to compute.</p></li>
<li><p><strong>ncv</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Maximum dimension of the subspace to be used by the solver.</p></li>
<li><p><strong>mpd</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Maximum dimension allowed for the projected problem.</p></li>
</ul>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1754">Source code at slepc4py/SLEPc/PEP.pyx:1754</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setSTOARLinearization">
<span class="sig-name descname"><span class="pre">setSTOARLinearization</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">alpha</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">1.0</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">beta</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">0.0</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setSTOARLinearization" title="Link to this definition">#</a></dt>
<dd><p>Set the coefficients that define the linearization of a quadratic eigenproblem.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>alpha</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a>) – First parameter of the linearization.</p></li>
<li><p><strong>beta</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a>) – Second parameter of the linearization.</p></li>
</ul>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1642">Source code at slepc4py/SLEPc/PEP.pyx:1642</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setSTOARLocking">
<span class="sig-name descname"><span class="pre">setSTOARLocking</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">lock</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setSTOARLocking" title="Link to this definition">#</a></dt>
<dd><p>Toggle between locking and non-locking variants of the STOAR method.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>lock</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><em>bool</em></a>) – True if the locking variant must be selected.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>The default is to lock converged eigenpairs when the method restarts.
This behavior can be changed so that all directions are kept in the
working subspace even if already converged to working accuracy (the
non-locking variant).</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1677">Source code at slepc4py/SLEPc/PEP.pyx:1677</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setScale">
<span class="sig-name descname"><span class="pre">setScale</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">scale</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">alpha</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">Dl</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">Dr</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">its</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">lbda</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setScale" title="Link to this definition">#</a></dt>
<dd><p>Set the scaling strategy to be used.</p>
<p>Collective.</p>
<p>Set the scaling strategy to be used for scaling the polynomial problem
before attempting to solve.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>scale</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.Scale.html#slepc4py.SLEPc.PEP.Scale" title="slepc4py.SLEPc.PEP.Scale"><em>Scale</em></a>) – The scaling strategy.</p></li>
<li><p><strong>alpha</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – The scaling factor.</p></li>
<li><p><strong>Dl</strong> (<a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Vec.html#petsc4py.PETSc.Vec" title="(in Python v3.24)"><em>petsc4py.PETSc.Vec</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – The left diagonal matrix.</p></li>
<li><p><strong>Dr</strong> (<a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Vec.html#petsc4py.PETSc.Vec" title="(in Python v3.24)"><em>petsc4py.PETSc.Vec</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – The right diagonal matrix.</p></li>
<li><p><strong>its</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – The number of iteration of diagonal scaling.</p></li>
<li><p><strong>lbda</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Approximation of the wanted eigenvalues (modulus).</p></li>
</ul>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L909">Source code at slepc4py/SLEPc/PEP.pyx:909</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setStoppingTest">
<span class="sig-name descname"><span class="pre">setStoppingTest</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">stopping</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">args</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">kargs</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setStoppingTest" title="Link to this definition">#</a></dt>
<dd><p>Set a function to decide when to stop the outer iteration of the eigensolver.</p>
<p>Logically collective.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1103">Source code at slepc4py/SLEPc/PEP.pyx:1103</a></p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>stopping</strong> (<a class="reference internal" href="slepc4py.typing.PEPStoppingFunction.html#slepc4py.typing.PEPStoppingFunction" title="slepc4py.typing.PEPStoppingFunction"><em>PEPStoppingFunction</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>)</p></li>
<li><p><strong>args</strong> (<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.14)"><em>tuple</em></a><em>[</em><em>Any</em><em>, </em><em>...</em><em>] </em><em>| </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>)</p></li>
<li><p><strong>kargs</strong> (<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#dict" title="(in Python v3.14)"><em>dict</em></a><em>[</em><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.14)"><em>str</em></a><em>, </em><em>Any</em><em>] </em><em>| </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>)</p></li>
</ul>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setTOARLocking">
<span class="sig-name descname"><span class="pre">setTOARLocking</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">lock</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setTOARLocking" title="Link to this definition">#</a></dt>
<dd><p>Toggle between locking and non-locking variants of the TOAR method.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>lock</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><em>bool</em></a>) – True if the locking variant must be selected.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>The default is to lock converged eigenpairs when the method restarts.
This behavior can be changed so that all directions are kept in the
working subspace even if already converged to working accuracy (the
non-locking variant).</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1604">Source code at slepc4py/SLEPc/PEP.pyx:1604</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setTOARRestart">
<span class="sig-name descname"><span class="pre">setTOARRestart</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">keep</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setTOARRestart" title="Link to this definition">#</a></dt>
<dd><p>Set the restart parameter for the TOAR method.</p>
<p>Logically collective.</p>
<p>Set the restart parameter for the TOAR method, in
particular the proportion of basis vectors that must be kept
after restart.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>keep</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a>) – The number of vectors to be kept at restart.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>Allowed values are in the range [0.1,0.9]. The default is 0.5.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1567">Source code at slepc4py/SLEPc/PEP.pyx:1567</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setTarget">
<span class="sig-name descname"><span class="pre">setTarget</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">target</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setTarget" title="Link to this definition">#</a></dt>
<dd><p>Set the value of the target.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>target</strong> (<a class="reference internal" href="slepc4py.typing.Scalar.html#slepc4py.typing.Scalar" title="slepc4py.typing.Scalar"><em>Scalar</em></a>) – The value of the target.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>The target is a scalar value used to determine the portion of
the spectrum of interest. It is used in combination with
<a class="reference internal" href="#slepc4py.SLEPc.PEP.setWhichEigenpairs" title="slepc4py.SLEPc.PEP.setWhichEigenpairs"><code class="xref any py py-meth docutils literal notranslate"><span class="pre">setWhichEigenpairs()</span></code></a>.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L491">Source code at slepc4py/SLEPc/PEP.pyx:491</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setTolerances">
<span class="sig-name descname"><span class="pre">setTolerances</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">tol</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">max_it</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setTolerances" title="Link to this definition">#</a></dt>
<dd><p>Set the tolerance and maximum iteration count.</p>
<p>Logically collective.</p>
<p>Set the tolerance and maximum iteration count used by the default PEP
convergence tests.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>tol</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#float" title="(in Python v3.14)"><em>float</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – The convergence tolerance.</p></li>
<li><p><strong>max_it</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.14)"><em>int</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – The maximum number of iterations</p></li>
</ul>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L532">Source code at slepc4py/SLEPc/PEP.pyx:532</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setTrackAll">
<span class="sig-name descname"><span class="pre">setTrackAll</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">trackall</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setTrackAll" title="Link to this definition">#</a></dt>
<dd><p>Set flag to compute the residual of all approximate eigenpairs.</p>
<p>Logically collective.</p>
<p>Set if the solver must compute the residual of all approximate
eigenpairs or not.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>trackall</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.14)"><em>bool</em></a>) – Whether compute all residuals or not.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L762">Source code at slepc4py/SLEPc/PEP.pyx:762</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setType">
<span class="sig-name descname"><span class="pre">setType</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">pep_type</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setType" title="Link to this definition">#</a></dt>
<dd><p>Set the particular solver to be used in the PEP object.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>pep_type</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.Type.html#slepc4py.SLEPc.PEP.Type" title="slepc4py.SLEPc.PEP.Type"><em>Type</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.14)"><em>str</em></a>) – The solver to be used.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L293">Source code at slepc4py/SLEPc/PEP.pyx:293</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setUp">
<span class="sig-name descname"><span class="pre">setUp</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setUp" title="Link to this definition">#</a></dt>
<dd><p>Set up all the necessary internal data structures.</p>
<p>Collective.</p>
<p>Set up all the internal data structures necessary for the execution of
the eigensolver.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1173">Source code at slepc4py/SLEPc/PEP.pyx:1173</a></p>
<dl class="field-list simple">
<dt class="field-odd">Return type<span class="colon">:</span></dt>
<dd class="field-odd"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.setWhichEigenpairs">
<span class="sig-name descname"><span class="pre">setWhichEigenpairs</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">which</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.setWhichEigenpairs" title="Link to this definition">#</a></dt>
<dd><p>Set which portion of the spectrum is to be sought.</p>
<p>Logically collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>which</strong> (<a class="reference internal" href="slepc4py.SLEPc.PEP.Which.html#slepc4py.SLEPc.PEP.Which" title="slepc4py.SLEPc.PEP.Which"><em>Which</em></a>) – The portion of the spectrum to be sought by the solver.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L458">Source code at slepc4py/SLEPc/PEP.pyx:458</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.solve">
<span class="sig-name descname"><span class="pre">solve</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.solve" title="Link to this definition">#</a></dt>
<dd><p>Solve the eigensystem.</p>
<p>Collective.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1184">Source code at slepc4py/SLEPc/PEP.pyx:1184</a></p>
<dl class="field-list simple">
<dt class="field-odd">Return type<span class="colon">:</span></dt>
<dd class="field-odd"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.valuesView">
<span class="sig-name descname"><span class="pre">valuesView</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">viewer</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.valuesView" title="Link to this definition">#</a></dt>
<dd><p>Display the computed eigenvalues in a viewer.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>viewer</strong> (<a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Viewer.html#petsc4py.PETSc.Viewer" title="(in Python v3.24)"><em>Viewer</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Visualization context; if not provided, the standard
output is used.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1353">Source code at slepc4py/SLEPc/PEP.pyx:1353</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.vectorsView">
<span class="sig-name descname"><span class="pre">vectorsView</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">viewer</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.vectorsView" title="Link to this definition">#</a></dt>
<dd><p>Output computed eigenvectors to a viewer.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>viewer</strong> (<a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Viewer.html#petsc4py.PETSc.Viewer" title="(in Python v3.24)"><em>Viewer</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Visualization context; if not provided, the standard
output is used.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L1368">Source code at slepc4py/SLEPc/PEP.pyx:1368</a></p>
</dd></dl>
<dl class="py method">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.view">
<span class="sig-name descname"><span class="pre">view</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">viewer</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#slepc4py.SLEPc.PEP.view" title="Link to this definition">#</a></dt>
<dd><p>Print the PEP data structure.</p>
<p>Collective.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><p><strong>viewer</strong> (<a class="reference external" href="https://petsc.org/release/petsc4py/reference/petsc4py.PETSc.Viewer.html#petsc4py.PETSc.Viewer" title="(in Python v3.24)"><em>Viewer</em></a><em> | </em><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)"><em>None</em></a>) – Visualization context; if not provided, the standard
output is used.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p><a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.14)">None</a></p>
</dd>
</dl>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L243">Source code at slepc4py/SLEPc/PEP.pyx:243</a></p>
</dd></dl>
<p class="rubric">Attributes Documentation</p>
<dl class="py attribute">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.bv">
<span class="sig-name descname"><span class="pre">bv</span></span><a class="headerlink" href="#slepc4py.SLEPc.PEP.bv" title="Link to this definition">#</a></dt>
<dd><p>The basis vectors (BV) object associated.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2299">Source code at slepc4py/SLEPc/PEP.pyx:2299</a></p>
</dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.ds">
<span class="sig-name descname"><span class="pre">ds</span></span><a class="headerlink" href="#slepc4py.SLEPc.PEP.ds" title="Link to this definition">#</a></dt>
<dd><p>The direct solver (DS) object associated.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2313">Source code at slepc4py/SLEPc/PEP.pyx:2313</a></p>
</dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.extract">
<span class="sig-name descname"><span class="pre">extract</span></span><a class="headerlink" href="#slepc4py.SLEPc.PEP.extract" title="Link to this definition">#</a></dt>
<dd><p>The type of extraction technique to be employed.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2264">Source code at slepc4py/SLEPc/PEP.pyx:2264</a></p>
</dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.max_it">
<span class="sig-name descname"><span class="pre">max_it</span></span><a class="headerlink" href="#slepc4py.SLEPc.PEP.max_it" title="Link to this definition">#</a></dt>
<dd><p>The maximum iteration count.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2278">Source code at slepc4py/SLEPc/PEP.pyx:2278</a></p>
</dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.problem_type">
<span class="sig-name descname"><span class="pre">problem_type</span></span><a class="headerlink" href="#slepc4py.SLEPc.PEP.problem_type" title="Link to this definition">#</a></dt>
<dd><p>The type of the eigenvalue problem.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2243">Source code at slepc4py/SLEPc/PEP.pyx:2243</a></p>
</dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.rg">
<span class="sig-name descname"><span class="pre">rg</span></span><a class="headerlink" href="#slepc4py.SLEPc.PEP.rg" title="Link to this definition">#</a></dt>
<dd><p>The region (RG) object associated.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2306">Source code at slepc4py/SLEPc/PEP.pyx:2306</a></p>
</dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.st">
<span class="sig-name descname"><span class="pre">st</span></span><a class="headerlink" href="#slepc4py.SLEPc.PEP.st" title="Link to this definition">#</a></dt>
<dd><p>The spectral transformation (ST) object associated.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2292">Source code at slepc4py/SLEPc/PEP.pyx:2292</a></p>
</dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.target">
<span class="sig-name descname"><span class="pre">target</span></span><a class="headerlink" href="#slepc4py.SLEPc.PEP.target" title="Link to this definition">#</a></dt>
<dd><p>The value of the target.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2257">Source code at slepc4py/SLEPc/PEP.pyx:2257</a></p>
</dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.tol">
<span class="sig-name descname"><span class="pre">tol</span></span><a class="headerlink" href="#slepc4py.SLEPc.PEP.tol" title="Link to this definition">#</a></dt>
<dd><p>The tolerance.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2271">Source code at slepc4py/SLEPc/PEP.pyx:2271</a></p>
</dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.track_all">
<span class="sig-name descname"><span class="pre">track_all</span></span><a class="headerlink" href="#slepc4py.SLEPc.PEP.track_all" title="Link to this definition">#</a></dt>
<dd><p>Compute the residual norm of all approximate eigenpairs.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2285">Source code at slepc4py/SLEPc/PEP.pyx:2285</a></p>
</dd></dl>
<dl class="py attribute">
<dt class="sig sig-object py" id="slepc4py.SLEPc.PEP.which">
<span class="sig-name descname"><span class="pre">which</span></span><a class="headerlink" href="#slepc4py.SLEPc.PEP.which" title="Link to this definition">#</a></dt>
<dd><p>The portion of the spectrum to be sought.</p>
<p><a class="reference external" href="https://gitlab.com/slepc/slepc/-/tree/release/src/binding/slepc4py/src/slepc4py/SLEPc/PEP.pyx#L2250">Source code at slepc4py/SLEPc/PEP.pyx:2250</a></p>
</dd></dl>
</dd></dl>
</section>
</article>
<footer class="prev-next-footer d-print-none">
<div class="prev-next-area">
<a class="left-prev"
href="slepc4py.SLEPc.NEP.Which.html"
title="previous page">
<i class="fa-solid fa-angle-left"></i>
<div class="prev-next-info">
<p class="prev-next-subtitle">previous</p>
<p class="prev-next-title">slepc4py.SLEPc.NEP.Which</p>
</div>
</a>
<a class="right-next"
href="slepc4py.SLEPc.PEP.Basis.html"
title="next page">
<div class="prev-next-info">
<p class="prev-next-subtitle">next</p>
<p class="prev-next-title">slepc4py.SLEPc.PEP.Basis</p>
</div>
<i class="fa-solid fa-angle-right"></i>
</a>
</div>
</footer>
</div>
<dialog id="pst-secondary-sidebar-modal"></dialog>
<div id="pst-secondary-sidebar" class="bd-sidebar-secondary bd-toc"><div class="sidebar-secondary-items sidebar-secondary__inner">
<div class="sidebar-secondary-item">
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../_sources/reference/slepc4py.SLEPc.PEP.rst.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div></div>
</div></div>
</div>
<footer class="bd-footer-content">
</footer>
</main>
</div>
</div>
<!-- Scripts loaded after <body> so the DOM is not blocked -->
<script defer src="../_static/scripts/bootstrap.js?digest=8878045cc6db502f8baf"></script>
<script defer src="../_static/scripts/pydata-sphinx-theme.js?digest=8878045cc6db502f8baf"></script>
<footer class="bd-footer">
<div class="bd-footer__inner bd-page-width">
<div class="footer-items__start">
<div class="footer-item">
<p class="sphinx-version">
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.3.7.
<br/>
</p>
</div>
</div>
<div class="footer-items__end">
<div class="footer-item">
<p class="theme-version">
<!-- # L10n: Setting the PST URL as an argument as this does not need to be localized -->
Built with the <a href="https://pydata-sphinx-theme.readthedocs.io/en/stable/index.html">PyData Sphinx Theme</a> 0.16.1.
</p></div>
<div class="footer-item"><p class="last-updated">
Last updated on 2025-11-07T09:28:35+0100 (v3.24.1).
<br/>
</p></div>
</div>
</div>
</footer>
</body>
</html>
|