1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215
|
# This file was created automatically by SWIG 1.3.29.
# Don't modify this file, modify the SWIG interface instead.
import _QuantLib
import new
new_instancemethod = new.instancemethod
def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
if (name == "thisown"): return self.this.own(value)
if (name == "this"):
if type(value).__name__ == 'PySwigObject':
self.__dict__[name] = value
return
method = class_type.__swig_setmethods__.get(name,None)
if method: return method(self,value)
if (not static) or hasattr(self,name):
self.__dict__[name] = value
else:
raise AttributeError("You cannot add attributes to %s" % self)
def _swig_setattr(self,class_type,name,value):
return _swig_setattr_nondynamic(self,class_type,name,value,0)
def _swig_getattr(self,class_type,name):
if (name == "thisown"): return self.this.own()
method = class_type.__swig_getmethods__.get(name,None)
if method: return method(self)
raise AttributeError,name
def _swig_repr(self):
try: strthis = "proxy of " + self.this.__repr__()
except: strthis = ""
return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
import types
try:
_object = types.ObjectType
_newclass = 1
except AttributeError:
class _object : pass
_newclass = 0
del types
def _swig_setattr_nondynamic_method(set):
def set_attr(self,name,value):
if (name == "thisown"): return self.this.own(value)
if hasattr(self,name) or (name == "this"):
set(self,name,value)
else:
raise AttributeError("You cannot add attributes to %s" % self)
return set_attr
class PySwigIterator(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
__swig_destroy__ = _QuantLib.delete_PySwigIterator
__del__ = lambda self : None;
def value(*args): return _QuantLib.PySwigIterator_value(*args)
def incr(*args): return _QuantLib.PySwigIterator_incr(*args)
def decr(*args): return _QuantLib.PySwigIterator_decr(*args)
def distance(*args): return _QuantLib.PySwigIterator_distance(*args)
def equal(*args): return _QuantLib.PySwigIterator_equal(*args)
def copy(*args): return _QuantLib.PySwigIterator_copy(*args)
def next(*args): return _QuantLib.PySwigIterator_next(*args)
def previous(*args): return _QuantLib.PySwigIterator_previous(*args)
def advance(*args): return _QuantLib.PySwigIterator_advance(*args)
def __eq__(*args): return _QuantLib.PySwigIterator___eq__(*args)
def __ne__(*args): return _QuantLib.PySwigIterator___ne__(*args)
def __iadd__(*args): return _QuantLib.PySwigIterator___iadd__(*args)
def __isub__(*args): return _QuantLib.PySwigIterator___isub__(*args)
def __add__(*args): return _QuantLib.PySwigIterator___add__(*args)
def __sub__(*args): return _QuantLib.PySwigIterator___sub__(*args)
def __iter__(self): return self
PySwigIterator_swigregister = _QuantLib.PySwigIterator_swigregister
PySwigIterator_swigregister(PySwigIterator)
cvar = _QuantLib.cvar
__hexversion__ = cvar.__hexversion__
__version__ = cvar.__version__
class Observable(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.Observable___deref__(*args)
def __nonzero__(*args): return _QuantLib.Observable___nonzero__(*args)
def __init__(self, *args):
this = _QuantLib.new_Observable(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Observable
__del__ = lambda self : None;
Observable_swigregister = _QuantLib.Observable_swigregister
Observable_swigregister(Observable)
class Observer(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Observer(*args)
try: self.this.append(this)
except: self.this = this
def _registerWith(*args): return _QuantLib.Observer__registerWith(*args)
def _unregisterWith(*args): return _QuantLib.Observer__unregisterWith(*args)
def registerWith(self,x):
self._registerWith(x.asObservable())
def unregisterWith(self,x):
self._unregisterWith(x.asObservable())
__swig_destroy__ = _QuantLib.delete_Observer
__del__ = lambda self : None;
Observer_swigregister = _QuantLib.Observer_swigregister
Observer_swigregister(Observer)
class Array(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Array(*args)
try: self.this.append(this)
except: self.this = this
def __len__(*args): return _QuantLib.Array___len__(*args)
def __str__(*args): return _QuantLib.Array___str__(*args)
def __add__(*args): return _QuantLib.Array___add__(*args)
def __sub__(*args): return _QuantLib.Array___sub__(*args)
def __mul__(*args): return _QuantLib.Array___mul__(*args)
def __div__(*args): return _QuantLib.Array___div__(*args)
def __rmul__(*args): return _QuantLib.Array___rmul__(*args)
def __getslice__(*args): return _QuantLib.Array___getslice__(*args)
def __setslice__(*args): return _QuantLib.Array___setslice__(*args)
def __nonzero__(*args): return _QuantLib.Array___nonzero__(*args)
def __getitem__(*args): return _QuantLib.Array___getitem__(*args)
def __setitem__(*args): return _QuantLib.Array___setitem__(*args)
__swig_destroy__ = _QuantLib.delete_Array
__del__ = lambda self : None;
Array_swigregister = _QuantLib.Array_swigregister
Array_swigregister(Array)
class LexicographicalViewColumn(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
def __getitem__(*args): return _QuantLib.LexicographicalViewColumn___getitem__(*args)
def __setitem__(*args): return _QuantLib.LexicographicalViewColumn___setitem__(*args)
__swig_destroy__ = _QuantLib.delete_LexicographicalViewColumn
__del__ = lambda self : None;
LexicographicalViewColumn_swigregister = _QuantLib.LexicographicalViewColumn_swigregister
LexicographicalViewColumn_swigregister(LexicographicalViewColumn)
class LexicographicalView(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def xSize(*args): return _QuantLib.LexicographicalView_xSize(*args)
def ySize(*args): return _QuantLib.LexicographicalView_ySize(*args)
def __init__(self, *args):
this = _QuantLib.new_LexicographicalView(*args)
try: self.this.append(this)
except: self.this = this
def __str__(*args): return _QuantLib.LexicographicalView___str__(*args)
def __getitem__(*args): return _QuantLib.LexicographicalView___getitem__(*args)
__swig_destroy__ = _QuantLib.delete_LexicographicalView
__del__ = lambda self : None;
LexicographicalView_swigregister = _QuantLib.LexicographicalView_swigregister
LexicographicalView_swigregister(LexicographicalView)
class MatrixRow(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
def __getitem__(*args): return _QuantLib.MatrixRow___getitem__(*args)
def __setitem__(*args): return _QuantLib.MatrixRow___setitem__(*args)
__swig_destroy__ = _QuantLib.delete_MatrixRow
__del__ = lambda self : None;
MatrixRow_swigregister = _QuantLib.MatrixRow_swigregister
MatrixRow_swigregister(MatrixRow)
class Matrix(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Matrix(*args)
try: self.this.append(this)
except: self.this = this
def rows(*args): return _QuantLib.Matrix_rows(*args)
def columns(*args): return _QuantLib.Matrix_columns(*args)
def __str__(*args): return _QuantLib.Matrix___str__(*args)
def __add__(*args): return _QuantLib.Matrix___add__(*args)
def __sub__(*args): return _QuantLib.Matrix___sub__(*args)
def __mul__(*args): return _QuantLib.Matrix___mul__(*args)
def __div__(*args): return _QuantLib.Matrix___div__(*args)
def __getitem__(*args): return _QuantLib.Matrix___getitem__(*args)
def __rmul__(*args): return _QuantLib.Matrix___rmul__(*args)
__swig_destroy__ = _QuantLib.delete_Matrix
__del__ = lambda self : None;
Matrix_swigregister = _QuantLib.Matrix_swigregister
Matrix_swigregister(Matrix)
class SalvagingAlgorithm(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
NoAlgorithm = _QuantLib.SalvagingAlgorithm_NoAlgorithm
Spectral = _QuantLib.SalvagingAlgorithm_Spectral
def __init__(self, *args):
this = _QuantLib.new_SalvagingAlgorithm(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SalvagingAlgorithm
__del__ = lambda self : None;
SalvagingAlgorithm_swigregister = _QuantLib.SalvagingAlgorithm_swigregister
SalvagingAlgorithm_swigregister(SalvagingAlgorithm)
transpose = _QuantLib.transpose
outerProduct = _QuantLib.outerProduct
pseudoSqrt = _QuantLib.pseudoSqrt
class SVD(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SVD(*args)
try: self.this.append(this)
except: self.this = this
def U(*args): return _QuantLib.SVD_U(*args)
def V(*args): return _QuantLib.SVD_V(*args)
def S(*args): return _QuantLib.SVD_S(*args)
def singularValues(*args): return _QuantLib.SVD_singularValues(*args)
__swig_destroy__ = _QuantLib.delete_SVD
__del__ = lambda self : None;
SVD_swigregister = _QuantLib.SVD_swigregister
SVD_swigregister(SVD)
class Quote(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.Quote___deref__(*args)
def __nonzero__(*args): return _QuantLib.Quote___nonzero__(*args)
def asObservable(*args): return _QuantLib.Quote_asObservable(*args)
def __init__(self, *args):
this = _QuantLib.new_Quote(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Quote
__del__ = lambda self : None;
def value(*args): return _QuantLib.Quote_value(*args)
Quote_swigregister = _QuantLib.Quote_swigregister
Quote_swigregister(Quote)
class QuoteHandle(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_QuoteHandle(*args)
try: self.this.append(this)
except: self.this = this
def __deref__(*args): return _QuantLib.QuoteHandle___deref__(*args)
def linkTo(*args): return _QuantLib.QuoteHandle_linkTo(*args)
def __nonzero__(*args): return _QuantLib.QuoteHandle___nonzero__(*args)
def asObservable(*args): return _QuantLib.QuoteHandle_asObservable(*args)
__swig_destroy__ = _QuantLib.delete_QuoteHandle
__del__ = lambda self : None;
def value(*args): return _QuantLib.QuoteHandle_value(*args)
QuoteHandle_swigregister = _QuantLib.QuoteHandle_swigregister
QuoteHandle_swigregister(QuoteHandle)
class SimpleQuote(Quote):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SimpleQuote(*args)
try: self.this.append(this)
except: self.this = this
def setValue(*args): return _QuantLib.SimpleQuote_setValue(*args)
__swig_destroy__ = _QuantLib.delete_SimpleQuote
__del__ = lambda self : None;
SimpleQuote_swigregister = _QuantLib.SimpleQuote_swigregister
SimpleQuote_swigregister(SimpleQuote)
class DerivedQuote(Quote):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_DerivedQuote(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_DerivedQuote
__del__ = lambda self : None;
DerivedQuote_swigregister = _QuantLib.DerivedQuote_swigregister
DerivedQuote_swigregister(DerivedQuote)
class CompositeQuote(Quote):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CompositeQuote(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CompositeQuote
__del__ = lambda self : None;
CompositeQuote_swigregister = _QuantLib.CompositeQuote_swigregister
CompositeQuote_swigregister(CompositeQuote)
class QuoteVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.QuoteVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.QuoteVector___nonzero__(*args)
def __len__(*args): return _QuantLib.QuoteVector___len__(*args)
def pop(*args): return _QuantLib.QuoteVector_pop(*args)
def __getslice__(*args): return _QuantLib.QuoteVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.QuoteVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.QuoteVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.QuoteVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.QuoteVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.QuoteVector___setitem__(*args)
def append(*args): return _QuantLib.QuoteVector_append(*args)
def empty(*args): return _QuantLib.QuoteVector_empty(*args)
def size(*args): return _QuantLib.QuoteVector_size(*args)
def clear(*args): return _QuantLib.QuoteVector_clear(*args)
def swap(*args): return _QuantLib.QuoteVector_swap(*args)
def get_allocator(*args): return _QuantLib.QuoteVector_get_allocator(*args)
def begin(*args): return _QuantLib.QuoteVector_begin(*args)
def end(*args): return _QuantLib.QuoteVector_end(*args)
def rbegin(*args): return _QuantLib.QuoteVector_rbegin(*args)
def rend(*args): return _QuantLib.QuoteVector_rend(*args)
def pop_back(*args): return _QuantLib.QuoteVector_pop_back(*args)
def erase(*args): return _QuantLib.QuoteVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_QuoteVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.QuoteVector_push_back(*args)
def front(*args): return _QuantLib.QuoteVector_front(*args)
def back(*args): return _QuantLib.QuoteVector_back(*args)
def assign(*args): return _QuantLib.QuoteVector_assign(*args)
def resize(*args): return _QuantLib.QuoteVector_resize(*args)
def insert(*args): return _QuantLib.QuoteVector_insert(*args)
def reserve(*args): return _QuantLib.QuoteVector_reserve(*args)
def capacity(*args): return _QuantLib.QuoteVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_QuoteVector
__del__ = lambda self : None;
QuoteVector_swigregister = _QuantLib.QuoteVector_swigregister
QuoteVector_swigregister(QuoteVector)
class QuoteHandleVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.QuoteHandleVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.QuoteHandleVector___nonzero__(*args)
def __len__(*args): return _QuantLib.QuoteHandleVector___len__(*args)
def pop(*args): return _QuantLib.QuoteHandleVector_pop(*args)
def __getslice__(*args): return _QuantLib.QuoteHandleVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.QuoteHandleVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.QuoteHandleVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.QuoteHandleVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.QuoteHandleVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.QuoteHandleVector___setitem__(*args)
def append(*args): return _QuantLib.QuoteHandleVector_append(*args)
def empty(*args): return _QuantLib.QuoteHandleVector_empty(*args)
def size(*args): return _QuantLib.QuoteHandleVector_size(*args)
def clear(*args): return _QuantLib.QuoteHandleVector_clear(*args)
def swap(*args): return _QuantLib.QuoteHandleVector_swap(*args)
def get_allocator(*args): return _QuantLib.QuoteHandleVector_get_allocator(*args)
def begin(*args): return _QuantLib.QuoteHandleVector_begin(*args)
def end(*args): return _QuantLib.QuoteHandleVector_end(*args)
def rbegin(*args): return _QuantLib.QuoteHandleVector_rbegin(*args)
def rend(*args): return _QuantLib.QuoteHandleVector_rend(*args)
def pop_back(*args): return _QuantLib.QuoteHandleVector_pop_back(*args)
def erase(*args): return _QuantLib.QuoteHandleVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_QuoteHandleVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.QuoteHandleVector_push_back(*args)
def front(*args): return _QuantLib.QuoteHandleVector_front(*args)
def back(*args): return _QuantLib.QuoteHandleVector_back(*args)
def assign(*args): return _QuantLib.QuoteHandleVector_assign(*args)
def resize(*args): return _QuantLib.QuoteHandleVector_resize(*args)
def insert(*args): return _QuantLib.QuoteHandleVector_insert(*args)
def reserve(*args): return _QuantLib.QuoteHandleVector_reserve(*args)
def capacity(*args): return _QuantLib.QuoteHandleVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_QuoteHandleVector
__del__ = lambda self : None;
QuoteHandleVector_swigregister = _QuantLib.QuoteHandleVector_swigregister
QuoteHandleVector_swigregister(QuoteHandleVector)
Sunday = _QuantLib.Sunday
Monday = _QuantLib.Monday
Tuesday = _QuantLib.Tuesday
Wednesday = _QuantLib.Wednesday
Thursday = _QuantLib.Thursday
Friday = _QuantLib.Friday
Saturday = _QuantLib.Saturday
January = _QuantLib.January
February = _QuantLib.February
March = _QuantLib.March
April = _QuantLib.April
May = _QuantLib.May
June = _QuantLib.June
July = _QuantLib.July
August = _QuantLib.August
September = _QuantLib.September
October = _QuantLib.October
November = _QuantLib.November
December = _QuantLib.December
Days = _QuantLib.Days
Weeks = _QuantLib.Weeks
Months = _QuantLib.Months
Years = _QuantLib.Years
NoFrequency = _QuantLib.NoFrequency
Once = _QuantLib.Once
Annual = _QuantLib.Annual
Semiannual = _QuantLib.Semiannual
EveryFourthMonth = _QuantLib.EveryFourthMonth
Quarterly = _QuantLib.Quarterly
Bimonthly = _QuantLib.Bimonthly
Monthly = _QuantLib.Monthly
class Period(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def length(*args): return _QuantLib.Period_length(*args)
def units(*args): return _QuantLib.Period_units(*args)
def __init__(self, *args):
this = _QuantLib.new_Period(*args)
try: self.this.append(this)
except: self.this = this
def __str__(*args): return _QuantLib.Period___str__(*args)
def __repr__(*args): return _QuantLib.Period___repr__(*args)
def __cmp__(*args): return _QuantLib.Period___cmp__(*args)
__swig_destroy__ = _QuantLib.delete_Period
__del__ = lambda self : None;
Period_swigregister = _QuantLib.Period_swigregister
Period_swigregister(Period)
class PeriodVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.PeriodVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.PeriodVector___nonzero__(*args)
def __len__(*args): return _QuantLib.PeriodVector___len__(*args)
def pop(*args): return _QuantLib.PeriodVector_pop(*args)
def __getslice__(*args): return _QuantLib.PeriodVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.PeriodVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.PeriodVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.PeriodVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.PeriodVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.PeriodVector___setitem__(*args)
def append(*args): return _QuantLib.PeriodVector_append(*args)
def empty(*args): return _QuantLib.PeriodVector_empty(*args)
def size(*args): return _QuantLib.PeriodVector_size(*args)
def clear(*args): return _QuantLib.PeriodVector_clear(*args)
def swap(*args): return _QuantLib.PeriodVector_swap(*args)
def get_allocator(*args): return _QuantLib.PeriodVector_get_allocator(*args)
def begin(*args): return _QuantLib.PeriodVector_begin(*args)
def end(*args): return _QuantLib.PeriodVector_end(*args)
def rbegin(*args): return _QuantLib.PeriodVector_rbegin(*args)
def rend(*args): return _QuantLib.PeriodVector_rend(*args)
def pop_back(*args): return _QuantLib.PeriodVector_pop_back(*args)
def erase(*args): return _QuantLib.PeriodVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_PeriodVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.PeriodVector_push_back(*args)
def front(*args): return _QuantLib.PeriodVector_front(*args)
def back(*args): return _QuantLib.PeriodVector_back(*args)
def assign(*args): return _QuantLib.PeriodVector_assign(*args)
def resize(*args): return _QuantLib.PeriodVector_resize(*args)
def insert(*args): return _QuantLib.PeriodVector_insert(*args)
def reserve(*args): return _QuantLib.PeriodVector_reserve(*args)
def capacity(*args): return _QuantLib.PeriodVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_PeriodVector
__del__ = lambda self : None;
PeriodVector_swigregister = _QuantLib.PeriodVector_swigregister
PeriodVector_swigregister(PeriodVector)
class Date(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def weekday(*args): return _QuantLib.Date_weekday(*args)
def dayOfMonth(*args): return _QuantLib.Date_dayOfMonth(*args)
def dayOfYear(*args): return _QuantLib.Date_dayOfYear(*args)
def month(*args): return _QuantLib.Date_month(*args)
def year(*args): return _QuantLib.Date_year(*args)
def serialNumber(*args): return _QuantLib.Date_serialNumber(*args)
isLeap = staticmethod(_QuantLib.Date_isLeap)
minDate = staticmethod(_QuantLib.Date_minDate)
maxDate = staticmethod(_QuantLib.Date_maxDate)
todaysDate = staticmethod(_QuantLib.Date_todaysDate)
endOfMonth = staticmethod(_QuantLib.Date_endOfMonth)
isEOM = staticmethod(_QuantLib.Date_isEOM)
nextWeekday = staticmethod(_QuantLib.Date_nextWeekday)
nthWeekday = staticmethod(_QuantLib.Date_nthWeekday)
isIMMdate = staticmethod(_QuantLib.Date_isIMMdate)
nextIMMdate = staticmethod(_QuantLib.Date_nextIMMdate)
def __add__(*args): return _QuantLib.Date___add__(*args)
def __init__(self, *args):
this = _QuantLib.new_Date(*args)
try: self.this.append(this)
except: self.this = this
def weekdayNumber(*args): return _QuantLib.Date_weekdayNumber(*args)
def __str__(*args): return _QuantLib.Date___str__(*args)
def __repr__(*args): return _QuantLib.Date___repr__(*args)
def ISO(*args): return _QuantLib.Date_ISO(*args)
def __sub__(*args): return _QuantLib.Date___sub__(*args)
def __cmp__(*args): return _QuantLib.Date___cmp__(*args)
def __nonzero__(*args): return _QuantLib.Date___nonzero__(*args)
def __hash__(*args): return _QuantLib.Date___hash__(*args)
__swig_destroy__ = _QuantLib.delete_Date
__del__ = lambda self : None;
Date_swigregister = _QuantLib.Date_swigregister
Date_swigregister(Date)
Date_isLeap = _QuantLib.Date_isLeap
Date_minDate = _QuantLib.Date_minDate
Date_maxDate = _QuantLib.Date_maxDate
Date_todaysDate = _QuantLib.Date_todaysDate
Date_endOfMonth = _QuantLib.Date_endOfMonth
Date_isEOM = _QuantLib.Date_isEOM
Date_nextWeekday = _QuantLib.Date_nextWeekday
Date_nthWeekday = _QuantLib.Date_nthWeekday
Date_isIMMdate = _QuantLib.Date_isIMMdate
Date_nextIMMdate = _QuantLib.Date_nextIMMdate
class DateParser(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
parse = staticmethod(_QuantLib.DateParser_parse)
parseISO = staticmethod(_QuantLib.DateParser_parseISO)
def __init__(self, *args):
this = _QuantLib.new_DateParser(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_DateParser
__del__ = lambda self : None;
DateParser_swigregister = _QuantLib.DateParser_swigregister
DateParser_swigregister(DateParser)
DateParser_parse = _QuantLib.DateParser_parse
DateParser_parseISO = _QuantLib.DateParser_parseISO
class PeriodParser(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
parse = staticmethod(_QuantLib.PeriodParser_parse)
def __init__(self, *args):
this = _QuantLib.new_PeriodParser(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_PeriodParser
__del__ = lambda self : None;
PeriodParser_swigregister = _QuantLib.PeriodParser_swigregister
PeriodParser_swigregister(PeriodParser)
PeriodParser_parse = _QuantLib.PeriodParser_parse
Date._old___add__ = Date.__add__
Date._old___sub__ = Date.__sub__
def Date_new___add__(self,x):
if type(x) is tuple and len(x) == 2:
return self._old___add__(Period(x[0],x[1]))
else:
return self._old___add__(x)
def Date_new___sub__(self,x):
if type(x) is tuple and len(x) == 2:
return self._old___sub__(Period(x[0],x[1]))
else:
return self._old___sub__(x)
Date.__add__ = Date_new___add__
Date.__sub__ = Date_new___sub__
class DateVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.DateVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.DateVector___nonzero__(*args)
def __len__(*args): return _QuantLib.DateVector___len__(*args)
def pop(*args): return _QuantLib.DateVector_pop(*args)
def __getslice__(*args): return _QuantLib.DateVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.DateVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.DateVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.DateVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.DateVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.DateVector___setitem__(*args)
def append(*args): return _QuantLib.DateVector_append(*args)
def empty(*args): return _QuantLib.DateVector_empty(*args)
def size(*args): return _QuantLib.DateVector_size(*args)
def clear(*args): return _QuantLib.DateVector_clear(*args)
def swap(*args): return _QuantLib.DateVector_swap(*args)
def get_allocator(*args): return _QuantLib.DateVector_get_allocator(*args)
def begin(*args): return _QuantLib.DateVector_begin(*args)
def end(*args): return _QuantLib.DateVector_end(*args)
def rbegin(*args): return _QuantLib.DateVector_rbegin(*args)
def rend(*args): return _QuantLib.DateVector_rend(*args)
def pop_back(*args): return _QuantLib.DateVector_pop_back(*args)
def erase(*args): return _QuantLib.DateVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_DateVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.DateVector_push_back(*args)
def front(*args): return _QuantLib.DateVector_front(*args)
def back(*args): return _QuantLib.DateVector_back(*args)
def assign(*args): return _QuantLib.DateVector_assign(*args)
def resize(*args): return _QuantLib.DateVector_resize(*args)
def insert(*args): return _QuantLib.DateVector_insert(*args)
def reserve(*args): return _QuantLib.DateVector_reserve(*args)
def capacity(*args): return _QuantLib.DateVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_DateVector
__del__ = lambda self : None;
DateVector_swigregister = _QuantLib.DateVector_swigregister
DateVector_swigregister(DateVector)
nullInt = _QuantLib.nullInt
nullDouble = _QuantLib.nullDouble
class DayCounter(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
def dayCount(*args): return _QuantLib.DayCounter_dayCount(*args)
def yearFraction(*args): return _QuantLib.DayCounter_yearFraction(*args)
def __str__(*args): return _QuantLib.DayCounter___str__(*args)
def __eq__(*args): return _QuantLib.DayCounter___eq__(*args)
def __ne__(*args): return _QuantLib.DayCounter___ne__(*args)
__swig_destroy__ = _QuantLib.delete_DayCounter
__del__ = lambda self : None;
DayCounter_swigregister = _QuantLib.DayCounter_swigregister
DayCounter_swigregister(DayCounter)
class Actual360(DayCounter):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Actual360(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Actual360
__del__ = lambda self : None;
Actual360_swigregister = _QuantLib.Actual360_swigregister
Actual360_swigregister(Actual360)
class Actual365Fixed(DayCounter):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Actual365Fixed(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Actual365Fixed
__del__ = lambda self : None;
Actual365Fixed_swigregister = _QuantLib.Actual365Fixed_swigregister
Actual365Fixed_swigregister(Actual365Fixed)
class Thirty360(DayCounter):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
USA = _QuantLib.Thirty360_USA
BondBasis = _QuantLib.Thirty360_BondBasis
European = _QuantLib.Thirty360_European
EurobondBasis = _QuantLib.Thirty360_EurobondBasis
Italian = _QuantLib.Thirty360_Italian
def __init__(self, *args):
this = _QuantLib.new_Thirty360(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Thirty360
__del__ = lambda self : None;
Thirty360_swigregister = _QuantLib.Thirty360_swigregister
Thirty360_swigregister(Thirty360)
class ActualActual(DayCounter):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
ISMA = _QuantLib.ActualActual_ISMA
Bond = _QuantLib.ActualActual_Bond
ISDA = _QuantLib.ActualActual_ISDA
Historical = _QuantLib.ActualActual_Historical
Actual365 = _QuantLib.ActualActual_Actual365
AFB = _QuantLib.ActualActual_AFB
Euro = _QuantLib.ActualActual_Euro
def __init__(self, *args):
this = _QuantLib.new_ActualActual(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ActualActual
__del__ = lambda self : None;
ActualActual_swigregister = _QuantLib.ActualActual_swigregister
ActualActual_swigregister(ActualActual)
class OneDayCounter(DayCounter):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_OneDayCounter(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_OneDayCounter
__del__ = lambda self : None;
OneDayCounter_swigregister = _QuantLib.OneDayCounter_swigregister
OneDayCounter_swigregister(OneDayCounter)
class SimpleDayCounter(DayCounter):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SimpleDayCounter(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SimpleDayCounter
__del__ = lambda self : None;
SimpleDayCounter_swigregister = _QuantLib.SimpleDayCounter_swigregister
SimpleDayCounter_swigregister(SimpleDayCounter)
Simple = _QuantLib.Simple
Compounded = _QuantLib.Compounded
Continuous = _QuantLib.Continuous
SimpleThenCompounded = _QuantLib.SimpleThenCompounded
class InterestRate(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_InterestRate(*args)
try: self.this.append(this)
except: self.this = this
def rate(*args): return _QuantLib.InterestRate_rate(*args)
def dayCounter(*args): return _QuantLib.InterestRate_dayCounter(*args)
def compounding(*args): return _QuantLib.InterestRate_compounding(*args)
def frequency(*args): return _QuantLib.InterestRate_frequency(*args)
def discountFactor(*args): return _QuantLib.InterestRate_discountFactor(*args)
def compoundFactor(*args): return _QuantLib.InterestRate_compoundFactor(*args)
impliedRate = staticmethod(_QuantLib.InterestRate_impliedRate)
def equivalentRate(*args): return _QuantLib.InterestRate_equivalentRate(*args)
def __str__(*args): return _QuantLib.InterestRate___str__(*args)
__swig_destroy__ = _QuantLib.delete_InterestRate
__del__ = lambda self : None;
InterestRate_swigregister = _QuantLib.InterestRate_swigregister
InterestRate_swigregister(InterestRate)
InterestRate_impliedRate = _QuantLib.InterestRate_impliedRate
Following = _QuantLib.Following
ModifiedFollowing = _QuantLib.ModifiedFollowing
Preceding = _QuantLib.Preceding
ModifiedPreceding = _QuantLib.ModifiedPreceding
MonthEndReference = _QuantLib.MonthEndReference
UnadjustedMonthEnd = _QuantLib.UnadjustedMonthEnd
Unadjusted = _QuantLib.Unadjusted
JoinHolidays = _QuantLib.JoinHolidays
JoinBusinessDays = _QuantLib.JoinBusinessDays
class Calendar(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
def isBusinessDay(*args): return _QuantLib.Calendar_isBusinessDay(*args)
def isHoliday(*args): return _QuantLib.Calendar_isHoliday(*args)
def isEndOfMonth(*args): return _QuantLib.Calendar_isEndOfMonth(*args)
def addHoliday(*args): return _QuantLib.Calendar_addHoliday(*args)
def removeHoliday(*args): return _QuantLib.Calendar_removeHoliday(*args)
def adjust(*args): return _QuantLib.Calendar_adjust(*args)
def advance(*args): return _QuantLib.Calendar_advance(*args)
def __str__(*args): return _QuantLib.Calendar___str__(*args)
def __eq__(*args): return _QuantLib.Calendar___eq__(*args)
def __ne__(*args): return _QuantLib.Calendar___ne__(*args)
__swig_destroy__ = _QuantLib.delete_Calendar
__del__ = lambda self : None;
Calendar_swigregister = _QuantLib.Calendar_swigregister
Calendar_swigregister(Calendar)
class Argentina(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
Merval = _QuantLib.Argentina_Merval
def __init__(self, *args):
this = _QuantLib.new_Argentina(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Argentina
__del__ = lambda self : None;
Argentina_swigregister = _QuantLib.Argentina_swigregister
Argentina_swigregister(Argentina)
class Australia(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Australia(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Australia
__del__ = lambda self : None;
Australia_swigregister = _QuantLib.Australia_swigregister
Australia_swigregister(Australia)
class Canada(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Canada(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Canada
__del__ = lambda self : None;
Canada_swigregister = _QuantLib.Canada_swigregister
Canada_swigregister(Canada)
class China(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_China(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_China
__del__ = lambda self : None;
China_swigregister = _QuantLib.China_swigregister
China_swigregister(China)
class CzechRepublic(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
PSE = _QuantLib.CzechRepublic_PSE
def __init__(self, *args):
this = _QuantLib.new_CzechRepublic(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CzechRepublic
__del__ = lambda self : None;
CzechRepublic_swigregister = _QuantLib.CzechRepublic_swigregister
CzechRepublic_swigregister(CzechRepublic)
class Denmark(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Denmark(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Denmark
__del__ = lambda self : None;
Denmark_swigregister = _QuantLib.Denmark_swigregister
Denmark_swigregister(Denmark)
class Finland(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Finland(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Finland
__del__ = lambda self : None;
Finland_swigregister = _QuantLib.Finland_swigregister
Finland_swigregister(Finland)
class Germany(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
Settlement = _QuantLib.Germany_Settlement
FrankfurtStockExchange = _QuantLib.Germany_FrankfurtStockExchange
Xetra = _QuantLib.Germany_Xetra
Eurex = _QuantLib.Germany_Eurex
def __init__(self, *args):
this = _QuantLib.new_Germany(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Germany
__del__ = lambda self : None;
Germany_swigregister = _QuantLib.Germany_swigregister
Germany_swigregister(Germany)
class HongKong(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
HKEx = _QuantLib.HongKong_HKEx
def __init__(self, *args):
this = _QuantLib.new_HongKong(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_HongKong
__del__ = lambda self : None;
HongKong_swigregister = _QuantLib.HongKong_swigregister
HongKong_swigregister(HongKong)
class Hungary(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Hungary(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Hungary
__del__ = lambda self : None;
Hungary_swigregister = _QuantLib.Hungary_swigregister
Hungary_swigregister(Hungary)
class Iceland(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
ICEX = _QuantLib.Iceland_ICEX
def __init__(self, *args):
this = _QuantLib.new_Iceland(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Iceland
__del__ = lambda self : None;
Iceland_swigregister = _QuantLib.Iceland_swigregister
Iceland_swigregister(Iceland)
class India(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
NSE = _QuantLib.India_NSE
def __init__(self, *args):
this = _QuantLib.new_India(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_India
__del__ = lambda self : None;
India_swigregister = _QuantLib.India_swigregister
India_swigregister(India)
class Indonesia(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
BEJ = _QuantLib.Indonesia_BEJ
def __init__(self, *args):
this = _QuantLib.new_Indonesia(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Indonesia
__del__ = lambda self : None;
Indonesia_swigregister = _QuantLib.Indonesia_swigregister
Indonesia_swigregister(Indonesia)
class Italy(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
Settlement = _QuantLib.Italy_Settlement
Exchange = _QuantLib.Italy_Exchange
def __init__(self, *args):
this = _QuantLib.new_Italy(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Italy
__del__ = lambda self : None;
Italy_swigregister = _QuantLib.Italy_swigregister
Italy_swigregister(Italy)
class Japan(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Japan(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Japan
__del__ = lambda self : None;
Japan_swigregister = _QuantLib.Japan_swigregister
Japan_swigregister(Japan)
class Mexico(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
BMV = _QuantLib.Mexico_BMV
def __init__(self, *args):
this = _QuantLib.new_Mexico(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Mexico
__del__ = lambda self : None;
Mexico_swigregister = _QuantLib.Mexico_swigregister
Mexico_swigregister(Mexico)
class NewZealand(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_NewZealand(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_NewZealand
__del__ = lambda self : None;
NewZealand_swigregister = _QuantLib.NewZealand_swigregister
NewZealand_swigregister(NewZealand)
class Norway(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Norway(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Norway
__del__ = lambda self : None;
Norway_swigregister = _QuantLib.Norway_swigregister
Norway_swigregister(Norway)
class Poland(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Poland(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Poland
__del__ = lambda self : None;
Poland_swigregister = _QuantLib.Poland_swigregister
Poland_swigregister(Poland)
class SaudiArabia(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SaudiArabia(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SaudiArabia
__del__ = lambda self : None;
SaudiArabia_swigregister = _QuantLib.SaudiArabia_swigregister
SaudiArabia_swigregister(SaudiArabia)
class Singapore(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
SGX = _QuantLib.Singapore_SGX
def __init__(self, *args):
this = _QuantLib.new_Singapore(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Singapore
__del__ = lambda self : None;
Singapore_swigregister = _QuantLib.Singapore_swigregister
Singapore_swigregister(Singapore)
class Slovakia(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
BSSE = _QuantLib.Slovakia_BSSE
def __init__(self, *args):
this = _QuantLib.new_Slovakia(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Slovakia
__del__ = lambda self : None;
Slovakia_swigregister = _QuantLib.Slovakia_swigregister
Slovakia_swigregister(Slovakia)
class SouthAfrica(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SouthAfrica(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SouthAfrica
__del__ = lambda self : None;
SouthAfrica_swigregister = _QuantLib.SouthAfrica_swigregister
SouthAfrica_swigregister(SouthAfrica)
class SouthKorea(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
KRX = _QuantLib.SouthKorea_KRX
def __init__(self, *args):
this = _QuantLib.new_SouthKorea(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SouthKorea
__del__ = lambda self : None;
SouthKorea_swigregister = _QuantLib.SouthKorea_swigregister
SouthKorea_swigregister(SouthKorea)
class Sweden(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Sweden(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Sweden
__del__ = lambda self : None;
Sweden_swigregister = _QuantLib.Sweden_swigregister
Sweden_swigregister(Sweden)
class Switzerland(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Switzerland(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Switzerland
__del__ = lambda self : None;
Switzerland_swigregister = _QuantLib.Switzerland_swigregister
Switzerland_swigregister(Switzerland)
class Taiwan(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
TSEC = _QuantLib.Taiwan_TSEC
def __init__(self, *args):
this = _QuantLib.new_Taiwan(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Taiwan
__del__ = lambda self : None;
Taiwan_swigregister = _QuantLib.Taiwan_swigregister
Taiwan_swigregister(Taiwan)
class TARGET(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_TARGET(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_TARGET
__del__ = lambda self : None;
TARGET_swigregister = _QuantLib.TARGET_swigregister
TARGET_swigregister(TARGET)
class Turkey(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Turkey(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Turkey
__del__ = lambda self : None;
Turkey_swigregister = _QuantLib.Turkey_swigregister
Turkey_swigregister(Turkey)
class Ukraine(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
USE = _QuantLib.Ukraine_USE
def __init__(self, *args):
this = _QuantLib.new_Ukraine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Ukraine
__del__ = lambda self : None;
Ukraine_swigregister = _QuantLib.Ukraine_swigregister
Ukraine_swigregister(Ukraine)
class UnitedKingdom(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
Settlement = _QuantLib.UnitedKingdom_Settlement
Exchange = _QuantLib.UnitedKingdom_Exchange
Metals = _QuantLib.UnitedKingdom_Metals
def __init__(self, *args):
this = _QuantLib.new_UnitedKingdom(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_UnitedKingdom
__del__ = lambda self : None;
UnitedKingdom_swigregister = _QuantLib.UnitedKingdom_swigregister
UnitedKingdom_swigregister(UnitedKingdom)
class UnitedStates(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
Settlement = _QuantLib.UnitedStates_Settlement
NYSE = _QuantLib.UnitedStates_NYSE
GovernmentBond = _QuantLib.UnitedStates_GovernmentBond
NERC = _QuantLib.UnitedStates_NERC
def __init__(self, *args):
this = _QuantLib.new_UnitedStates(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_UnitedStates
__del__ = lambda self : None;
UnitedStates_swigregister = _QuantLib.UnitedStates_swigregister
UnitedStates_swigregister(UnitedStates)
class NullCalendar(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_NullCalendar(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_NullCalendar
__del__ = lambda self : None;
NullCalendar_swigregister = _QuantLib.NullCalendar_swigregister
NullCalendar_swigregister(NullCalendar)
class JointCalendar(Calendar):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_JointCalendar(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_JointCalendar
__del__ = lambda self : None;
JointCalendar_swigregister = _QuantLib.JointCalendar_swigregister
JointCalendar_swigregister(JointCalendar)
class Rounding(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Rounding(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.Rounding___call__(*args)
__swig_destroy__ = _QuantLib.delete_Rounding
__del__ = lambda self : None;
Rounding_swigregister = _QuantLib.Rounding_swigregister
Rounding_swigregister(Rounding)
class UpRounding(Rounding):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_UpRounding(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_UpRounding
__del__ = lambda self : None;
UpRounding_swigregister = _QuantLib.UpRounding_swigregister
UpRounding_swigregister(UpRounding)
class DownRounding(Rounding):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_DownRounding(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_DownRounding
__del__ = lambda self : None;
DownRounding_swigregister = _QuantLib.DownRounding_swigregister
DownRounding_swigregister(DownRounding)
class ClosestRounding(Rounding):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ClosestRounding(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ClosestRounding
__del__ = lambda self : None;
ClosestRounding_swigregister = _QuantLib.ClosestRounding_swigregister
ClosestRounding_swigregister(ClosestRounding)
class CeilingTruncation(Rounding):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CeilingTruncation(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CeilingTruncation
__del__ = lambda self : None;
CeilingTruncation_swigregister = _QuantLib.CeilingTruncation_swigregister
CeilingTruncation_swigregister(CeilingTruncation)
class FloorTruncation(Rounding):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FloorTruncation(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FloorTruncation
__del__ = lambda self : None;
FloorTruncation_swigregister = _QuantLib.FloorTruncation_swigregister
FloorTruncation_swigregister(FloorTruncation)
class Currency(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def name(*args): return _QuantLib.Currency_name(*args)
def code(*args): return _QuantLib.Currency_code(*args)
def numericCode(*args): return _QuantLib.Currency_numericCode(*args)
def symbol(*args): return _QuantLib.Currency_symbol(*args)
def fractionSymbol(*args): return _QuantLib.Currency_fractionSymbol(*args)
def fractionsPerUnit(*args): return _QuantLib.Currency_fractionsPerUnit(*args)
def rounding(*args): return _QuantLib.Currency_rounding(*args)
def __nonzero__(*args): return _QuantLib.Currency___nonzero__(*args)
def triangulationCurrency(*args): return _QuantLib.Currency_triangulationCurrency(*args)
def __str__(*args): return _QuantLib.Currency___str__(*args)
def __eq__(*args): return _QuantLib.Currency___eq__(*args)
def __ne__(*args): return _QuantLib.Currency___ne__(*args)
def __init__(self, *args):
this = _QuantLib.new_Currency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Currency
__del__ = lambda self : None;
Currency_swigregister = _QuantLib.Currency_swigregister
Currency_swigregister(Currency)
class ARSCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ARSCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ARSCurrency
__del__ = lambda self : None;
ARSCurrency_swigregister = _QuantLib.ARSCurrency_swigregister
ARSCurrency_swigregister(ARSCurrency)
class ATSCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ATSCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ATSCurrency
__del__ = lambda self : None;
ATSCurrency_swigregister = _QuantLib.ATSCurrency_swigregister
ATSCurrency_swigregister(ATSCurrency)
class AUDCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_AUDCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_AUDCurrency
__del__ = lambda self : None;
AUDCurrency_swigregister = _QuantLib.AUDCurrency_swigregister
AUDCurrency_swigregister(AUDCurrency)
class BDTCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BDTCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BDTCurrency
__del__ = lambda self : None;
BDTCurrency_swigregister = _QuantLib.BDTCurrency_swigregister
BDTCurrency_swigregister(BDTCurrency)
class BEFCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BEFCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BEFCurrency
__del__ = lambda self : None;
BEFCurrency_swigregister = _QuantLib.BEFCurrency_swigregister
BEFCurrency_swigregister(BEFCurrency)
class BGLCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BGLCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BGLCurrency
__del__ = lambda self : None;
BGLCurrency_swigregister = _QuantLib.BGLCurrency_swigregister
BGLCurrency_swigregister(BGLCurrency)
class BRLCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BRLCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BRLCurrency
__del__ = lambda self : None;
BRLCurrency_swigregister = _QuantLib.BRLCurrency_swigregister
BRLCurrency_swigregister(BRLCurrency)
class BYRCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BYRCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BYRCurrency
__del__ = lambda self : None;
BYRCurrency_swigregister = _QuantLib.BYRCurrency_swigregister
BYRCurrency_swigregister(BYRCurrency)
class CADCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CADCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CADCurrency
__del__ = lambda self : None;
CADCurrency_swigregister = _QuantLib.CADCurrency_swigregister
CADCurrency_swigregister(CADCurrency)
class CHFCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CHFCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CHFCurrency
__del__ = lambda self : None;
CHFCurrency_swigregister = _QuantLib.CHFCurrency_swigregister
CHFCurrency_swigregister(CHFCurrency)
class CLPCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CLPCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CLPCurrency
__del__ = lambda self : None;
CLPCurrency_swigregister = _QuantLib.CLPCurrency_swigregister
CLPCurrency_swigregister(CLPCurrency)
class CNYCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CNYCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CNYCurrency
__del__ = lambda self : None;
CNYCurrency_swigregister = _QuantLib.CNYCurrency_swigregister
CNYCurrency_swigregister(CNYCurrency)
class COPCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_COPCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_COPCurrency
__del__ = lambda self : None;
COPCurrency_swigregister = _QuantLib.COPCurrency_swigregister
COPCurrency_swigregister(COPCurrency)
class CYPCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CYPCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CYPCurrency
__del__ = lambda self : None;
CYPCurrency_swigregister = _QuantLib.CYPCurrency_swigregister
CYPCurrency_swigregister(CYPCurrency)
class CZKCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CZKCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CZKCurrency
__del__ = lambda self : None;
CZKCurrency_swigregister = _QuantLib.CZKCurrency_swigregister
CZKCurrency_swigregister(CZKCurrency)
class DEMCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_DEMCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_DEMCurrency
__del__ = lambda self : None;
DEMCurrency_swigregister = _QuantLib.DEMCurrency_swigregister
DEMCurrency_swigregister(DEMCurrency)
class DKKCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_DKKCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_DKKCurrency
__del__ = lambda self : None;
DKKCurrency_swigregister = _QuantLib.DKKCurrency_swigregister
DKKCurrency_swigregister(DKKCurrency)
class EEKCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_EEKCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_EEKCurrency
__del__ = lambda self : None;
EEKCurrency_swigregister = _QuantLib.EEKCurrency_swigregister
EEKCurrency_swigregister(EEKCurrency)
class ESPCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ESPCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ESPCurrency
__del__ = lambda self : None;
ESPCurrency_swigregister = _QuantLib.ESPCurrency_swigregister
ESPCurrency_swigregister(ESPCurrency)
class EURCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_EURCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_EURCurrency
__del__ = lambda self : None;
EURCurrency_swigregister = _QuantLib.EURCurrency_swigregister
EURCurrency_swigregister(EURCurrency)
class FIMCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FIMCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FIMCurrency
__del__ = lambda self : None;
FIMCurrency_swigregister = _QuantLib.FIMCurrency_swigregister
FIMCurrency_swigregister(FIMCurrency)
class FRFCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FRFCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FRFCurrency
__del__ = lambda self : None;
FRFCurrency_swigregister = _QuantLib.FRFCurrency_swigregister
FRFCurrency_swigregister(FRFCurrency)
class GBPCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_GBPCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_GBPCurrency
__del__ = lambda self : None;
GBPCurrency_swigregister = _QuantLib.GBPCurrency_swigregister
GBPCurrency_swigregister(GBPCurrency)
class GRDCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_GRDCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_GRDCurrency
__del__ = lambda self : None;
GRDCurrency_swigregister = _QuantLib.GRDCurrency_swigregister
GRDCurrency_swigregister(GRDCurrency)
class HKDCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_HKDCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_HKDCurrency
__del__ = lambda self : None;
HKDCurrency_swigregister = _QuantLib.HKDCurrency_swigregister
HKDCurrency_swigregister(HKDCurrency)
class HUFCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_HUFCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_HUFCurrency
__del__ = lambda self : None;
HUFCurrency_swigregister = _QuantLib.HUFCurrency_swigregister
HUFCurrency_swigregister(HUFCurrency)
class IEPCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_IEPCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_IEPCurrency
__del__ = lambda self : None;
IEPCurrency_swigregister = _QuantLib.IEPCurrency_swigregister
IEPCurrency_swigregister(IEPCurrency)
class ILSCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ILSCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ILSCurrency
__del__ = lambda self : None;
ILSCurrency_swigregister = _QuantLib.ILSCurrency_swigregister
ILSCurrency_swigregister(ILSCurrency)
class INRCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_INRCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_INRCurrency
__del__ = lambda self : None;
INRCurrency_swigregister = _QuantLib.INRCurrency_swigregister
INRCurrency_swigregister(INRCurrency)
class IQDCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_IQDCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_IQDCurrency
__del__ = lambda self : None;
IQDCurrency_swigregister = _QuantLib.IQDCurrency_swigregister
IQDCurrency_swigregister(IQDCurrency)
class IRRCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_IRRCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_IRRCurrency
__del__ = lambda self : None;
IRRCurrency_swigregister = _QuantLib.IRRCurrency_swigregister
IRRCurrency_swigregister(IRRCurrency)
class ISKCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ISKCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ISKCurrency
__del__ = lambda self : None;
ISKCurrency_swigregister = _QuantLib.ISKCurrency_swigregister
ISKCurrency_swigregister(ISKCurrency)
class ITLCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ITLCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ITLCurrency
__del__ = lambda self : None;
ITLCurrency_swigregister = _QuantLib.ITLCurrency_swigregister
ITLCurrency_swigregister(ITLCurrency)
class JPYCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_JPYCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_JPYCurrency
__del__ = lambda self : None;
JPYCurrency_swigregister = _QuantLib.JPYCurrency_swigregister
JPYCurrency_swigregister(JPYCurrency)
class KRWCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_KRWCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_KRWCurrency
__del__ = lambda self : None;
KRWCurrency_swigregister = _QuantLib.KRWCurrency_swigregister
KRWCurrency_swigregister(KRWCurrency)
class KWDCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_KWDCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_KWDCurrency
__del__ = lambda self : None;
KWDCurrency_swigregister = _QuantLib.KWDCurrency_swigregister
KWDCurrency_swigregister(KWDCurrency)
class LTLCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_LTLCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_LTLCurrency
__del__ = lambda self : None;
LTLCurrency_swigregister = _QuantLib.LTLCurrency_swigregister
LTLCurrency_swigregister(LTLCurrency)
class LUFCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_LUFCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_LUFCurrency
__del__ = lambda self : None;
LUFCurrency_swigregister = _QuantLib.LUFCurrency_swigregister
LUFCurrency_swigregister(LUFCurrency)
class LVLCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_LVLCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_LVLCurrency
__del__ = lambda self : None;
LVLCurrency_swigregister = _QuantLib.LVLCurrency_swigregister
LVLCurrency_swigregister(LVLCurrency)
class MTLCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_MTLCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_MTLCurrency
__del__ = lambda self : None;
MTLCurrency_swigregister = _QuantLib.MTLCurrency_swigregister
MTLCurrency_swigregister(MTLCurrency)
class MXNCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_MXNCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_MXNCurrency
__del__ = lambda self : None;
MXNCurrency_swigregister = _QuantLib.MXNCurrency_swigregister
MXNCurrency_swigregister(MXNCurrency)
class NLGCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_NLGCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_NLGCurrency
__del__ = lambda self : None;
NLGCurrency_swigregister = _QuantLib.NLGCurrency_swigregister
NLGCurrency_swigregister(NLGCurrency)
class NOKCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_NOKCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_NOKCurrency
__del__ = lambda self : None;
NOKCurrency_swigregister = _QuantLib.NOKCurrency_swigregister
NOKCurrency_swigregister(NOKCurrency)
class NPRCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_NPRCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_NPRCurrency
__del__ = lambda self : None;
NPRCurrency_swigregister = _QuantLib.NPRCurrency_swigregister
NPRCurrency_swigregister(NPRCurrency)
class NZDCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_NZDCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_NZDCurrency
__del__ = lambda self : None;
NZDCurrency_swigregister = _QuantLib.NZDCurrency_swigregister
NZDCurrency_swigregister(NZDCurrency)
class PKRCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_PKRCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_PKRCurrency
__del__ = lambda self : None;
PKRCurrency_swigregister = _QuantLib.PKRCurrency_swigregister
PKRCurrency_swigregister(PKRCurrency)
class PLNCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_PLNCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_PLNCurrency
__del__ = lambda self : None;
PLNCurrency_swigregister = _QuantLib.PLNCurrency_swigregister
PLNCurrency_swigregister(PLNCurrency)
class PTECurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_PTECurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_PTECurrency
__del__ = lambda self : None;
PTECurrency_swigregister = _QuantLib.PTECurrency_swigregister
PTECurrency_swigregister(PTECurrency)
class ROLCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ROLCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ROLCurrency
__del__ = lambda self : None;
ROLCurrency_swigregister = _QuantLib.ROLCurrency_swigregister
ROLCurrency_swigregister(ROLCurrency)
class SARCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SARCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SARCurrency
__del__ = lambda self : None;
SARCurrency_swigregister = _QuantLib.SARCurrency_swigregister
SARCurrency_swigregister(SARCurrency)
class SEKCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SEKCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SEKCurrency
__del__ = lambda self : None;
SEKCurrency_swigregister = _QuantLib.SEKCurrency_swigregister
SEKCurrency_swigregister(SEKCurrency)
class SGDCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SGDCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SGDCurrency
__del__ = lambda self : None;
SGDCurrency_swigregister = _QuantLib.SGDCurrency_swigregister
SGDCurrency_swigregister(SGDCurrency)
class SITCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SITCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SITCurrency
__del__ = lambda self : None;
SITCurrency_swigregister = _QuantLib.SITCurrency_swigregister
SITCurrency_swigregister(SITCurrency)
class SKKCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SKKCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SKKCurrency
__del__ = lambda self : None;
SKKCurrency_swigregister = _QuantLib.SKKCurrency_swigregister
SKKCurrency_swigregister(SKKCurrency)
class THBCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_THBCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_THBCurrency
__del__ = lambda self : None;
THBCurrency_swigregister = _QuantLib.THBCurrency_swigregister
THBCurrency_swigregister(THBCurrency)
class TRLCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_TRLCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_TRLCurrency
__del__ = lambda self : None;
TRLCurrency_swigregister = _QuantLib.TRLCurrency_swigregister
TRLCurrency_swigregister(TRLCurrency)
class TRYCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_TRYCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_TRYCurrency
__del__ = lambda self : None;
TRYCurrency_swigregister = _QuantLib.TRYCurrency_swigregister
TRYCurrency_swigregister(TRYCurrency)
class TTDCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_TTDCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_TTDCurrency
__del__ = lambda self : None;
TTDCurrency_swigregister = _QuantLib.TTDCurrency_swigregister
TTDCurrency_swigregister(TTDCurrency)
class TWDCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_TWDCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_TWDCurrency
__del__ = lambda self : None;
TWDCurrency_swigregister = _QuantLib.TWDCurrency_swigregister
TWDCurrency_swigregister(TWDCurrency)
class USDCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_USDCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_USDCurrency
__del__ = lambda self : None;
USDCurrency_swigregister = _QuantLib.USDCurrency_swigregister
USDCurrency_swigregister(USDCurrency)
class VEBCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_VEBCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_VEBCurrency
__del__ = lambda self : None;
VEBCurrency_swigregister = _QuantLib.VEBCurrency_swigregister
VEBCurrency_swigregister(VEBCurrency)
class ZARCurrency(Currency):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ZARCurrency(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ZARCurrency
__del__ = lambda self : None;
ZARCurrency_swigregister = _QuantLib.ZARCurrency_swigregister
ZARCurrency_swigregister(ZARCurrency)
class LinearInterpolation(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_LinearInterpolation(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.LinearInterpolation___call__(*args)
__swig_destroy__ = _QuantLib.delete_LinearInterpolation
__del__ = lambda self : None;
LinearInterpolation_swigregister = _QuantLib.LinearInterpolation_swigregister
LinearInterpolation_swigregister(LinearInterpolation)
class LogLinearInterpolation(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_LogLinearInterpolation(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.LogLinearInterpolation___call__(*args)
__swig_destroy__ = _QuantLib.delete_LogLinearInterpolation
__del__ = lambda self : None;
LogLinearInterpolation_swigregister = _QuantLib.LogLinearInterpolation_swigregister
LogLinearInterpolation_swigregister(LogLinearInterpolation)
class BackwardFlatInterpolation(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BackwardFlatInterpolation(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.BackwardFlatInterpolation___call__(*args)
__swig_destroy__ = _QuantLib.delete_BackwardFlatInterpolation
__del__ = lambda self : None;
BackwardFlatInterpolation_swigregister = _QuantLib.BackwardFlatInterpolation_swigregister
BackwardFlatInterpolation_swigregister(BackwardFlatInterpolation)
class ForwardFlatInterpolation(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ForwardFlatInterpolation(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.ForwardFlatInterpolation___call__(*args)
__swig_destroy__ = _QuantLib.delete_ForwardFlatInterpolation
__del__ = lambda self : None;
ForwardFlatInterpolation_swigregister = _QuantLib.ForwardFlatInterpolation_swigregister
ForwardFlatInterpolation_swigregister(ForwardFlatInterpolation)
class CubicSpline(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CubicSpline(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.CubicSpline___call__(*args)
def derivative(*args): return _QuantLib.CubicSpline_derivative(*args)
def secondDerivative(*args): return _QuantLib.CubicSpline_secondDerivative(*args)
__swig_destroy__ = _QuantLib.delete_CubicSpline
__del__ = lambda self : None;
CubicSpline_swigregister = _QuantLib.CubicSpline_swigregister
CubicSpline_swigregister(CubicSpline)
class MonotonicCubicSpline(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_MonotonicCubicSpline(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.MonotonicCubicSpline___call__(*args)
def derivative(*args): return _QuantLib.MonotonicCubicSpline_derivative(*args)
def secondDerivative(*args): return _QuantLib.MonotonicCubicSpline_secondDerivative(*args)
__swig_destroy__ = _QuantLib.delete_MonotonicCubicSpline
__del__ = lambda self : None;
MonotonicCubicSpline_swigregister = _QuantLib.MonotonicCubicSpline_swigregister
MonotonicCubicSpline_swigregister(MonotonicCubicSpline)
class BilinearInterpolation(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BilinearInterpolation(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.BilinearInterpolation___call__(*args)
__swig_destroy__ = _QuantLib.delete_BilinearInterpolation
__del__ = lambda self : None;
BilinearInterpolation_swigregister = _QuantLib.BilinearInterpolation_swigregister
BilinearInterpolation_swigregister(BilinearInterpolation)
class BicubicSpline(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BicubicSpline(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.BicubicSpline___call__(*args)
__swig_destroy__ = _QuantLib.delete_BicubicSpline
__del__ = lambda self : None;
BicubicSpline_swigregister = _QuantLib.BicubicSpline_swigregister
BicubicSpline_swigregister(BicubicSpline)
class BackwardFlat(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BackwardFlat(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BackwardFlat
__del__ = lambda self : None;
BackwardFlat_swigregister = _QuantLib.BackwardFlat_swigregister
BackwardFlat_swigregister(BackwardFlat)
class ForwardFlat(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ForwardFlat(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ForwardFlat
__del__ = lambda self : None;
ForwardFlat_swigregister = _QuantLib.ForwardFlat_swigregister
ForwardFlat_swigregister(ForwardFlat)
class Linear(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Linear(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Linear
__del__ = lambda self : None;
Linear_swigregister = _QuantLib.Linear_swigregister
Linear_swigregister(Linear)
class LogLinear(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_LogLinear(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_LogLinear
__del__ = lambda self : None;
LogLinear_swigregister = _QuantLib.LogLinear_swigregister
LogLinear_swigregister(LogLinear)
class Cubic(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Cubic(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Cubic
__del__ = lambda self : None;
Cubic_swigregister = _QuantLib.Cubic_swigregister
Cubic_swigregister(Cubic)
class YieldTermStructure(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.YieldTermStructure___deref__(*args)
def __nonzero__(*args): return _QuantLib.YieldTermStructure___nonzero__(*args)
def asObservable(*args): return _QuantLib.YieldTermStructure_asObservable(*args)
def __init__(self, *args):
this = _QuantLib.new_YieldTermStructure(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_YieldTermStructure
__del__ = lambda self : None;
def dayCounter(*args): return _QuantLib.YieldTermStructure_dayCounter(*args)
def calendar(*args): return _QuantLib.YieldTermStructure_calendar(*args)
def referenceDate(*args): return _QuantLib.YieldTermStructure_referenceDate(*args)
def maxDate(*args): return _QuantLib.YieldTermStructure_maxDate(*args)
def maxTime(*args): return _QuantLib.YieldTermStructure_maxTime(*args)
def discount(*args): return _QuantLib.YieldTermStructure_discount(*args)
def zeroRate(*args): return _QuantLib.YieldTermStructure_zeroRate(*args)
def forwardRate(*args): return _QuantLib.YieldTermStructure_forwardRate(*args)
def enableExtrapolation(*args): return _QuantLib.YieldTermStructure_enableExtrapolation(*args)
def disableExtrapolation(*args): return _QuantLib.YieldTermStructure_disableExtrapolation(*args)
def allowsExtrapolation(*args): return _QuantLib.YieldTermStructure_allowsExtrapolation(*args)
YieldTermStructure_swigregister = _QuantLib.YieldTermStructure_swigregister
YieldTermStructure_swigregister(YieldTermStructure)
class YieldTermStructureHandle(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_YieldTermStructureHandle(*args)
try: self.this.append(this)
except: self.this = this
def __deref__(*args): return _QuantLib.YieldTermStructureHandle___deref__(*args)
def linkTo(*args): return _QuantLib.YieldTermStructureHandle_linkTo(*args)
def __nonzero__(*args): return _QuantLib.YieldTermStructureHandle___nonzero__(*args)
def asObservable(*args): return _QuantLib.YieldTermStructureHandle_asObservable(*args)
__swig_destroy__ = _QuantLib.delete_YieldTermStructureHandle
__del__ = lambda self : None;
def dayCounter(*args): return _QuantLib.YieldTermStructureHandle_dayCounter(*args)
def calendar(*args): return _QuantLib.YieldTermStructureHandle_calendar(*args)
def referenceDate(*args): return _QuantLib.YieldTermStructureHandle_referenceDate(*args)
def maxDate(*args): return _QuantLib.YieldTermStructureHandle_maxDate(*args)
def maxTime(*args): return _QuantLib.YieldTermStructureHandle_maxTime(*args)
def discount(*args): return _QuantLib.YieldTermStructureHandle_discount(*args)
def zeroRate(*args): return _QuantLib.YieldTermStructureHandle_zeroRate(*args)
def forwardRate(*args): return _QuantLib.YieldTermStructureHandle_forwardRate(*args)
def enableExtrapolation(*args): return _QuantLib.YieldTermStructureHandle_enableExtrapolation(*args)
def disableExtrapolation(*args): return _QuantLib.YieldTermStructureHandle_disableExtrapolation(*args)
def allowsExtrapolation(*args): return _QuantLib.YieldTermStructureHandle_allowsExtrapolation(*args)
YieldTermStructureHandle_swigregister = _QuantLib.YieldTermStructureHandle_swigregister
YieldTermStructureHandle_swigregister(YieldTermStructureHandle)
class ImpliedTermStructure(YieldTermStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ImpliedTermStructure(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ImpliedTermStructure
__del__ = lambda self : None;
ImpliedTermStructure_swigregister = _QuantLib.ImpliedTermStructure_swigregister
ImpliedTermStructure_swigregister(ImpliedTermStructure)
class ZeroSpreadedTermStructure(YieldTermStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ZeroSpreadedTermStructure(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ZeroSpreadedTermStructure
__del__ = lambda self : None;
ZeroSpreadedTermStructure_swigregister = _QuantLib.ZeroSpreadedTermStructure_swigregister
ZeroSpreadedTermStructure_swigregister(ZeroSpreadedTermStructure)
class ForwardSpreadedTermStructure(YieldTermStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ForwardSpreadedTermStructure(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ForwardSpreadedTermStructure
__del__ = lambda self : None;
ForwardSpreadedTermStructure_swigregister = _QuantLib.ForwardSpreadedTermStructure_swigregister
ForwardSpreadedTermStructure_swigregister(ForwardSpreadedTermStructure)
class FlatForward(YieldTermStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FlatForward(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FlatForward
__del__ = lambda self : None;
FlatForward_swigregister = _QuantLib.FlatForward_swigregister
FlatForward_swigregister(FlatForward)
class BlackModel(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.BlackModel___deref__(*args)
def __nonzero__(*args): return _QuantLib.BlackModel___nonzero__(*args)
def __init__(self, *args):
this = _QuantLib.new_BlackModel(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BlackModel
__del__ = lambda self : None;
BlackModel_swigregister = _QuantLib.BlackModel_swigregister
BlackModel_swigregister(BlackModel)
class PricingEngine(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.PricingEngine___deref__(*args)
def __nonzero__(*args): return _QuantLib.PricingEngine___nonzero__(*args)
def __init__(self, *args):
this = _QuantLib.new_PricingEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_PricingEngine
__del__ = lambda self : None;
PricingEngine_swigregister = _QuantLib.PricingEngine_swigregister
PricingEngine_swigregister(PricingEngine)
class Instrument(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.Instrument___deref__(*args)
def __nonzero__(*args): return _QuantLib.Instrument___nonzero__(*args)
def asObservable(*args): return _QuantLib.Instrument_asObservable(*args)
def __init__(self, *args):
this = _QuantLib.new_Instrument(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Instrument
__del__ = lambda self : None;
def NPV(*args): return _QuantLib.Instrument_NPV(*args)
def errorEstimate(*args): return _QuantLib.Instrument_errorEstimate(*args)
def isExpired(*args): return _QuantLib.Instrument_isExpired(*args)
def setPricingEngine(*args): return _QuantLib.Instrument_setPricingEngine(*args)
def recalculate(*args): return _QuantLib.Instrument_recalculate(*args)
def freeze(*args): return _QuantLib.Instrument_freeze(*args)
def unfreeze(*args): return _QuantLib.Instrument_unfreeze(*args)
Instrument_swigregister = _QuantLib.Instrument_swigregister
Instrument_swigregister(Instrument)
class Stock(Instrument):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Stock(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Stock
__del__ = lambda self : None;
Stock_swigregister = _QuantLib.Stock_swigregister
Stock_swigregister(Stock)
class IntVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.IntVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.IntVector___nonzero__(*args)
def __len__(*args): return _QuantLib.IntVector___len__(*args)
def pop(*args): return _QuantLib.IntVector_pop(*args)
def __getslice__(*args): return _QuantLib.IntVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.IntVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.IntVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.IntVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.IntVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.IntVector___setitem__(*args)
def append(*args): return _QuantLib.IntVector_append(*args)
def empty(*args): return _QuantLib.IntVector_empty(*args)
def size(*args): return _QuantLib.IntVector_size(*args)
def clear(*args): return _QuantLib.IntVector_clear(*args)
def swap(*args): return _QuantLib.IntVector_swap(*args)
def get_allocator(*args): return _QuantLib.IntVector_get_allocator(*args)
def begin(*args): return _QuantLib.IntVector_begin(*args)
def end(*args): return _QuantLib.IntVector_end(*args)
def rbegin(*args): return _QuantLib.IntVector_rbegin(*args)
def rend(*args): return _QuantLib.IntVector_rend(*args)
def pop_back(*args): return _QuantLib.IntVector_pop_back(*args)
def erase(*args): return _QuantLib.IntVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_IntVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.IntVector_push_back(*args)
def front(*args): return _QuantLib.IntVector_front(*args)
def back(*args): return _QuantLib.IntVector_back(*args)
def assign(*args): return _QuantLib.IntVector_assign(*args)
def resize(*args): return _QuantLib.IntVector_resize(*args)
def insert(*args): return _QuantLib.IntVector_insert(*args)
def reserve(*args): return _QuantLib.IntVector_reserve(*args)
def capacity(*args): return _QuantLib.IntVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_IntVector
__del__ = lambda self : None;
IntVector_swigregister = _QuantLib.IntVector_swigregister
IntVector_swigregister(IntVector)
class DoubleVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.DoubleVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.DoubleVector___nonzero__(*args)
def __len__(*args): return _QuantLib.DoubleVector___len__(*args)
def pop(*args): return _QuantLib.DoubleVector_pop(*args)
def __getslice__(*args): return _QuantLib.DoubleVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.DoubleVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.DoubleVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.DoubleVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.DoubleVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.DoubleVector___setitem__(*args)
def append(*args): return _QuantLib.DoubleVector_append(*args)
def empty(*args): return _QuantLib.DoubleVector_empty(*args)
def size(*args): return _QuantLib.DoubleVector_size(*args)
def clear(*args): return _QuantLib.DoubleVector_clear(*args)
def swap(*args): return _QuantLib.DoubleVector_swap(*args)
def get_allocator(*args): return _QuantLib.DoubleVector_get_allocator(*args)
def begin(*args): return _QuantLib.DoubleVector_begin(*args)
def end(*args): return _QuantLib.DoubleVector_end(*args)
def rbegin(*args): return _QuantLib.DoubleVector_rbegin(*args)
def rend(*args): return _QuantLib.DoubleVector_rend(*args)
def pop_back(*args): return _QuantLib.DoubleVector_pop_back(*args)
def erase(*args): return _QuantLib.DoubleVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_DoubleVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.DoubleVector_push_back(*args)
def front(*args): return _QuantLib.DoubleVector_front(*args)
def back(*args): return _QuantLib.DoubleVector_back(*args)
def assign(*args): return _QuantLib.DoubleVector_assign(*args)
def resize(*args): return _QuantLib.DoubleVector_resize(*args)
def insert(*args): return _QuantLib.DoubleVector_insert(*args)
def reserve(*args): return _QuantLib.DoubleVector_reserve(*args)
def capacity(*args): return _QuantLib.DoubleVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_DoubleVector
__del__ = lambda self : None;
DoubleVector_swigregister = _QuantLib.DoubleVector_swigregister
DoubleVector_swigregister(DoubleVector)
class StrVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.StrVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.StrVector___nonzero__(*args)
def __len__(*args): return _QuantLib.StrVector___len__(*args)
def pop(*args): return _QuantLib.StrVector_pop(*args)
def __getslice__(*args): return _QuantLib.StrVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.StrVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.StrVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.StrVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.StrVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.StrVector___setitem__(*args)
def append(*args): return _QuantLib.StrVector_append(*args)
def empty(*args): return _QuantLib.StrVector_empty(*args)
def size(*args): return _QuantLib.StrVector_size(*args)
def clear(*args): return _QuantLib.StrVector_clear(*args)
def swap(*args): return _QuantLib.StrVector_swap(*args)
def get_allocator(*args): return _QuantLib.StrVector_get_allocator(*args)
def begin(*args): return _QuantLib.StrVector_begin(*args)
def end(*args): return _QuantLib.StrVector_end(*args)
def rbegin(*args): return _QuantLib.StrVector_rbegin(*args)
def rend(*args): return _QuantLib.StrVector_rend(*args)
def pop_back(*args): return _QuantLib.StrVector_pop_back(*args)
def erase(*args): return _QuantLib.StrVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_StrVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.StrVector_push_back(*args)
def front(*args): return _QuantLib.StrVector_front(*args)
def back(*args): return _QuantLib.StrVector_back(*args)
def assign(*args): return _QuantLib.StrVector_assign(*args)
def resize(*args): return _QuantLib.StrVector_resize(*args)
def insert(*args): return _QuantLib.StrVector_insert(*args)
def reserve(*args): return _QuantLib.StrVector_reserve(*args)
def capacity(*args): return _QuantLib.StrVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_StrVector
__del__ = lambda self : None;
StrVector_swigregister = _QuantLib.StrVector_swigregister
StrVector_swigregister(StrVector)
class NodePair(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_NodePair(*args)
try: self.this.append(this)
except: self.this = this
first = property(_QuantLib.NodePair_first_get, _QuantLib.NodePair_first_set)
second = property(_QuantLib.NodePair_second_get, _QuantLib.NodePair_second_set)
def __len__(self): return 2
def __repr__(self): return str((self.first, self.second))
def __getitem__(self, index):
if not (index % 2):
return self.first
else:
return self.second
def __setitem__(self, index, val):
if not (index % 2):
self.first = val
else:
self.second = val
__swig_destroy__ = _QuantLib.delete_NodePair
__del__ = lambda self : None;
NodePair_swigregister = _QuantLib.NodePair_swigregister
NodePair_swigregister(NodePair)
class NodeVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.NodeVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.NodeVector___nonzero__(*args)
def __len__(*args): return _QuantLib.NodeVector___len__(*args)
def pop(*args): return _QuantLib.NodeVector_pop(*args)
def __getslice__(*args): return _QuantLib.NodeVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.NodeVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.NodeVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.NodeVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.NodeVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.NodeVector___setitem__(*args)
def append(*args): return _QuantLib.NodeVector_append(*args)
def empty(*args): return _QuantLib.NodeVector_empty(*args)
def size(*args): return _QuantLib.NodeVector_size(*args)
def clear(*args): return _QuantLib.NodeVector_clear(*args)
def swap(*args): return _QuantLib.NodeVector_swap(*args)
def get_allocator(*args): return _QuantLib.NodeVector_get_allocator(*args)
def begin(*args): return _QuantLib.NodeVector_begin(*args)
def end(*args): return _QuantLib.NodeVector_end(*args)
def rbegin(*args): return _QuantLib.NodeVector_rbegin(*args)
def rend(*args): return _QuantLib.NodeVector_rend(*args)
def pop_back(*args): return _QuantLib.NodeVector_pop_back(*args)
def erase(*args): return _QuantLib.NodeVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_NodeVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.NodeVector_push_back(*args)
def front(*args): return _QuantLib.NodeVector_front(*args)
def back(*args): return _QuantLib.NodeVector_back(*args)
def assign(*args): return _QuantLib.NodeVector_assign(*args)
def resize(*args): return _QuantLib.NodeVector_resize(*args)
def insert(*args): return _QuantLib.NodeVector_insert(*args)
def reserve(*args): return _QuantLib.NodeVector_reserve(*args)
def capacity(*args): return _QuantLib.NodeVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_NodeVector
__del__ = lambda self : None;
NodeVector_swigregister = _QuantLib.NodeVector_swigregister
NodeVector_swigregister(NodeVector)
class HistoryEntry(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
__swig_destroy__ = _QuantLib.delete_HistoryEntry
__del__ = lambda self : None;
HistoryEntry_swigregister = _QuantLib.HistoryEntry_swigregister
HistoryEntry_swigregister(HistoryEntry)
class HistoryIterator(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
def next(*args): return _QuantLib.HistoryIterator_next(*args)
__swig_destroy__ = _QuantLib.delete_HistoryIterator
__del__ = lambda self : None;
HistoryIterator_swigregister = _QuantLib.HistoryIterator_swigregister
HistoryIterator_swigregister(HistoryIterator)
class HistoryValidIterator(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
def next(*args): return _QuantLib.HistoryValidIterator_next(*args)
def __iter__(*args): return _QuantLib.HistoryValidIterator___iter__(*args)
__swig_destroy__ = _QuantLib.delete_HistoryValidIterator
__del__ = lambda self : None;
HistoryValidIterator_swigregister = _QuantLib.HistoryValidIterator_swigregister
HistoryValidIterator_swigregister(HistoryValidIterator)
class History(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_History(*args)
try: self.this.append(this)
except: self.this = this
def firstDate(*args): return _QuantLib.History_firstDate(*args)
def lastDate(*args): return _QuantLib.History_lastDate(*args)
def __len__(*args): return _QuantLib.History___len__(*args)
def __getitem__(*args): return _QuantLib.History___getitem__(*args)
def __iter__(*args): return _QuantLib.History___iter__(*args)
def valid(*args): return _QuantLib.History_valid(*args)
__swig_destroy__ = _QuantLib.delete_History
__del__ = lambda self : None;
History_swigregister = _QuantLib.History_swigregister
History_swigregister(History)
History._old___init__ = History.__init__
def History_new___init__(self,dates,values):
values = values[:]
for i in range(len(values)):
if values[i] is None:
values[i] = nullDouble()
self._old___init__(dates,values)
History.__init__ = History_new___init__
class IndexManager(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
instance = staticmethod(_QuantLib.IndexManager_instance)
def setHistory(*args): return _QuantLib.IndexManager_setHistory(*args)
def getHistory(*args): return _QuantLib.IndexManager_getHistory(*args)
def hasHistory(*args): return _QuantLib.IndexManager_hasHistory(*args)
def histories(*args): return _QuantLib.IndexManager_histories(*args)
__swig_destroy__ = _QuantLib.delete_IndexManager
__del__ = lambda self : None;
IndexManager_swigregister = _QuantLib.IndexManager_swigregister
IndexManager_swigregister(IndexManager)
IndexManager_instance = _QuantLib.IndexManager_instance
class Index(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.Index___deref__(*args)
def __nonzero__(*args): return _QuantLib.Index___nonzero__(*args)
def addFixings(*args): return _QuantLib.Index_addFixings(*args)
def __str__(*args): return _QuantLib.Index___str__(*args)
def __init__(self, *args):
this = _QuantLib.new_Index(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Index
__del__ = lambda self : None;
def fixing(*args): return _QuantLib.Index_fixing(*args)
def name(*args): return _QuantLib.Index_name(*args)
def addFixing(*args): return _QuantLib.Index_addFixing(*args)
Index_swigregister = _QuantLib.Index_swigregister
Index_swigregister(Index)
class Xibor(Index):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Xibor(*args)
try: self.this.append(this)
except: self.this = this
def tenor(*args): return _QuantLib.Xibor_tenor(*args)
def frequency(*args): return _QuantLib.Xibor_frequency(*args)
def currency(*args): return _QuantLib.Xibor_currency(*args)
def calendar(*args): return _QuantLib.Xibor_calendar(*args)
def isAdjusted(*args): return _QuantLib.Xibor_isAdjusted(*args)
def businessDayConvention(*args): return _QuantLib.Xibor_businessDayConvention(*args)
def dayCounter(*args): return _QuantLib.Xibor_dayCounter(*args)
__swig_destroy__ = _QuantLib.delete_Xibor
__del__ = lambda self : None;
Xibor_swigregister = _QuantLib.Xibor_swigregister
Xibor_swigregister(Xibor)
class AUDLibor(Xibor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_AUDLibor(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_AUDLibor
__del__ = lambda self : None;
AUDLibor_swigregister = _QuantLib.AUDLibor_swigregister
AUDLibor_swigregister(AUDLibor)
class CADLibor(Xibor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CADLibor(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CADLibor
__del__ = lambda self : None;
CADLibor_swigregister = _QuantLib.CADLibor_swigregister
CADLibor_swigregister(CADLibor)
class Cdor(Xibor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Cdor(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Cdor
__del__ = lambda self : None;
Cdor_swigregister = _QuantLib.Cdor_swigregister
Cdor_swigregister(Cdor)
class CHFLibor(Xibor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CHFLibor(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CHFLibor
__del__ = lambda self : None;
CHFLibor_swigregister = _QuantLib.CHFLibor_swigregister
CHFLibor_swigregister(CHFLibor)
class Euribor(Xibor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Euribor(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Euribor
__del__ = lambda self : None;
Euribor_swigregister = _QuantLib.Euribor_swigregister
Euribor_swigregister(Euribor)
class GBPLibor(Xibor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_GBPLibor(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_GBPLibor
__del__ = lambda self : None;
GBPLibor_swigregister = _QuantLib.GBPLibor_swigregister
GBPLibor_swigregister(GBPLibor)
class Jibar(Xibor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Jibar(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Jibar
__del__ = lambda self : None;
Jibar_swigregister = _QuantLib.Jibar_swigregister
Jibar_swigregister(Jibar)
class JPYLibor(Xibor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_JPYLibor(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_JPYLibor
__del__ = lambda self : None;
JPYLibor_swigregister = _QuantLib.JPYLibor_swigregister
JPYLibor_swigregister(JPYLibor)
class Tibor(Xibor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Tibor(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Tibor
__del__ = lambda self : None;
Tibor_swigregister = _QuantLib.Tibor_swigregister
Tibor_swigregister(Tibor)
class TRLibor(Xibor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_TRLibor(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_TRLibor
__del__ = lambda self : None;
TRLibor_swigregister = _QuantLib.TRLibor_swigregister
TRLibor_swigregister(TRLibor)
class USDLibor(Xibor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_USDLibor(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_USDLibor
__del__ = lambda self : None;
USDLibor_swigregister = _QuantLib.USDLibor_swigregister
USDLibor_swigregister(USDLibor)
class Zibor(Xibor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Zibor(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Zibor
__del__ = lambda self : None;
Zibor_swigregister = _QuantLib.Zibor_swigregister
Zibor_swigregister(Zibor)
class Schedule(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Schedule(*args)
try: self.this.append(this)
except: self.this = this
def __len__(*args): return _QuantLib.Schedule___len__(*args)
def isRegular(*args): return _QuantLib.Schedule_isRegular(*args)
def __getitem__(*args): return _QuantLib.Schedule___getitem__(*args)
__swig_destroy__ = _QuantLib.delete_Schedule
__del__ = lambda self : None;
Schedule_swigregister = _QuantLib.Schedule_swigregister
Schedule_swigregister(Schedule)
class BlackVolTermStructure(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.BlackVolTermStructure___deref__(*args)
def __nonzero__(*args): return _QuantLib.BlackVolTermStructure___nonzero__(*args)
def asObservable(*args): return _QuantLib.BlackVolTermStructure_asObservable(*args)
def __init__(self, *args):
this = _QuantLib.new_BlackVolTermStructure(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BlackVolTermStructure
__del__ = lambda self : None;
def referenceDate(*args): return _QuantLib.BlackVolTermStructure_referenceDate(*args)
def dayCounter(*args): return _QuantLib.BlackVolTermStructure_dayCounter(*args)
def calendar(*args): return _QuantLib.BlackVolTermStructure_calendar(*args)
def maxDate(*args): return _QuantLib.BlackVolTermStructure_maxDate(*args)
def maxTime(*args): return _QuantLib.BlackVolTermStructure_maxTime(*args)
def minStrike(*args): return _QuantLib.BlackVolTermStructure_minStrike(*args)
def maxStrike(*args): return _QuantLib.BlackVolTermStructure_maxStrike(*args)
def blackVol(*args): return _QuantLib.BlackVolTermStructure_blackVol(*args)
def blackVariance(*args): return _QuantLib.BlackVolTermStructure_blackVariance(*args)
def blackForwardVol(*args): return _QuantLib.BlackVolTermStructure_blackForwardVol(*args)
def blackForwardVariance(*args): return _QuantLib.BlackVolTermStructure_blackForwardVariance(*args)
def enableExtrapolation(*args): return _QuantLib.BlackVolTermStructure_enableExtrapolation(*args)
def disableExtrapolation(*args): return _QuantLib.BlackVolTermStructure_disableExtrapolation(*args)
def allowsExtrapolation(*args): return _QuantLib.BlackVolTermStructure_allowsExtrapolation(*args)
BlackVolTermStructure_swigregister = _QuantLib.BlackVolTermStructure_swigregister
BlackVolTermStructure_swigregister(BlackVolTermStructure)
class BlackVolTermStructureHandle(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BlackVolTermStructureHandle(*args)
try: self.this.append(this)
except: self.this = this
def __deref__(*args): return _QuantLib.BlackVolTermStructureHandle___deref__(*args)
def linkTo(*args): return _QuantLib.BlackVolTermStructureHandle_linkTo(*args)
def __nonzero__(*args): return _QuantLib.BlackVolTermStructureHandle___nonzero__(*args)
def asObservable(*args): return _QuantLib.BlackVolTermStructureHandle_asObservable(*args)
__swig_destroy__ = _QuantLib.delete_BlackVolTermStructureHandle
__del__ = lambda self : None;
def referenceDate(*args): return _QuantLib.BlackVolTermStructureHandle_referenceDate(*args)
def dayCounter(*args): return _QuantLib.BlackVolTermStructureHandle_dayCounter(*args)
def calendar(*args): return _QuantLib.BlackVolTermStructureHandle_calendar(*args)
def maxDate(*args): return _QuantLib.BlackVolTermStructureHandle_maxDate(*args)
def maxTime(*args): return _QuantLib.BlackVolTermStructureHandle_maxTime(*args)
def minStrike(*args): return _QuantLib.BlackVolTermStructureHandle_minStrike(*args)
def maxStrike(*args): return _QuantLib.BlackVolTermStructureHandle_maxStrike(*args)
def blackVol(*args): return _QuantLib.BlackVolTermStructureHandle_blackVol(*args)
def blackVariance(*args): return _QuantLib.BlackVolTermStructureHandle_blackVariance(*args)
def blackForwardVol(*args): return _QuantLib.BlackVolTermStructureHandle_blackForwardVol(*args)
def blackForwardVariance(*args): return _QuantLib.BlackVolTermStructureHandle_blackForwardVariance(*args)
def enableExtrapolation(*args): return _QuantLib.BlackVolTermStructureHandle_enableExtrapolation(*args)
def disableExtrapolation(*args): return _QuantLib.BlackVolTermStructureHandle_disableExtrapolation(*args)
def allowsExtrapolation(*args): return _QuantLib.BlackVolTermStructureHandle_allowsExtrapolation(*args)
BlackVolTermStructureHandle_swigregister = _QuantLib.BlackVolTermStructureHandle_swigregister
BlackVolTermStructureHandle_swigregister(BlackVolTermStructureHandle)
class LocalVolTermStructure(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.LocalVolTermStructure___deref__(*args)
def __nonzero__(*args): return _QuantLib.LocalVolTermStructure___nonzero__(*args)
def asObservable(*args): return _QuantLib.LocalVolTermStructure_asObservable(*args)
def __init__(self, *args):
this = _QuantLib.new_LocalVolTermStructure(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_LocalVolTermStructure
__del__ = lambda self : None;
def referenceDate(*args): return _QuantLib.LocalVolTermStructure_referenceDate(*args)
def dayCounter(*args): return _QuantLib.LocalVolTermStructure_dayCounter(*args)
def calendar(*args): return _QuantLib.LocalVolTermStructure_calendar(*args)
def maxDate(*args): return _QuantLib.LocalVolTermStructure_maxDate(*args)
def maxTime(*args): return _QuantLib.LocalVolTermStructure_maxTime(*args)
def minStrike(*args): return _QuantLib.LocalVolTermStructure_minStrike(*args)
def maxStrike(*args): return _QuantLib.LocalVolTermStructure_maxStrike(*args)
def localVol(*args): return _QuantLib.LocalVolTermStructure_localVol(*args)
def enableExtrapolation(*args): return _QuantLib.LocalVolTermStructure_enableExtrapolation(*args)
def disableExtrapolation(*args): return _QuantLib.LocalVolTermStructure_disableExtrapolation(*args)
def allowsExtrapolation(*args): return _QuantLib.LocalVolTermStructure_allowsExtrapolation(*args)
LocalVolTermStructure_swigregister = _QuantLib.LocalVolTermStructure_swigregister
LocalVolTermStructure_swigregister(LocalVolTermStructure)
class LocalVolTermStructureHandle(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_LocalVolTermStructureHandle(*args)
try: self.this.append(this)
except: self.this = this
def __deref__(*args): return _QuantLib.LocalVolTermStructureHandle___deref__(*args)
def linkTo(*args): return _QuantLib.LocalVolTermStructureHandle_linkTo(*args)
def __nonzero__(*args): return _QuantLib.LocalVolTermStructureHandle___nonzero__(*args)
def asObservable(*args): return _QuantLib.LocalVolTermStructureHandle_asObservable(*args)
__swig_destroy__ = _QuantLib.delete_LocalVolTermStructureHandle
__del__ = lambda self : None;
def referenceDate(*args): return _QuantLib.LocalVolTermStructureHandle_referenceDate(*args)
def dayCounter(*args): return _QuantLib.LocalVolTermStructureHandle_dayCounter(*args)
def calendar(*args): return _QuantLib.LocalVolTermStructureHandle_calendar(*args)
def maxDate(*args): return _QuantLib.LocalVolTermStructureHandle_maxDate(*args)
def maxTime(*args): return _QuantLib.LocalVolTermStructureHandle_maxTime(*args)
def minStrike(*args): return _QuantLib.LocalVolTermStructureHandle_minStrike(*args)
def maxStrike(*args): return _QuantLib.LocalVolTermStructureHandle_maxStrike(*args)
def localVol(*args): return _QuantLib.LocalVolTermStructureHandle_localVol(*args)
def enableExtrapolation(*args): return _QuantLib.LocalVolTermStructureHandle_enableExtrapolation(*args)
def disableExtrapolation(*args): return _QuantLib.LocalVolTermStructureHandle_disableExtrapolation(*args)
def allowsExtrapolation(*args): return _QuantLib.LocalVolTermStructureHandle_allowsExtrapolation(*args)
LocalVolTermStructureHandle_swigregister = _QuantLib.LocalVolTermStructureHandle_swigregister
LocalVolTermStructureHandle_swigregister(LocalVolTermStructureHandle)
class CapletVolatilityStructure(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.CapletVolatilityStructure___deref__(*args)
def __nonzero__(*args): return _QuantLib.CapletVolatilityStructure___nonzero__(*args)
def asObservable(*args): return _QuantLib.CapletVolatilityStructure_asObservable(*args)
def __init__(self, *args):
this = _QuantLib.new_CapletVolatilityStructure(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CapletVolatilityStructure
__del__ = lambda self : None;
def referenceDate(*args): return _QuantLib.CapletVolatilityStructure_referenceDate(*args)
def dayCounter(*args): return _QuantLib.CapletVolatilityStructure_dayCounter(*args)
def calendar(*args): return _QuantLib.CapletVolatilityStructure_calendar(*args)
def maxDate(*args): return _QuantLib.CapletVolatilityStructure_maxDate(*args)
def maxTime(*args): return _QuantLib.CapletVolatilityStructure_maxTime(*args)
def minStrike(*args): return _QuantLib.CapletVolatilityStructure_minStrike(*args)
def maxStrike(*args): return _QuantLib.CapletVolatilityStructure_maxStrike(*args)
def volatility(*args): return _QuantLib.CapletVolatilityStructure_volatility(*args)
def enableExtrapolation(*args): return _QuantLib.CapletVolatilityStructure_enableExtrapolation(*args)
def disableExtrapolation(*args): return _QuantLib.CapletVolatilityStructure_disableExtrapolation(*args)
def allowsExtrapolation(*args): return _QuantLib.CapletVolatilityStructure_allowsExtrapolation(*args)
CapletVolatilityStructure_swigregister = _QuantLib.CapletVolatilityStructure_swigregister
CapletVolatilityStructure_swigregister(CapletVolatilityStructure)
class CapletVolatilityStructureHandle(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CapletVolatilityStructureHandle(*args)
try: self.this.append(this)
except: self.this = this
def __deref__(*args): return _QuantLib.CapletVolatilityStructureHandle___deref__(*args)
def linkTo(*args): return _QuantLib.CapletVolatilityStructureHandle_linkTo(*args)
def __nonzero__(*args): return _QuantLib.CapletVolatilityStructureHandle___nonzero__(*args)
def asObservable(*args): return _QuantLib.CapletVolatilityStructureHandle_asObservable(*args)
__swig_destroy__ = _QuantLib.delete_CapletVolatilityStructureHandle
__del__ = lambda self : None;
def referenceDate(*args): return _QuantLib.CapletVolatilityStructureHandle_referenceDate(*args)
def dayCounter(*args): return _QuantLib.CapletVolatilityStructureHandle_dayCounter(*args)
def calendar(*args): return _QuantLib.CapletVolatilityStructureHandle_calendar(*args)
def maxDate(*args): return _QuantLib.CapletVolatilityStructureHandle_maxDate(*args)
def maxTime(*args): return _QuantLib.CapletVolatilityStructureHandle_maxTime(*args)
def minStrike(*args): return _QuantLib.CapletVolatilityStructureHandle_minStrike(*args)
def maxStrike(*args): return _QuantLib.CapletVolatilityStructureHandle_maxStrike(*args)
def volatility(*args): return _QuantLib.CapletVolatilityStructureHandle_volatility(*args)
def enableExtrapolation(*args): return _QuantLib.CapletVolatilityStructureHandle_enableExtrapolation(*args)
def disableExtrapolation(*args): return _QuantLib.CapletVolatilityStructureHandle_disableExtrapolation(*args)
def allowsExtrapolation(*args): return _QuantLib.CapletVolatilityStructureHandle_allowsExtrapolation(*args)
CapletVolatilityStructureHandle_swigregister = _QuantLib.CapletVolatilityStructureHandle_swigregister
CapletVolatilityStructureHandle_swigregister(CapletVolatilityStructureHandle)
class BlackConstantVol(BlackVolTermStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BlackConstantVol(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BlackConstantVol
__del__ = lambda self : None;
BlackConstantVol_swigregister = _QuantLib.BlackConstantVol_swigregister
BlackConstantVol_swigregister(BlackConstantVol)
class BlackVarianceSurface(BlackVolTermStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BlackVarianceSurface(*args)
try: self.this.append(this)
except: self.this = this
ConstantExtrapolation = _QuantLib.BlackVarianceSurface_ConstantExtrapolation
InterpolatorDefaultExtrapolation = _QuantLib.BlackVarianceSurface_InterpolatorDefaultExtrapolation
__swig_destroy__ = _QuantLib.delete_BlackVarianceSurface
__del__ = lambda self : None;
BlackVarianceSurface_swigregister = _QuantLib.BlackVarianceSurface_swigregister
BlackVarianceSurface_swigregister(BlackVarianceSurface)
class LocalConstantVol(LocalVolTermStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_LocalConstantVol(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_LocalConstantVol
__del__ = lambda self : None;
LocalConstantVol_swigregister = _QuantLib.LocalConstantVol_swigregister
LocalConstantVol_swigregister(LocalConstantVol)
class CapletConstantVolatility(CapletVolatilityStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CapletConstantVolatility(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CapletConstantVolatility
__del__ = lambda self : None;
CapletConstantVolatility_swigregister = _QuantLib.CapletConstantVolatility_swigregister
CapletConstantVolatility_swigregister(CapletConstantVolatility)
class CashFlow(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.CashFlow___deref__(*args)
def __nonzero__(*args): return _QuantLib.CashFlow___nonzero__(*args)
def asObservable(*args): return _QuantLib.CashFlow_asObservable(*args)
def __init__(self, *args):
this = _QuantLib.new_CashFlow(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CashFlow
__del__ = lambda self : None;
def amount(*args): return _QuantLib.CashFlow_amount(*args)
def date(*args): return _QuantLib.CashFlow_date(*args)
CashFlow_swigregister = _QuantLib.CashFlow_swigregister
CashFlow_swigregister(CashFlow)
class SimpleCashFlow(CashFlow):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SimpleCashFlow(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SimpleCashFlow
__del__ = lambda self : None;
SimpleCashFlow_swigregister = _QuantLib.SimpleCashFlow_swigregister
SimpleCashFlow_swigregister(SimpleCashFlow)
class FixedRateCoupon(CashFlow):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FixedRateCoupon(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FixedRateCoupon
__del__ = lambda self : None;
FixedRateCoupon_swigregister = _QuantLib.FixedRateCoupon_swigregister
FixedRateCoupon_swigregister(FixedRateCoupon)
class ParCoupon(CashFlow):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ParCoupon(*args)
try: self.this.append(this)
except: self.this = this
def accrualStartDate(*args): return _QuantLib.ParCoupon_accrualStartDate(*args)
def accrualEndDate(*args): return _QuantLib.ParCoupon_accrualEndDate(*args)
def rate(*args): return _QuantLib.ParCoupon_rate(*args)
def indexFixing(*args): return _QuantLib.ParCoupon_indexFixing(*args)
def nominal(*args): return _QuantLib.ParCoupon_nominal(*args)
__swig_destroy__ = _QuantLib.delete_ParCoupon
__del__ = lambda self : None;
ParCoupon_swigregister = _QuantLib.ParCoupon_swigregister
ParCoupon_swigregister(ParCoupon)
class FloatingRateCoupon(CashFlow):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def rate(*args): return _QuantLib.FloatingRateCoupon_rate(*args)
def fixingDays(*args): return _QuantLib.FloatingRateCoupon_fixingDays(*args)
def spread(*args): return _QuantLib.FloatingRateCoupon_spread(*args)
def indexFixing(*args): return _QuantLib.FloatingRateCoupon_indexFixing(*args)
def fixingDate(*args): return _QuantLib.FloatingRateCoupon_fixingDate(*args)
def __init__(self, *args):
this = _QuantLib.new_FloatingRateCoupon(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FloatingRateCoupon
__del__ = lambda self : None;
FloatingRateCoupon_swigregister = _QuantLib.FloatingRateCoupon_swigregister
FloatingRateCoupon_swigregister(FloatingRateCoupon)
class IndexedCoupon(FloatingRateCoupon):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_IndexedCoupon(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_IndexedCoupon
__del__ = lambda self : None;
IndexedCoupon_swigregister = _QuantLib.IndexedCoupon_swigregister
IndexedCoupon_swigregister(IndexedCoupon)
class UpFrontIndexedCoupon(IndexedCoupon):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_UpFrontIndexedCoupon(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_UpFrontIndexedCoupon
__del__ = lambda self : None;
UpFrontIndexedCoupon_swigregister = _QuantLib.UpFrontIndexedCoupon_swigregister
UpFrontIndexedCoupon_swigregister(UpFrontIndexedCoupon)
class InArrearIndexedCoupon(IndexedCoupon):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_InArrearIndexedCoupon(*args)
try: self.this.append(this)
except: self.this = this
def setCapletVolatility(*args): return _QuantLib.InArrearIndexedCoupon_setCapletVolatility(*args)
__swig_destroy__ = _QuantLib.delete_InArrearIndexedCoupon
__del__ = lambda self : None;
InArrearIndexedCoupon_swigregister = _QuantLib.InArrearIndexedCoupon_swigregister
InArrearIndexedCoupon_swigregister(InArrearIndexedCoupon)
class CashFlowVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.CashFlowVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.CashFlowVector___nonzero__(*args)
def __len__(*args): return _QuantLib.CashFlowVector___len__(*args)
def pop(*args): return _QuantLib.CashFlowVector_pop(*args)
def __getslice__(*args): return _QuantLib.CashFlowVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.CashFlowVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.CashFlowVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.CashFlowVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.CashFlowVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.CashFlowVector___setitem__(*args)
def append(*args): return _QuantLib.CashFlowVector_append(*args)
def empty(*args): return _QuantLib.CashFlowVector_empty(*args)
def size(*args): return _QuantLib.CashFlowVector_size(*args)
def clear(*args): return _QuantLib.CashFlowVector_clear(*args)
def swap(*args): return _QuantLib.CashFlowVector_swap(*args)
def get_allocator(*args): return _QuantLib.CashFlowVector_get_allocator(*args)
def begin(*args): return _QuantLib.CashFlowVector_begin(*args)
def end(*args): return _QuantLib.CashFlowVector_end(*args)
def rbegin(*args): return _QuantLib.CashFlowVector_rbegin(*args)
def rend(*args): return _QuantLib.CashFlowVector_rend(*args)
def pop_back(*args): return _QuantLib.CashFlowVector_pop_back(*args)
def erase(*args): return _QuantLib.CashFlowVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_CashFlowVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.CashFlowVector_push_back(*args)
def front(*args): return _QuantLib.CashFlowVector_front(*args)
def back(*args): return _QuantLib.CashFlowVector_back(*args)
def assign(*args): return _QuantLib.CashFlowVector_assign(*args)
def resize(*args): return _QuantLib.CashFlowVector_resize(*args)
def insert(*args): return _QuantLib.CashFlowVector_insert(*args)
def reserve(*args): return _QuantLib.CashFlowVector_reserve(*args)
def capacity(*args): return _QuantLib.CashFlowVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_CashFlowVector
__del__ = lambda self : None;
CashFlowVector_swigregister = _QuantLib.CashFlowVector_swigregister
CashFlowVector_swigregister(CashFlowVector)
class Duration(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
Simple = _QuantLib.Duration_Simple
Macaulay = _QuantLib.Duration_Macaulay
Modified = _QuantLib.Duration_Modified
def __init__(self, *args):
this = _QuantLib.new_Duration(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Duration
__del__ = lambda self : None;
Duration_swigregister = _QuantLib.Duration_swigregister
Duration_swigregister(Duration)
FixedRateCouponVector = _QuantLib.FixedRateCouponVector
FloatingRateCouponVector = _QuantLib.FloatingRateCouponVector
ParCouponVector = _QuantLib.ParCouponVector
InArrearIndexedCouponVector = _QuantLib.InArrearIndexedCouponVector
class Cashflows(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
npv = staticmethod(_QuantLib.Cashflows_npv)
irr = staticmethod(_QuantLib.Cashflows_irr)
duration = staticmethod(_QuantLib.Cashflows_duration)
convexity = staticmethod(_QuantLib.Cashflows_convexity)
__swig_destroy__ = _QuantLib.delete_Cashflows
__del__ = lambda self : None;
Cashflows_swigregister = _QuantLib.Cashflows_swigregister
Cashflows_swigregister(Cashflows)
Cashflows_npv = _QuantLib.Cashflows_npv
Cashflows_irr = _QuantLib.Cashflows_irr
Cashflows_duration = _QuantLib.Cashflows_duration
Cashflows_convexity = _QuantLib.Cashflows_convexity
class Bond(Instrument):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
def settlementDate(*args): return _QuantLib.Bond_settlementDate(*args)
def cashflows(*args): return _QuantLib.Bond_cashflows(*args)
def redemption(*args): return _QuantLib.Bond_redemption(*args)
def calendar(*args): return _QuantLib.Bond_calendar(*args)
def accrualConvention(*args): return _QuantLib.Bond_accrualConvention(*args)
def paymentConvention(*args): return _QuantLib.Bond_paymentConvention(*args)
def dayCounter(*args): return _QuantLib.Bond_dayCounter(*args)
def frequency(*args): return _QuantLib.Bond_frequency(*args)
def cleanPrice(*args): return _QuantLib.Bond_cleanPrice(*args)
def dirtyPrice(*args): return _QuantLib.Bond_dirtyPrice(*args)
def bondYield(*args): return _QuantLib.Bond_bondYield(*args)
def accruedAmount(*args): return _QuantLib.Bond_accruedAmount(*args)
__swig_destroy__ = _QuantLib.delete_Bond
__del__ = lambda self : None;
Bond_swigregister = _QuantLib.Bond_swigregister
Bond_swigregister(Bond)
class ZeroCouponBond(Bond):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ZeroCouponBond(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ZeroCouponBond
__del__ = lambda self : None;
ZeroCouponBond_swigregister = _QuantLib.ZeroCouponBond_swigregister
ZeroCouponBond_swigregister(ZeroCouponBond)
class FixedCouponBond(Bond):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FixedCouponBond(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FixedCouponBond
__del__ = lambda self : None;
FixedCouponBond_swigregister = _QuantLib.FixedCouponBond_swigregister
FixedCouponBond_swigregister(FixedCouponBond)
class FloatingRateBond(Bond):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FloatingRateBond(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FloatingRateBond
__del__ = lambda self : None;
FloatingRateBond_swigregister = _QuantLib.FloatingRateBond_swigregister
FloatingRateBond_swigregister(FloatingRateBond)
class Price(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
Dirty = _QuantLib.Price_Dirty
Clean = _QuantLib.Price_Clean
def __init__(self, *args):
this = _QuantLib.new_Price(*args)
try: self.this.append(this)
except: self.this = this
def amount(*args): return _QuantLib.Price_amount(*args)
def type(*args): return _QuantLib.Price_type(*args)
__swig_destroy__ = _QuantLib.delete_Price
__del__ = lambda self : None;
Price_swigregister = _QuantLib.Price_swigregister
Price_swigregister(Price)
class Callability(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.Callability___deref__(*args)
def __nonzero__(*args): return _QuantLib.Callability___nonzero__(*args)
Call = _QuantLib.Callability_Call
Put = _QuantLib.Callability_Put
def __init__(self, *args):
this = _QuantLib.new_Callability(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Callability
__del__ = lambda self : None;
def price(*args): return _QuantLib.Callability_price(*args)
def type(*args): return _QuantLib.Callability_type(*args)
def date(*args): return _QuantLib.Callability_date(*args)
Callability_swigregister = _QuantLib.Callability_swigregister
Callability_swigregister(Callability)
class SoftCallability(Callability):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SoftCallability(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SoftCallability
__del__ = lambda self : None;
SoftCallability_swigregister = _QuantLib.SoftCallability_swigregister
SoftCallability_swigregister(SoftCallability)
class CallabilityVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.CallabilityVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.CallabilityVector___nonzero__(*args)
def __len__(*args): return _QuantLib.CallabilityVector___len__(*args)
def pop(*args): return _QuantLib.CallabilityVector_pop(*args)
def __getslice__(*args): return _QuantLib.CallabilityVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.CallabilityVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.CallabilityVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.CallabilityVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.CallabilityVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.CallabilityVector___setitem__(*args)
def append(*args): return _QuantLib.CallabilityVector_append(*args)
def empty(*args): return _QuantLib.CallabilityVector_empty(*args)
def size(*args): return _QuantLib.CallabilityVector_size(*args)
def clear(*args): return _QuantLib.CallabilityVector_clear(*args)
def swap(*args): return _QuantLib.CallabilityVector_swap(*args)
def get_allocator(*args): return _QuantLib.CallabilityVector_get_allocator(*args)
def begin(*args): return _QuantLib.CallabilityVector_begin(*args)
def end(*args): return _QuantLib.CallabilityVector_end(*args)
def rbegin(*args): return _QuantLib.CallabilityVector_rbegin(*args)
def rend(*args): return _QuantLib.CallabilityVector_rend(*args)
def pop_back(*args): return _QuantLib.CallabilityVector_pop_back(*args)
def erase(*args): return _QuantLib.CallabilityVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_CallabilityVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.CallabilityVector_push_back(*args)
def front(*args): return _QuantLib.CallabilityVector_front(*args)
def back(*args): return _QuantLib.CallabilityVector_back(*args)
def assign(*args): return _QuantLib.CallabilityVector_assign(*args)
def resize(*args): return _QuantLib.CallabilityVector_resize(*args)
def insert(*args): return _QuantLib.CallabilityVector_insert(*args)
def reserve(*args): return _QuantLib.CallabilityVector_reserve(*args)
def capacity(*args): return _QuantLib.CallabilityVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_CallabilityVector
__del__ = lambda self : None;
CallabilityVector_swigregister = _QuantLib.CallabilityVector_swigregister
CallabilityVector_swigregister(CallabilityVector)
class Exercise(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.Exercise___deref__(*args)
def __nonzero__(*args): return _QuantLib.Exercise___nonzero__(*args)
American = _QuantLib.Exercise_American
Bermudan = _QuantLib.Exercise_Bermudan
European = _QuantLib.Exercise_European
def __init__(self, *args):
this = _QuantLib.new_Exercise(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Exercise
__del__ = lambda self : None;
def type(*args): return _QuantLib.Exercise_type(*args)
def dates(*args): return _QuantLib.Exercise_dates(*args)
Exercise_swigregister = _QuantLib.Exercise_swigregister
Exercise_swigregister(Exercise)
class EuropeanExercise(Exercise):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_EuropeanExercise(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_EuropeanExercise
__del__ = lambda self : None;
EuropeanExercise_swigregister = _QuantLib.EuropeanExercise_swigregister
EuropeanExercise_swigregister(EuropeanExercise)
class AmericanExercise(Exercise):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_AmericanExercise(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_AmericanExercise
__del__ = lambda self : None;
AmericanExercise_swigregister = _QuantLib.AmericanExercise_swigregister
AmericanExercise_swigregister(AmericanExercise)
class BermudanExercise(Exercise):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BermudanExercise(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BermudanExercise
__del__ = lambda self : None;
BermudanExercise_swigregister = _QuantLib.BermudanExercise_swigregister
BermudanExercise_swigregister(BermudanExercise)
class StochasticProcess(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.StochasticProcess___deref__(*args)
def __nonzero__(*args): return _QuantLib.StochasticProcess___nonzero__(*args)
def __init__(self, *args):
this = _QuantLib.new_StochasticProcess(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_StochasticProcess
__del__ = lambda self : None;
StochasticProcess_swigregister = _QuantLib.StochasticProcess_swigregister
StochasticProcess_swigregister(StochasticProcess)
class StochasticProcess1D(StochasticProcess):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
__swig_destroy__ = _QuantLib.delete_StochasticProcess1D
__del__ = lambda self : None;
StochasticProcess1D_swigregister = _QuantLib.StochasticProcess1D_swigregister
StochasticProcess1D_swigregister(StochasticProcess1D)
class BlackScholesProcess(StochasticProcess1D):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BlackScholesProcess(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BlackScholesProcess
__del__ = lambda self : None;
BlackScholesProcess_swigregister = _QuantLib.BlackScholesProcess_swigregister
BlackScholesProcess_swigregister(BlackScholesProcess)
class Merton76Process(StochasticProcess1D):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Merton76Process(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Merton76Process
__del__ = lambda self : None;
Merton76Process_swigregister = _QuantLib.Merton76Process_swigregister
Merton76Process_swigregister(Merton76Process)
class StochasticProcess1DVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.StochasticProcess1DVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.StochasticProcess1DVector___nonzero__(*args)
def __len__(*args): return _QuantLib.StochasticProcess1DVector___len__(*args)
def pop(*args): return _QuantLib.StochasticProcess1DVector_pop(*args)
def __getslice__(*args): return _QuantLib.StochasticProcess1DVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.StochasticProcess1DVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.StochasticProcess1DVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.StochasticProcess1DVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.StochasticProcess1DVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.StochasticProcess1DVector___setitem__(*args)
def append(*args): return _QuantLib.StochasticProcess1DVector_append(*args)
def empty(*args): return _QuantLib.StochasticProcess1DVector_empty(*args)
def size(*args): return _QuantLib.StochasticProcess1DVector_size(*args)
def clear(*args): return _QuantLib.StochasticProcess1DVector_clear(*args)
def swap(*args): return _QuantLib.StochasticProcess1DVector_swap(*args)
def get_allocator(*args): return _QuantLib.StochasticProcess1DVector_get_allocator(*args)
def begin(*args): return _QuantLib.StochasticProcess1DVector_begin(*args)
def end(*args): return _QuantLib.StochasticProcess1DVector_end(*args)
def rbegin(*args): return _QuantLib.StochasticProcess1DVector_rbegin(*args)
def rend(*args): return _QuantLib.StochasticProcess1DVector_rend(*args)
def pop_back(*args): return _QuantLib.StochasticProcess1DVector_pop_back(*args)
def erase(*args): return _QuantLib.StochasticProcess1DVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_StochasticProcess1DVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.StochasticProcess1DVector_push_back(*args)
def front(*args): return _QuantLib.StochasticProcess1DVector_front(*args)
def back(*args): return _QuantLib.StochasticProcess1DVector_back(*args)
def assign(*args): return _QuantLib.StochasticProcess1DVector_assign(*args)
def resize(*args): return _QuantLib.StochasticProcess1DVector_resize(*args)
def insert(*args): return _QuantLib.StochasticProcess1DVector_insert(*args)
def reserve(*args): return _QuantLib.StochasticProcess1DVector_reserve(*args)
def capacity(*args): return _QuantLib.StochasticProcess1DVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_StochasticProcess1DVector
__del__ = lambda self : None;
StochasticProcess1DVector_swigregister = _QuantLib.StochasticProcess1DVector_swigregister
StochasticProcess1DVector_swigregister(StochasticProcess1DVector)
class Option(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
Call = _QuantLib.Option_Call
Put = _QuantLib.Option_Put
__swig_destroy__ = _QuantLib.delete_Option
__del__ = lambda self : None;
Option_swigregister = _QuantLib.Option_swigregister
Option_swigregister(Option)
class Barrier(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
DownIn = _QuantLib.Barrier_DownIn
UpIn = _QuantLib.Barrier_UpIn
DownOut = _QuantLib.Barrier_DownOut
UpOut = _QuantLib.Barrier_UpOut
def __init__(self, *args):
this = _QuantLib.new_Barrier(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Barrier
__del__ = lambda self : None;
Barrier_swigregister = _QuantLib.Barrier_swigregister
Barrier_swigregister(Barrier)
class Payoff(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.Payoff___deref__(*args)
def __nonzero__(*args): return _QuantLib.Payoff___nonzero__(*args)
def __init__(self, *args):
this = _QuantLib.new_Payoff(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Payoff
__del__ = lambda self : None;
def __call__(*args): return _QuantLib.Payoff___call__(*args)
Payoff_swigregister = _QuantLib.Payoff_swigregister
Payoff_swigregister(Payoff)
class VanillaOption(Instrument):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_VanillaOption(*args)
try: self.this.append(this)
except: self.this = this
def delta(*args): return _QuantLib.VanillaOption_delta(*args)
def gamma(*args): return _QuantLib.VanillaOption_gamma(*args)
def theta(*args): return _QuantLib.VanillaOption_theta(*args)
def thetaPerDay(*args): return _QuantLib.VanillaOption_thetaPerDay(*args)
def vega(*args): return _QuantLib.VanillaOption_vega(*args)
def rho(*args): return _QuantLib.VanillaOption_rho(*args)
def dividendRho(*args): return _QuantLib.VanillaOption_dividendRho(*args)
def strikeSensitivity(*args): return _QuantLib.VanillaOption_strikeSensitivity(*args)
def priceCurve(*args): return _QuantLib.VanillaOption_priceCurve(*args)
def impliedVolatility(*args): return _QuantLib.VanillaOption_impliedVolatility(*args)
__swig_destroy__ = _QuantLib.delete_VanillaOption
__del__ = lambda self : None;
VanillaOption_swigregister = _QuantLib.VanillaOption_swigregister
VanillaOption_swigregister(VanillaOption)
class EuropeanOption(VanillaOption):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_EuropeanOption(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_EuropeanOption
__del__ = lambda self : None;
EuropeanOption_swigregister = _QuantLib.EuropeanOption_swigregister
EuropeanOption_swigregister(EuropeanOption)
class AnalyticEuropeanEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_AnalyticEuropeanEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_AnalyticEuropeanEngine
__del__ = lambda self : None;
AnalyticEuropeanEngine_swigregister = _QuantLib.AnalyticEuropeanEngine_swigregister
AnalyticEuropeanEngine_swigregister(AnalyticEuropeanEngine)
class IntegralEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_IntegralEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_IntegralEngine
__del__ = lambda self : None;
IntegralEngine_swigregister = _QuantLib.IntegralEngine_swigregister
IntegralEngine_swigregister(IntegralEngine)
class FDEuropeanEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FDEuropeanEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FDEuropeanEngine
__del__ = lambda self : None;
FDEuropeanEngine_swigregister = _QuantLib.FDEuropeanEngine_swigregister
FDEuropeanEngine_swigregister(FDEuropeanEngine)
class BinomialEuropeanEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BinomialEuropeanEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BinomialEuropeanEngine
__del__ = lambda self : None;
BinomialEuropeanEngine_swigregister = _QuantLib.BinomialEuropeanEngine_swigregister
BinomialEuropeanEngine_swigregister(BinomialEuropeanEngine)
class MCEuropeanEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args, **kwargs):
this = _QuantLib.new_MCEuropeanEngine(*args, **kwargs)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_MCEuropeanEngine
__del__ = lambda self : None;
MCEuropeanEngine_swigregister = _QuantLib.MCEuropeanEngine_swigregister
MCEuropeanEngine_swigregister(MCEuropeanEngine)
class FDAmericanEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FDAmericanEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FDAmericanEngine
__del__ = lambda self : None;
FDAmericanEngine_swigregister = _QuantLib.FDAmericanEngine_swigregister
FDAmericanEngine_swigregister(FDAmericanEngine)
class FDShoutEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FDShoutEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FDShoutEngine
__del__ = lambda self : None;
FDShoutEngine_swigregister = _QuantLib.FDShoutEngine_swigregister
FDShoutEngine_swigregister(FDShoutEngine)
class BaroneAdesiWhaleyEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BaroneAdesiWhaleyEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BaroneAdesiWhaleyEngine
__del__ = lambda self : None;
BaroneAdesiWhaleyEngine_swigregister = _QuantLib.BaroneAdesiWhaleyEngine_swigregister
BaroneAdesiWhaleyEngine_swigregister(BaroneAdesiWhaleyEngine)
class BjerksundStenslandEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BjerksundStenslandEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BjerksundStenslandEngine
__del__ = lambda self : None;
BjerksundStenslandEngine_swigregister = _QuantLib.BjerksundStenslandEngine_swigregister
BjerksundStenslandEngine_swigregister(BjerksundStenslandEngine)
class AnalyticDigitalAmericanEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_AnalyticDigitalAmericanEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_AnalyticDigitalAmericanEngine
__del__ = lambda self : None;
AnalyticDigitalAmericanEngine_swigregister = _QuantLib.AnalyticDigitalAmericanEngine_swigregister
AnalyticDigitalAmericanEngine_swigregister(AnalyticDigitalAmericanEngine)
class DividendVanillaOption(Instrument):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_DividendVanillaOption(*args)
try: self.this.append(this)
except: self.this = this
def delta(*args): return _QuantLib.DividendVanillaOption_delta(*args)
def gamma(*args): return _QuantLib.DividendVanillaOption_gamma(*args)
def theta(*args): return _QuantLib.DividendVanillaOption_theta(*args)
def vega(*args): return _QuantLib.DividendVanillaOption_vega(*args)
def rho(*args): return _QuantLib.DividendVanillaOption_rho(*args)
def dividendRho(*args): return _QuantLib.DividendVanillaOption_dividendRho(*args)
def strikeSensitivity(*args): return _QuantLib.DividendVanillaOption_strikeSensitivity(*args)
def priceCurve(*args): return _QuantLib.DividendVanillaOption_priceCurve(*args)
def impliedVolatility(*args): return _QuantLib.DividendVanillaOption_impliedVolatility(*args)
__swig_destroy__ = _QuantLib.delete_DividendVanillaOption
__del__ = lambda self : None;
DividendVanillaOption_swigregister = _QuantLib.DividendVanillaOption_swigregister
DividendVanillaOption_swigregister(DividendVanillaOption)
class AnalyticDividendEuropeanEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_AnalyticDividendEuropeanEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_AnalyticDividendEuropeanEngine
__del__ = lambda self : None;
AnalyticDividendEuropeanEngine_swigregister = _QuantLib.AnalyticDividendEuropeanEngine_swigregister
AnalyticDividendEuropeanEngine_swigregister(AnalyticDividendEuropeanEngine)
class FDDividendEuropeanEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FDDividendEuropeanEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FDDividendEuropeanEngine
__del__ = lambda self : None;
FDDividendEuropeanEngine_swigregister = _QuantLib.FDDividendEuropeanEngine_swigregister
FDDividendEuropeanEngine_swigregister(FDDividendEuropeanEngine)
class FDDividendAmericanEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FDDividendAmericanEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FDDividendAmericanEngine
__del__ = lambda self : None;
FDDividendAmericanEngine_swigregister = _QuantLib.FDDividendAmericanEngine_swigregister
FDDividendAmericanEngine_swigregister(FDDividendAmericanEngine)
class BarrierOption(Instrument):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BarrierOption(*args)
try: self.this.append(this)
except: self.this = this
def delta(*args): return _QuantLib.BarrierOption_delta(*args)
def gamma(*args): return _QuantLib.BarrierOption_gamma(*args)
def theta(*args): return _QuantLib.BarrierOption_theta(*args)
def vega(*args): return _QuantLib.BarrierOption_vega(*args)
def rho(*args): return _QuantLib.BarrierOption_rho(*args)
def dividendRho(*args): return _QuantLib.BarrierOption_dividendRho(*args)
def strikeSensitivity(*args): return _QuantLib.BarrierOption_strikeSensitivity(*args)
def priceCurve(*args): return _QuantLib.BarrierOption_priceCurve(*args)
def impliedVolatility(*args): return _QuantLib.BarrierOption_impliedVolatility(*args)
__swig_destroy__ = _QuantLib.delete_BarrierOption
__del__ = lambda self : None;
BarrierOption_swigregister = _QuantLib.BarrierOption_swigregister
BarrierOption_swigregister(BarrierOption)
class AnalyticBarrierEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_AnalyticBarrierEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_AnalyticBarrierEngine
__del__ = lambda self : None;
AnalyticBarrierEngine_swigregister = _QuantLib.AnalyticBarrierEngine_swigregister
AnalyticBarrierEngine_swigregister(AnalyticBarrierEngine)
class MCBarrierEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args, **kwargs):
this = _QuantLib.new_MCBarrierEngine(*args, **kwargs)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_MCBarrierEngine
__del__ = lambda self : None;
MCBarrierEngine_swigregister = _QuantLib.MCBarrierEngine_swigregister
MCBarrierEngine_swigregister(MCBarrierEngine)
class CapFloor(Instrument):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def impliedVolatility(*args): return _QuantLib.CapFloor_impliedVolatility(*args)
def __init__(self, *args):
this = _QuantLib.new_CapFloor(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CapFloor
__del__ = lambda self : None;
CapFloor_swigregister = _QuantLib.CapFloor_swigregister
CapFloor_swigregister(CapFloor)
class Cap(CapFloor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Cap(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Cap
__del__ = lambda self : None;
Cap_swigregister = _QuantLib.Cap_swigregister
Cap_swigregister(Cap)
class Floor(CapFloor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Floor(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Floor
__del__ = lambda self : None;
Floor_swigregister = _QuantLib.Floor_swigregister
Floor_swigregister(Floor)
class Collar(CapFloor):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Collar(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Collar
__del__ = lambda self : None;
Collar_swigregister = _QuantLib.Collar_swigregister
Collar_swigregister(Collar)
class BlackCapFloorEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BlackCapFloorEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BlackCapFloorEngine
__del__ = lambda self : None;
BlackCapFloorEngine_swigregister = _QuantLib.BlackCapFloorEngine_swigregister
BlackCapFloorEngine_swigregister(BlackCapFloorEngine)
class CompoundForward(YieldTermStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CompoundForward(*args)
try: self.this.append(this)
except: self.this = this
def dates(*args): return _QuantLib.CompoundForward_dates(*args)
def compoundForward(*args): return _QuantLib.CompoundForward_compoundForward(*args)
__swig_destroy__ = _QuantLib.delete_CompoundForward
__del__ = lambda self : None;
CompoundForward_swigregister = _QuantLib.CompoundForward_swigregister
CompoundForward_swigregister(CompoundForward)
class Dividend(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.Dividend___deref__(*args)
def __nonzero__(*args): return _QuantLib.Dividend___nonzero__(*args)
def __init__(self, *args):
this = _QuantLib.new_Dividend(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Dividend
__del__ = lambda self : None;
def amount(*args): return _QuantLib.Dividend_amount(*args)
def date(*args): return _QuantLib.Dividend_date(*args)
Dividend_swigregister = _QuantLib.Dividend_swigregister
Dividend_swigregister(Dividend)
class FixedDividend(Dividend):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FixedDividend(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FixedDividend
__del__ = lambda self : None;
FixedDividend_swigregister = _QuantLib.FixedDividend_swigregister
FixedDividend_swigregister(FixedDividend)
class FractionalDividend(Dividend):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FractionalDividend(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FractionalDividend
__del__ = lambda self : None;
FractionalDividend_swigregister = _QuantLib.FractionalDividend_swigregister
FractionalDividend_swigregister(FractionalDividend)
class ConvertibleZeroCouponBond(Bond):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ConvertibleZeroCouponBond(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ConvertibleZeroCouponBond
__del__ = lambda self : None;
ConvertibleZeroCouponBond_swigregister = _QuantLib.ConvertibleZeroCouponBond_swigregister
ConvertibleZeroCouponBond_swigregister(ConvertibleZeroCouponBond)
class ConvertibleFixedCouponBond(Bond):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ConvertibleFixedCouponBond(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ConvertibleFixedCouponBond
__del__ = lambda self : None;
ConvertibleFixedCouponBond_swigregister = _QuantLib.ConvertibleFixedCouponBond_swigregister
ConvertibleFixedCouponBond_swigregister(ConvertibleFixedCouponBond)
class ConvertibleFloatingRateBond(Bond):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ConvertibleFloatingRateBond(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ConvertibleFloatingRateBond
__del__ = lambda self : None;
ConvertibleFloatingRateBond_swigregister = _QuantLib.ConvertibleFloatingRateBond_swigregister
ConvertibleFloatingRateBond_swigregister(ConvertibleFloatingRateBond)
class BinomialConvertibleEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BinomialConvertibleEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BinomialConvertibleEngine
__del__ = lambda self : None;
BinomialConvertibleEngine_swigregister = _QuantLib.BinomialConvertibleEngine_swigregister
BinomialConvertibleEngine_swigregister(BinomialConvertibleEngine)
class DiscountCurve(YieldTermStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_DiscountCurve(*args)
try: self.this.append(this)
except: self.this = this
def dates(*args): return _QuantLib.DiscountCurve_dates(*args)
def discounts(*args): return _QuantLib.DiscountCurve_discounts(*args)
def nodes(*args): return _QuantLib.DiscountCurve_nodes(*args)
__swig_destroy__ = _QuantLib.delete_DiscountCurve
__del__ = lambda self : None;
DiscountCurve_swigregister = _QuantLib.DiscountCurve_swigregister
DiscountCurve_swigregister(DiscountCurve)
class NormalDistribution(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_NormalDistribution(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.NormalDistribution___call__(*args)
def derivative(*args): return _QuantLib.NormalDistribution_derivative(*args)
__swig_destroy__ = _QuantLib.delete_NormalDistribution
__del__ = lambda self : None;
NormalDistribution_swigregister = _QuantLib.NormalDistribution_swigregister
NormalDistribution_swigregister(NormalDistribution)
class CumulativeNormalDistribution(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CumulativeNormalDistribution(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.CumulativeNormalDistribution___call__(*args)
def derivative(*args): return _QuantLib.CumulativeNormalDistribution_derivative(*args)
__swig_destroy__ = _QuantLib.delete_CumulativeNormalDistribution
__del__ = lambda self : None;
CumulativeNormalDistribution_swigregister = _QuantLib.CumulativeNormalDistribution_swigregister
CumulativeNormalDistribution_swigregister(CumulativeNormalDistribution)
class InverseCumulativeNormal(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_InverseCumulativeNormal(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.InverseCumulativeNormal___call__(*args)
__swig_destroy__ = _QuantLib.delete_InverseCumulativeNormal
__del__ = lambda self : None;
InverseCumulativeNormal_swigregister = _QuantLib.InverseCumulativeNormal_swigregister
InverseCumulativeNormal_swigregister(InverseCumulativeNormal)
class MoroInverseCumulativeNormal(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_MoroInverseCumulativeNormal(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.MoroInverseCumulativeNormal___call__(*args)
__swig_destroy__ = _QuantLib.delete_MoroInverseCumulativeNormal
__del__ = lambda self : None;
MoroInverseCumulativeNormal_swigregister = _QuantLib.MoroInverseCumulativeNormal_swigregister
MoroInverseCumulativeNormal_swigregister(MoroInverseCumulativeNormal)
class Money(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Money(*args)
try: self.this.append(this)
except: self.this = this
def currency(*args): return _QuantLib.Money_currency(*args)
def value(*args): return _QuantLib.Money_value(*args)
def rounded(*args): return _QuantLib.Money_rounded(*args)
def __pos__(*args): return _QuantLib.Money___pos__(*args)
def __neg__(*args): return _QuantLib.Money___neg__(*args)
def __add__(*args): return _QuantLib.Money___add__(*args)
def __sub__(*args): return _QuantLib.Money___sub__(*args)
def __mul__(*args): return _QuantLib.Money___mul__(*args)
def __div__(*args): return _QuantLib.Money___div__(*args)
def __rmul__(*args): return _QuantLib.Money___rmul__(*args)
def __cmp__(*args): return _QuantLib.Money___cmp__(*args)
def __str__(*args): return _QuantLib.Money___str__(*args)
NoConversion = _QuantLib.Money_NoConversion
BaseCurrencyConversion = _QuantLib.Money_BaseCurrencyConversion
AutomatedConversion = _QuantLib.Money_AutomatedConversion
setConversionType = staticmethod(_QuantLib.Money_setConversionType)
setBaseCurrency = staticmethod(_QuantLib.Money_setBaseCurrency)
__swig_destroy__ = _QuantLib.delete_Money
__del__ = lambda self : None;
Money_swigregister = _QuantLib.Money_swigregister
Money_swigregister(Money)
Money_setConversionType = _QuantLib.Money_setConversionType
Money_setBaseCurrency = _QuantLib.Money_setBaseCurrency
class ExchangeRate(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
Direct = _QuantLib.ExchangeRate_Direct
Derived = _QuantLib.ExchangeRate_Derived
def __init__(self, *args):
this = _QuantLib.new_ExchangeRate(*args)
try: self.this.append(this)
except: self.this = this
def source(*args): return _QuantLib.ExchangeRate_source(*args)
def target(*args): return _QuantLib.ExchangeRate_target(*args)
def type(*args): return _QuantLib.ExchangeRate_type(*args)
def rate(*args): return _QuantLib.ExchangeRate_rate(*args)
def exchange(*args): return _QuantLib.ExchangeRate_exchange(*args)
chain = staticmethod(_QuantLib.ExchangeRate_chain)
__swig_destroy__ = _QuantLib.delete_ExchangeRate
__del__ = lambda self : None;
ExchangeRate_swigregister = _QuantLib.ExchangeRate_swigregister
ExchangeRate_swigregister(ExchangeRate)
ExchangeRate_chain = _QuantLib.ExchangeRate_chain
class ExchangeRateManager(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
instance = staticmethod(_QuantLib.ExchangeRateManager_instance)
def add(*args): return _QuantLib.ExchangeRateManager_add(*args)
def lookup(*args): return _QuantLib.ExchangeRateManager_lookup(*args)
def clear(*args): return _QuantLib.ExchangeRateManager_clear(*args)
__swig_destroy__ = _QuantLib.delete_ExchangeRateManager
__del__ = lambda self : None;
ExchangeRateManager_swigregister = _QuantLib.ExchangeRateManager_swigregister
ExchangeRateManager_swigregister(ExchangeRateManager)
ExchangeRateManager_instance = _QuantLib.ExchangeRateManager_instance
class ForwardCurve(YieldTermStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ForwardCurve(*args)
try: self.this.append(this)
except: self.this = this
def dates(*args): return _QuantLib.ForwardCurve_dates(*args)
def forwards(*args): return _QuantLib.ForwardCurve_forwards(*args)
def nodes(*args): return _QuantLib.ForwardCurve_nodes(*args)
__swig_destroy__ = _QuantLib.delete_ForwardCurve
__del__ = lambda self : None;
ForwardCurve_swigregister = _QuantLib.ForwardCurve_swigregister
ForwardCurve_swigregister(ForwardCurve)
class TimeGrid(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_TimeGrid(*args)
try: self.this.append(this)
except: self.this = this
def __len__(*args): return _QuantLib.TimeGrid___len__(*args)
def __getitem__(*args): return _QuantLib.TimeGrid___getitem__(*args)
def dt(*args): return _QuantLib.TimeGrid_dt(*args)
__swig_destroy__ = _QuantLib.delete_TimeGrid
__del__ = lambda self : None;
TimeGrid_swigregister = _QuantLib.TimeGrid_swigregister
TimeGrid_swigregister(TimeGrid)
class SegmentIntegral(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SegmentIntegral(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.SegmentIntegral___call__(*args)
__swig_destroy__ = _QuantLib.delete_SegmentIntegral
__del__ = lambda self : None;
SegmentIntegral_swigregister = _QuantLib.SegmentIntegral_swigregister
SegmentIntegral_swigregister(SegmentIntegral)
class TrapezoidIntegral(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_TrapezoidIntegral(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.TrapezoidIntegral___call__(*args)
__swig_destroy__ = _QuantLib.delete_TrapezoidIntegral
__del__ = lambda self : None;
TrapezoidIntegral_swigregister = _QuantLib.TrapezoidIntegral_swigregister
TrapezoidIntegral_swigregister(TrapezoidIntegral)
class SimpsonIntegral(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SimpsonIntegral(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.SimpsonIntegral___call__(*args)
__swig_destroy__ = _QuantLib.delete_SimpsonIntegral
__del__ = lambda self : None;
SimpsonIntegral_swigregister = _QuantLib.SimpsonIntegral_swigregister
SimpsonIntegral_swigregister(SimpsonIntegral)
class KronrodIntegral(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_KronrodIntegral(*args)
try: self.this.append(this)
except: self.this = this
def __call__(*args): return _QuantLib.KronrodIntegral___call__(*args)
__swig_destroy__ = _QuantLib.delete_KronrodIntegral
__del__ = lambda self : None;
KronrodIntegral_swigregister = _QuantLib.KronrodIntegral_swigregister
KronrodIntegral_swigregister(KronrodIntegral)
class SampleNumber(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
def value(*args): return _QuantLib.SampleNumber_value(*args)
def weight(*args): return _QuantLib.SampleNumber_weight(*args)
__swig_destroy__ = _QuantLib.delete_SampleNumber
__del__ = lambda self : None;
SampleNumber_swigregister = _QuantLib.SampleNumber_swigregister
SampleNumber_swigregister(SampleNumber)
class SampleArray(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
def value(*args): return _QuantLib.SampleArray_value(*args)
def weight(*args): return _QuantLib.SampleArray_weight(*args)
__swig_destroy__ = _QuantLib.delete_SampleArray
__del__ = lambda self : None;
SampleArray_swigregister = _QuantLib.SampleArray_swigregister
SampleArray_swigregister(SampleArray)
class LecuyerUniformRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_LecuyerUniformRng(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.LecuyerUniformRng_next(*args)
__swig_destroy__ = _QuantLib.delete_LecuyerUniformRng
__del__ = lambda self : None;
LecuyerUniformRng_swigregister = _QuantLib.LecuyerUniformRng_swigregister
LecuyerUniformRng_swigregister(LecuyerUniformRng)
class KnuthUniformRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
__swig_destroy__ = _QuantLib.delete_KnuthUniformRng
__del__ = lambda self : None;
KnuthUniformRng_swigregister = _QuantLib.KnuthUniformRng_swigregister
KnuthUniformRng_swigregister(KnuthUniformRng)
class MersenneTwisterUniformRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
__swig_destroy__ = _QuantLib.delete_MersenneTwisterUniformRng
__del__ = lambda self : None;
MersenneTwisterUniformRng_swigregister = _QuantLib.MersenneTwisterUniformRng_swigregister
MersenneTwisterUniformRng_swigregister(MersenneTwisterUniformRng)
class UniformRandomGenerator(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_UniformRandomGenerator(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.UniformRandomGenerator_next(*args)
__swig_destroy__ = _QuantLib.delete_UniformRandomGenerator
__del__ = lambda self : None;
UniformRandomGenerator_swigregister = _QuantLib.UniformRandomGenerator_swigregister
UniformRandomGenerator_swigregister(UniformRandomGenerator)
class CentralLimitLecuyerGaussianRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CentralLimitLecuyerGaussianRng(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.CentralLimitLecuyerGaussianRng_next(*args)
__swig_destroy__ = _QuantLib.delete_CentralLimitLecuyerGaussianRng
__del__ = lambda self : None;
CentralLimitLecuyerGaussianRng_swigregister = _QuantLib.CentralLimitLecuyerGaussianRng_swigregister
CentralLimitLecuyerGaussianRng_swigregister(CentralLimitLecuyerGaussianRng)
class CentralLimitKnuthGaussianRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CentralLimitKnuthGaussianRng(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.CentralLimitKnuthGaussianRng_next(*args)
__swig_destroy__ = _QuantLib.delete_CentralLimitKnuthGaussianRng
__del__ = lambda self : None;
CentralLimitKnuthGaussianRng_swigregister = _QuantLib.CentralLimitKnuthGaussianRng_swigregister
CentralLimitKnuthGaussianRng_swigregister(CentralLimitKnuthGaussianRng)
class CentralLimitMersenneTwisterGaussianRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CentralLimitMersenneTwisterGaussianRng(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.CentralLimitMersenneTwisterGaussianRng_next(*args)
__swig_destroy__ = _QuantLib.delete_CentralLimitMersenneTwisterGaussianRng
__del__ = lambda self : None;
CentralLimitMersenneTwisterGaussianRng_swigregister = _QuantLib.CentralLimitMersenneTwisterGaussianRng_swigregister
CentralLimitMersenneTwisterGaussianRng_swigregister(CentralLimitMersenneTwisterGaussianRng)
class BoxMullerLecuyerGaussianRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BoxMullerLecuyerGaussianRng(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.BoxMullerLecuyerGaussianRng_next(*args)
__swig_destroy__ = _QuantLib.delete_BoxMullerLecuyerGaussianRng
__del__ = lambda self : None;
BoxMullerLecuyerGaussianRng_swigregister = _QuantLib.BoxMullerLecuyerGaussianRng_swigregister
BoxMullerLecuyerGaussianRng_swigregister(BoxMullerLecuyerGaussianRng)
class BoxMullerKnuthGaussianRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BoxMullerKnuthGaussianRng(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.BoxMullerKnuthGaussianRng_next(*args)
__swig_destroy__ = _QuantLib.delete_BoxMullerKnuthGaussianRng
__del__ = lambda self : None;
BoxMullerKnuthGaussianRng_swigregister = _QuantLib.BoxMullerKnuthGaussianRng_swigregister
BoxMullerKnuthGaussianRng_swigregister(BoxMullerKnuthGaussianRng)
class BoxMullerMersenneTwisterGaussianRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BoxMullerMersenneTwisterGaussianRng(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.BoxMullerMersenneTwisterGaussianRng_next(*args)
__swig_destroy__ = _QuantLib.delete_BoxMullerMersenneTwisterGaussianRng
__del__ = lambda self : None;
BoxMullerMersenneTwisterGaussianRng_swigregister = _QuantLib.BoxMullerMersenneTwisterGaussianRng_swigregister
BoxMullerMersenneTwisterGaussianRng_swigregister(BoxMullerMersenneTwisterGaussianRng)
class MoroInvCumulativeLecuyerGaussianRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_MoroInvCumulativeLecuyerGaussianRng(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.MoroInvCumulativeLecuyerGaussianRng_next(*args)
__swig_destroy__ = _QuantLib.delete_MoroInvCumulativeLecuyerGaussianRng
__del__ = lambda self : None;
MoroInvCumulativeLecuyerGaussianRng_swigregister = _QuantLib.MoroInvCumulativeLecuyerGaussianRng_swigregister
MoroInvCumulativeLecuyerGaussianRng_swigregister(MoroInvCumulativeLecuyerGaussianRng)
class MoroInvCumulativeKnuthGaussianRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_MoroInvCumulativeKnuthGaussianRng(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.MoroInvCumulativeKnuthGaussianRng_next(*args)
__swig_destroy__ = _QuantLib.delete_MoroInvCumulativeKnuthGaussianRng
__del__ = lambda self : None;
MoroInvCumulativeKnuthGaussianRng_swigregister = _QuantLib.MoroInvCumulativeKnuthGaussianRng_swigregister
MoroInvCumulativeKnuthGaussianRng_swigregister(MoroInvCumulativeKnuthGaussianRng)
class MoroInvCumulativeMersenneTwisterGaussianRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_MoroInvCumulativeMersenneTwisterGaussianRng(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.MoroInvCumulativeMersenneTwisterGaussianRng_next(*args)
__swig_destroy__ = _QuantLib.delete_MoroInvCumulativeMersenneTwisterGaussianRng
__del__ = lambda self : None;
MoroInvCumulativeMersenneTwisterGaussianRng_swigregister = _QuantLib.MoroInvCumulativeMersenneTwisterGaussianRng_swigregister
MoroInvCumulativeMersenneTwisterGaussianRng_swigregister(MoroInvCumulativeMersenneTwisterGaussianRng)
class InvCumulativeLecuyerGaussianRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_InvCumulativeLecuyerGaussianRng(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.InvCumulativeLecuyerGaussianRng_next(*args)
__swig_destroy__ = _QuantLib.delete_InvCumulativeLecuyerGaussianRng
__del__ = lambda self : None;
InvCumulativeLecuyerGaussianRng_swigregister = _QuantLib.InvCumulativeLecuyerGaussianRng_swigregister
InvCumulativeLecuyerGaussianRng_swigregister(InvCumulativeLecuyerGaussianRng)
class InvCumulativeKnuthGaussianRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_InvCumulativeKnuthGaussianRng(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.InvCumulativeKnuthGaussianRng_next(*args)
__swig_destroy__ = _QuantLib.delete_InvCumulativeKnuthGaussianRng
__del__ = lambda self : None;
InvCumulativeKnuthGaussianRng_swigregister = _QuantLib.InvCumulativeKnuthGaussianRng_swigregister
InvCumulativeKnuthGaussianRng_swigregister(InvCumulativeKnuthGaussianRng)
class InvCumulativeMersenneTwisterGaussianRng(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_InvCumulativeMersenneTwisterGaussianRng(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.InvCumulativeMersenneTwisterGaussianRng_next(*args)
__swig_destroy__ = _QuantLib.delete_InvCumulativeMersenneTwisterGaussianRng
__del__ = lambda self : None;
InvCumulativeMersenneTwisterGaussianRng_swigregister = _QuantLib.InvCumulativeMersenneTwisterGaussianRng_swigregister
InvCumulativeMersenneTwisterGaussianRng_swigregister(InvCumulativeMersenneTwisterGaussianRng)
class GaussianRandomGenerator(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_GaussianRandomGenerator(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.GaussianRandomGenerator_next(*args)
__swig_destroy__ = _QuantLib.delete_GaussianRandomGenerator
__del__ = lambda self : None;
GaussianRandomGenerator_swigregister = _QuantLib.GaussianRandomGenerator_swigregister
GaussianRandomGenerator_swigregister(GaussianRandomGenerator)
class HaltonRsg(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_HaltonRsg(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.HaltonRsg_nextSequence(*args)
def dimension(*args): return _QuantLib.HaltonRsg_dimension(*args)
__swig_destroy__ = _QuantLib.delete_HaltonRsg
__del__ = lambda self : None;
HaltonRsg_swigregister = _QuantLib.HaltonRsg_swigregister
HaltonRsg_swigregister(HaltonRsg)
class SobolRsg(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SobolRsg(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.SobolRsg_nextSequence(*args)
def dimension(*args): return _QuantLib.SobolRsg_dimension(*args)
__swig_destroy__ = _QuantLib.delete_SobolRsg
__del__ = lambda self : None;
SobolRsg_swigregister = _QuantLib.SobolRsg_swigregister
SobolRsg_swigregister(SobolRsg)
class LecuyerUniformRsg(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_LecuyerUniformRsg(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.LecuyerUniformRsg_nextSequence(*args)
def dimension(*args): return _QuantLib.LecuyerUniformRsg_dimension(*args)
__swig_destroy__ = _QuantLib.delete_LecuyerUniformRsg
__del__ = lambda self : None;
LecuyerUniformRsg_swigregister = _QuantLib.LecuyerUniformRsg_swigregister
LecuyerUniformRsg_swigregister(LecuyerUniformRsg)
class KnuthUniformRsg(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_KnuthUniformRsg(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.KnuthUniformRsg_nextSequence(*args)
def dimension(*args): return _QuantLib.KnuthUniformRsg_dimension(*args)
__swig_destroy__ = _QuantLib.delete_KnuthUniformRsg
__del__ = lambda self : None;
KnuthUniformRsg_swigregister = _QuantLib.KnuthUniformRsg_swigregister
KnuthUniformRsg_swigregister(KnuthUniformRsg)
class MersenneTwisterUniformRsg(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_MersenneTwisterUniformRsg(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.MersenneTwisterUniformRsg_nextSequence(*args)
def dimension(*args): return _QuantLib.MersenneTwisterUniformRsg_dimension(*args)
__swig_destroy__ = _QuantLib.delete_MersenneTwisterUniformRsg
__del__ = lambda self : None;
MersenneTwisterUniformRsg_swigregister = _QuantLib.MersenneTwisterUniformRsg_swigregister
MersenneTwisterUniformRsg_swigregister(MersenneTwisterUniformRsg)
class UniformRandomSequenceGenerator(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_UniformRandomSequenceGenerator(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.UniformRandomSequenceGenerator_nextSequence(*args)
def dimension(*args): return _QuantLib.UniformRandomSequenceGenerator_dimension(*args)
__swig_destroy__ = _QuantLib.delete_UniformRandomSequenceGenerator
__del__ = lambda self : None;
UniformRandomSequenceGenerator_swigregister = _QuantLib.UniformRandomSequenceGenerator_swigregister
UniformRandomSequenceGenerator_swigregister(UniformRandomSequenceGenerator)
class UniformLowDiscrepancySequenceGenerator(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_UniformLowDiscrepancySequenceGenerator(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.UniformLowDiscrepancySequenceGenerator_nextSequence(*args)
def dimension(*args): return _QuantLib.UniformLowDiscrepancySequenceGenerator_dimension(*args)
__swig_destroy__ = _QuantLib.delete_UniformLowDiscrepancySequenceGenerator
__del__ = lambda self : None;
UniformLowDiscrepancySequenceGenerator_swigregister = _QuantLib.UniformLowDiscrepancySequenceGenerator_swigregister
UniformLowDiscrepancySequenceGenerator_swigregister(UniformLowDiscrepancySequenceGenerator)
class MoroInvCumulativeLecuyerGaussianRsg(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_MoroInvCumulativeLecuyerGaussianRsg(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.MoroInvCumulativeLecuyerGaussianRsg_nextSequence(*args)
def dimension(*args): return _QuantLib.MoroInvCumulativeLecuyerGaussianRsg_dimension(*args)
__swig_destroy__ = _QuantLib.delete_MoroInvCumulativeLecuyerGaussianRsg
__del__ = lambda self : None;
MoroInvCumulativeLecuyerGaussianRsg_swigregister = _QuantLib.MoroInvCumulativeLecuyerGaussianRsg_swigregister
MoroInvCumulativeLecuyerGaussianRsg_swigregister(MoroInvCumulativeLecuyerGaussianRsg)
class MoroInvCumulativeKnuthGaussianRsg(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_MoroInvCumulativeKnuthGaussianRsg(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.MoroInvCumulativeKnuthGaussianRsg_nextSequence(*args)
def dimension(*args): return _QuantLib.MoroInvCumulativeKnuthGaussianRsg_dimension(*args)
__swig_destroy__ = _QuantLib.delete_MoroInvCumulativeKnuthGaussianRsg
__del__ = lambda self : None;
MoroInvCumulativeKnuthGaussianRsg_swigregister = _QuantLib.MoroInvCumulativeKnuthGaussianRsg_swigregister
MoroInvCumulativeKnuthGaussianRsg_swigregister(MoroInvCumulativeKnuthGaussianRsg)
class MoroInvCumulativeMersenneTwisterGaussianRsg(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_MoroInvCumulativeMersenneTwisterGaussianRsg(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.MoroInvCumulativeMersenneTwisterGaussianRsg_nextSequence(*args)
def dimension(*args): return _QuantLib.MoroInvCumulativeMersenneTwisterGaussianRsg_dimension(*args)
__swig_destroy__ = _QuantLib.delete_MoroInvCumulativeMersenneTwisterGaussianRsg
__del__ = lambda self : None;
MoroInvCumulativeMersenneTwisterGaussianRsg_swigregister = _QuantLib.MoroInvCumulativeMersenneTwisterGaussianRsg_swigregister
MoroInvCumulativeMersenneTwisterGaussianRsg_swigregister(MoroInvCumulativeMersenneTwisterGaussianRsg)
class MoroInvCumulativeHaltonGaussianRsg(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_MoroInvCumulativeHaltonGaussianRsg(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.MoroInvCumulativeHaltonGaussianRsg_nextSequence(*args)
def dimension(*args): return _QuantLib.MoroInvCumulativeHaltonGaussianRsg_dimension(*args)
__swig_destroy__ = _QuantLib.delete_MoroInvCumulativeHaltonGaussianRsg
__del__ = lambda self : None;
MoroInvCumulativeHaltonGaussianRsg_swigregister = _QuantLib.MoroInvCumulativeHaltonGaussianRsg_swigregister
MoroInvCumulativeHaltonGaussianRsg_swigregister(MoroInvCumulativeHaltonGaussianRsg)
class InvCumulativeLecuyerGaussianRsg(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_InvCumulativeLecuyerGaussianRsg(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.InvCumulativeLecuyerGaussianRsg_nextSequence(*args)
def dimension(*args): return _QuantLib.InvCumulativeLecuyerGaussianRsg_dimension(*args)
__swig_destroy__ = _QuantLib.delete_InvCumulativeLecuyerGaussianRsg
__del__ = lambda self : None;
InvCumulativeLecuyerGaussianRsg_swigregister = _QuantLib.InvCumulativeLecuyerGaussianRsg_swigregister
InvCumulativeLecuyerGaussianRsg_swigregister(InvCumulativeLecuyerGaussianRsg)
class InvCumulativeKnuthGaussianRsg(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_InvCumulativeKnuthGaussianRsg(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.InvCumulativeKnuthGaussianRsg_nextSequence(*args)
def dimension(*args): return _QuantLib.InvCumulativeKnuthGaussianRsg_dimension(*args)
__swig_destroy__ = _QuantLib.delete_InvCumulativeKnuthGaussianRsg
__del__ = lambda self : None;
InvCumulativeKnuthGaussianRsg_swigregister = _QuantLib.InvCumulativeKnuthGaussianRsg_swigregister
InvCumulativeKnuthGaussianRsg_swigregister(InvCumulativeKnuthGaussianRsg)
class InvCumulativeMersenneTwisterGaussianRsg(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_InvCumulativeMersenneTwisterGaussianRsg(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.InvCumulativeMersenneTwisterGaussianRsg_nextSequence(*args)
def dimension(*args): return _QuantLib.InvCumulativeMersenneTwisterGaussianRsg_dimension(*args)
__swig_destroy__ = _QuantLib.delete_InvCumulativeMersenneTwisterGaussianRsg
__del__ = lambda self : None;
InvCumulativeMersenneTwisterGaussianRsg_swigregister = _QuantLib.InvCumulativeMersenneTwisterGaussianRsg_swigregister
InvCumulativeMersenneTwisterGaussianRsg_swigregister(InvCumulativeMersenneTwisterGaussianRsg)
class InvCumulativeHaltonGaussianRsg(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_InvCumulativeHaltonGaussianRsg(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.InvCumulativeHaltonGaussianRsg_nextSequence(*args)
def dimension(*args): return _QuantLib.InvCumulativeHaltonGaussianRsg_dimension(*args)
__swig_destroy__ = _QuantLib.delete_InvCumulativeHaltonGaussianRsg
__del__ = lambda self : None;
InvCumulativeHaltonGaussianRsg_swigregister = _QuantLib.InvCumulativeHaltonGaussianRsg_swigregister
InvCumulativeHaltonGaussianRsg_swigregister(InvCumulativeHaltonGaussianRsg)
class GaussianRandomSequenceGenerator(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_GaussianRandomSequenceGenerator(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.GaussianRandomSequenceGenerator_nextSequence(*args)
def dimension(*args): return _QuantLib.GaussianRandomSequenceGenerator_dimension(*args)
__swig_destroy__ = _QuantLib.delete_GaussianRandomSequenceGenerator
__del__ = lambda self : None;
GaussianRandomSequenceGenerator_swigregister = _QuantLib.GaussianRandomSequenceGenerator_swigregister
GaussianRandomSequenceGenerator_swigregister(GaussianRandomSequenceGenerator)
class GaussianLowDiscrepancySequenceGenerator(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_GaussianLowDiscrepancySequenceGenerator(*args)
try: self.this.append(this)
except: self.this = this
def nextSequence(*args): return _QuantLib.GaussianLowDiscrepancySequenceGenerator_nextSequence(*args)
def dimension(*args): return _QuantLib.GaussianLowDiscrepancySequenceGenerator_dimension(*args)
__swig_destroy__ = _QuantLib.delete_GaussianLowDiscrepancySequenceGenerator
__del__ = lambda self : None;
GaussianLowDiscrepancySequenceGenerator_swigregister = _QuantLib.GaussianLowDiscrepancySequenceGenerator_swigregister
GaussianLowDiscrepancySequenceGenerator_swigregister(GaussianLowDiscrepancySequenceGenerator)
getCovariance = _QuantLib.getCovariance
class Path(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
def __len__(*args): return _QuantLib.Path___len__(*args)
def value(*args): return _QuantLib.Path_value(*args)
def time(*args): return _QuantLib.Path_time(*args)
def __getitem__(*args): return _QuantLib.Path___getitem__(*args)
__swig_destroy__ = _QuantLib.delete_Path
__del__ = lambda self : None;
Path_swigregister = _QuantLib.Path_swigregister
Path_swigregister(Path)
class SamplePath(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
def value(*args): return _QuantLib.SamplePath_value(*args)
def weight(*args): return _QuantLib.SamplePath_weight(*args)
__swig_destroy__ = _QuantLib.delete_SamplePath
__del__ = lambda self : None;
SamplePath_swigregister = _QuantLib.SamplePath_swigregister
SamplePath_swigregister(SamplePath)
class GaussianPathGenerator(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_GaussianPathGenerator(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.GaussianPathGenerator_next(*args)
__swig_destroy__ = _QuantLib.delete_GaussianPathGenerator
__del__ = lambda self : None;
GaussianPathGenerator_swigregister = _QuantLib.GaussianPathGenerator_swigregister
GaussianPathGenerator_swigregister(GaussianPathGenerator)
class MultiPath(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
def __len__(*args): return _QuantLib.MultiPath___len__(*args)
def assetNumber(*args): return _QuantLib.MultiPath_assetNumber(*args)
def __getitem__(*args): return _QuantLib.MultiPath___getitem__(*args)
__swig_destroy__ = _QuantLib.delete_MultiPath
__del__ = lambda self : None;
MultiPath_swigregister = _QuantLib.MultiPath_swigregister
MultiPath_swigregister(MultiPath)
class SampleMultiPath(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
def value(*args): return _QuantLib.SampleMultiPath_value(*args)
def weight(*args): return _QuantLib.SampleMultiPath_weight(*args)
__swig_destroy__ = _QuantLib.delete_SampleMultiPath
__del__ = lambda self : None;
SampleMultiPath_swigregister = _QuantLib.SampleMultiPath_swigregister
SampleMultiPath_swigregister(SampleMultiPath)
class GaussianMultiPathGenerator(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_GaussianMultiPathGenerator(*args)
try: self.this.append(this)
except: self.this = this
def next(*args): return _QuantLib.GaussianMultiPathGenerator_next(*args)
__swig_destroy__ = _QuantLib.delete_GaussianMultiPathGenerator
__del__ = lambda self : None;
GaussianMultiPathGenerator_swigregister = _QuantLib.GaussianMultiPathGenerator_swigregister
GaussianMultiPathGenerator_swigregister(GaussianMultiPathGenerator)
class BoundaryCondition(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.BoundaryCondition___deref__(*args)
def __nonzero__(*args): return _QuantLib.BoundaryCondition___nonzero__(*args)
NoSide = _QuantLib.BoundaryCondition_NoSide
Upper = _QuantLib.BoundaryCondition_Upper
Lower = _QuantLib.BoundaryCondition_Lower
def __init__(self, *args):
this = _QuantLib.new_BoundaryCondition(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BoundaryCondition
__del__ = lambda self : None;
BoundaryCondition_swigregister = _QuantLib.BoundaryCondition_swigregister
BoundaryCondition_swigregister(BoundaryCondition)
class NeumannBC(BoundaryCondition):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_NeumannBC(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_NeumannBC
__del__ = lambda self : None;
NeumannBC_swigregister = _QuantLib.NeumannBC_swigregister
NeumannBC_swigregister(NeumannBC)
class DirichletBC(BoundaryCondition):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_DirichletBC(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_DirichletBC
__del__ = lambda self : None;
DirichletBC_swigregister = _QuantLib.DirichletBC_swigregister
DirichletBC_swigregister(DirichletBC)
class TridiagonalOperator(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_TridiagonalOperator(*args)
try: self.this.append(this)
except: self.this = this
def solveFor(*args): return _QuantLib.TridiagonalOperator_solveFor(*args)
def applyTo(*args): return _QuantLib.TridiagonalOperator_applyTo(*args)
def size(*args): return _QuantLib.TridiagonalOperator_size(*args)
def setFirstRow(*args): return _QuantLib.TridiagonalOperator_setFirstRow(*args)
def setMidRow(*args): return _QuantLib.TridiagonalOperator_setMidRow(*args)
def setMidRows(*args): return _QuantLib.TridiagonalOperator_setMidRows(*args)
def setLastRow(*args): return _QuantLib.TridiagonalOperator_setLastRow(*args)
identity = staticmethod(_QuantLib.TridiagonalOperator_identity)
def __add__(*args): return _QuantLib.TridiagonalOperator___add__(*args)
def __sub__(*args): return _QuantLib.TridiagonalOperator___sub__(*args)
def __mul__(*args): return _QuantLib.TridiagonalOperator___mul__(*args)
def __div__(*args): return _QuantLib.TridiagonalOperator___div__(*args)
def __iadd__(*args): return _QuantLib.TridiagonalOperator___iadd__(*args)
def __isub__(*args): return _QuantLib.TridiagonalOperator___isub__(*args)
def __imul__(*args): return _QuantLib.TridiagonalOperator___imul__(*args)
def __rmul__(*args): return _QuantLib.TridiagonalOperator___rmul__(*args)
def __idiv__(*args): return _QuantLib.TridiagonalOperator___idiv__(*args)
__swig_destroy__ = _QuantLib.delete_TridiagonalOperator
__del__ = lambda self : None;
TridiagonalOperator_swigregister = _QuantLib.TridiagonalOperator_swigregister
TridiagonalOperator_swigregister(TridiagonalOperator)
TridiagonalOperator_identity = _QuantLib.TridiagonalOperator_identity
class DPlus(TridiagonalOperator):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_DPlus(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_DPlus
__del__ = lambda self : None;
DPlus_swigregister = _QuantLib.DPlus_swigregister
DPlus_swigregister(DPlus)
class DMinus(TridiagonalOperator):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_DMinus(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_DMinus
__del__ = lambda self : None;
DMinus_swigregister = _QuantLib.DMinus_swigregister
DMinus_swigregister(DMinus)
class DZero(TridiagonalOperator):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_DZero(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_DZero
__del__ = lambda self : None;
DZero_swigregister = _QuantLib.DZero_swigregister
DZero_swigregister(DZero)
class DPlusDMinus(TridiagonalOperator):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_DPlusDMinus(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_DPlusDMinus
__del__ = lambda self : None;
DPlusDMinus_swigregister = _QuantLib.DPlusDMinus_swigregister
DPlusDMinus_swigregister(DPlusDMinus)
SymmetricEigenvalues = _QuantLib.SymmetricEigenvalues
SymmetricEigenvectors = _QuantLib.SymmetricEigenvectors
class Brent(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def setMaxEvaluations(*args): return _QuantLib.Brent_setMaxEvaluations(*args)
def setLowerBound(*args): return _QuantLib.Brent_setLowerBound(*args)
def setUpperBound(*args): return _QuantLib.Brent_setUpperBound(*args)
def solve(*args): return _QuantLib.Brent_solve(*args)
def __init__(self, *args):
this = _QuantLib.new_Brent(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Brent
__del__ = lambda self : None;
Brent_swigregister = _QuantLib.Brent_swigregister
Brent_swigregister(Brent)
class Bisection(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def setMaxEvaluations(*args): return _QuantLib.Bisection_setMaxEvaluations(*args)
def setLowerBound(*args): return _QuantLib.Bisection_setLowerBound(*args)
def setUpperBound(*args): return _QuantLib.Bisection_setUpperBound(*args)
def solve(*args): return _QuantLib.Bisection_solve(*args)
def __init__(self, *args):
this = _QuantLib.new_Bisection(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Bisection
__del__ = lambda self : None;
Bisection_swigregister = _QuantLib.Bisection_swigregister
Bisection_swigregister(Bisection)
class FalsePosition(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def setMaxEvaluations(*args): return _QuantLib.FalsePosition_setMaxEvaluations(*args)
def setLowerBound(*args): return _QuantLib.FalsePosition_setLowerBound(*args)
def setUpperBound(*args): return _QuantLib.FalsePosition_setUpperBound(*args)
def solve(*args): return _QuantLib.FalsePosition_solve(*args)
def __init__(self, *args):
this = _QuantLib.new_FalsePosition(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FalsePosition
__del__ = lambda self : None;
FalsePosition_swigregister = _QuantLib.FalsePosition_swigregister
FalsePosition_swigregister(FalsePosition)
class Ridder(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def setMaxEvaluations(*args): return _QuantLib.Ridder_setMaxEvaluations(*args)
def setLowerBound(*args): return _QuantLib.Ridder_setLowerBound(*args)
def setUpperBound(*args): return _QuantLib.Ridder_setUpperBound(*args)
def solve(*args): return _QuantLib.Ridder_solve(*args)
def __init__(self, *args):
this = _QuantLib.new_Ridder(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Ridder
__del__ = lambda self : None;
Ridder_swigregister = _QuantLib.Ridder_swigregister
Ridder_swigregister(Ridder)
class Secant(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def setMaxEvaluations(*args): return _QuantLib.Secant_setMaxEvaluations(*args)
def setLowerBound(*args): return _QuantLib.Secant_setLowerBound(*args)
def setUpperBound(*args): return _QuantLib.Secant_setUpperBound(*args)
def solve(*args): return _QuantLib.Secant_solve(*args)
def __init__(self, *args):
this = _QuantLib.new_Secant(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Secant
__del__ = lambda self : None;
Secant_swigregister = _QuantLib.Secant_swigregister
Secant_swigregister(Secant)
class Newton(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def setMaxEvaluations(*args): return _QuantLib.Newton_setMaxEvaluations(*args)
def setLowerBound(*args): return _QuantLib.Newton_setLowerBound(*args)
def setUpperBound(*args): return _QuantLib.Newton_setUpperBound(*args)
def solve(*args): return _QuantLib.Newton_solve(*args)
def __init__(self, *args):
this = _QuantLib.new_Newton(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Newton
__del__ = lambda self : None;
Newton_swigregister = _QuantLib.Newton_swigregister
Newton_swigregister(Newton)
class NewtonSafe(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def setMaxEvaluations(*args): return _QuantLib.NewtonSafe_setMaxEvaluations(*args)
def setLowerBound(*args): return _QuantLib.NewtonSafe_setLowerBound(*args)
def setUpperBound(*args): return _QuantLib.NewtonSafe_setUpperBound(*args)
def solve(*args): return _QuantLib.NewtonSafe_solve(*args)
def __init__(self, *args):
this = _QuantLib.new_NewtonSafe(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_NewtonSafe
__del__ = lambda self : None;
NewtonSafe_swigregister = _QuantLib.NewtonSafe_swigregister
NewtonSafe_swigregister(NewtonSafe)
class Constraint(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
__swig_destroy__ = _QuantLib.delete_Constraint
__del__ = lambda self : None;
Constraint_swigregister = _QuantLib.Constraint_swigregister
Constraint_swigregister(Constraint)
class BoundaryConstraint(Constraint):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BoundaryConstraint(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BoundaryConstraint
__del__ = lambda self : None;
BoundaryConstraint_swigregister = _QuantLib.BoundaryConstraint_swigregister
BoundaryConstraint_swigregister(BoundaryConstraint)
class NoConstraint(Constraint):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_NoConstraint(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_NoConstraint
__del__ = lambda self : None;
NoConstraint_swigregister = _QuantLib.NoConstraint_swigregister
NoConstraint_swigregister(NoConstraint)
class PositiveConstraint(Constraint):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_PositiveConstraint(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_PositiveConstraint
__del__ = lambda self : None;
PositiveConstraint_swigregister = _QuantLib.PositiveConstraint_swigregister
PositiveConstraint_swigregister(PositiveConstraint)
class EndCriteria(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_EndCriteria(*args)
try: self.this.append(this)
except: self.this = this
def setPositiveOptimization(*args): return _QuantLib.EndCriteria_setPositiveOptimization(*args)
def __call__(*args): return _QuantLib.EndCriteria___call__(*args)
__swig_destroy__ = _QuantLib.delete_EndCriteria
__del__ = lambda self : None;
EndCriteria_swigregister = _QuantLib.EndCriteria_swigregister
EndCriteria_swigregister(EndCriteria)
class OptimizationMethod(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
def setInitialValue(*args): return _QuantLib.OptimizationMethod_setInitialValue(*args)
def setEndCriteria(*args): return _QuantLib.OptimizationMethod_setEndCriteria(*args)
__swig_destroy__ = _QuantLib.delete_OptimizationMethod
__del__ = lambda self : None;
OptimizationMethod_swigregister = _QuantLib.OptimizationMethod_swigregister
OptimizationMethod_swigregister(OptimizationMethod)
class ConjugateGradient(OptimizationMethod):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ConjugateGradient(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ConjugateGradient
__del__ = lambda self : None;
ConjugateGradient_swigregister = _QuantLib.ConjugateGradient_swigregister
ConjugateGradient_swigregister(ConjugateGradient)
class Simplex(OptimizationMethod):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Simplex(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Simplex
__del__ = lambda self : None;
Simplex_swigregister = _QuantLib.Simplex_swigregister
Simplex_swigregister(Simplex)
class SteepestDescent(OptimizationMethod):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SteepestDescent(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SteepestDescent
__del__ = lambda self : None;
SteepestDescent_swigregister = _QuantLib.SteepestDescent_swigregister
SteepestDescent_swigregister(SteepestDescent)
class Optimizer(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def solve(*args): return _QuantLib.Optimizer_solve(*args)
def __init__(self, *args):
this = _QuantLib.new_Optimizer(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Optimizer
__del__ = lambda self : None;
Optimizer_swigregister = _QuantLib.Optimizer_swigregister
Optimizer_swigregister(Optimizer)
class PlainVanillaPayoff(Payoff):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_PlainVanillaPayoff(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_PlainVanillaPayoff
__del__ = lambda self : None;
PlainVanillaPayoff_swigregister = _QuantLib.PlainVanillaPayoff_swigregister
PlainVanillaPayoff_swigregister(PlainVanillaPayoff)
class PercentageStrikePayoff(Payoff):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_PercentageStrikePayoff(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_PercentageStrikePayoff
__del__ = lambda self : None;
PercentageStrikePayoff_swigregister = _QuantLib.PercentageStrikePayoff_swigregister
PercentageStrikePayoff_swigregister(PercentageStrikePayoff)
class CashOrNothingPayoff(Payoff):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CashOrNothingPayoff(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CashOrNothingPayoff
__del__ = lambda self : None;
CashOrNothingPayoff_swigregister = _QuantLib.CashOrNothingPayoff_swigregister
CashOrNothingPayoff_swigregister(CashOrNothingPayoff)
class AssetOrNothingPayoff(Payoff):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_AssetOrNothingPayoff(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_AssetOrNothingPayoff
__del__ = lambda self : None;
AssetOrNothingPayoff_swigregister = _QuantLib.AssetOrNothingPayoff_swigregister
AssetOrNothingPayoff_swigregister(AssetOrNothingPayoff)
class SuperSharePayoff(Payoff):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SuperSharePayoff(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SuperSharePayoff
__del__ = lambda self : None;
SuperSharePayoff_swigregister = _QuantLib.SuperSharePayoff_swigregister
SuperSharePayoff_swigregister(SuperSharePayoff)
class GapPayoff(Payoff):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_GapPayoff(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_GapPayoff
__del__ = lambda self : None;
GapPayoff_swigregister = _QuantLib.GapPayoff_swigregister
GapPayoff_swigregister(GapPayoff)
class RateHelper(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.RateHelper___deref__(*args)
def __nonzero__(*args): return _QuantLib.RateHelper___nonzero__(*args)
def __init__(self, *args):
this = _QuantLib.new_RateHelper(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_RateHelper
__del__ = lambda self : None;
RateHelper_swigregister = _QuantLib.RateHelper_swigregister
RateHelper_swigregister(RateHelper)
class DepositRateHelper(RateHelper):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_DepositRateHelper(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_DepositRateHelper
__del__ = lambda self : None;
DepositRateHelper_swigregister = _QuantLib.DepositRateHelper_swigregister
DepositRateHelper_swigregister(DepositRateHelper)
class FraRateHelper(RateHelper):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FraRateHelper(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FraRateHelper
__del__ = lambda self : None;
FraRateHelper_swigregister = _QuantLib.FraRateHelper_swigregister
FraRateHelper_swigregister(FraRateHelper)
class FuturesRateHelper(RateHelper):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FuturesRateHelper(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FuturesRateHelper
__del__ = lambda self : None;
FuturesRateHelper_swigregister = _QuantLib.FuturesRateHelper_swigregister
FuturesRateHelper_swigregister(FuturesRateHelper)
class SwapRateHelper(RateHelper):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SwapRateHelper(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SwapRateHelper
__del__ = lambda self : None;
SwapRateHelper_swigregister = _QuantLib.SwapRateHelper_swigregister
SwapRateHelper_swigregister(SwapRateHelper)
class FixedCouponBondHelper(RateHelper):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_FixedCouponBondHelper(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_FixedCouponBondHelper
__del__ = lambda self : None;
FixedCouponBondHelper_swigregister = _QuantLib.FixedCouponBondHelper_swigregister
FixedCouponBondHelper_swigregister(FixedCouponBondHelper)
class RateHelperVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.RateHelperVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.RateHelperVector___nonzero__(*args)
def __len__(*args): return _QuantLib.RateHelperVector___len__(*args)
def pop(*args): return _QuantLib.RateHelperVector_pop(*args)
def __getslice__(*args): return _QuantLib.RateHelperVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.RateHelperVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.RateHelperVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.RateHelperVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.RateHelperVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.RateHelperVector___setitem__(*args)
def append(*args): return _QuantLib.RateHelperVector_append(*args)
def empty(*args): return _QuantLib.RateHelperVector_empty(*args)
def size(*args): return _QuantLib.RateHelperVector_size(*args)
def clear(*args): return _QuantLib.RateHelperVector_clear(*args)
def swap(*args): return _QuantLib.RateHelperVector_swap(*args)
def get_allocator(*args): return _QuantLib.RateHelperVector_get_allocator(*args)
def begin(*args): return _QuantLib.RateHelperVector_begin(*args)
def end(*args): return _QuantLib.RateHelperVector_end(*args)
def rbegin(*args): return _QuantLib.RateHelperVector_rbegin(*args)
def rend(*args): return _QuantLib.RateHelperVector_rend(*args)
def pop_back(*args): return _QuantLib.RateHelperVector_pop_back(*args)
def erase(*args): return _QuantLib.RateHelperVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_RateHelperVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.RateHelperVector_push_back(*args)
def front(*args): return _QuantLib.RateHelperVector_front(*args)
def back(*args): return _QuantLib.RateHelperVector_back(*args)
def assign(*args): return _QuantLib.RateHelperVector_assign(*args)
def resize(*args): return _QuantLib.RateHelperVector_resize(*args)
def insert(*args): return _QuantLib.RateHelperVector_insert(*args)
def reserve(*args): return _QuantLib.RateHelperVector_reserve(*args)
def capacity(*args): return _QuantLib.RateHelperVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_RateHelperVector
__del__ = lambda self : None;
RateHelperVector_swigregister = _QuantLib.RateHelperVector_swigregister
RateHelperVector_swigregister(RateHelperVector)
class Discount(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Discount(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Discount
__del__ = lambda self : None;
Discount_swigregister = _QuantLib.Discount_swigregister
Discount_swigregister(Discount)
class ZeroYield(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ZeroYield(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ZeroYield
__del__ = lambda self : None;
ZeroYield_swigregister = _QuantLib.ZeroYield_swigregister
ZeroYield_swigregister(ZeroYield)
class ForwardRate(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ForwardRate(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ForwardRate
__del__ = lambda self : None;
ForwardRate_swigregister = _QuantLib.ForwardRate_swigregister
ForwardRate_swigregister(ForwardRate)
class PiecewiseFlatForward(YieldTermStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_PiecewiseFlatForward(*args)
try: self.this.append(this)
except: self.this = this
def dates(*args): return _QuantLib.PiecewiseFlatForward_dates(*args)
def times(*args): return _QuantLib.PiecewiseFlatForward_times(*args)
def nodes(*args): return _QuantLib.PiecewiseFlatForward_nodes(*args)
__swig_destroy__ = _QuantLib.delete_PiecewiseFlatForward
__del__ = lambda self : None;
PiecewiseFlatForward_swigregister = _QuantLib.PiecewiseFlatForward_swigregister
PiecewiseFlatForward_swigregister(PiecewiseFlatForward)
class SampledCurve(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SampledCurve(*args)
try: self.this.append(this)
except: self.this = this
def grid(*args): return _QuantLib.SampledCurve_grid(*args)
def values(*args): return _QuantLib.SampledCurve_values(*args)
def gridValue(*args): return _QuantLib.SampledCurve_gridValue(*args)
def value(*args): return _QuantLib.SampledCurve_value(*args)
def size(*args): return _QuantLib.SampledCurve_size(*args)
def empty(*args): return _QuantLib.SampledCurve_empty(*args)
def setGrid(*args): return _QuantLib.SampledCurve_setGrid(*args)
def setValues(*args): return _QuantLib.SampledCurve_setValues(*args)
def swap(*args): return _QuantLib.SampledCurve_swap(*args)
def setLogGrid(*args): return _QuantLib.SampledCurve_setLogGrid(*args)
def regridLogGrid(*args): return _QuantLib.SampledCurve_regridLogGrid(*args)
def shiftGrid(*args): return _QuantLib.SampledCurve_shiftGrid(*args)
def scaleGrid(*args): return _QuantLib.SampledCurve_scaleGrid(*args)
def regrid(*args): return _QuantLib.SampledCurve_regrid(*args)
__swig_destroy__ = _QuantLib.delete_SampledCurve
__del__ = lambda self : None;
SampledCurve_swigregister = _QuantLib.SampledCurve_swigregister
SampledCurve_swigregister(SampledCurve)
class Settings(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
def __init__(self): raise AttributeError, "No constructor defined"
__repr__ = _swig_repr
instance = staticmethod(_QuantLib.Settings_instance)
def getEvaluationDate(*args): return _QuantLib.Settings_getEvaluationDate(*args)
def setEvaluationDate(*args): return _QuantLib.Settings_setEvaluationDate(*args)
evaluationDate = property(getEvaluationDate,setEvaluationDate,None)
__swig_destroy__ = _QuantLib.delete_Settings
__del__ = lambda self : None;
Settings_swigregister = _QuantLib.Settings_swigregister
Settings_swigregister(Settings)
Settings_instance = _QuantLib.Settings_instance
class CalibrationHelper(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.CalibrationHelper___deref__(*args)
def __nonzero__(*args): return _QuantLib.CalibrationHelper___nonzero__(*args)
def __init__(self, *args):
this = _QuantLib.new_CalibrationHelper(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CalibrationHelper
__del__ = lambda self : None;
def setPricingEngine(*args): return _QuantLib.CalibrationHelper_setPricingEngine(*args)
def marketValue(*args): return _QuantLib.CalibrationHelper_marketValue(*args)
def modelValue(*args): return _QuantLib.CalibrationHelper_modelValue(*args)
def impliedVolatility(*args): return _QuantLib.CalibrationHelper_impliedVolatility(*args)
def blackPrice(*args): return _QuantLib.CalibrationHelper_blackPrice(*args)
CalibrationHelper_swigregister = _QuantLib.CalibrationHelper_swigregister
CalibrationHelper_swigregister(CalibrationHelper)
class SwaptionHelper(CalibrationHelper):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SwaptionHelper(*args)
try: self.this.append(this)
except: self.this = this
def times(*args): return _QuantLib.SwaptionHelper_times(*args)
__swig_destroy__ = _QuantLib.delete_SwaptionHelper
__del__ = lambda self : None;
SwaptionHelper_swigregister = _QuantLib.SwaptionHelper_swigregister
SwaptionHelper_swigregister(SwaptionHelper)
class CapHelper(CalibrationHelper):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CapHelper(*args)
try: self.this.append(this)
except: self.this = this
def times(*args): return _QuantLib.CapHelper_times(*args)
__swig_destroy__ = _QuantLib.delete_CapHelper
__del__ = lambda self : None;
CapHelper_swigregister = _QuantLib.CapHelper_swigregister
CapHelper_swigregister(CapHelper)
class CalibrationHelperVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.CalibrationHelperVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.CalibrationHelperVector___nonzero__(*args)
def __len__(*args): return _QuantLib.CalibrationHelperVector___len__(*args)
def pop(*args): return _QuantLib.CalibrationHelperVector_pop(*args)
def __getslice__(*args): return _QuantLib.CalibrationHelperVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.CalibrationHelperVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.CalibrationHelperVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.CalibrationHelperVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.CalibrationHelperVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.CalibrationHelperVector___setitem__(*args)
def append(*args): return _QuantLib.CalibrationHelperVector_append(*args)
def empty(*args): return _QuantLib.CalibrationHelperVector_empty(*args)
def size(*args): return _QuantLib.CalibrationHelperVector_size(*args)
def clear(*args): return _QuantLib.CalibrationHelperVector_clear(*args)
def swap(*args): return _QuantLib.CalibrationHelperVector_swap(*args)
def get_allocator(*args): return _QuantLib.CalibrationHelperVector_get_allocator(*args)
def begin(*args): return _QuantLib.CalibrationHelperVector_begin(*args)
def end(*args): return _QuantLib.CalibrationHelperVector_end(*args)
def rbegin(*args): return _QuantLib.CalibrationHelperVector_rbegin(*args)
def rend(*args): return _QuantLib.CalibrationHelperVector_rend(*args)
def pop_back(*args): return _QuantLib.CalibrationHelperVector_pop_back(*args)
def erase(*args): return _QuantLib.CalibrationHelperVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_CalibrationHelperVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.CalibrationHelperVector_push_back(*args)
def front(*args): return _QuantLib.CalibrationHelperVector_front(*args)
def back(*args): return _QuantLib.CalibrationHelperVector_back(*args)
def assign(*args): return _QuantLib.CalibrationHelperVector_assign(*args)
def resize(*args): return _QuantLib.CalibrationHelperVector_resize(*args)
def insert(*args): return _QuantLib.CalibrationHelperVector_insert(*args)
def reserve(*args): return _QuantLib.CalibrationHelperVector_reserve(*args)
def capacity(*args): return _QuantLib.CalibrationHelperVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_CalibrationHelperVector
__del__ = lambda self : None;
CalibrationHelperVector_swigregister = _QuantLib.CalibrationHelperVector_swigregister
CalibrationHelperVector_swigregister(CalibrationHelperVector)
class ShortRateModel(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.ShortRateModel___deref__(*args)
def __nonzero__(*args): return _QuantLib.ShortRateModel___nonzero__(*args)
def asObservable(*args): return _QuantLib.ShortRateModel_asObservable(*args)
def __init__(self, *args):
this = _QuantLib.new_ShortRateModel(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_ShortRateModel
__del__ = lambda self : None;
def params(*args): return _QuantLib.ShortRateModel_params(*args)
def calibrate(*args): return _QuantLib.ShortRateModel_calibrate(*args)
ShortRateModel_swigregister = _QuantLib.ShortRateModel_swigregister
ShortRateModel_swigregister(ShortRateModel)
class HullWhite(ShortRateModel):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_HullWhite(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_HullWhite
__del__ = lambda self : None;
HullWhite_swigregister = _QuantLib.HullWhite_swigregister
HullWhite_swigregister(HullWhite)
class BlackKarasinski(ShortRateModel):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BlackKarasinski(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BlackKarasinski
__del__ = lambda self : None;
BlackKarasinski_swigregister = _QuantLib.BlackKarasinski_swigregister
BlackKarasinski_swigregister(BlackKarasinski)
class G2(ShortRateModel):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_G2(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_G2
__del__ = lambda self : None;
G2_swigregister = _QuantLib.G2_swigregister
G2_swigregister(G2)
class JamshidianSwaptionEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_JamshidianSwaptionEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_JamshidianSwaptionEngine
__del__ = lambda self : None;
JamshidianSwaptionEngine_swigregister = _QuantLib.JamshidianSwaptionEngine_swigregister
JamshidianSwaptionEngine_swigregister(JamshidianSwaptionEngine)
class TreeSwaptionEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_TreeSwaptionEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_TreeSwaptionEngine
__del__ = lambda self : None;
TreeSwaptionEngine_swigregister = _QuantLib.TreeSwaptionEngine_swigregister
TreeSwaptionEngine_swigregister(TreeSwaptionEngine)
class AnalyticCapFloorEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_AnalyticCapFloorEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_AnalyticCapFloorEngine
__del__ = lambda self : None;
AnalyticCapFloorEngine_swigregister = _QuantLib.AnalyticCapFloorEngine_swigregister
AnalyticCapFloorEngine_swigregister(AnalyticCapFloorEngine)
class TreeCapFloorEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_TreeCapFloorEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_TreeCapFloorEngine
__del__ = lambda self : None;
TreeCapFloorEngine_swigregister = _QuantLib.TreeCapFloorEngine_swigregister
TreeCapFloorEngine_swigregister(TreeCapFloorEngine)
class G2SwaptionEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_G2SwaptionEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_G2SwaptionEngine
__del__ = lambda self : None;
G2SwaptionEngine_swigregister = _QuantLib.G2SwaptionEngine_swigregister
G2SwaptionEngine_swigregister(G2SwaptionEngine)
class Statistics(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def samples(*args): return _QuantLib.Statistics_samples(*args)
def weightSum(*args): return _QuantLib.Statistics_weightSum(*args)
def mean(*args): return _QuantLib.Statistics_mean(*args)
def variance(*args): return _QuantLib.Statistics_variance(*args)
def standardDeviation(*args): return _QuantLib.Statistics_standardDeviation(*args)
def errorEstimate(*args): return _QuantLib.Statistics_errorEstimate(*args)
def skewness(*args): return _QuantLib.Statistics_skewness(*args)
def kurtosis(*args): return _QuantLib.Statistics_kurtosis(*args)
def min(*args): return _QuantLib.Statistics_min(*args)
def max(*args): return _QuantLib.Statistics_max(*args)
def reset(*args): return _QuantLib.Statistics_reset(*args)
def add(*args): return _QuantLib.Statistics_add(*args)
def __init__(self, *args):
this = _QuantLib.new_Statistics(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Statistics
__del__ = lambda self : None;
Statistics_swigregister = _QuantLib.Statistics_swigregister
Statistics_swigregister(Statistics)
class RiskStatistics(Statistics):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def semiVariance(*args): return _QuantLib.RiskStatistics_semiVariance(*args)
def semiDeviation(*args): return _QuantLib.RiskStatistics_semiDeviation(*args)
def downsideVariance(*args): return _QuantLib.RiskStatistics_downsideVariance(*args)
def downsideDeviation(*args): return _QuantLib.RiskStatistics_downsideDeviation(*args)
def regret(*args): return _QuantLib.RiskStatistics_regret(*args)
def potentialUpside(*args): return _QuantLib.RiskStatistics_potentialUpside(*args)
def valueAtRisk(*args): return _QuantLib.RiskStatistics_valueAtRisk(*args)
def expectedShortfall(*args): return _QuantLib.RiskStatistics_expectedShortfall(*args)
def shortfall(*args): return _QuantLib.RiskStatistics_shortfall(*args)
def averageShortfall(*args): return _QuantLib.RiskStatistics_averageShortfall(*args)
def __init__(self, *args):
this = _QuantLib.new_RiskStatistics(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_RiskStatistics
__del__ = lambda self : None;
RiskStatistics_swigregister = _QuantLib.RiskStatistics_swigregister
RiskStatistics_swigregister(RiskStatistics)
class MultipleStatistics(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_MultipleStatistics(*args)
try: self.this.append(this)
except: self.this = this
def size(*args): return _QuantLib.MultipleStatistics_size(*args)
def samples(*args): return _QuantLib.MultipleStatistics_samples(*args)
def weightSum(*args): return _QuantLib.MultipleStatistics_weightSum(*args)
def mean(*args): return _QuantLib.MultipleStatistics_mean(*args)
def variance(*args): return _QuantLib.MultipleStatistics_variance(*args)
def standardDeviation(*args): return _QuantLib.MultipleStatistics_standardDeviation(*args)
def errorEstimate(*args): return _QuantLib.MultipleStatistics_errorEstimate(*args)
def skewness(*args): return _QuantLib.MultipleStatistics_skewness(*args)
def kurtosis(*args): return _QuantLib.MultipleStatistics_kurtosis(*args)
def min(*args): return _QuantLib.MultipleStatistics_min(*args)
def max(*args): return _QuantLib.MultipleStatistics_max(*args)
def covariance(*args): return _QuantLib.MultipleStatistics_covariance(*args)
def correlation(*args): return _QuantLib.MultipleStatistics_correlation(*args)
def reset(*args): return _QuantLib.MultipleStatistics_reset(*args)
def add(*args): return _QuantLib.MultipleStatistics_add(*args)
__swig_destroy__ = _QuantLib.delete_MultipleStatistics
__del__ = lambda self : None;
MultipleStatistics_swigregister = _QuantLib.MultipleStatistics_swigregister
MultipleStatistics_swigregister(MultipleStatistics)
class TimeBasket(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_TimeBasket(*args)
try: self.this.append(this)
except: self.this = this
def __len__(*args): return _QuantLib.TimeBasket___len__(*args)
def rebin(*args): return _QuantLib.TimeBasket_rebin(*args)
def __getitem__(*args): return _QuantLib.TimeBasket___getitem__(*args)
def __setitem__(*args): return _QuantLib.TimeBasket___setitem__(*args)
def items(*args): return _QuantLib.TimeBasket_items(*args)
def __contains__(*args): return _QuantLib.TimeBasket___contains__(*args)
def __iter__(*args): return _QuantLib.TimeBasket___iter__(*args)
__swig_destroy__ = _QuantLib.delete_TimeBasket
__del__ = lambda self : None;
TimeBasket_swigregister = _QuantLib.TimeBasket_swigregister
TimeBasket_swigregister(TimeBasket)
class Swap(Instrument):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Swap(*args)
try: self.this.append(this)
except: self.this = this
def startDate(*args): return _QuantLib.Swap_startDate(*args)
def maturity(*args): return _QuantLib.Swap_maturity(*args)
def firstLegBPS(*args): return _QuantLib.Swap_firstLegBPS(*args)
def secondLegBPS(*args): return _QuantLib.Swap_secondLegBPS(*args)
__swig_destroy__ = _QuantLib.delete_Swap
__del__ = lambda self : None;
Swap_swigregister = _QuantLib.Swap_swigregister
Swap_swigregister(Swap)
class VanillaSwap(Swap):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_VanillaSwap(*args)
try: self.this.append(this)
except: self.this = this
def fairRate(*args): return _QuantLib.VanillaSwap_fairRate(*args)
def fairSpread(*args): return _QuantLib.VanillaSwap_fairSpread(*args)
def fixedLegBPS(*args): return _QuantLib.VanillaSwap_fixedLegBPS(*args)
def floatingLegBPS(*args): return _QuantLib.VanillaSwap_floatingLegBPS(*args)
__swig_destroy__ = _QuantLib.delete_VanillaSwap
__del__ = lambda self : None;
VanillaSwap_swigregister = _QuantLib.VanillaSwap_swigregister
VanillaSwap_swigregister(VanillaSwap)
class Swaption(Instrument):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_Swaption(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_Swaption
__del__ = lambda self : None;
Swaption_swigregister = _QuantLib.Swaption_swigregister
Swaption_swigregister(Swaption)
class BlackSwaptionEngine(PricingEngine):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_BlackSwaptionEngine(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_BlackSwaptionEngine
__del__ = lambda self : None;
BlackSwaptionEngine_swigregister = _QuantLib.BlackSwaptionEngine_swigregister
BlackSwaptionEngine_swigregister(BlackSwaptionEngine)
class RealTimeSeries(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_RealTimeSeries(*args)
try: self.this.append(this)
except: self.this = this
def dates(*args): return _QuantLib.RealTimeSeries_dates(*args)
def values(*args): return _QuantLib.RealTimeSeries_values(*args)
def __len__(*args): return _QuantLib.RealTimeSeries___len__(*args)
def __getitem__(*args): return _QuantLib.RealTimeSeries___getitem__(*args)
def __setitem__(*args): return _QuantLib.RealTimeSeries___setitem__(*args)
__swig_destroy__ = _QuantLib.delete_RealTimeSeries
__del__ = lambda self : None;
RealTimeSeries_swigregister = _QuantLib.RealTimeSeries_swigregister
RealTimeSeries_swigregister(RealTimeSeries)
class IntervalPriceTimeSeries(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_IntervalPriceTimeSeries(*args)
try: self.this.append(this)
except: self.this = this
def dates(*args): return _QuantLib.IntervalPriceTimeSeries_dates(*args)
def values(*args): return _QuantLib.IntervalPriceTimeSeries_values(*args)
def __len__(*args): return _QuantLib.IntervalPriceTimeSeries___len__(*args)
def __getitem__(*args): return _QuantLib.IntervalPriceTimeSeries___getitem__(*args)
def __setitem__(*args): return _QuantLib.IntervalPriceTimeSeries___setitem__(*args)
__swig_destroy__ = _QuantLib.delete_IntervalPriceTimeSeries
__del__ = lambda self : None;
IntervalPriceTimeSeries_swigregister = _QuantLib.IntervalPriceTimeSeries_swigregister
IntervalPriceTimeSeries_swigregister(IntervalPriceTimeSeries)
class IntervalPriceVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.IntervalPriceVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.IntervalPriceVector___nonzero__(*args)
def __len__(*args): return _QuantLib.IntervalPriceVector___len__(*args)
def pop(*args): return _QuantLib.IntervalPriceVector_pop(*args)
def __getslice__(*args): return _QuantLib.IntervalPriceVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.IntervalPriceVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.IntervalPriceVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.IntervalPriceVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.IntervalPriceVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.IntervalPriceVector___setitem__(*args)
def append(*args): return _QuantLib.IntervalPriceVector_append(*args)
def empty(*args): return _QuantLib.IntervalPriceVector_empty(*args)
def size(*args): return _QuantLib.IntervalPriceVector_size(*args)
def clear(*args): return _QuantLib.IntervalPriceVector_clear(*args)
def swap(*args): return _QuantLib.IntervalPriceVector_swap(*args)
def get_allocator(*args): return _QuantLib.IntervalPriceVector_get_allocator(*args)
def begin(*args): return _QuantLib.IntervalPriceVector_begin(*args)
def end(*args): return _QuantLib.IntervalPriceVector_end(*args)
def rbegin(*args): return _QuantLib.IntervalPriceVector_rbegin(*args)
def rend(*args): return _QuantLib.IntervalPriceVector_rend(*args)
def pop_back(*args): return _QuantLib.IntervalPriceVector_pop_back(*args)
def erase(*args): return _QuantLib.IntervalPriceVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_IntervalPriceVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.IntervalPriceVector_push_back(*args)
def front(*args): return _QuantLib.IntervalPriceVector_front(*args)
def back(*args): return _QuantLib.IntervalPriceVector_back(*args)
def assign(*args): return _QuantLib.IntervalPriceVector_assign(*args)
def resize(*args): return _QuantLib.IntervalPriceVector_resize(*args)
def insert(*args): return _QuantLib.IntervalPriceVector_insert(*args)
def reserve(*args): return _QuantLib.IntervalPriceVector_reserve(*args)
def capacity(*args): return _QuantLib.IntervalPriceVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_IntervalPriceVector
__del__ = lambda self : None;
IntervalPriceVector_swigregister = _QuantLib.IntervalPriceVector_swigregister
IntervalPriceVector_swigregister(IntervalPriceVector)
class IntervalPrice(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_IntervalPrice(*args)
try: self.this.append(this)
except: self.this = this
def setValue(*args): return _QuantLib.IntervalPrice_setValue(*args)
def setValues(*args): return _QuantLib.IntervalPrice_setValues(*args)
def value(*args): return _QuantLib.IntervalPrice_value(*args)
def open(*args): return _QuantLib.IntervalPrice_open(*args)
def close(*args): return _QuantLib.IntervalPrice_close(*args)
def high(*args): return _QuantLib.IntervalPrice_high(*args)
def low(*args): return _QuantLib.IntervalPrice_low(*args)
makeSeries = staticmethod(_QuantLib.IntervalPrice_makeSeries)
extractValues = staticmethod(_QuantLib.IntervalPrice_extractValues)
extractComponent = staticmethod(_QuantLib.IntervalPrice_extractComponent)
__swig_destroy__ = _QuantLib.delete_IntervalPrice
__del__ = lambda self : None;
IntervalPrice_swigregister = _QuantLib.IntervalPrice_swigregister
IntervalPrice_swigregister(IntervalPrice)
IntervalPrice_makeSeries = _QuantLib.IntervalPrice_makeSeries
IntervalPrice_extractValues = _QuantLib.IntervalPrice_extractValues
IntervalPrice_extractComponent = _QuantLib.IntervalPrice_extractComponent
class ConstantEstimator(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ConstantEstimator(*args)
try: self.this.append(this)
except: self.this = this
def calculate(*args): return _QuantLib.ConstantEstimator_calculate(*args)
__swig_destroy__ = _QuantLib.delete_ConstantEstimator
__del__ = lambda self : None;
ConstantEstimator_swigregister = _QuantLib.ConstantEstimator_swigregister
ConstantEstimator_swigregister(ConstantEstimator)
class GarmanKlassSigma1(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_GarmanKlassSigma1(*args)
try: self.this.append(this)
except: self.this = this
def calculate(*args): return _QuantLib.GarmanKlassSigma1_calculate(*args)
__swig_destroy__ = _QuantLib.delete_GarmanKlassSigma1
__del__ = lambda self : None;
GarmanKlassSigma1_swigregister = _QuantLib.GarmanKlassSigma1_swigregister
GarmanKlassSigma1_swigregister(GarmanKlassSigma1)
class ParkinsonSigma(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ParkinsonSigma(*args)
try: self.this.append(this)
except: self.this = this
def calculate(*args): return _QuantLib.ParkinsonSigma_calculate(*args)
__swig_destroy__ = _QuantLib.delete_ParkinsonSigma
__del__ = lambda self : None;
ParkinsonSigma_swigregister = _QuantLib.ParkinsonSigma_swigregister
ParkinsonSigma_swigregister(ParkinsonSigma)
class GarmanKlassSigma3(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_GarmanKlassSigma3(*args)
try: self.this.append(this)
except: self.this = this
def calculate(*args): return _QuantLib.GarmanKlassSigma3_calculate(*args)
__swig_destroy__ = _QuantLib.delete_GarmanKlassSigma3
__del__ = lambda self : None;
GarmanKlassSigma3_swigregister = _QuantLib.GarmanKlassSigma3_swigregister
GarmanKlassSigma3_swigregister(GarmanKlassSigma3)
class GarmanKlassSigma4(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_GarmanKlassSigma4(*args)
try: self.this.append(this)
except: self.this = this
def calculate(*args): return _QuantLib.GarmanKlassSigma4_calculate(*args)
__swig_destroy__ = _QuantLib.delete_GarmanKlassSigma4
__del__ = lambda self : None;
GarmanKlassSigma4_swigregister = _QuantLib.GarmanKlassSigma4_swigregister
GarmanKlassSigma4_swigregister(GarmanKlassSigma4)
class GarmanKlassSigma5(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_GarmanKlassSigma5(*args)
try: self.this.append(this)
except: self.this = this
def calculate(*args): return _QuantLib.GarmanKlassSigma5_calculate(*args)
__swig_destroy__ = _QuantLib.delete_GarmanKlassSigma5
__del__ = lambda self : None;
GarmanKlassSigma5_swigregister = _QuantLib.GarmanKlassSigma5_swigregister
GarmanKlassSigma5_swigregister(GarmanKlassSigma5)
class GarmanKlassSigma6(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_GarmanKlassSigma6(*args)
try: self.this.append(this)
except: self.this = this
def calculate(*args): return _QuantLib.GarmanKlassSigma6_calculate(*args)
__swig_destroy__ = _QuantLib.delete_GarmanKlassSigma6
__del__ = lambda self : None;
GarmanKlassSigma6_swigregister = _QuantLib.GarmanKlassSigma6_swigregister
GarmanKlassSigma6_swigregister(GarmanKlassSigma6)
class ZeroCurve(YieldTermStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_ZeroCurve(*args)
try: self.this.append(this)
except: self.this = this
def dates(*args): return _QuantLib.ZeroCurve_dates(*args)
def zeroRates(*args): return _QuantLib.ZeroCurve_zeroRates(*args)
def nodes(*args): return _QuantLib.ZeroCurve_nodes(*args)
__swig_destroy__ = _QuantLib.delete_ZeroCurve
__del__ = lambda self : None;
ZeroCurve_swigregister = _QuantLib.ZeroCurve_swigregister
ZeroCurve_swigregister(ZeroCurve)
class DiscreteGeometricASO(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_DiscreteGeometricASO(*args)
try: self.this.append(this)
except: self.this = this
def value(*args): return _QuantLib.DiscreteGeometricASO_value(*args)
__swig_destroy__ = _QuantLib.delete_DiscreteGeometricASO
__del__ = lambda self : None;
DiscreteGeometricASO_swigregister = _QuantLib.DiscreteGeometricASO_swigregister
DiscreteGeometricASO_swigregister(DiscreteGeometricASO)
class YieldTermStructureVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.YieldTermStructureVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.YieldTermStructureVector___nonzero__(*args)
def __len__(*args): return _QuantLib.YieldTermStructureVector___len__(*args)
def pop(*args): return _QuantLib.YieldTermStructureVector_pop(*args)
def __getslice__(*args): return _QuantLib.YieldTermStructureVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.YieldTermStructureVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.YieldTermStructureVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.YieldTermStructureVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.YieldTermStructureVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.YieldTermStructureVector___setitem__(*args)
def append(*args): return _QuantLib.YieldTermStructureVector_append(*args)
def empty(*args): return _QuantLib.YieldTermStructureVector_empty(*args)
def size(*args): return _QuantLib.YieldTermStructureVector_size(*args)
def clear(*args): return _QuantLib.YieldTermStructureVector_clear(*args)
def swap(*args): return _QuantLib.YieldTermStructureVector_swap(*args)
def get_allocator(*args): return _QuantLib.YieldTermStructureVector_get_allocator(*args)
def begin(*args): return _QuantLib.YieldTermStructureVector_begin(*args)
def end(*args): return _QuantLib.YieldTermStructureVector_end(*args)
def rbegin(*args): return _QuantLib.YieldTermStructureVector_rbegin(*args)
def rend(*args): return _QuantLib.YieldTermStructureVector_rend(*args)
def pop_back(*args): return _QuantLib.YieldTermStructureVector_pop_back(*args)
def erase(*args): return _QuantLib.YieldTermStructureVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_YieldTermStructureVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.YieldTermStructureVector_push_back(*args)
def front(*args): return _QuantLib.YieldTermStructureVector_front(*args)
def back(*args): return _QuantLib.YieldTermStructureVector_back(*args)
def assign(*args): return _QuantLib.YieldTermStructureVector_assign(*args)
def resize(*args): return _QuantLib.YieldTermStructureVector_resize(*args)
def insert(*args): return _QuantLib.YieldTermStructureVector_insert(*args)
def reserve(*args): return _QuantLib.YieldTermStructureVector_reserve(*args)
def capacity(*args): return _QuantLib.YieldTermStructureVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_YieldTermStructureVector
__del__ = lambda self : None;
YieldTermStructureVector_swigregister = _QuantLib.YieldTermStructureVector_swigregister
YieldTermStructureVector_swigregister(YieldTermStructureVector)
class BlackVolTermStructureVector(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def iterator(*args): return _QuantLib.BlackVolTermStructureVector_iterator(*args)
def __iter__(self): return self.iterator()
def __nonzero__(*args): return _QuantLib.BlackVolTermStructureVector___nonzero__(*args)
def __len__(*args): return _QuantLib.BlackVolTermStructureVector___len__(*args)
def pop(*args): return _QuantLib.BlackVolTermStructureVector_pop(*args)
def __getslice__(*args): return _QuantLib.BlackVolTermStructureVector___getslice__(*args)
def __setslice__(*args): return _QuantLib.BlackVolTermStructureVector___setslice__(*args)
def __delslice__(*args): return _QuantLib.BlackVolTermStructureVector___delslice__(*args)
def __delitem__(*args): return _QuantLib.BlackVolTermStructureVector___delitem__(*args)
def __getitem__(*args): return _QuantLib.BlackVolTermStructureVector___getitem__(*args)
def __setitem__(*args): return _QuantLib.BlackVolTermStructureVector___setitem__(*args)
def append(*args): return _QuantLib.BlackVolTermStructureVector_append(*args)
def empty(*args): return _QuantLib.BlackVolTermStructureVector_empty(*args)
def size(*args): return _QuantLib.BlackVolTermStructureVector_size(*args)
def clear(*args): return _QuantLib.BlackVolTermStructureVector_clear(*args)
def swap(*args): return _QuantLib.BlackVolTermStructureVector_swap(*args)
def get_allocator(*args): return _QuantLib.BlackVolTermStructureVector_get_allocator(*args)
def begin(*args): return _QuantLib.BlackVolTermStructureVector_begin(*args)
def end(*args): return _QuantLib.BlackVolTermStructureVector_end(*args)
def rbegin(*args): return _QuantLib.BlackVolTermStructureVector_rbegin(*args)
def rend(*args): return _QuantLib.BlackVolTermStructureVector_rend(*args)
def pop_back(*args): return _QuantLib.BlackVolTermStructureVector_pop_back(*args)
def erase(*args): return _QuantLib.BlackVolTermStructureVector_erase(*args)
def __init__(self, *args):
this = _QuantLib.new_BlackVolTermStructureVector(*args)
try: self.this.append(this)
except: self.this = this
def push_back(*args): return _QuantLib.BlackVolTermStructureVector_push_back(*args)
def front(*args): return _QuantLib.BlackVolTermStructureVector_front(*args)
def back(*args): return _QuantLib.BlackVolTermStructureVector_back(*args)
def assign(*args): return _QuantLib.BlackVolTermStructureVector_assign(*args)
def resize(*args): return _QuantLib.BlackVolTermStructureVector_resize(*args)
def insert(*args): return _QuantLib.BlackVolTermStructureVector_insert(*args)
def reserve(*args): return _QuantLib.BlackVolTermStructureVector_reserve(*args)
def capacity(*args): return _QuantLib.BlackVolTermStructureVector_capacity(*args)
__swig_destroy__ = _QuantLib.delete_BlackVolTermStructureVector
__del__ = lambda self : None;
BlackVolTermStructureVector_swigregister = _QuantLib.BlackVolTermStructureVector_swigregister
BlackVolTermStructureVector_swigregister(BlackVolTermStructureVector)
class McDiscreteArithmeticASO(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_McDiscreteArithmeticASO(*args)
try: self.this.append(this)
except: self.this = this
def value(*args): return _QuantLib.McDiscreteArithmeticASO_value(*args)
def valueWithSamples(*args): return _QuantLib.McDiscreteArithmeticASO_valueWithSamples(*args)
def errorEstimate(*args): return _QuantLib.McDiscreteArithmeticASO_errorEstimate(*args)
__swig_destroy__ = _QuantLib.delete_McDiscreteArithmeticASO
__del__ = lambda self : None;
McDiscreteArithmeticASO_swigregister = _QuantLib.McDiscreteArithmeticASO_swigregister
McDiscreteArithmeticASO_swigregister(McDiscreteArithmeticASO)
class McMaxBasket(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_McMaxBasket(*args)
try: self.this.append(this)
except: self.this = this
def value(*args): return _QuantLib.McMaxBasket_value(*args)
def valueWithSamples(*args): return _QuantLib.McMaxBasket_valueWithSamples(*args)
def errorEstimate(*args): return _QuantLib.McMaxBasket_errorEstimate(*args)
__swig_destroy__ = _QuantLib.delete_McMaxBasket
__del__ = lambda self : None;
McMaxBasket_swigregister = _QuantLib.McMaxBasket_swigregister
McMaxBasket_swigregister(McMaxBasket)
class McHimalaya(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_McHimalaya(*args)
try: self.this.append(this)
except: self.this = this
def value(*args): return _QuantLib.McHimalaya_value(*args)
def valueWithSamples(*args): return _QuantLib.McHimalaya_valueWithSamples(*args)
def errorEstimate(*args): return _QuantLib.McHimalaya_errorEstimate(*args)
__swig_destroy__ = _QuantLib.delete_McHimalaya
__del__ = lambda self : None;
McHimalaya_swigregister = _QuantLib.McHimalaya_swigregister
McHimalaya_swigregister(McHimalaya)
class McEverest(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_McEverest(*args)
try: self.this.append(this)
except: self.this = this
def value(*args): return _QuantLib.McEverest_value(*args)
def valueWithSamples(*args): return _QuantLib.McEverest_valueWithSamples(*args)
def errorEstimate(*args): return _QuantLib.McEverest_errorEstimate(*args)
__swig_destroy__ = _QuantLib.delete_McEverest
__del__ = lambda self : None;
McEverest_swigregister = _QuantLib.McEverest_swigregister
McEverest_swigregister(McEverest)
class McPagoda(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_McPagoda(*args)
try: self.this.append(this)
except: self.this = this
def value(*args): return _QuantLib.McPagoda_value(*args)
def valueWithSamples(*args): return _QuantLib.McPagoda_valueWithSamples(*args)
def errorEstimate(*args): return _QuantLib.McPagoda_errorEstimate(*args)
__swig_destroy__ = _QuantLib.delete_McPagoda
__del__ = lambda self : None;
McPagoda_swigregister = _QuantLib.McPagoda_swigregister
McPagoda_swigregister(McPagoda)
class SwaptionVolatilityStructure(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.SwaptionVolatilityStructure___deref__(*args)
def __nonzero__(*args): return _QuantLib.SwaptionVolatilityStructure___nonzero__(*args)
def asObservable(*args): return _QuantLib.SwaptionVolatilityStructure_asObservable(*args)
def __init__(self, *args):
this = _QuantLib.new_SwaptionVolatilityStructure(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SwaptionVolatilityStructure
__del__ = lambda self : None;
def volatility(*args): return _QuantLib.SwaptionVolatilityStructure_volatility(*args)
SwaptionVolatilityStructure_swigregister = _QuantLib.SwaptionVolatilityStructure_swigregister
SwaptionVolatilityStructure_swigregister(SwaptionVolatilityStructure)
class SwaptionVolatilityStructureHandle(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SwaptionVolatilityStructureHandle(*args)
try: self.this.append(this)
except: self.this = this
def __deref__(*args): return _QuantLib.SwaptionVolatilityStructureHandle___deref__(*args)
def linkTo(*args): return _QuantLib.SwaptionVolatilityStructureHandle_linkTo(*args)
def __nonzero__(*args): return _QuantLib.SwaptionVolatilityStructureHandle___nonzero__(*args)
def asObservable(*args): return _QuantLib.SwaptionVolatilityStructureHandle_asObservable(*args)
__swig_destroy__ = _QuantLib.delete_SwaptionVolatilityStructureHandle
__del__ = lambda self : None;
def volatility(*args): return _QuantLib.SwaptionVolatilityStructureHandle_volatility(*args)
SwaptionVolatilityStructureHandle_swigregister = _QuantLib.SwaptionVolatilityStructureHandle_swigregister
SwaptionVolatilityStructureHandle_swigregister(SwaptionVolatilityStructureHandle)
class SwaptionVolatilityMatrix(SwaptionVolatilityStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_SwaptionVolatilityMatrix(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_SwaptionVolatilityMatrix
__del__ = lambda self : None;
SwaptionVolatilityMatrix_swigregister = _QuantLib.SwaptionVolatilityMatrix_swigregister
SwaptionVolatilityMatrix_swigregister(SwaptionVolatilityMatrix)
class CapVolatilityStructure(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __deref__(*args): return _QuantLib.CapVolatilityStructure___deref__(*args)
def __nonzero__(*args): return _QuantLib.CapVolatilityStructure___nonzero__(*args)
def asObservable(*args): return _QuantLib.CapVolatilityStructure_asObservable(*args)
def __init__(self, *args):
this = _QuantLib.new_CapVolatilityStructure(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CapVolatilityStructure
__del__ = lambda self : None;
def volatility(*args): return _QuantLib.CapVolatilityStructure_volatility(*args)
CapVolatilityStructure_swigregister = _QuantLib.CapVolatilityStructure_swigregister
CapVolatilityStructure_swigregister(CapVolatilityStructure)
class CapVolatilityStructureHandle(object):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CapVolatilityStructureHandle(*args)
try: self.this.append(this)
except: self.this = this
def __deref__(*args): return _QuantLib.CapVolatilityStructureHandle___deref__(*args)
def linkTo(*args): return _QuantLib.CapVolatilityStructureHandle_linkTo(*args)
def __nonzero__(*args): return _QuantLib.CapVolatilityStructureHandle___nonzero__(*args)
def asObservable(*args): return _QuantLib.CapVolatilityStructureHandle_asObservable(*args)
__swig_destroy__ = _QuantLib.delete_CapVolatilityStructureHandle
__del__ = lambda self : None;
def volatility(*args): return _QuantLib.CapVolatilityStructureHandle_volatility(*args)
CapVolatilityStructureHandle_swigregister = _QuantLib.CapVolatilityStructureHandle_swigregister
CapVolatilityStructureHandle_swigregister(CapVolatilityStructureHandle)
class CapVolatilityVector(CapVolatilityStructure):
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__repr__ = _swig_repr
def __init__(self, *args):
this = _QuantLib.new_CapVolatilityVector(*args)
try: self.this.append(this)
except: self.this = this
__swig_destroy__ = _QuantLib.delete_CapVolatilityVector
__del__ = lambda self : None;
CapVolatilityVector_swigregister = _QuantLib.CapVolatilityVector_swigregister
CapVolatilityVector_swigregister(CapVolatilityVector)
|