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
// Copyright © 2016–2024 Trevor Spiteri
// This program is free software: you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License as published by the Free
// Software Foundation, either version 3 of the License, or (at your option) any
// later version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
//
// You should have received a copy of the GNU Lesser General Public License and
// a copy of the GNU General Public License along with this program. If not, see
// <https://www.gnu.org/licenses/>.
use crate::complex::arith::{AddMulIncomplete, SubMulFromIncomplete};
use crate::complex::{BorrowComplex, OrdComplex, Prec, Prec64};
use crate::ext::xmpc;
use crate::ext::xmpc::{Ordering2, Round2, NEAREST2};
use crate::ext::xmpfr;
use crate::float;
use crate::float::big::{
self as big_float, ExpFormat, Format as FloatFormat, ParseIncomplete as FloatParseIncomplete,
};
use crate::float::{ParseFloatError, Round, Special};
use crate::misc;
use crate::misc::StringLike;
use crate::ops::{
AddAssignRound, AssignRound, CompleteRound, NegAssign, SubAssignRound, SubFrom, SubFromRound,
};
#[cfg(feature = "rand")]
use crate::rand::MutRandState;
use crate::{Assign, Float};
use az::UnwrappedCast;
use core::cmp::Ordering;
use core::fmt::{Display, Formatter, Result as FmtResult};
use core::mem::{ManuallyDrop, MaybeUninit};
use core::ops::{Add, AddAssign, Sub, SubAssign};
use core::slice;
use gmp_mpfr_sys::mpc::mpc_t;
#[cfg(feature = "std")]
use std::error::Error;
/**
A multi-precision complex number with arbitrarily large precision and correct
rounding.
The precision has to be set during construction. The rounding method of the
required operations can be specified, and the direction of the rounding is
returned.
# Examples
```rust
use rug::{Assign, Complex, Float};
let c = Complex::with_val(53, (40, 30));
assert_eq!(format!("{:.3}", c), "(40.0 30.0)");
let mut f = Float::with_val(53, c.abs_ref());
assert_eq!(f, 50);
f.assign(c.arg_ref());
assert_eq!(f, 0.75_f64.atan());
```
Operations on two borrowed `Complex` numbers result in an
[incomplete-computation value][icv] that has to be assigned to a new `Complex`
number.
```rust
use rug::Complex;
let a = Complex::with_val(53, (10.5, -11));
let b = Complex::with_val(53, (-1.25, -1.5));
let a_b_ref = &a + &b;
let a_b = Complex::with_val(53, a_b_ref);
assert_eq!(a_b, (9.25, -12.5));
```
As a special case, when an [incomplete-computation value][icv] is obtained from
multiplying two `Complex` number references, it can be added to or subtracted
from another `Complex` number (or reference). This will result in a fused
multiply-accumulate operation, with only one rounding operation taking place.
```rust
use rug::Complex;
let mut acc = Complex::with_val(53, (1000, 1000));
let m1 = Complex::with_val(53, (10, 0));
let m2 = Complex::with_val(53, (1, -1));
// (1000 + 1000i) - (10 + 0i) × (1 - i) = (990 + 1010i)
acc -= &m1 * &m2;
assert_eq!(acc, (990, 1010));
```
The `Complex` number type supports various functions. Most methods have four
versions:
1. The first method consumes the operand and rounds the returned `Complex`
number to the [nearest][Round::Nearest] representable value.
2. The second method has a “`_mut`” suffix, mutates the operand and rounds it
the nearest representable value.
3. The third method has a “`_round`” suffix, mutates the operand, applies the
specified [rounding method][Round] to the real and imaginary parts, and
returns the rounding direction for both:
* <code>[Ordering]::[Less][Ordering::Less]</code> if the stored part is less than the
exact result,
* <code>[Ordering]::[Equal][Ordering::Equal]</code> if the stored part is
equal to the exact result,
* <code>[Ordering]::[Greater][Ordering::Greater]</code> if the stored part
is greater than the exact result.
4. The fourth method has a “`_ref`” suffix and borrows the operand. The
returned item is an [incomplete-computation value][icv] that can be assigned
to a `Complex` number; the rounding method is selected during the
assignment.
```rust
use core::cmp::Ordering;
use rug::float::Round;
use rug::Complex;
let expected = Complex::with_val(53, (1.2985, 0.6350));
// 1. consume the operand, round to nearest
let a = Complex::with_val(53, (1, 1));
let sin_a = a.sin();
assert!(*(sin_a - &expected).abs().real() < 0.0001);
// 2. mutate the operand, round to nearest
let mut b = Complex::with_val(53, (1, 1));
b.sin_mut();
assert!(*(b - &expected).abs().real() < 0.0001);
// 3. mutate the operand, apply specified rounding
let mut c = Complex::with_val(4, (1, 1));
// using 4 significant bits, 1.2985 is rounded down to 1.25
// and 0.6350 is rounded down to 0.625.
let dir = c.sin_round((Round::Nearest, Round::Nearest));
assert_eq!(c, (1.25, 0.625));
assert_eq!(dir, (Ordering::Less, Ordering::Less));
// 4. borrow the operand
let d = Complex::with_val(53, (1, 1));
let r = d.sin_ref();
let sin_d = Complex::with_val(53, r);
assert!(*(sin_d - &expected).abs().real() < 0.0001);
// d was not consumed
assert_eq!(d, (1, 1));
```
[icv]: crate#incomplete-computation-values
*/
#[repr(transparent)]
pub struct Complex {
inner: mpc_t,
}
static_assert_same_layout!(Complex, mpc_t);
static_assert_same_layout!(BorrowComplex<'_>, mpc_t);
static_assert_same_size!(Complex, Option<Complex>);
macro_rules! ref_math_op0_complex {
($($rest:tt)*) => {
ref_math_op0_round! {
Complex, (u32, u32), Round2, NEAREST2, Ordering2;
$($rest)*
}
};
}
macro_rules! ref_math_op1_complex {
($($rest:tt)*) => {
ref_math_op1_round! {
Complex, (u32, u32), Round2, NEAREST2, Ordering2;
$($rest)*
}
};
}
macro_rules! ref_math_op1_2_complex {
($($rest:tt)*) => {
ref_math_op1_2_round! {
Complex, (u32, u32), Round2, NEAREST2, (Ordering2, Ordering2);
$($rest)*
}
};
}
macro_rules! ref_math_op2_complex {
($($rest:tt)*) => {
ref_math_op2_round! {
Complex, (u32, u32), Round2, NEAREST2, Ordering2;
$($rest)*
}
};
}
impl Complex {
#[inline]
pub(crate) fn new_nan<P: Prec>(prec: P) -> Self {
let p = prec.prec();
assert!(
(float::prec_min()..=float::prec_max()).contains(&p.0)
&& (float::prec_min()..=float::prec_max()).contains(&p.1),
"precision out of range"
);
let mut ret = MaybeUninit::uninit();
xmpc::write_new_nan(&mut ret, p.0.unwrapped_cast(), p.1.unwrapped_cast());
// Safety: write_new_nan initializes ret.
unsafe { ret.assume_init() }
}
/// Create a new [`Complex`] number with the specified precisions for the
/// real and imaginary parts and with value 0.
///
/// # Panics
///
/// Panics if the precision is out of the allowed range.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c1 = Complex::new(32);
/// assert_eq!(c1.prec(), (32, 32));
/// assert_eq!(c1, 0);
/// let c2 = Complex::new((32, 64));
/// assert_eq!(c2.prec(), (32, 64));
/// assert_eq!(c2, 0);
/// ```
#[inline]
pub fn new<P: Prec>(prec: P) -> Self {
Self::with_val(prec, (Special::Zero, Special::Zero))
}
/// Create a new [`Complex`] number with the specified precision and with
/// the given value, rounding to the nearest.
///
/// # Panics
///
/// Panics if `prec` is out of the allowed range.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c1 = Complex::with_val(53, (1.3f64, -12));
/// assert_eq!(c1.prec(), (53, 53));
/// assert_eq!(c1, (1.3f64, -12));
/// let c2 = Complex::with_val(53, 42.0);
/// assert_eq!(c2.prec(), (53, 53));
/// assert_eq!(c2, 42);
/// assert_eq!(c2, (42, 0));
/// ```
#[inline]
pub fn with_val<P, T>(prec: P, val: T) -> Self
where
Self: Assign<T>,
P: Prec,
{
let mut ret = Complex::new_nan(prec);
ret.assign(val);
ret
}
/// Create a new [`Complex`] number with the specified precision and with
/// the given value, applying the specified rounding method.
///
/// # Panics
///
/// Panics if `prec` is out of the allowed range.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// let round = (Round::Down, Round::Up);
/// let (c, dir) = Complex::with_val_round(4, (3.3, 2.3), round);
/// // 3.3 is rounded down to 3.25, 2.3 is rounded up to 2.5
/// assert_eq!(c.prec(), (4, 4));
/// assert_eq!(c, (3.25, 2.5));
/// assert_eq!(dir, (Ordering::Less, Ordering::Greater));
/// ```
#[inline]
pub fn with_val_round<P, T>(prec: P, val: T, round: Round2) -> (Self, Ordering2)
where
Self: AssignRound<T, Round = Round2, Ordering = Ordering2>,
P: Prec,
{
let mut ret = Complex::new_nan(prec);
let ord = ret.assign_round(val, round);
(ret, ord)
}
/// Returns the precision of the real and imaginary parts.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let r = Complex::new((24, 53));
/// assert_eq!(r.prec(), (24, 53));
/// ```
#[inline]
pub const fn prec(&self) -> (u32, u32) {
(self.real().prec(), self.imag().prec())
}
/// Sets the precision of the real and imaginary parts, rounding to the
/// nearest.
///
/// # Panics
///
/// Panics if the precision is out of the allowed range.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut r = Complex::with_val(6, (4.875, 4.625));
/// assert_eq!(r, (4.875, 4.625));
/// r.set_prec(4);
/// assert_eq!(r, (5.0, 4.5));
/// ```
#[inline]
pub fn set_prec<P: Prec>(&mut self, prec: P) {
self.set_prec_round(prec, NEAREST2);
}
/// Sets the precision of the real and imaginary parts, applying the
/// specified rounding method.
///
/// # Panics
///
/// Panics if the precision is out of the allowed range.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// let mut r = Complex::with_val(6, (4.875, 4.625));
/// assert_eq!(r, (4.875, 4.625));
/// let dir = r.set_prec_round(4, (Round::Down, Round::Up));
/// assert_eq!(r, (4.5, 5.0));
/// assert_eq!(dir, (Ordering::Less, Ordering::Greater));
/// ```
#[inline]
pub fn set_prec_round<P: Prec>(&mut self, prec: P, round: Round2) -> Ordering2 {
let p = prec.prec();
let (real, imag) = self.as_mut_real_imag();
(
real.set_prec_round(p.0, round.0),
imag.set_prec_round(p.1, round.1),
)
}
#[inline]
pub(crate) fn new_nan_64<P: Prec64>(prec: P) -> Self {
let p = prec.prec();
assert!(
(float::prec_min_64()..=float::prec_max_64()).contains(&p.0)
&& (float::prec_min_64()..=float::prec_max_64()).contains(&p.1),
"precision out of range"
);
let mut ret = MaybeUninit::uninit();
xmpc::write_new_nan(&mut ret, p.0.unwrapped_cast(), p.1.unwrapped_cast());
// Safety: write_new_nan initializes ret.
unsafe { ret.assume_init() }
}
/// Create a new [`Complex`] number with the specified precisions for the
/// real and imaginary parts and with value 0.
///
/// # Panics
///
/// Panics if the precision is out of the allowed range.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c1 = Complex::new_64(32);
/// assert_eq!(c1.prec_64(), (32, 32));
/// assert_eq!(c1, 0);
/// let c2 = Complex::new_64((32, 64));
/// assert_eq!(c2.prec_64(), (32, 64));
/// assert_eq!(c2, 0);
/// ```
#[inline]
pub fn new_64<P: Prec64>(prec: P) -> Self {
Self::with_val_64(prec, (Special::Zero, Special::Zero))
}
/// Create a new [`Complex`] number with the specified precision and with
/// the given value, rounding to the nearest.
///
/// # Panics
///
/// Panics if `prec` is out of the allowed range.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c1 = Complex::with_val_64(53, (1.3f64, -12));
/// assert_eq!(c1.prec_64(), (53, 53));
/// assert_eq!(c1, (1.3f64, -12));
/// let c2 = Complex::with_val_64(53, 42.0);
/// assert_eq!(c2.prec_64(), (53, 53));
/// assert_eq!(c2, 42);
/// assert_eq!(c2, (42, 0));
/// ```
#[inline]
pub fn with_val_64<P, T>(prec: P, val: T) -> Self
where
Self: Assign<T>,
P: Prec64,
{
let mut ret = Complex::new_nan_64(prec);
ret.assign(val);
ret
}
/// Create a new [`Complex`] number with the specified precision and with
/// the given value, applying the specified rounding method.
///
/// # Panics
///
/// Panics if `prec` is out of the allowed range.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// let round = (Round::Down, Round::Up);
/// let (c, dir) = Complex::with_val_round_64(4, (3.3, 2.3), round);
/// // 3.3 is rounded down to 3.25, 2.3 is rounded up to 2.5
/// assert_eq!(c.prec_64(), (4, 4));
/// assert_eq!(c, (3.25, 2.5));
/// assert_eq!(dir, (Ordering::Less, Ordering::Greater));
/// ```
#[inline]
pub fn with_val_round_64<P, T>(prec: P, val: T, round: Round2) -> (Self, Ordering2)
where
Self: AssignRound<T, Round = Round2, Ordering = Ordering2>,
P: Prec64,
{
let mut ret = Complex::new_nan_64(prec);
let ord = ret.assign_round(val, round);
(ret, ord)
}
/// Returns the precision of the real and imaginary parts.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let r = Complex::new_64((24, 53));
/// assert_eq!(r.prec_64(), (24, 53));
/// ```
#[inline]
pub const fn prec_64(&self) -> (u64, u64) {
(self.real().prec_64(), self.imag().prec_64())
}
/// Sets the precision of the real and imaginary parts, rounding to the
/// nearest.
///
/// # Panics
///
/// Panics if the precision is out of the allowed range.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut r = Complex::with_val_64(6, (4.875, 4.625));
/// assert_eq!(r, (4.875, 4.625));
/// r.set_prec_64(4);
/// assert_eq!(r, (5.0, 4.5));
/// ```
#[inline]
pub fn set_prec_64<P: Prec64>(&mut self, prec: P) {
self.set_prec_round_64(prec, NEAREST2);
}
/// Sets the precision of the real and imaginary parts, applying the
/// specified rounding method.
///
/// # Panics
///
/// Panics if the precision is out of the allowed range.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// let mut r = Complex::with_val_64(6, (4.875, 4.625));
/// assert_eq!(r, (4.875, 4.625));
/// let dir = r.set_prec_round_64(4, (Round::Down, Round::Up));
/// assert_eq!(r, (4.5, 5.0));
/// assert_eq!(dir, (Ordering::Less, Ordering::Greater));
/// ```
#[inline]
pub fn set_prec_round_64<P: Prec64>(&mut self, prec: P, round: Round2) -> Ordering2 {
let p = prec.prec();
let (real, imag) = self.as_mut_real_imag();
(
real.set_prec_round_64(p.0, round.0),
imag.set_prec_round_64(p.1, round.1),
)
}
/// Creates a [`Complex`] number from an initialized [MPC complex
/// number][mpc_t].
///
/// # Safety
///
/// * The function must *not* be used to create a constant [`Complex`]
/// number, though it can be used to create a static [`Complex`] number.
/// This is because constant values are *copied* on use, leading to
/// undefined behavior when they are dropped.
/// * The value must be initialized as a valid [`mpc_t`].
/// * The [`mpc_t`] type can be considered as a kind of pointer, so there
/// can be multiple copies of it. Since this function takes over
/// ownership, no other copies of the passed value should exist.
///
/// # Examples
///
/// ```rust
/// use gmp_mpfr_sys::mpc;
/// use core::mem::MaybeUninit;
/// use rug::Complex;
/// let c = unsafe {
/// let mut m = MaybeUninit::uninit();
/// mpc::init3(m.as_mut_ptr(), 53, 53);
/// let mut m = m.assume_init();
/// mpc::set_d_d(&mut m, -14.5, 3.25, mpc::RNDNN);
/// // m is initialized and unique
/// Complex::from_raw(m)
/// };
/// assert_eq!(c, (-14.5, 3.25));
/// // since c is a Complex now, deallocation is automatic
/// ```
///
/// This can be used to create a static [`Complex`] number. See [`mpc_t`],
/// [`mpfr_t`] and the [MPFR documentation][mpfr internals] for details.
///
/// ```rust
/// use core::ptr::NonNull;
/// use gmp_mpfr_sys::gmp::limb_t;
/// use gmp_mpfr_sys::mpfr::{mpfr_t, prec_t};
/// use gmp_mpfr_sys::mpc::mpc_t;
/// use rug::{Complex, Float};
/// const LIMBS: [limb_t; 2] = [5, 1 << (limb_t::BITS - 1)];
/// const LIMBS_PTR: *const [limb_t; 2] = &LIMBS;
/// const MANTISSA_DIGITS: u32 = limb_t::BITS * 2;
/// const MPC: mpc_t = mpc_t {
/// re: mpfr_t {
/// prec: MANTISSA_DIGITS as prec_t,
/// sign: -1,
/// exp: 1,
/// d: unsafe { NonNull::new_unchecked(LIMBS_PTR.cast_mut().cast()) },
/// },
/// im: mpfr_t {
/// prec: MANTISSA_DIGITS as prec_t,
/// sign: 1,
/// exp: 1,
/// d: unsafe { NonNull::new_unchecked(LIMBS_PTR.cast_mut().cast()) },
/// },
/// };
/// // Must *not* be const, otherwise it would lead to undefined
/// // behavior on use, as it would create a copy that is dropped.
/// static C: Complex = unsafe { Complex::from_raw(MPC) };
/// let lsig = Float::with_val(MANTISSA_DIGITS, 5) >> (MANTISSA_DIGITS - 1);
/// let msig = 1u32;
/// let val = lsig + msig;
/// let check = Complex::from((-val.clone(), val));
/// assert_eq!(C, check);
/// ```
///
/// [`mpfr_t`]: gmp_mpfr_sys::mpfr::mpfr_t
/// [mpfr internals]: gmp_mpfr_sys::C::MPFR::MPFR_Interface#Internals
#[inline]
pub const unsafe fn from_raw(raw: mpc_t) -> Self {
Complex { inner: raw }
}
/// Converts a [`Complex`] number into an [MPC complex number][mpc_t].
///
/// The returned object should be freed to avoid memory leaks.
///
/// # Examples
///
/// ```rust
/// use gmp_mpfr_sys::mpc;
/// use gmp_mpfr_sys::mpfr;
/// use gmp_mpfr_sys::mpfr::rnd_t;
/// use rug::Complex;
/// let c = Complex::with_val(53, (-14.5, 3.25));
/// let mut m = c.into_raw();
/// unsafe {
/// let re_ptr = mpc::realref_const(&m);
/// let re = mpfr::get_d(re_ptr, rnd_t::RNDN);
/// assert_eq!(re, -14.5);
/// let im_ptr = mpc::imagref_const(&m);
/// let im = mpfr::get_d(im_ptr, rnd_t::RNDN);
/// assert_eq!(im, 3.25);
/// // free object to prevent memory leak
/// mpc::clear(&mut m);
/// }
/// ```
#[inline]
pub const fn into_raw(self) -> mpc_t {
let ret = self.inner;
let _ = ManuallyDrop::new(self);
ret
}
/// Returns a pointer to the inner [MPC complex number][mpc_t].
///
/// The returned pointer will be valid for as long as `self` is valid.
///
/// # Examples
///
/// ```rust
/// use gmp_mpfr_sys::mpc;
/// use gmp_mpfr_sys::mpfr;
/// use gmp_mpfr_sys::mpfr::rnd_t;
/// use rug::Complex;
/// let c = Complex::with_val(53, (-14.5, 3.25));
/// let m_ptr = c.as_raw();
/// unsafe {
/// let re_ptr = mpc::realref_const(m_ptr);
/// let re = mpfr::get_d(re_ptr, rnd_t::RNDN);
/// assert_eq!(re, -14.5);
/// let im_ptr = mpc::imagref_const(m_ptr);
/// let im = mpfr::get_d(im_ptr, rnd_t::RNDN);
/// assert_eq!(im, 3.25);
/// }
/// // c is still valid
/// assert_eq!(c, (-14.5, 3.25));
/// ```
#[inline]
pub const fn as_raw(&self) -> *const mpc_t {
&self.inner
}
/// Returns an unsafe mutable pointer to the inner [MPC complex
/// number][mpc_t].
///
/// The returned pointer will be valid for as long as `self` is valid.
///
/// # Examples
///
/// ```rust
/// use gmp_mpfr_sys::mpc;
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (-14.5, 3.25));
/// let m_ptr = c.as_raw_mut();
/// unsafe {
/// mpc::conj(m_ptr, m_ptr, mpc::RNDNN);
/// }
/// assert_eq!(c, (-14.5, -3.25));
/// ```
#[inline]
pub fn as_raw_mut(&mut self) -> *mut mpc_t {
&mut self.inner
}
/// Parses a decimal string slice (<code>\&[str]</code>) or byte slice
/// (<code>[\&\[][prim@slice][u8][][\]][prim@slice]</code>) into a
/// [`Complex`] number.
///
/// The following are implemented with the unwrapped returned
/// [incomplete-computation value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// The string can contain either of the following three:
///
/// 1. One floating-point number that can be parsed by
/// <code>[Float]::[parse][Float::parse]</code>. ASCII whitespace is
/// treated in the same way as well.
/// 2. Two floating-point numbers inside round brackets separated by one
/// comma. ASCII whitespace is treated in the same way as 1 above, and
/// is also allowed around the brackets and the comma.
/// 3. Two floating-point numbers inside round brackets separated by ASCII
/// whitespace. Since the real and imaginary parts are separated by
/// whitespace, they themselves cannot contain whitespace. ASCII
/// whitespace is still allowed around the brackets and between the two
/// parts.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
///
/// let valid1 = Complex::parse("(12.5, -13.5)");
/// let c1 = Complex::with_val(53, valid1.unwrap());
/// assert_eq!(c1, (12.5, -13.5));
/// let valid2 = Complex::parse("(inf 0.0)");
/// let c2 = Complex::with_val(53, valid2.unwrap());
/// assert_eq!(c2, (f64::INFINITY, 0.0));
///
/// let invalid = Complex::parse("(1 2 3)");
/// assert!(invalid.is_err());
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn parse<S: AsRef<[u8]>>(src: S) -> Result<ParseIncomplete, ParseComplexError> {
parse(src.as_ref(), 10)
}
/// Parses a string slice (<code>\&[str]</code>) or byte slice
/// (<code>[\&\[][prim@slice][u8][][\]][prim@slice]</code>) into a
/// [`Complex`] number.
///
/// The following are implemented with the unwrapped returned
/// [incomplete-computation value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// The string can contain either of the following three:
///
/// 1. One floating-point number that can be parsed by
/// <code>[Float]::[parse\_radix][Float::parse_radix]</code>. ASCII
/// whitespace is treated in the same way as well.
/// 2. Two floating-point numbers inside round brackets separated by one
/// comma. ASCII whitespace is treated in the same way as 1 above, and
/// is also allowed around the brackets and the comma.
/// 3. Two floating-point numbers inside round brackets separated by ASCII
/// whitespace. Since the real and imaginary parts are separated by
/// whitespace, they themselves cannot contain whitespace. ASCII
/// whitespace is still allowed around the brackets and between the two
/// parts.
///
/// # Panics
///
/// Panics if `radix` is less than 2 or greater than 36.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
///
/// let valid1 = Complex::parse_radix("(12, 1a)", 16);
/// let c1 = Complex::with_val(53, valid1.unwrap());
/// assert_eq!(c1, (0x12, 0x1a));
/// let valid2 = Complex::parse_radix("(@inf@ zz)", 36);
/// let c2 = Complex::with_val(53, valid2.unwrap());
/// assert_eq!(c2, (f64::INFINITY, 35 * 36 + 35));
///
/// let invalid = Complex::parse_radix("(1 2 3)", 10);
/// assert!(invalid.is_err());
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn parse_radix<S: AsRef<[u8]>>(
src: S,
radix: i32,
) -> Result<ParseIncomplete, ParseComplexError> {
parse(src.as_ref(), radix)
}
/// Returns a string representation of the value for the specified `radix`
/// rounding to the nearest.
///
/// The exponent is encoded in decimal. If the number of digits is not
/// specified, the output string will have enough precision such that
/// reading it again will give the exact same number.
///
/// # Panics
///
/// Panics if `radix` is less than 2 or greater than 36.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c1 = Complex::with_val(53, 0);
/// assert_eq!(c1.to_string_radix(10, None), "(0 0)");
/// let c2 = Complex::with_val(12, (15, 5));
/// assert_eq!(c2.to_string_radix(16, None), "(f.000 5.000)");
/// let c3 = Complex::with_val(53, (10, -4));
/// assert_eq!(c3.to_string_radix(10, Some(3)), "(10.0 -4.00)");
/// assert_eq!(c3.to_string_radix(5, Some(3)), "(20.0 -4.00)");
/// // 2 raised to the power of 80 in hex is 1 followed by 20 zeros
/// let c4 = Complex::with_val(53, (80f64.exp2(), 0.25));
/// assert_eq!(c4.to_string_radix(10, Some(3)), "(1.21e24 2.50e-1)");
/// assert_eq!(c4.to_string_radix(16, Some(3)), "(1.00@20 4.00@-1)");
/// ```
#[cfg(feature = "std")]
#[inline]
pub fn to_string_radix(&self, radix: i32, num_digits: Option<usize>) -> String {
self.to_string_radix_round(radix, num_digits, NEAREST2)
}
/// Returns a string representation of the value for the specified `radix`
/// applying the specified rounding method.
///
/// The exponent is encoded in decimal. If the number of digits is not
/// specified, the output string will have enough precision such that
/// reading it again will give the exact same number.
///
/// # Panics
///
/// Panics if `radix` is less than 2 or greater than 36.
///
/// # Examples
///
/// ```rust
/// use rug::float::Round;
/// use rug::Complex;
/// let c = Complex::with_val(10, 10.4);
/// let down = (Round::Down, Round::Down);
/// let nearest = (Round::Nearest, Round::Nearest);
/// let up = (Round::Up, Round::Up);
/// let nd = c.to_string_radix_round(10, None, down);
/// assert_eq!(nd, "(10.406 0)");
/// let nu = c.to_string_radix_round(10, None, up);
/// assert_eq!(nu, "(10.407 0)");
/// let sd = c.to_string_radix_round(10, Some(2), down);
/// assert_eq!(sd, "(10 0)");
/// let sn = c.to_string_radix_round(10, Some(2), nearest);
/// assert_eq!(sn, "(10 0)");
/// let su = c.to_string_radix_round(10, Some(2), up);
/// assert_eq!(su, "(11 0)");
/// ```
#[cfg(feature = "std")]
pub fn to_string_radix_round(
&self,
radix: i32,
num_digits: Option<usize>,
round: Round2,
) -> String {
let format = Format {
radix,
precision: num_digits,
round,
to_upper: false,
sign_plus: false,
prefix: "",
exp: ExpFormat::Point,
};
let mut s = StringLike::new_string();
append_to_string(&mut s, self, format);
s.unwrap_string()
}
/// Borrows the real part as a [`Float`].
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (12.5, -20.75));
/// assert_eq!(*c.real(), 12.5)
/// ```
#[inline]
pub const fn real(&self) -> &Float {
xmpc::realref_const(self)
}
/// Borrows the imaginary part as a [`Float`].
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (12.5, -20.75));
/// assert_eq!(*c.imag(), -20.75)
/// ```
#[inline]
pub const fn imag(&self) -> &Float {
xmpc::imagref_const(self)
}
/// Borrows the real part mutably.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (12.5, -20.75));
/// assert_eq!(c, (12.5, -20.75));
/// *c.mut_real() /= 2;
/// assert_eq!(c, (6.25, -20.75));
/// ```
#[inline]
pub fn mut_real(&mut self) -> &mut Float {
xmpc::realref(self)
}
/// Borrows the imaginary part mutably.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (12.5, -20.75));
/// assert_eq!(c, (12.5, -20.75));
/// *c.mut_imag() *= 4;
/// assert_eq!(c, (12.5, -83));
/// ```
#[inline]
pub fn mut_imag(&mut self) -> &mut Float {
xmpc::imagref(self)
}
/// Borrows the real and imaginary parts mutably.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
///
/// let mut c = Complex::with_val(53, (12.5, -20.75));
/// {
/// let (real, imag) = c.as_mut_real_imag();
/// *real /= 2;
/// *imag *= 4;
/// // borrow ends here
/// }
/// assert_eq!(c, (6.25, -83));
/// ```
#[inline]
pub fn as_mut_real_imag(&mut self) -> (&mut Float, &mut Float) {
xmpc::realref_imagref(self)
}
/// Consumes and converts the value into real and imaginary [`Float`]
/// values.
///
/// This function reuses the allocated memory and does not
/// allocate any new memory.
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (12.5, -20.75));
/// let (real, imag) = c.into_real_imag();
/// assert_eq!(real, 12.5);
/// assert_eq!(imag, -20.75);
/// ```
#[inline]
pub const fn into_real_imag(self) -> (Float, Float) {
xmpc::split(self)
}
/// Borrows a pair of [`Float`] references as a [`Complex`] number.
///
/// The returned object implements
/// <code>[Deref]\<[Target][Deref::Target] = [Complex]></code>.
///
/// For a similar method that processes two mutable [`Float`] references as
/// a mutable [`Complex`] number, see
/// [`mutate_real_imag`][Complex::mutate_real_imag].
///
/// # Examples
///
/// ```rust
/// use rug::{Complex, Float};
///
/// let real = Float::with_val(53, 4.2);
/// let imag = Float::with_val(53, -2.3);
/// let c = Complex::borrow_real_imag(&real, &imag);
/// assert_eq!(*c, (4.2, -2.3));
/// ```
///
/// [Deref::Target]: core::ops::Deref::Target
/// [Deref]: core::ops::Deref
pub const fn borrow_real_imag<'a>(real: &'a Float, imag: &'a Float) -> BorrowComplex<'a> {
let raw = mpc_t {
re: *real.inner(),
im: *imag.inner(),
};
// Safety: the lifetime of the return type is equal to the lifetime of real and imag.
unsafe { BorrowComplex::from_raw(raw) }
}
/// Calls a function with a pair of [`Float`] mutable references borrowed as
/// a [`Complex`] number.
///
/// # Examples
///
/// ```rust
/// use rug::{Complex, Float};
///
/// let mut real = Float::with_val(53, 4.2);
/// let mut imag = Float::with_val(53, -2.3);
/// // (4.2, -2.3) × i = (2.3, 4.2)
/// Complex::mutate_real_imag(&mut real, &mut imag, |c| c.mul_i_mut(false));
/// assert_eq!(real, 2.3);
/// assert_eq!(imag, 4.2);
/// ```
#[inline]
pub fn mutate_real_imag<F>(real: &mut Float, imag: &mut Float, func: F)
where
F: FnOnce(&mut Complex),
{
struct SplitOnDrop<'a, 'b>(ManuallyDrop<Complex>, &'a mut Float, &'b mut Float);
impl Drop for SplitOnDrop<'_, '_> {
fn drop(&mut self) {
// Safety: the values of the complex number parts are individually valid.
unsafe {
*self.1.inner_mut() = *self.0.real().inner();
*self.2.inner_mut() = *self.0.imag().inner();
}
}
}
let raw = mpc_t {
re: *real.inner(),
im: *imag.inner(),
};
// Safety: real and imag are mutable and unaliased as they are mutable references.
let combined = ManuallyDrop::new(unsafe { Complex::from_raw(raw) });
let mut guard = SplitOnDrop(combined, real, imag);
func(&mut guard.0);
}
/// Borrows a negated copy of the [`Complex`] number.
///
/// The returned object implements <code>[Deref]\<[Target][Deref::Target] = [Complex]></code>.
///
/// This method performs a shallow copy and negates it, and negation does
/// not change the allocated data.
///
/// Unlike the other negation methods (the `-` operator,
/// <code>[Neg]::[neg][Neg::neg]</code>, etc.), this method does not set the
/// [MPFR NaN flag] if a NaN is encountered.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (4.2, -2.3));
/// let neg_c = c.as_neg();
/// assert_eq!(*neg_c, (-4.2, 2.3));
/// // methods taking &self can be used on the returned object
/// let reneg_c = neg_c.as_neg();
/// assert_eq!(*reneg_c, (4.2, -2.3));
/// assert_eq!(*reneg_c, c);
/// ```
///
/// [Deref::Target]: core::ops::Deref::Target
/// [Deref]: core::ops::Deref
/// [MPFR NaN flag]: gmp_mpfr_sys::mpfr::set_nanflag
/// [Neg::neg]: core::ops::Neg::neg
/// [Neg]: core::ops::Neg
pub const fn as_neg(&self) -> BorrowComplex<'_> {
let mut raw = self.inner;
raw.re.sign = -raw.re.sign;
raw.im.sign = -raw.im.sign;
// Safety: the lifetime of the return type is equal to the lifetime of self.
unsafe { BorrowComplex::from_raw(raw) }
}
/// Borrows a conjugate copy of the [`Complex`] number.
///
/// The returned object implements <code>[Deref]\<[Target][Deref::Target] = [Complex]></code>.
///
/// This method performs a shallow copy and negates its imaginary part, and
/// negation does not change the allocated data.
///
/// Unlike the other conjugate methods ([`conj`], [`conj_mut`], etc.), this
/// method does not set the [MPFR NaN flag] if a NaN is encountered.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (4.2, -2.3));
/// let conj_c = c.as_conj();
/// assert_eq!(*conj_c, (4.2, 2.3));
/// // methods taking &self can be used on the returned object
/// let reconj_c = conj_c.as_conj();
/// assert_eq!(*reconj_c, (4.2, -2.3));
/// assert_eq!(*reconj_c, c);
/// ```
///
/// [Deref::Target]: core::ops::Deref::Target
/// [Deref]: core::ops::Deref
/// [MPFR NaN flag]: gmp_mpfr_sys::mpfr::set_nanflag
/// [`conj_mut`]: Self::conj_mut
/// [`conj`]: Self::conj
pub const fn as_conj(&self) -> BorrowComplex<'_> {
let mut raw = self.inner;
raw.im.sign = -raw.im.sign;
// Safety: the lifetime of the return type is equal to the lifetime of self.
unsafe { BorrowComplex::from_raw(raw) }
}
/// Borrows a rotated copy of the [`Complex`] number.
///
/// The returned object implements <code>[Deref]\<[Target][Deref::Target] = [Complex]></code>.
///
/// This method operates by performing some shallow copying; unlike other
/// similar methods ( [`mul_i`], [`mul_i_mut`], etc.), this method swaps the
/// precision of the real and imaginary parts if they have unequal
/// precisions.
///
/// Also, unlike other similar methods ([`mul_i`], [`mul_i_mut`], etc.),
/// this method does not set the [MPFR NaN flag] if a NaN is encountered.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (4.2, -2.3));
/// let mul_i_c = c.as_mul_i(false);
/// assert_eq!(*mul_i_c, (2.3, 4.2));
/// // methods taking &self can be used on the returned object
/// let mul_ii_c = mul_i_c.as_mul_i(false);
/// assert_eq!(*mul_ii_c, (-4.2, 2.3));
/// let mul_1_c = mul_i_c.as_mul_i(true);
/// assert_eq!(*mul_1_c, (4.2, -2.3));
/// assert_eq!(*mul_1_c, c);
/// ```
///
/// [Deref::Target]: core::ops::Deref::Target
/// [Deref]: core::ops::Deref
/// [MPFR NaN flag]: gmp_mpfr_sys::mpfr::set_nanflag
/// [`mul_i_mut`]: Self::mul_i_mut
/// [`mul_i`]: Self::mul_i
pub const fn as_mul_i(&self, negative: bool) -> BorrowComplex<'_> {
let mut raw = mpc_t {
re: self.inner.im,
im: self.inner.re,
};
if negative {
raw.im.sign = -raw.im.sign;
} else {
raw.re.sign = -raw.re.sign;
}
// Safety: the lifetime of the return type is equal to the lifetime of self.
unsafe { BorrowComplex::from_raw(raw) }
}
/// Borrows the [`Complex`] number as an ordered complex number of type
/// [`OrdComplex`].
///
/// The same result can be obtained using the implementation of
/// <code>[AsRef]\<[OrdComplex]></code> which is provided for [`Complex`].
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Special;
/// use rug::Complex;
///
/// let nan_c = Complex::with_val(53, (Special::Nan, Special::Nan));
/// let nan = nan_c.as_ord();
/// assert_eq!(nan.cmp(nan), Ordering::Equal);
///
/// let one_neg0_c = Complex::with_val(53, (1, Special::NegZero));
/// let one_neg0 = one_neg0_c.as_ord();
/// let one_pos0_c = Complex::with_val(53, (1, Special::Zero));
/// let one_pos0 = one_pos0_c.as_ord();
/// assert_eq!(one_neg0.cmp(one_pos0), Ordering::Less);
///
/// let zero_inf_s = (Special::Zero, Special::Infinity);
/// let zero_inf_c = Complex::with_val(53, zero_inf_s);
/// let zero_inf = zero_inf_c.as_ord();
/// assert_eq!(one_pos0.cmp(zero_inf), Ordering::Greater);
/// ```
#[inline]
pub const fn as_ord(&self) -> &OrdComplex {
// Safety: OrdComplex is repr(transparent) over Complex
unsafe { &*cast_ptr!(self, OrdComplex) }
}
/// Returns [`true`] if both the real and imaginary parts are plus or minus
/// zero.
///
/// # Examples
///
/// ```rust
/// use rug::float::Special;
/// use rug::{Assign, Complex};
/// let mut c = Complex::with_val(53, (Special::NegZero, Special::Zero));
/// assert!(c.is_zero());
/// c += 5.2;
/// assert!(!c.is_zero());
/// c.mut_real().assign(Special::Nan);
/// assert!(!c.is_zero());
/// ```
#[inline]
pub const fn is_zero(&self) -> bool {
self.real().is_zero() && self.imag().is_zero()
}
/// Compares the absolute values of `self` and `other`.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::Complex;
/// let five = Complex::with_val(53, (5, 0));
/// let five_rotated = Complex::with_val(53, (3, -4));
/// let greater_than_five = Complex::with_val(53, (-4, -4));
/// let has_nan = Complex::with_val(53, (5, 0.0 / 0.0));
/// assert_eq!(five.cmp_abs(&five_rotated), Some(Ordering::Equal));
/// assert_eq!(five.cmp_abs(&greater_than_five), Some(Ordering::Less));
/// assert_eq!(five.cmp_abs(&has_nan), None);
/// ```
#[inline]
pub fn cmp_abs(&self, other: &Self) -> Option<Ordering> {
if self.real().is_nan()
|| self.imag().is_nan()
|| other.real().is_nan()
|| other.imag().is_nan()
{
None
} else {
Some(xmpc::cmp_abs(self, other))
}
}
/// Returns the total ordering between `self` and `other`.
///
/// For ordering, the real part has precedence over the imaginary part.
/// Negative zero is ordered as less than positive zero. Negative NaN is
/// ordered as less than negative infinity, while positive NaN is ordered as
/// greater than positive infinity. Comparing two negative NaNs or two
/// positive NaNs produces equality.
///
/// # Examples
///
/// ```rust
/// use rug::float::Special;
/// use rug::Complex;
/// let mut values = vec![
/// Complex::with_val(53, (Special::Zero, Special::Zero)),
/// Complex::with_val(53, (Special::Zero, Special::NegZero)),
/// Complex::with_val(53, (Special::NegZero, Special::Infinity)),
/// ];
///
/// values.sort_by(Complex::total_cmp);
///
/// // (-0, +∞)
/// assert!(values[0].real().is_zero() && values[0].real().is_sign_negative());
/// assert!(values[0].imag().is_infinite() && values[0].imag().is_sign_positive());
/// // (+0, -0)
/// assert!(values[1].real().is_zero() && values[1].real().is_sign_positive());
/// assert!(values[1].imag().is_zero() && values[1].imag().is_sign_negative());
/// // (+0, +0)
/// assert!(values[2].real().is_zero() && values[2].real().is_sign_positive());
/// assert!(values[2].imag().is_zero() && values[2].imag().is_sign_positive());
/// ```
#[inline]
pub fn total_cmp(&self, other: &Complex) -> Ordering {
self.real()
.total_cmp(other.real())
.then_with(|| self.imag().total_cmp(other.imag()))
}
/// Adds a list of [`Complex`] numbers with correct rounding.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[AddAssign]\<Src> for [Complex]</code>
/// * <code>[AddAssignRound]\<Src> for [Complex]</code>
/// * <code>[Add]\<Src> for [Complex]</code>,
/// <code>[Add]\<[Complex]> for Src</code>
/// * <code>[SubAssign]\<Src> for [Complex]</code>,
/// <code>[SubFrom]\<Src> for [Complex]</code>
/// * <code>[SubAssignRound]\<Src> for [Complex]</code>,
/// <code>[SubFromRound]\<Src> for [Complex]</code>
/// * <code>[Sub]\<Src> for [Complex]</code>,
/// <code>[Sub]\<[Complex]> for Src</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
///
/// // Give each value only 4 bits of precision for example purposes.
/// let values = [
/// Complex::with_val(4, (5.0, 1024.0)),
/// Complex::with_val(4, (1024.0, 15.0)),
/// Complex::with_val(4, (-1024.0, -1024.0)),
/// Complex::with_val(4, (-4.5, -16.0)),
/// ];
///
/// // The result should still be exact if it fits.
/// let r1 = Complex::sum(values.iter());
/// let sum1 = Complex::with_val(4, r1);
/// assert_eq!(sum1, (0.5, -1.0));
///
/// let r2 = Complex::sum(values.iter());
/// let sum2 = Complex::with_val(4, (1.0, -1.0)) + r2;
/// assert_eq!(sum2, (1.5, -2.0));
///
/// let r3 = Complex::sum(values.iter());
/// let mut sum3 = Complex::with_val(4, (16, 16));
/// sum3 += r3;
/// // (16.5, 15) rounded to (16, 15)
/// assert_eq!(sum3, (16, 15));
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn sum<'a, I>(values: I) -> SumIncomplete<'a, I>
where
I: Iterator<Item = &'a Self>,
{
SumIncomplete { values }
}
/// Finds the dot product of a list of [`Complex`] numbers pairs with
/// correct rounding.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[AddAssign]\<Src> for [Complex]</code>
/// * <code>[AddAssignRound]\<Src> for [Complex]</code>
/// * <code>[Add]\<Src> for [Complex]</code>,
/// <code>[Add]\<[Complex]> for Src</code>
/// * <code>[SubAssign]\<Src> for [Complex]</code>,
/// <code>[SubFrom]\<Src> for [Complex]</code>
/// * <code>[SubAssignRound]\<Src> for [Complex]</code>,
/// <code>[SubFromRound]\<Src> for [Complex]</code>
/// * <code>[Sub]\<Src> for [Complex]</code>,
/// <code>[Sub]\<[Complex]> for Src</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// This method will produce a result with correct rounding, except for some
/// cases where underflow and/or overflow occur in intermediate products.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
///
/// let a = [
/// Complex::with_val(53, (5.0, 10.25)),
/// Complex::with_val(53, (10.25, 5.0)),
/// ];
/// let b = [
/// Complex::with_val(53, (-2.75, -11.5)),
/// Complex::with_val(53, (-4.5, 16.0)),
/// ];
///
/// let r = Complex::dot(a.iter().zip(b.iter()));
/// let dot = Complex::with_val(53, r);
/// let expected = Complex::with_val(53, &a[0] * &b[0]) + &a[1] * &b[1];
/// assert_eq!(dot, expected);
///
/// let r = Complex::dot(a.iter().zip(b.iter()));
/// let add_dot = Complex::with_val(53, (1.0, 2.0)) + r;
/// let add_expected = Complex::with_val(53, (1.0, 2.0)) + &expected;
/// assert_eq!(add_dot, add_expected);
///
/// let r = Complex::dot(a.iter().zip(b.iter()));
/// let mut add_dot2 = Complex::with_val(53, (1.0, 2.0));
/// add_dot2 += r;
/// assert_eq!(add_dot2, add_expected);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn dot<'a, I>(values: I) -> DotIncomplete<'a, I>
where
I: Iterator<Item = (&'a Self, &'a Self)>,
{
DotIncomplete { values }
}
/// Multiplies and adds in one fused operation, rounding to the nearest with
/// only one rounding error.
///
/// `a.mul_add(&b, &c)` produces a result like `&a * &b + &c`, but `a` is
/// consumed and the result produced uses its precision.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let a = Complex::with_val(53, (10, 0));
/// let b = Complex::with_val(53, (1, -1));
/// let c = Complex::with_val(53, (1000, 1000));
/// // (10 + 0i) × (1 - i) + (1000 + 1000i) = (1010 + 990i)
/// let mul_add = a.mul_add(&b, &c);
/// assert_eq!(mul_add, (1010, 990));
/// ```
#[inline]
#[must_use]
pub fn mul_add(mut self, mul: &Self, add: &Self) -> Self {
self.mul_add_round(mul, add, NEAREST2);
self
}
/// Multiplies and adds in one fused operation, rounding to the nearest with
/// only one rounding error.
///
/// `a.mul_add_mut(&b, &c)` produces a result like `&a * &b + &c`, but
/// stores the result in `a` using its precision.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut a = Complex::with_val(53, (10, 0));
/// let b = Complex::with_val(53, (1, -1));
/// let c = Complex::with_val(53, (1000, 1000));
/// // (10 + 0i) × (1 - i) + (1000 + 1000i) = (1010 + 990i)
/// a.mul_add_mut(&b, &c);
/// assert_eq!(a, (1010, 990));
/// ```
#[inline]
pub fn mul_add_mut(&mut self, mul: &Self, add: &Self) {
self.mul_add_round(mul, add, NEAREST2);
}
/// Multiplies and adds in one fused operation, applying the specified
/// rounding method with only one rounding error.
///
/// `a.mul_add_round(&b, &c, round)` produces a result like
/// `ans.assign_round(&a * &b + &c, round)`, but stores the result in `a`
/// using its precision rather than in another [`Complex`] number like
/// `ans`.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// let mut a = Complex::with_val(53, (10, 0));
/// let b = Complex::with_val(53, (1, -1));
/// let c = Complex::with_val(53, (1000, 1000));
/// // (10 + 0i) × (1 - i) + (1000 + 1000i) = (1010 + 990i)
/// let dir = a.mul_add_round(&b, &c, (Round::Nearest, Round::Nearest));
/// assert_eq!(a, (1010, 990));
/// assert_eq!(dir, (Ordering::Equal, Ordering::Equal));
/// ```
#[inline]
pub fn mul_add_round(&mut self, mul: &Self, add: &Self, round: Round2) -> Ordering2 {
xmpc::fma(self, (), mul, add, round)
}
/// Multiplies and adds in one fused operation.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// `a.mul_add_ref(&b, &c)` produces the exact same result as
/// `&a * &b + &c`.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let a = Complex::with_val(53, (10, 0));
/// let b = Complex::with_val(53, (1, -1));
/// let c = Complex::with_val(53, (1000, 1000));
/// // (10 + 0i) × (1 - i) + (1000 + 1000i) = (1010 + 990i)
/// let ans = Complex::with_val(53, a.mul_add_ref(&b, &c));
/// assert_eq!(ans, (1010, 990));
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn mul_add_ref<'a>(&'a self, mul: &'a Self, add: &'a Self) -> AddMulIncomplete<'a> {
self * mul + add
}
/// Multiplies and subtracts in one fused operation, rounding to the nearest
/// with only one rounding error.
///
/// `a.mul_sub(&b, &c)` produces a result like `&a * &b - &c`, but `a` is
/// consumed and the result produced uses its precision.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let a = Complex::with_val(53, (10, 0));
/// let b = Complex::with_val(53, (1, -1));
/// let c = Complex::with_val(53, (1000, 1000));
/// // (10 + 0i) × (1 - i) - (1000 + 1000i) = (-990 - 1010i)
/// let mul_sub = a.mul_sub(&b, &c);
/// assert_eq!(mul_sub, (-990, -1010));
/// ```
#[inline]
#[must_use]
pub fn mul_sub(mut self, mul: &Self, sub: &Self) -> Self {
self.mul_sub_round(mul, sub, NEAREST2);
self
}
/// Multiplies and subtracts in one fused operation, rounding to the nearest
/// with only one rounding error.
///
/// `a.mul_sub_mut(&b, &c)` produces a result like `&a * &b - &c`, but
/// stores the result in `a` using its precision.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut a = Complex::with_val(53, (10, 0));
/// let b = Complex::with_val(53, (1, -1));
/// let c = Complex::with_val(53, (1000, 1000));
/// // (10 + 0i) × (1 - i) - (1000 + 1000i) = (-990 - 1010i)
/// a.mul_sub_mut(&b, &c);
/// assert_eq!(a, (-990, -1010));
/// ```
#[inline]
pub fn mul_sub_mut(&mut self, mul: &Self, sub: &Self) {
self.mul_sub_round(mul, sub, NEAREST2);
}
/// Multiplies and subtracts in one fused operation, applying the specified
/// rounding method with only one rounding error.
///
/// `a.mul_sub_round(&b, &c, round)` produces a result like
/// `ans.assign_round(&a * &b - &c, round)`, but stores the result in `a`
/// using its precision rather than in another [`Complex`] number like
/// `ans`.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// let mut a = Complex::with_val(53, (10, 0));
/// let b = Complex::with_val(53, (1, -1));
/// let c = Complex::with_val(53, (1000, 1000));
/// // (10 + 0i) × (1 - i) - (1000 + 1000i) = (-990 - 1010i)
/// let dir = a.mul_sub_round(&b, &c, (Round::Nearest, Round::Nearest));
/// assert_eq!(a, (-990, -1010));
/// assert_eq!(dir, (Ordering::Equal, Ordering::Equal));
/// ```
#[inline]
pub fn mul_sub_round(&mut self, mul: &Self, sub: &Self, round: Round2) -> Ordering2 {
xmpc::fma(self, (), mul, &*sub.as_neg(), round)
}
/// Multiplies and subtracts in one fused operation.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// `a.mul_sub_ref(&b, &c)` produces the exact same result as `&a * &b -
/// &c`.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let a = Complex::with_val(53, (10, 0));
/// let b = Complex::with_val(53, (1, -1));
/// let c = Complex::with_val(53, (1000, 1000));
/// // (10 + 0i) × (1 - i) - (1000 + 1000i) = (-990 - 1010i)
/// let ans = Complex::with_val(53, a.mul_sub_ref(&b, &c));
/// assert_eq!(ans, (-990, -1010));
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn mul_sub_ref<'a>(&'a self, mul: &'a Self, sub: &'a Self) -> SubMulFromIncomplete<'a> {
self * mul - sub
}
/// Computes a projection onto the Riemann sphere, rounding to the nearest.
///
/// If no parts of the number are infinite, the result is unchanged. If any
/// part is infinite, the real part of the result is set to +∞ and the
/// imaginary part of the result is set to 0 with the same sign as the
/// imaginary part of the input.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c1 = Complex::with_val(53, (1.5, 2.5));
/// let proj1 = c1.proj();
/// assert_eq!(proj1, (1.5, 2.5));
/// let c2 = Complex::with_val(53, (f64::NAN, f64::NEG_INFINITY));
/// let proj2 = c2.proj();
/// assert_eq!(proj2, (f64::INFINITY, 0.0));
/// // imaginary was negative, so now it is minus zero
/// assert!(proj2.imag().is_sign_negative());
/// ```
#[inline]
#[must_use]
pub fn proj(mut self) -> Self {
self.proj_mut();
self
}
/// Computes a projection onto the Riemann sphere, rounding to the nearest.
///
/// If no parts of the number are infinite, the result is unchanged. If any
/// part is infinite, the real part of the result is set to +∞ and the
/// imaginary part of the result is set to 0 with the same sign as the
/// imaginary part of the input.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c1 = Complex::with_val(53, (1.5, 2.5));
/// c1.proj_mut();
/// assert_eq!(c1, (1.5, 2.5));
/// let mut c2 = Complex::with_val(53, (f64::NAN, f64::NEG_INFINITY));
/// c2.proj_mut();
/// assert_eq!(c2, (f64::INFINITY, 0.0));
/// // imaginary was negative, so now it is minus zero
/// assert!(c2.imag().is_sign_negative());
/// ```
#[inline]
pub fn proj_mut(&mut self) {
xmpc::proj(self, (), NEAREST2);
}
/// Computes the projection onto the Riemann sphere.
///
/// If no parts of the number are infinite, the result is unchanged. If any
/// part is infinite, the real part of the result is set to +∞ and the
/// imaginary part of the result is set to 0 with the same sign as the
/// imaginary part of the input.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c1 = Complex::with_val(53, (f64::INFINITY, 50));
/// let proj1 = Complex::with_val(53, c1.proj_ref());
/// assert_eq!(proj1, (f64::INFINITY, 0.0));
/// let c2 = Complex::with_val(53, (f64::NAN, f64::NEG_INFINITY));
/// let proj2 = Complex::with_val(53, c2.proj_ref());
/// assert_eq!(proj2, (f64::INFINITY, 0.0));
/// // imaginary was negative, so now it is minus zero
/// assert!(proj2.imag().is_sign_negative());
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn proj_ref(&self) -> ProjIncomplete<'_> {
ProjIncomplete { ref_self: self }
}
/// Computes the square, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, -2));
/// // (1 - 2i) squared is (-3 - 4i)
/// let square = c.square();
/// assert_eq!(square, (-3, -4));
/// ```
#[inline]
#[must_use]
pub fn square(mut self) -> Self {
self.square_round(NEAREST2);
self
}
/// Computes the square, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1, -2));
/// // (1 - 2i) squared is (-3 - 4i)
/// c.square_mut();
/// assert_eq!(c, (-3, -4));
/// ```
#[inline]
pub fn square_mut(&mut self) {
self.square_round(NEAREST2);
}
/// Computes the square, applying the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// let mut c = Complex::with_val(4, (1.25, 1.25));
/// // (1.25 + 1.25i) squared is (0 + 3.125i).
/// // With 4 bits of precision, 3.125 is rounded down to 3.
/// let dir = c.square_round((Round::Down, Round::Down));
/// assert_eq!(c, (0, 3));
/// assert_eq!(dir, (Ordering::Equal, Ordering::Less));
/// ```
#[inline]
pub fn square_round(&mut self, round: Round2) -> Ordering2 {
xmpc::sqr(self, (), round)
}
/// Computes the square.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// let c = Complex::with_val(53, (1.25, 1.25));
/// // (1.25 + 1.25i) squared is (0 + 3.125i).
/// let r = c.square_ref();
/// // With 4 bits of precision, 3.125 is rounded down to 3.
/// let round = (Round::Down, Round::Down);
/// let (square, dir) = Complex::with_val_round(4, r, round);
/// assert_eq!(square, (0, 3));
/// assert_eq!(dir, (Ordering::Equal, Ordering::Less));
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn square_ref(&self) -> SquareIncomplete<'_> {
SquareIncomplete { ref_self: self }
}
/// Computes the square root, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (-1, 0));
/// // square root of (-1 + 0i) is (0 + i)
/// let sqrt = c.sqrt();
/// assert_eq!(sqrt, (0, 1));
/// ```
#[inline]
#[must_use]
pub fn sqrt(mut self) -> Self {
self.sqrt_round(NEAREST2);
self
}
/// Computes the square root, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (-1, 0));
/// // square root of (-1 + 0i) is (0 + i)
/// c.sqrt_mut();
/// assert_eq!(c, (0, 1));
/// ```
#[inline]
pub fn sqrt_mut(&mut self) {
self.sqrt_round(NEAREST2);
}
/// Computes the square root, applying the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// let mut c = Complex::with_val(4, (2, 2.25));
/// // Square root of (2 + 2.25i) is (1.5828 + 0.7108i).
/// // Nearest with 4 bits of precision: (1.625 + 0.6875i)
/// let dir = c.sqrt_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (1.625, 0.6875));
/// assert_eq!(dir, (Ordering::Greater, Ordering::Less));
/// ```
#[inline]
pub fn sqrt_round(&mut self, round: Round2) -> Ordering2 {
xmpc::sqrt(self, (), round)
}
/// Computes the square root.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// let c = Complex::with_val(53, (2, 2.25));
/// // Square root of (2 + 2.25i) is (1.5828 + 0.7108i).
/// let r = c.sqrt_ref();
/// // Nearest with 4 bits of precision: (1.625 + 0.6875i)
/// let nearest = (Round::Nearest, Round::Nearest);
/// let (sqrt, dir) = Complex::with_val_round(4, r, nearest);
/// assert_eq!(sqrt, (1.625, 0.6875));
/// assert_eq!(dir, (Ordering::Greater, Ordering::Less));
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn sqrt_ref(&self) -> SqrtIncomplete<'_> {
SqrtIncomplete { ref_self: self }
}
/// Computes the complex conjugate.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1.5, 2.5));
/// let conj = c.conj();
/// assert_eq!(conj, (1.5, -2.5));
/// ```
#[inline]
#[must_use]
pub fn conj(mut self) -> Self {
self.conj_mut();
self
}
/// Computes the complex conjugate.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1.5, 2.5));
/// c.conj_mut();
/// assert_eq!(c, (1.5, -2.5));
/// ```
#[inline]
pub fn conj_mut(&mut self) {
xmpc::conj(self, (), NEAREST2);
}
/// Computes the complex conjugate.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1.5, 2.5));
/// let conj = Complex::with_val(53, c.conj_ref());
/// assert_eq!(conj, (1.5, -2.5));
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn conj_ref(&self) -> ConjIncomplete<'_> {
ConjIncomplete { ref_self: self }
}
/// Computes the absolute value, rounding to the nearest.
///
/// The real part is set to the absolute value and the imaginary part is set
/// to zero.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (30, 40));
/// let abs = c.abs();
/// assert_eq!(abs, 50);
/// ```
#[inline]
#[must_use]
pub fn abs(mut self) -> Self {
self.abs_mut();
self
}
/// Computes the absolute value, rounding to the nearest.
///
/// The real part is set to the absolute value and the imaginary part is set
/// to zero.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (30, 40));
/// c.abs_mut();
/// assert_eq!(c, (50, 0));
/// ```
#[inline]
pub fn abs_mut(&mut self) {
self.abs_round(NEAREST2);
}
/// Computes the absolute value, applying the specified rounding method.
///
/// The real part is set to the absolute value and the imaginary part is set
/// to zero.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (30, 40));
/// // 50 rounded up using 4 bits is 52
/// let dir = c.abs_round((Round::Up, Round::Up));
/// assert_eq!(c, (52, 0));
/// assert_eq!(dir, (Ordering::Greater, Ordering::Equal));
/// ```
#[inline]
pub fn abs_round(&mut self, round: Round2) -> Ordering2 {
// Use mpfr::hypot rather than mpc::abs because mpc::abs does not
// document that the result can be stored in one of its parts.
let (real, imag) = self.as_mut_real_imag();
let dir_re = real.hypot_round(imag, round.0);
let dir_im = imag.assign_round(Special::Zero, round.1);
(dir_re, dir_im)
}
/// Computes the absolute value.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Float]</code>
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Float]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::{Complex, Float};
/// let c = Complex::with_val(53, (30, 40));
/// let f = Float::with_val(53, c.abs_ref());
/// assert_eq!(f, 50);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn abs_ref(&self) -> AbsIncomplete<'_> {
AbsIncomplete { ref_self: self }
}
/// Computes the argument, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (4, 3));
/// let f = c.arg();
/// assert_eq!(f, 0.75_f64.atan());
/// ```
///
/// Special values are handled like atan2 in IEEE 754-2008.
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (40, 30));
/// let arg = c.arg();
/// assert_eq!(arg, (0.75_f64.atan(), 0));
/// ```
#[inline]
#[must_use]
pub fn arg(mut self) -> Self {
self.arg_round(NEAREST2);
self
}
/// Computes the argument, rounding to the nearest.
///
/// The real part is set to the argument and the imaginary part is set to
/// zero.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (40, 30));
/// c.arg_mut();
/// assert_eq!(c, (0.75_f64.atan(), 0));
/// ```
#[inline]
pub fn arg_mut(&mut self) {
self.arg_round(NEAREST2);
}
/// Computes the argument, applying the specified rounding method.
///
/// The real part is set to the argument and the imaginary part is set to
/// zero.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // use only 4 bits of precision
/// let mut c = Complex::with_val(4, (3, 4));
/// // arg(3 + 4i) = 0.9316.
/// // 0.9316 rounded to the nearest is 0.9375.
/// let dir = c.arg_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (0.9375, 0));
/// assert_eq!(dir, (Ordering::Greater, Ordering::Equal));
/// ```
#[inline]
pub fn arg_round(&mut self, round: Round2) -> Ordering2 {
let (re, im) = self.as_mut_real_imag();
let dir_re = xmpfr::atan2(re, &*im, (), round.0);
im.assign(Special::Zero);
(dir_re, Ordering::Equal)
}
/// Computes the argument.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Float]</code>
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Float]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use core::f64;
/// use rug::{Assign, Complex, Float};
/// // f has precision 53, just like f64, so PI constants match.
/// let mut arg = Float::new(53);
/// let c_pos = Complex::with_val(53, 1);
/// arg.assign(c_pos.arg_ref());
/// assert!(arg.is_zero());
/// let c_neg = Complex::with_val(53, -1.3);
/// arg.assign(c_neg.arg_ref());
/// assert_eq!(arg, f64::consts::PI);
/// let c_pi_4 = Complex::with_val(53, (1.333, 1.333));
/// arg.assign(c_pi_4.arg_ref());
/// assert_eq!(arg, f64::consts::FRAC_PI_4);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn arg_ref(&self) -> ArgIncomplete<'_> {
ArgIncomplete { ref_self: self }
}
/// Multiplies the complex number by ±<i>i</i>, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (13, 24));
/// let rot1 = c.mul_i(false);
/// assert_eq!(rot1, (-24, 13));
/// let rot2 = rot1.mul_i(false);
/// assert_eq!(rot2, (-13, -24));
/// let rot2_less1 = rot2.mul_i(true);
/// assert_eq!(rot2_less1, (-24, 13));
/// ```
#[inline]
#[must_use]
pub fn mul_i(mut self, negative: bool) -> Self {
self.mul_i_round(negative, NEAREST2);
self
}
/// Multiplies the complex number by ±<i>i</i>, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (13, 24));
/// c.mul_i_mut(false);
/// assert_eq!(c, (-24, 13));
/// c.mul_i_mut(false);
/// assert_eq!(c, (-13, -24));
/// c.mul_i_mut(true);
/// assert_eq!(c, (-24, 13));
/// ```
#[inline]
pub fn mul_i_mut(&mut self, negative: bool) {
self.mul_i_round(negative, NEAREST2);
}
/// Multiplies the complex number by ±<i>i</i>, applying the specified
/// rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // only 4 bits of precision for imaginary part
/// let mut c = Complex::with_val((53, 4), (127, 15));
/// assert_eq!(c, (127, 15));
/// let dir = c.mul_i_round(false, (Round::Down, Round::Down));
/// assert_eq!(c, (-15, 120));
/// assert_eq!(dir, (Ordering::Equal, Ordering::Less));
/// let dir = c.mul_i_round(true, (Round::Down, Round::Down));
/// assert_eq!(c, (120, 15));
/// assert_eq!(dir, (Ordering::Equal, Ordering::Equal));
/// ```
#[inline]
pub fn mul_i_round(&mut self, negative: bool, round: Round2) -> Ordering2 {
xmpc::mul_i(self, (), negative, round)
}
/// Multiplies the complex number by ±<i>i</i>.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (13, 24));
/// let rotated = Complex::with_val(53, c.mul_i_ref(false));
/// assert_eq!(rotated, (-24, 13));
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn mul_i_ref(&self, negative: bool) -> MulIIncomplete<'_> {
MulIIncomplete {
ref_self: self,
negative,
}
}
/// Computes the reciprocal, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// // 1/(1 + i) = (0.5 - 0.5i)
/// let recip = c.recip();
/// assert_eq!(recip, (0.5, -0.5));
/// ```
#[inline]
#[must_use]
pub fn recip(mut self) -> Self {
self.recip_round(NEAREST2);
self
}
/// Computes the reciprocal, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1, 1));
/// // 1/(1 + i) = (0.5 - 0.5i)
/// c.recip_mut();
/// assert_eq!(c, (0.5, -0.5));
/// ```
#[inline]
pub fn recip_mut(&mut self) {
self.recip_round(NEAREST2);
}
/// Computes the reciprocal, applying the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// let mut c = Complex::with_val(4, (1, 2));
/// // 1/(1 + 2i) = (0.2 - 0.4i), binary (0.00110011..., -0.01100110...)
/// // 4 bits of precision: (0.001101, -0.01101) = (13/64, -13/32)
/// let dir = c.recip_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (13.0/64.0, -13.0/32.0));
/// assert_eq!(dir, (Ordering::Greater, Ordering::Less));
/// ```
#[inline]
pub fn recip_round(&mut self, round: Round2) -> Ordering2 {
xmpc::recip(self, (), round)
}
/// Computes the reciprocal.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// // 1/(1 + i) = (0.5 - 0.5i)
/// let recip = Complex::with_val(53, c.recip_ref());
/// assert_eq!(recip, (0.5, -0.5));
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn recip_ref(&self) -> RecipIncomplete<'_> {
RecipIncomplete { ref_self: self }
}
/// Computes the norm, that is the square of the absolute value, rounding it
/// to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (3, 4));
/// let norm = c.norm();
/// assert_eq!(norm, 25);
/// ```
#[inline]
#[must_use]
pub fn norm(mut self) -> Self {
self.norm_round(NEAREST2);
self
}
/// Computes the norm, that is the square of the absolute value, rounding to
/// the nearest.
///
/// The real part is set to the norm and the imaginary part is set to zero.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (3, 4));
/// c.norm_mut();
/// assert_eq!(c, (25, 0));
/// ```
#[inline]
pub fn norm_mut(&mut self) {
self.norm_round(NEAREST2);
}
/// Computes the norm, that is the square of the absolute value, applying
/// the specified rounding method.
///
/// The real part is set to the norm and the imaginary part is set to zero.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // use only 4 bits of precision
/// let mut c = Complex::with_val(4, (3, 4));
/// // 25 rounded up using 4 bits is 26
/// let dir = c.norm_round((Round::Up, Round::Up));
/// assert_eq!(c, (26, 0));
/// assert_eq!(dir, (Ordering::Greater, Ordering::Equal));
/// ```
#[inline]
pub fn norm_round(&mut self, round: Round2) -> Ordering2 {
// Since mpc::norm mpc::norm does not document that the result
// can be stored in one of its parts, we allocate a new Float.
let (norm, dir_re) = Float::with_val_round(self.real().prec(), self.norm_ref(), round.0);
let (real, imag) = self.as_mut_real_imag();
*real = norm;
let dir_im = imag.assign_round(Special::Zero, round.1);
(dir_re, dir_im)
}
/// Computes the norm, that is the square of the absolute value.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Float]</code>
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Float]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::{Complex, Float};
/// let c = Complex::with_val(53, (3, 4));
/// let f = Float::with_val(53, c.norm_ref());
/// assert_eq!(f, 25);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn norm_ref(&self) -> NormIncomplete<'_> {
NormIncomplete { ref_self: self }
}
/// Computes the natural logarithm, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1.5, -0.5));
/// let ln = c.ln();
/// let expected = Complex::with_val(53, (0.4581, -0.3218));
/// assert!(*(ln - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn ln(mut self) -> Self {
self.ln_round(NEAREST2);
self
}
/// Computes the natural logarithm, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1.5, -0.5));
/// c.ln_mut();
/// let expected = Complex::with_val(53, (0.4581, -0.3218));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn ln_mut(&mut self) {
self.ln_round(NEAREST2);
}
/// Computes the natural logarithm, applying the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (1.5, -0.5));
/// // ln(1.5 - 0.5i) = (0.4581 - 0.3218i)
/// // using 4 significant bits: (0.46875 - 0.3125i)
/// let dir = c.ln_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (0.46875, -0.3125));
/// assert_eq!(dir, (Ordering::Greater, Ordering::Greater));
/// ```
#[inline]
pub fn ln_round(&mut self, round: Round2) -> Ordering2 {
xmpc::log(self, (), round)
}
/// Computes the natural logarithm.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1.5, -0.5));
/// let ln = Complex::with_val(53, c.ln_ref());
/// let expected = Complex::with_val(53, (0.4581, -0.3218));
/// assert!(*(ln - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn ln_ref(&self) -> LnIncomplete<'_> {
LnIncomplete { ref_self: self }
}
/// Computes the logarithm to base 10, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1.5, -0.5));
/// let log10 = c.log10();
/// let expected = Complex::with_val(53, (0.1990, -0.1397));
/// assert!(*(log10 - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn log10(mut self) -> Self {
self.log10_round(NEAREST2);
self
}
/// Computes the logarithm to base 10, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1.5, -0.5));
/// c.log10_mut();
/// let expected = Complex::with_val(53, (0.1990, -0.1397));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn log10_mut(&mut self) {
self.log10_round(NEAREST2);
}
/// Computes the logarithm to base 10, applying the specified rounding
/// method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (1.5, -0.5));
/// // log10(1.5 - 0.5i) = (0.1990 - 0.1397i)
/// // using 4 significant bits: (0.203125 - 0.140625i)
/// let dir = c.log10_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (0.203125, -0.140625));
/// assert_eq!(dir, (Ordering::Greater, Ordering::Less));
/// ```
#[inline]
pub fn log10_round(&mut self, round: Round2) -> Ordering2 {
xmpc::log10(self, (), round)
}
/// Computes the logarithm to base 10.
///
/// The following are implemented with the returned
/// [incomplete-computation value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1.5, -0.5));
/// let log10 = Complex::with_val(53, c.log10_ref());
/// let expected = Complex::with_val(53, (0.1990, -0.1397));
/// assert!(*(log10 - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn log10_ref(&self) -> Log10Incomplete<'_> {
Log10Incomplete { ref_self: self }
}
/// Generates a root of unity, rounding to the nearest.
///
/// The generated number is the <i>n</i>th root of unity raised to the power
/// <i>k</i>, that is its magnitude is 1 and its argument is
/// 2π<i>k</i>/<i>n</i>.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let r = Complex::root_of_unity(3, 2);
/// let c = Complex::with_val(53, r);
/// let expected = Complex::with_val(53, (-0.5, -0.8660));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn root_of_unity(n: u32, k: u32) -> RootOfUnityIncomplete {
RootOfUnityIncomplete { n, k }
}
/// Computes the exponential, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (0.5, -0.75));
/// let exp = c.exp();
/// let expected = Complex::with_val(53, (1.2064, -1.1238));
/// assert!(*(exp - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn exp(mut self) -> Self {
self.exp_round(NEAREST2);
self
}
/// Computes the exponential, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (0.5, -0.75));
/// c.exp_mut();
/// let expected = Complex::with_val(53, (1.2064, -1.1238));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn exp_mut(&mut self) {
self.exp_round(NEAREST2);
}
/// Computes the exponential, applying the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (0.5, -0.75));
/// // exp(0.5 - 0.75i) = (1.2064 - 1.1238i)
/// // using 4 significant bits: (1.25 - 1.125)
/// let dir = c.exp_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (1.25, -1.125));
/// assert_eq!(dir, (Ordering::Greater, Ordering::Less));
/// ```
#[inline]
pub fn exp_round(&mut self, round: Round2) -> Ordering2 {
xmpc::exp(self, (), round)
}
/// Computes the exponential.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (0.5, -0.75));
/// let exp = Complex::with_val(53, c.exp_ref());
/// let expected = Complex::with_val(53, (1.2064, -1.1238));
/// assert!(*(exp - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn exp_ref(&self) -> ExpIncomplete<'_> {
ExpIncomplete { ref_self: self }
}
/// Computes the sine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let sin = c.sin();
/// let expected = Complex::with_val(53, (1.2985, 0.6350));
/// assert!(*(sin - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn sin(mut self) -> Self {
self.sin_round(NEAREST2);
self
}
/// Computes the sine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1, 1));
/// c.sin_mut();
/// let expected = Complex::with_val(53, (1.2985, 0.6350));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn sin_mut(&mut self) {
self.sin_round(NEAREST2);
}
/// Computes the sine, applying the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (1, 1));
/// // sin(1 + i) = (1.2985 + 0.6350i)
/// // using 4 significant bits: (1.25 + 0.625i)
/// let dir = c.sin_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (1.25, 0.625));
/// assert_eq!(dir, (Ordering::Less, Ordering::Less));
/// ```
#[inline]
pub fn sin_round(&mut self, round: Round2) -> Ordering2 {
xmpc::sin(self, (), round)
}
/// Computes the sine.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let sin = Complex::with_val(53, c.sin_ref());
/// let expected = Complex::with_val(53, (1.2985, 0.6350));
/// assert!(*(sin - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn sin_ref(&self) -> SinIncomplete<'_> {
SinIncomplete { ref_self: self }
}
/// Computes the cosine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let cos = c.cos();
/// let expected = Complex::with_val(53, (0.8337, -0.9889));
/// assert!(*(cos - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn cos(mut self) -> Self {
self.cos_round(NEAREST2);
self
}
/// Computes the cosine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1, 1));
/// c.cos_mut();
/// let expected = Complex::with_val(53, (0.8337, -0.9889));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn cos_mut(&mut self) {
self.cos_round(NEAREST2);
}
/// Computes the cosine, applying the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (1, 1));
/// // cos(1 + i) = (0.8337 - 0.9889i)
/// // using 4 significant bits: (0.8125 - i)
/// let dir = c.cos_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (0.8125, -1));
/// assert_eq!(dir, (Ordering::Less, Ordering::Less));
/// ```
#[inline]
pub fn cos_round(&mut self, round: Round2) -> Ordering2 {
xmpc::cos(self, (), round)
}
/// Computes the cosine.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let cos = Complex::with_val(53, c.cos_ref());
/// let expected = Complex::with_val(53, (0.8337, -0.9889));
/// assert!(*(cos - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn cos_ref(&self) -> CosIncomplete<'_> {
CosIncomplete { ref_self: self }
}
/// Computes the sine and cosine of `self`, rounding to the nearest.
///
/// The sine keeps the precision of `self` while the cosine keeps the
/// precision of `cos`.
///
/// The initial value of `cos` is ignored.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let (sin, cos) = c.sin_cos(Complex::new(53));
/// let expected_sin = Complex::with_val(53, (1.2985, 0.6350));
/// let expected_cos = Complex::with_val(53, (0.8337, -0.9889));
/// assert!(*(sin - expected_sin).abs().real() < 0.0001);
/// assert!(*(cos - expected_cos).abs().real() < 0.0001);
/// ```
#[inline]
pub fn sin_cos(mut self, mut cos: Self) -> (Self, Self) {
self.sin_cos_round(&mut cos, NEAREST2);
(self, cos)
}
/// Computes the sine and cosine of `self`, rounding to the nearest.
///
/// The sine is stored in `self` and keeps its precision, while the cosine
/// is stored in `cos` keeping its precision.
///
/// The initial value of `cos` is ignored.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut sin = Complex::with_val(53, (1, 1));
/// let mut cos = Complex::new(53);
/// sin.sin_cos_mut(&mut cos);
/// let expected_sin = Complex::with_val(53, (1.2985, 0.6350));
/// let expected_cos = Complex::with_val(53, (0.8337, -0.9889));
/// assert!(*(sin - expected_sin).abs().real() < 0.0001);
/// assert!(*(cos - expected_cos).abs().real() < 0.0001);
/// ```
#[inline]
pub fn sin_cos_mut(&mut self, cos: &mut Self) {
self.sin_cos_round(cos, NEAREST2);
}
/// Computes the sine and cosine of `self`, applying the specified rounding
/// methods.
///
/// The sine is stored in `self` and keeps its precision, while the cosine
/// is stored in `cos` keeping its precision.
///
/// The initial value of `cos` is ignored.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut sin = Complex::with_val(4, (1, 1));
/// let mut cos = Complex::new(4);
/// // sin(1 + i) = (1.2985 + 0.6350)
/// // using 4 significant bits: (1.25 + 0.625i)
/// // cos(1 + i) = (0.8337 - 0.9889i)
/// // using 4 significant bits: (0.8125 - i)
/// let (dir_sin, dir_cos) =
/// sin.sin_cos_round(&mut cos, (Round::Nearest, Round::Nearest));
/// assert_eq!(sin, (1.25, 0.625));
/// assert_eq!(dir_sin, (Ordering::Less, Ordering::Less));
/// assert_eq!(cos, (0.8125, -1));
/// assert_eq!(dir_cos, (Ordering::Less, Ordering::Less));
/// ```
#[inline]
pub fn sin_cos_round(&mut self, cos: &mut Self, round: Round2) -> (Ordering2, Ordering2) {
xmpc::sin_cos(self, cos, (), round)
}
/// Computes the sine and cosine.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [(][tuple][Complex][], [Complex][][)][tuple]</code>
/// * <code>[Assign]\<Src> for [(][tuple]\&mut [Complex], \&mut [Complex][][)][tuple]</code>
/// * <code>[AssignRound]\<Src> for [(][tuple][Complex][], [Complex][][)][tuple]</code>
/// * <code>[AssignRound]\<Src> for [(][tuple]\&mut [Complex], \&mut [Complex][][)][tuple]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [(][tuple][Complex][], [Complex][][)][tuple]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::ops::AssignRound;
/// use rug::{Assign, Complex};
/// let phase = Complex::with_val(53, (1, 1));
///
/// let (mut sin, mut cos) = (Complex::new(53), Complex::new(53));
/// let sin_cos = phase.sin_cos_ref();
/// (&mut sin, &mut cos).assign(sin_cos);
/// let expected_sin = Complex::with_val(53, (1.2985, 0.6350));
/// let expected_cos = Complex::with_val(53, (0.8337, -0.9889));
/// assert!(*(sin - expected_sin).abs().real() < 0.0001);
/// assert!(*(cos - expected_cos).abs().real() < 0.0001);
///
/// // using 4 significant bits: sin = (1.25 + 0.625i)
/// // using 4 significant bits: cos = (0.8125 - i)
/// let (mut sin_4, mut cos_4) = (Complex::new(4), Complex::new(4));
/// let sin_cos = phase.sin_cos_ref();
/// let (dir_sin, dir_cos) = (&mut sin_4, &mut cos_4)
/// .assign_round(sin_cos, (Round::Nearest, Round::Nearest));
/// assert_eq!(sin_4, (1.25, 0.625));
/// assert_eq!(dir_sin, (Ordering::Less, Ordering::Less));
/// assert_eq!(cos_4, (0.8125, -1));
/// assert_eq!(dir_cos, (Ordering::Less, Ordering::Less));
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn sin_cos_ref(&self) -> SinCosIncomplete<'_> {
SinCosIncomplete { ref_self: self }
}
/// Computes the tangent, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let tan = c.tan();
/// let expected = Complex::with_val(53, (0.2718, 1.0839));
/// assert!(*(tan - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn tan(mut self) -> Self {
self.tan_round(NEAREST2);
self
}
/// Computes the tangent, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1, 1));
/// c.tan_mut();
/// let expected = Complex::with_val(53, (0.2718, 1.0839));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn tan_mut(&mut self) {
self.tan_round(NEAREST2);
}
/// Computes the tangent, applying the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (1, 1));
/// // tan(1 + i) = (0.2718 + 1.0839)
/// // using 4 significant bits: (0.28125 + 1.125i)
/// let dir = c.tan_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (0.28125, 1.125));
/// assert_eq!(dir, (Ordering::Greater, Ordering::Greater));
/// ```
#[inline]
pub fn tan_round(&mut self, round: Round2) -> Ordering2 {
xmpc::tan(self, (), round)
}
/// Computes the tangent.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let tan = Complex::with_val(53, c.tan_ref());
/// let expected = Complex::with_val(53, (0.2718, 1.0839));
/// assert!(*(tan - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn tan_ref(&self) -> TanIncomplete<'_> {
TanIncomplete { ref_self: self }
}
/// Computes the hyperbolic sine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let sinh = c.sinh();
/// let expected = Complex::with_val(53, (0.6350, 1.2985));
/// assert!(*(sinh - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn sinh(mut self) -> Self {
self.sinh_round(NEAREST2);
self
}
/// Computes the hyperbolic sine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1, 1));
/// c.sinh_mut();
/// let expected = Complex::with_val(53, (0.6350, 1.2985));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn sinh_mut(&mut self) {
self.sinh_round(NEAREST2);
}
/// Computes the hyperbolic sine, applying the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (1, 1));
/// // sinh(1 + i) = (0.6350 + 1.2985i)
/// // using 4 significant bits: (0.625 + 1.25i)
/// let dir = c.sinh_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (0.625, 1.25));
/// assert_eq!(dir, (Ordering::Less, Ordering::Less));
/// ```
#[inline]
pub fn sinh_round(&mut self, round: Round2) -> Ordering2 {
xmpc::sinh(self, (), round)
}
/// Computes the hyperbolic sine.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let sinh = Complex::with_val(53, c.sinh_ref());
/// let expected = Complex::with_val(53, (0.6350, 1.2985));
/// assert!(*(sinh - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn sinh_ref(&self) -> SinhIncomplete<'_> {
SinhIncomplete { ref_self: self }
}
/// Computes the hyperbolic cosine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let cosh = c.cosh();
/// let expected = Complex::with_val(53, (0.8337, 0.9889));
/// assert!(*(cosh - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn cosh(mut self) -> Self {
self.cosh_round(NEAREST2);
self
}
/// Computes the hyperbolic cosine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1, 1));
/// c.cosh_mut();
/// let expected = Complex::with_val(53, (0.8337, 0.9889));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn cosh_mut(&mut self) {
self.cosh_round(NEAREST2);
}
/// Computes the hyperbolic cosine, applying the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (1, 1));
/// // cosh(1 + i) = (0.8337 + 0.9889)
/// // using 4 significant bits: (0.8125 + i)
/// let dir = c.cosh_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (0.8125, 1));
/// assert_eq!(dir, (Ordering::Less, Ordering::Greater));
/// ```
#[inline]
pub fn cosh_round(&mut self, round: Round2) -> Ordering2 {
xmpc::cosh(self, (), round)
}
/// Computes the hyperbolic cosine.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let cosh = Complex::with_val(53, c.cosh_ref());
/// let expected = Complex::with_val(53, (0.8337, 0.9889));
/// assert!(*(cosh - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn cosh_ref(&self) -> CoshIncomplete<'_> {
CoshIncomplete { ref_self: self }
}
/// Computes the hyperbolic tangent, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let tanh = c.tanh();
/// let expected = Complex::with_val(53, (1.0839, 0.2718));
/// assert!(*(tanh - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn tanh(mut self) -> Self {
self.tanh_round(NEAREST2);
self
}
/// Computes the hyperbolic tangent, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1, 1));
/// c.tanh_mut();
/// let expected = Complex::with_val(53, (1.0839, 0.2718));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn tanh_mut(&mut self) {
self.tanh_round(NEAREST2);
}
/// Computes the hyperbolic tangent, applying the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (1, 1));
/// // tanh(1 + i) = (1.0839 + 0.2718i)
/// // using 4 significant bits: (1.125 + 0.28125i)
/// let dir = c.tanh_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (1.125, 0.28125));
/// assert_eq!(dir, (Ordering::Greater, Ordering::Greater));
/// ```
#[inline]
pub fn tanh_round(&mut self, round: Round2) -> Ordering2 {
xmpc::tanh(self, (), round)
}
/// Computes the hyperbolic tangent.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let tanh = Complex::with_val(53, c.tanh_ref());
/// let expected = Complex::with_val(53, (1.0839, 0.2718));
/// assert!(*(tanh - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn tanh_ref(&self) -> TanhIncomplete<'_> {
TanhIncomplete { ref_self: self }
}
/// Computes the inverse sine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let asin = c.asin();
/// let expected = Complex::with_val(53, (0.6662, 1.0613));
/// assert!(*(asin - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn asin(mut self) -> Self {
self.asin_round(NEAREST2);
self
}
/// Computes the inverse sine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1, 1));
/// c.asin_mut();
/// let expected = Complex::with_val(53, (0.6662, 1.0613));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn asin_mut(&mut self) {
self.asin_round(NEAREST2);
}
/// Computes the inverse sine, applying the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (1, 1));
/// // asin(1 + i) = (0.6662 + 1.0613i)
/// // using 4 significant bits: (0.6875 + i)
/// let dir = c.asin_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (0.6875, 1));
/// assert_eq!(dir, (Ordering::Greater, Ordering::Less));
/// ```
#[inline]
pub fn asin_round(&mut self, round: Round2) -> Ordering2 {
xmpc::asin(self, (), round)
}
/// Computes the inverse sine.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let asin = Complex::with_val(53, c.asin_ref());
/// let expected = Complex::with_val(53, (0.6662, 1.0613));
/// assert!(*(asin - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn asin_ref(&self) -> AsinIncomplete<'_> {
AsinIncomplete { ref_self: self }
}
/// Computes the inverse cosine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let acos = c.acos();
/// let expected = Complex::with_val(53, (0.9046, -1.0613));
/// assert!(*(acos - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn acos(mut self) -> Self {
self.acos_round(NEAREST2);
self
}
/// Computes the inverse cosine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1, 1));
/// c.acos_mut();
/// let expected = Complex::with_val(53, (0.9046, -1.0613));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn acos_mut(&mut self) {
self.acos_round(NEAREST2);
}
/// Computes the inverse cosine, applying the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (1, 1));
/// // acos(1 + i) = (0.9046 - 1.0613i)
/// // using 4 significant bits: (0.875 - i)
/// let dir = c.acos_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (0.875, -1));
/// assert_eq!(dir, (Ordering::Less, Ordering::Greater));
/// ```
#[inline]
pub fn acos_round(&mut self, round: Round2) -> Ordering2 {
xmpc::acos(self, (), round)
}
/// Computes the inverse cosine.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let acos = Complex::with_val(53, c.acos_ref());
/// let expected = Complex::with_val(53, (0.9046, -1.0613));
/// assert!(*(acos - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn acos_ref(&self) -> AcosIncomplete<'_> {
AcosIncomplete { ref_self: self }
}
/// Computes the inverse tangent, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let atan = c.atan();
/// let expected = Complex::with_val(53, (1.0172, 0.4024));
/// assert!(*(atan - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn atan(mut self) -> Self {
self.atan_round(NEAREST2);
self
}
/// Computes the inverse tangent, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1, 1));
/// c.atan_mut();
/// let expected = Complex::with_val(53, (1.0172, 0.4024));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn atan_mut(&mut self) {
self.atan_round(NEAREST2);
}
/// Computes the inverse tangent, applying the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (1, 1));
/// // atan(1 + i) = (1.0172 + 0.4024i)
/// // using 4 significant bits: (1 + 0.40625i)
/// let dir = c.atan_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (1, 0.40625));
/// assert_eq!(dir, (Ordering::Less, Ordering::Greater));
/// ```
#[inline]
pub fn atan_round(&mut self, round: Round2) -> Ordering2 {
xmpc::atan(self, (), round)
}
/// Computes the inverse tangent.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let atan = Complex::with_val(53, c.atan_ref());
/// let expected = Complex::with_val(53, (1.0172, 0.4024));
/// assert!(*(atan - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn atan_ref(&self) -> AtanIncomplete<'_> {
AtanIncomplete { ref_self: self }
}
/// Computes the inverse hyperbolic sine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let asinh = c.asinh();
/// let expected = Complex::with_val(53, (1.0613, 0.6662));
/// assert!(*(asinh - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn asinh(mut self) -> Self {
self.asinh_round(NEAREST2);
self
}
/// Computes the inverse hyperbolic sine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1, 1));
/// c.asinh_mut();
/// let expected = Complex::with_val(53, (1.0613, 0.6662));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn asinh_mut(&mut self) {
self.asinh_round(NEAREST2);
}
/// Computes the inverse hyperbolic sine, applying the specified rounding
/// method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (1, 1));
/// // asinh(1 + i) = (1.0613 + 0.6662i)
/// // using 4 significant bits: (1 + 0.6875i)
/// let dir = c.asinh_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (1, 0.6875));
/// assert_eq!(dir, (Ordering::Less, Ordering::Greater));
/// ```
#[inline]
pub fn asinh_round(&mut self, round: Round2) -> Ordering2 {
xmpc::asinh(self, (), round)
}
/// Computes the inverse hyperboic sine.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let asinh = Complex::with_val(53, c.asinh_ref());
/// let expected = Complex::with_val(53, (1.0613, 0.6662));
/// assert!(*(asinh - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn asinh_ref(&self) -> AsinhIncomplete<'_> {
AsinhIncomplete { ref_self: self }
}
/// Computes the inverse hyperbolic cosine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let acosh = c.acosh();
/// let expected = Complex::with_val(53, (1.0613, 0.9046));
/// assert!(*(acosh - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn acosh(mut self) -> Self {
self.acosh_round(NEAREST2);
self
}
/// Computes the inverse hyperbolic cosine, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1, 1));
/// c.acosh_mut();
/// let expected = Complex::with_val(53, (1.0613, 0.9046));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn acosh_mut(&mut self) {
self.acosh_round(NEAREST2);
}
/// Computes the inverse hyperbolic cosine, applying the specified rounding
/// method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (1, 1));
/// // acosh(1 + i) = (1.0613 + 0.9046i)
/// // using 4 significant bits: (1 + 0.875i)
/// let dir = c.acosh_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (1, 0.875));
/// assert_eq!(dir, (Ordering::Less, Ordering::Less));
/// ```
#[inline]
pub fn acosh_round(&mut self, round: Round2) -> Ordering2 {
xmpc::acosh(self, (), round)
}
/// Computes the inverse hyperbolic cosine.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let acosh = Complex::with_val(53, c.acosh_ref());
/// let expected = Complex::with_val(53, (1.0613, 0.9046));
/// assert!(*(acosh - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn acosh_ref(&self) -> AcoshIncomplete<'_> {
AcoshIncomplete { ref_self: self }
}
/// Computes the inverse hyperbolic tangent, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let atanh = c.atanh();
/// let expected = Complex::with_val(53, (0.4024, 1.0172));
/// assert!(*(atanh - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn atanh(mut self) -> Self {
self.atanh_round(NEAREST2);
self
}
/// Computes the inverse hyperbolic tangent, rounding to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut c = Complex::with_val(53, (1, 1));
/// c.atanh_mut();
/// let expected = Complex::with_val(53, (0.4024, 1.0172));
/// assert!(*(c - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn atanh_mut(&mut self) {
self.atanh_round(NEAREST2);
}
/// Computes the inverse hyperbolic tangent, applying the specified rounding
/// method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut c = Complex::with_val(4, (1, 1));
/// // atanh(1 + i) = (0.4024 + 1.0172i)
/// // using 4 significant bits: (0.40625 + i)
/// let dir = c.atanh_round((Round::Nearest, Round::Nearest));
/// assert_eq!(c, (0.40625, 1));
/// assert_eq!(dir, (Ordering::Greater, Ordering::Less));
/// ```
#[inline]
pub fn atanh_round(&mut self, round: Round2) -> Ordering2 {
xmpc::atanh(self, (), round)
}
/// Computes the inverse hyperbolic tangent.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let c = Complex::with_val(53, (1, 1));
/// let atanh = Complex::with_val(53, c.atanh_ref());
/// let expected = Complex::with_val(53, (0.4024, 1.0172));
/// assert!(*(atanh - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn atanh_ref(&self) -> AtanhIncomplete<'_> {
AtanhIncomplete { ref_self: self }
}
/// Computes the arithmetic-geometric mean of `self` and `other`, rounding
/// to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let f = Complex::with_val(53, (1.25, 1.0));
/// let g = Complex::with_val(53, (3.75, -1.0));
/// let agm = f.agm(&g);
/// let expected = Complex::with_val(53, (2.4763, 0.2571));
/// assert!(*(agm - expected).abs().real() < 0.0001);
/// ```
#[inline]
#[must_use]
pub fn agm(mut self, other: &Self) -> Self {
self.agm_round(other, NEAREST2);
self
}
/// Computes the arithmetic-geometric mean of `self` and `other`, rounding
/// to the nearest.
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let mut f = Complex::with_val(53, (1.25, 1.0));
/// let g = Complex::with_val(53, (3.75, -1.0));
/// f.agm_mut(&g);
/// let expected = Complex::with_val(53, (2.4763, 0.2571));
/// assert!(*(f - expected).abs().real() < 0.0001);
/// ```
#[inline]
pub fn agm_mut(&mut self, other: &Self) {
self.agm_round(other, NEAREST2);
}
/// Computes the arithmetic-geometric mean of `self` and `other`, applying
/// the specified rounding method.
///
/// # Examples
///
/// ```rust
/// use core::cmp::Ordering;
/// use rug::float::Round;
/// use rug::Complex;
/// // Use only 4 bits of precision to show rounding.
/// let mut f = Complex::with_val(4, (1.25, 1.0));
/// let g = Complex::with_val(4, (3.75, -1.0));
/// // agm(1.25 + 1.0i, 3.75 - 1.0i) = 2.4763 + 0.2571i
/// // using 4 significant bits: 2.5 + 0.25i
/// let dir = f.agm_round(&g, (Round::Nearest, Round::Nearest));
/// assert_eq!(f, (2.5, 0.25));
/// assert_eq!(dir, (Ordering::Greater, Ordering::Less));
/// ```
#[inline]
pub fn agm_round(&mut self, other: &Self, round: Round2) -> Ordering2 {
xmpc::agm(self, (), other, round)
}
/// Computes the arithmetic-geometric mean.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
///
/// # Examples
///
/// ```rust
/// use rug::Complex;
/// let f = Complex::with_val(53, (1.25, 1.0));
/// let g = Complex::with_val(53, (3.75, -1.0));
/// let agm = Complex::with_val(53, f.agm_ref(&g));
/// let expected = Complex::with_val(53, (2.4763, 0.2571));
/// assert!(*(agm - expected).abs().real() < 0.0001);
/// ```
///
/// [icv]: crate#incomplete-computation-values
#[inline]
pub fn agm_ref<'a>(&'a self, other: &'a Self) -> AgmIncomplete<'_> {
AgmIncomplete {
ref_self: self,
other,
}
}
#[cfg(feature = "rand")]
/// Generates a random complex number with both the real and imaginary parts
/// in the range 0 ≤ <i>x</i> < 1.
///
/// This is equivalent to generating a random integer in the range
/// 0 ≤ <i>x</i> < 2<sup><i>p</i></sup> for each part,
/// where 2<sup><i>p</i></sup> is two raised to the power of the precision,
/// and then dividing the integer by 2<sup><i>p</i></sup>. The smallest
/// non-zero result will thus be 2<sup>−<i>p</i></sup>, and will only
/// have one bit set. In the smaller possible results, many bits will be
/// zero, and not all the precision will be used.
///
/// There is a corner case where the generated random number part is
/// converted to NaN: if the precision is very large, the generated random
/// number could have an exponent less than the allowed minimum exponent,
/// and NaN is used to indicate this. For this to occur in practice, the
/// minimum exponent has to be set to have a very small magnitude using the
/// low-level MPFR interface, or the random number generator has to be
/// designed specifically to trigger this case.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::rand::RandState;
/// use rug::{Assign, Complex};
/// let mut rand = RandState::new();
/// let mut c = Complex::new(2);
/// c.assign(Complex::random_bits(&mut rand));
/// let (re, im) = c.into_real_imag();
/// assert!(re == 0.0 || re == 0.25 || re == 0.5 || re == 0.75);
/// assert!(im == 0.0 || im == 0.25 || im == 0.5 || im == 0.75);
/// println!("0.0 ≤ {} < 1.0", re);
/// println!("0.0 ≤ {} < 1.0", im);
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn random_bits(rng: &mut dyn MutRandState) -> RandomBitsIncomplete {
RandomBitsIncomplete { rng }
}
#[cfg(feature = "rand")]
/// Generates a random complex number with both the real and imaginary parts
/// in the continous range 0 ≤ <i>x</i> < 1, and rounds
/// to the nearest.
///
/// The result parts can be rounded up to be equal to one. Unlike the
/// [`random_bits`][Complex::random_bits] method which generates a discrete
/// random number at intervals depending on the precision, this method is
/// equivalent to generating a continuous random number with infinite
/// precision and then rounding the result. This means that even the smaller
/// numbers will be using all the available precision bits, and rounding is
/// performed in all cases, not in some corner case.
///
/// Rounding directions for generated random numbers cannot be
/// <code>[Ordering]::[Equal][Ordering::Equal]</code>, as the random numbers
/// generated can be considered to have infinite precision before rounding.
///
/// The following are implemented with the returned [incomplete-computation
/// value][icv] as `Src`:
/// * <code>[Assign]\<Src> for [Complex]</code>
/// * <code>[AssignRound]\<Src> for [Complex]</code>
/// * <code>[CompleteRound]\<[Completed][CompleteRound::Completed] = [Complex]> for Src</code>
///
/// # Examples
///
/// ```rust
/// use rug::rand::RandState;
/// use rug::Complex;
/// let mut rand = RandState::new();
/// let c = Complex::with_val(2, Complex::random_cont(&mut rand));
/// let (re, im) = c.into_real_imag();
/// // The significand is either 0b10 or 0b11
/// assert!(
/// re == 1.0
/// || re == 0.75
/// || re == 0.5
/// || re == 0.375
/// || re == 0.25
/// || re <= 0.1875
/// );
/// assert!(
/// im == 1.0
/// || im == 0.75
/// || im == 0.5
/// || im == 0.375
/// || im == 0.25
/// || im <= 0.1875
/// );
/// ```
///
/// [icv]: `crate`#incomplete-computation-values
#[inline]
pub fn random_cont(rng: &mut dyn MutRandState) -> RandomContIncomplete {
RandomContIncomplete { rng }
}
/// This method has been renamed to [`is_zero`][Complex::is_zero].
#[deprecated(since = "1.22.0", note = "renamed to `is_zero`")]
#[inline]
pub const fn eq0(&self) -> bool {
self.is_zero()
}
}
#[derive(Debug)]
pub struct SumIncomplete<'a, I>
where
I: Iterator<Item = &'a Complex>,
{
values: I,
}
impl<'a, I> AssignRound<SumIncomplete<'a, I>> for Complex
where
I: Iterator<Item = &'a Self>,
{
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn assign_round(&mut self, src: SumIncomplete<'a, I>, round: Round2) -> Ordering2 {
xmpc::sum(self, src.values, round)
}
}
impl<'a, I> CompleteRound for SumIncomplete<'a, I>
where
I: Iterator<Item = &'a Complex>,
{
type Completed = Complex;
type Prec = (u32, u32);
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn complete_round(self, prec: (u32, u32), round: Round2) -> (Complex, Ordering2) {
Complex::with_val_round(prec, self, round)
}
}
impl<'a, I> Add<SumIncomplete<'a, I>> for Complex
where
I: Iterator<Item = &'a Self>,
{
type Output = Self;
#[inline]
fn add(mut self, rhs: SumIncomplete<'a, I>) -> Self {
self.add_assign_round(rhs, NEAREST2);
self
}
}
impl<'a, I> Add<Complex> for SumIncomplete<'a, I>
where
I: Iterator<Item = &'a Complex>,
{
type Output = Complex;
#[inline]
fn add(self, mut rhs: Complex) -> Complex {
rhs.add_assign_round(self, NEAREST2);
rhs
}
}
impl<'a, I> AddAssign<SumIncomplete<'a, I>> for Complex
where
I: Iterator<Item = &'a Self>,
{
#[inline]
fn add_assign(&mut self, rhs: SumIncomplete<'a, I>) {
self.add_assign_round(rhs, NEAREST2);
}
}
impl<'a, I> AddAssignRound<SumIncomplete<'a, I>> for Complex
where
I: Iterator<Item = &'a Self>,
{
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn add_assign_round(&mut self, src: SumIncomplete<'a, I>, round: Round2) -> Ordering2 {
xmpc::sum_including_old(self, src.values, round)
}
}
impl<'a, I> Sub<SumIncomplete<'a, I>> for Complex
where
I: Iterator<Item = &'a Self>,
{
type Output = Self;
#[inline]
fn sub(mut self, rhs: SumIncomplete<'a, I>) -> Self {
self.sub_assign_round(rhs, NEAREST2);
self
}
}
impl<'a, I> Sub<Complex> for SumIncomplete<'a, I>
where
I: Iterator<Item = &'a Complex>,
{
type Output = Complex;
#[inline]
fn sub(self, mut rhs: Complex) -> Complex {
rhs.sub_from_round(self, NEAREST2);
rhs
}
}
impl<'a, I> SubAssign<SumIncomplete<'a, I>> for Complex
where
I: Iterator<Item = &'a Self>,
{
#[inline]
fn sub_assign(&mut self, rhs: SumIncomplete<'a, I>) {
self.sub_assign_round(rhs, NEAREST2);
}
}
impl<'a, I> SubAssignRound<SumIncomplete<'a, I>> for Complex
where
I: Iterator<Item = &'a Self>,
{
type Round = Round2;
type Ordering = Ordering2;
fn sub_assign_round(&mut self, src: SumIncomplete<'a, I>, round: Round2) -> Ordering2 {
self.neg_assign();
let reverse_dir = self.add_assign_round(src, (round.0.reverse(), round.1.reverse()));
self.neg_assign();
(reverse_dir.0.reverse(), reverse_dir.1.reverse())
}
}
impl<'a, I> SubFrom<SumIncomplete<'a, I>> for Complex
where
I: Iterator<Item = &'a Self>,
{
#[inline]
fn sub_from(&mut self, rhs: SumIncomplete<'a, I>) {
self.sub_from_round(rhs, NEAREST2);
}
}
impl<'a, I> SubFromRound<SumIncomplete<'a, I>> for Complex
where
I: Iterator<Item = &'a Self>,
{
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn sub_from_round(&mut self, src: SumIncomplete<'a, I>, round: Round2) -> Ordering2 {
self.neg_assign();
self.add_assign_round(src, round)
}
}
#[derive(Debug)]
pub struct DotIncomplete<'a, I>
where
I: Iterator<Item = (&'a Complex, &'a Complex)>,
{
values: I,
}
impl<'a, I> AssignRound<DotIncomplete<'a, I>> for Complex
where
I: Iterator<Item = (&'a Self, &'a Self)>,
{
type Round = Round2;
type Ordering = Ordering2;
fn assign_round(&mut self, src: DotIncomplete<'a, I>, round: Round2) -> Ordering2 {
xmpc::dot(self, src.values, round)
}
}
impl<'a, I> CompleteRound for DotIncomplete<'a, I>
where
I: Iterator<Item = (&'a Complex, &'a Complex)>,
{
type Completed = Complex;
type Prec = (u32, u32);
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn complete_round(self, prec: (u32, u32), round: Round2) -> (Complex, Ordering2) {
Complex::with_val_round(prec, self, round)
}
}
impl<'a, I> Add<DotIncomplete<'a, I>> for Complex
where
I: Iterator<Item = (&'a Self, &'a Self)>,
{
type Output = Self;
#[inline]
fn add(mut self, rhs: DotIncomplete<'a, I>) -> Self {
self.add_assign_round(rhs, NEAREST2);
self
}
}
impl<'a, I> Add<Complex> for DotIncomplete<'a, I>
where
I: Iterator<Item = (&'a Complex, &'a Complex)>,
{
type Output = Complex;
#[inline]
fn add(self, mut rhs: Complex) -> Complex {
rhs.add_assign_round(self, NEAREST2);
rhs
}
}
impl<'a, I> AddAssign<DotIncomplete<'a, I>> for Complex
where
I: Iterator<Item = (&'a Self, &'a Self)>,
{
#[inline]
fn add_assign(&mut self, rhs: DotIncomplete<'a, I>) {
self.add_assign_round(rhs, NEAREST2);
}
}
impl<'a, I> AddAssignRound<DotIncomplete<'a, I>> for Complex
where
I: Iterator<Item = (&'a Self, &'a Self)>,
{
type Round = Round2;
type Ordering = Ordering2;
fn add_assign_round(&mut self, src: DotIncomplete<'a, I>, round: Round2) -> Ordering2 {
xmpc::dot_including_old(self, src.values, round)
}
}
impl<'a, I> Sub<DotIncomplete<'a, I>> for Complex
where
I: Iterator<Item = (&'a Self, &'a Self)>,
{
type Output = Self;
#[inline]
fn sub(mut self, rhs: DotIncomplete<'a, I>) -> Self {
self.sub_assign_round(rhs, NEAREST2);
self
}
}
impl<'a, I> Sub<Complex> for DotIncomplete<'a, I>
where
I: Iterator<Item = (&'a Complex, &'a Complex)>,
{
type Output = Complex;
#[inline]
fn sub(self, mut rhs: Complex) -> Complex {
rhs.sub_from_round(self, NEAREST2);
rhs
}
}
impl<'a, I> SubAssign<DotIncomplete<'a, I>> for Complex
where
I: Iterator<Item = (&'a Self, &'a Self)>,
{
#[inline]
fn sub_assign(&mut self, rhs: DotIncomplete<'a, I>) {
self.sub_assign_round(rhs, NEAREST2);
}
}
impl<'a, I> SubAssignRound<DotIncomplete<'a, I>> for Complex
where
I: Iterator<Item = (&'a Self, &'a Self)>,
{
type Round = Round2;
type Ordering = Ordering2;
fn sub_assign_round(&mut self, src: DotIncomplete<'a, I>, round: Round2) -> Ordering2 {
self.neg_assign();
let reverse_dir = self.add_assign_round(src, (round.0.reverse(), round.1.reverse()));
self.neg_assign();
(reverse_dir.0.reverse(), reverse_dir.1.reverse())
}
}
impl<'a, I> SubFrom<DotIncomplete<'a, I>> for Complex
where
I: Iterator<Item = (&'a Self, &'a Self)>,
{
#[inline]
fn sub_from(&mut self, rhs: DotIncomplete<'a, I>) {
self.sub_from_round(rhs, NEAREST2);
}
}
impl<'a, I> SubFromRound<DotIncomplete<'a, I>> for Complex
where
I: Iterator<Item = (&'a Self, &'a Self)>,
{
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn sub_from_round(&mut self, src: DotIncomplete<'a, I>, round: Round2) -> Ordering2 {
self.neg_assign();
self.add_assign_round(src, round)
}
}
ref_math_op1_complex! { xmpc::proj; struct ProjIncomplete {} }
ref_math_op1_complex! { xmpc::sqr; struct SquareIncomplete {} }
ref_math_op1_complex! { xmpc::sqrt; struct SqrtIncomplete {} }
ref_math_op1_complex! { xmpc::conj; struct ConjIncomplete {} }
#[derive(Debug)]
pub struct AbsIncomplete<'a> {
ref_self: &'a Complex,
}
impl AssignRound<AbsIncomplete<'_>> for Float {
type Round = Round;
type Ordering = Ordering;
#[inline]
fn assign_round(&mut self, src: AbsIncomplete<'_>, round: Round) -> Ordering {
xmpc::abs(self, src.ref_self, round)
}
}
impl CompleteRound for AbsIncomplete<'_> {
type Completed = Complex;
type Prec = (u32, u32);
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn complete_round(self, prec: (u32, u32), round: Round2) -> (Complex, Ordering2) {
Complex::with_val_round(prec, self, round)
}
}
#[derive(Debug)]
pub struct ArgIncomplete<'a> {
ref_self: &'a Complex,
}
impl AssignRound<ArgIncomplete<'_>> for Float {
type Round = Round;
type Ordering = Ordering;
#[inline]
fn assign_round(&mut self, src: ArgIncomplete<'_>, round: Round) -> Ordering {
xmpc::arg(self, src.ref_self, round)
}
}
impl CompleteRound for ArgIncomplete<'_> {
type Completed = Complex;
type Prec = (u32, u32);
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn complete_round(self, prec: (u32, u32), round: Round2) -> (Complex, Ordering2) {
Complex::with_val_round(prec, self, round)
}
}
ref_math_op1_complex! { xmpc::mul_i; struct MulIIncomplete { negative: bool } }
ref_math_op1_complex! { xmpc::recip; struct RecipIncomplete {} }
#[derive(Debug)]
pub struct NormIncomplete<'a> {
ref_self: &'a Complex,
}
impl AssignRound<NormIncomplete<'_>> for Float {
type Round = Round;
type Ordering = Ordering;
#[inline]
fn assign_round(&mut self, src: NormIncomplete<'_>, round: Round) -> Ordering {
xmpc::norm(self, src.ref_self, round)
}
}
impl CompleteRound for NormIncomplete<'_> {
type Completed = Complex;
type Prec = (u32, u32);
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn complete_round(self, prec: (u32, u32), round: Round2) -> (Complex, Ordering2) {
Complex::with_val_round(prec, self, round)
}
}
ref_math_op1_complex! { xmpc::log; struct LnIncomplete {} }
ref_math_op1_complex! { xmpc::log10; struct Log10Incomplete {} }
ref_math_op0_complex! { xmpc::rootofunity; struct RootOfUnityIncomplete { n: u32, k: u32 } }
ref_math_op1_complex! { xmpc::exp; struct ExpIncomplete {} }
ref_math_op1_complex! { xmpc::sin; struct SinIncomplete {} }
ref_math_op1_complex! { xmpc::cos; struct CosIncomplete {} }
ref_math_op1_2_complex! { xmpc::sin_cos; struct SinCosIncomplete {} }
ref_math_op1_complex! { xmpc::tan; struct TanIncomplete {} }
ref_math_op1_complex! { xmpc::sinh; struct SinhIncomplete {} }
ref_math_op1_complex! { xmpc::cosh; struct CoshIncomplete {} }
ref_math_op1_complex! { xmpc::tanh; struct TanhIncomplete {} }
ref_math_op1_complex! { xmpc::asin; struct AsinIncomplete {} }
ref_math_op1_complex! { xmpc::acos; struct AcosIncomplete {} }
ref_math_op1_complex! { xmpc::atan; struct AtanIncomplete {} }
ref_math_op1_complex! { xmpc::asinh; struct AsinhIncomplete {} }
ref_math_op1_complex! { xmpc::acosh; struct AcoshIncomplete {} }
ref_math_op1_complex! { xmpc::atanh; struct AtanhIncomplete {} }
ref_math_op2_complex! { xmpc::agm; struct AgmIncomplete { other } }
#[cfg(feature = "rand")]
pub struct RandomBitsIncomplete<'a> {
rng: &'a mut dyn MutRandState,
}
#[cfg(feature = "rand")]
impl AssignRound<RandomBitsIncomplete<'_>> for Complex {
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn assign_round(&mut self, src: RandomBitsIncomplete, round: Round2) -> Ordering2 {
let _ = round;
self.mut_real().assign(Float::random_bits(src.rng));
self.mut_imag().assign(Float::random_bits(src.rng));
(Ordering::Equal, Ordering::Equal)
}
}
#[cfg(feature = "rand")]
impl CompleteRound for RandomBitsIncomplete<'_> {
type Completed = Complex;
type Prec = (u32, u32);
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn complete_round(self, prec: (u32, u32), round: Round2) -> (Complex, Ordering2) {
Complex::with_val_round(prec, self, round)
}
}
#[cfg(feature = "rand")]
pub struct RandomContIncomplete<'a> {
rng: &'a mut dyn MutRandState,
}
#[cfg(feature = "rand")]
impl AssignRound<RandomContIncomplete<'_>> for Complex {
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn assign_round(&mut self, src: RandomContIncomplete, round: Round2) -> Ordering2 {
let real_dir = self
.mut_real()
.assign_round(Float::random_cont(src.rng), round.0);
let imag_dir = self
.mut_imag()
.assign_round(Float::random_cont(src.rng), round.1);
(real_dir, imag_dir)
}
}
#[cfg(feature = "rand")]
impl CompleteRound for RandomContIncomplete<'_> {
type Completed = Complex;
type Prec = (u32, u32);
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn complete_round(self, prec: (u32, u32), round: Round2) -> (Complex, Ordering2) {
Complex::with_val_round(prec, self, round)
}
}
#[derive(Clone, Copy)]
pub(crate) struct Format {
pub radix: i32,
pub precision: Option<usize>,
pub round: Round2,
pub to_upper: bool,
pub sign_plus: bool,
pub prefix: &'static str,
pub exp: ExpFormat,
}
impl Default for Format {
#[inline]
fn default() -> Format {
Format {
radix: 10,
precision: None,
round: Round2::default(),
to_upper: false,
sign_plus: false,
prefix: "",
exp: ExpFormat::Point,
}
}
}
pub(crate) fn append_to_string(s: &mut StringLike, c: &Complex, f: Format) {
let (re, im) = (c.real(), c.imag());
let re_plus = f.sign_plus && re.is_sign_positive();
let im_plus = f.sign_plus && im.is_sign_positive();
let re_prefix = !f.prefix.is_empty() && re.is_finite();
let im_prefix = !f.prefix.is_empty() && im.is_finite();
let extra = 3
+ usize::from(re_plus)
+ usize::from(im_plus)
+ if re_prefix { f.prefix.len() } else { 0 }
+ if im_prefix { f.prefix.len() } else { 0 };
let ff = FloatFormat {
radix: f.radix,
precision: f.precision,
round: f.round.0,
to_upper: f.to_upper,
exp: f.exp,
};
let cap = big_float::req_chars(re, ff, extra);
let cap = big_float::req_chars(im, ff, cap);
s.reserve(cap);
let reserved_ptr = s.as_str().as_ptr();
s.push_str("(");
if re_plus {
s.push_str("+");
}
let prefix_start = s.as_str().len();
if re_prefix {
s.push_str(f.prefix);
}
let prefix_end = s.as_str().len();
big_float::append_to_string(s, re, ff);
if re_prefix && s.as_str().as_bytes()[prefix_end] == b'-' {
unsafe {
let bytes = slice::from_raw_parts_mut(s.as_mut_str().as_mut_ptr(), s.as_str().len());
bytes[prefix_start] = b'-';
bytes[prefix_start + 1..=prefix_end].copy_from_slice(f.prefix.as_bytes());
}
}
s.push_str(" ");
if im_plus {
s.push_str("+");
}
let prefix_start = s.as_str().len();
if im_prefix {
s.push_str(f.prefix);
}
let prefix_end = s.as_str().len();
let ff = FloatFormat {
round: f.round.1,
..ff
};
big_float::append_to_string(s, im, ff);
if im_prefix && s.as_str().as_bytes()[prefix_end] == b'-' {
unsafe {
let bytes = slice::from_raw_parts_mut(s.as_mut_str().as_mut_ptr(), s.as_str().len());
bytes[prefix_start] = b'-';
bytes[prefix_start + 1..=prefix_end].copy_from_slice(f.prefix.as_bytes());
}
}
s.push_str(")");
debug_assert_eq!(reserved_ptr, s.as_str().as_ptr());
}
#[derive(Debug)]
pub enum ParseIncomplete {
Real(FloatParseIncomplete),
Complex(FloatParseIncomplete, FloatParseIncomplete),
}
impl AssignRound<ParseIncomplete> for Complex {
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn assign_round(&mut self, src: ParseIncomplete, round: Round2) -> Ordering2 {
match src {
ParseIncomplete::Real(re) => {
let real_ord = self.mut_real().assign_round(re, round.0);
self.mut_imag().assign(Special::Zero);
(real_ord, Ordering::Equal)
}
ParseIncomplete::Complex(re, im) => {
let real_ord = self.mut_real().assign_round(re, round.0);
let imag_ord = self.mut_imag().assign_round(im, round.1);
(real_ord, imag_ord)
}
}
}
}
impl CompleteRound for ParseIncomplete {
type Completed = Complex;
type Prec = (u32, u32);
type Round = Round2;
type Ordering = Ordering2;
#[inline]
fn complete_round(self, prec: (u32, u32), round: Round2) -> (Complex, Ordering2) {
Complex::with_val_round(prec, self, round)
}
}
macro_rules! parse_error {
($kind:expr) => {
Err(ParseComplexError { kind: $kind })
};
}
fn parse(mut bytes: &[u8], radix: i32) -> Result<ParseIncomplete, ParseComplexError> {
bytes = misc::trim_start(bytes);
bytes = misc::trim_end(bytes);
if bytes.is_empty() {
return parse_error!(ParseErrorKind::NoDigits);
}
if let Some((inside, remainder)) = misc::matched_brackets(bytes) {
if !misc::trim_start(remainder).is_empty() {
return parse_error!(ParseErrorKind::CloseNotLast);
}
bytes = misc::trim_start(inside);
bytes = misc::trim_end(bytes);
} else {
return match Float::parse_radix(bytes, radix) {
Ok(re) => Ok(ParseIncomplete::Real(re)),
Err(e) => parse_error!(ParseErrorKind::InvalidFloat(e)),
};
};
let (real, imag) = if let Some(comma) = misc::find_outside_brackets(bytes, b',') {
let real = misc::trim_end(&bytes[..comma]);
if real.is_empty() {
return parse_error!(ParseErrorKind::NoRealDigits);
}
let imag = misc::trim_start(&bytes[comma + 1..]);
if imag.is_empty() {
return parse_error!(ParseErrorKind::NoImagDigits);
}
if misc::find_outside_brackets(imag, b',').is_some() {
return parse_error!(ParseErrorKind::MultipleSeparators);
}
(real, imag)
} else if let Some(space) = misc::find_space_outside_brackets(bytes) {
let real = &bytes[..space];
assert!(!real.is_empty());
let imag = misc::trim_start(&bytes[space + 1..]);
assert!(!imag.is_empty());
if misc::find_space_outside_brackets(imag).is_some() {
return parse_error!(ParseErrorKind::MultipleSeparators);
}
(real, imag)
} else {
return parse_error!(ParseErrorKind::MissingSeparator);
};
let re = match Float::parse_radix(real, radix) {
Ok(re) => re,
Err(e) => return parse_error!(ParseErrorKind::InvalidRealFloat(e)),
};
let im = match Float::parse_radix(imag, radix) {
Ok(im) => im,
Err(e) => return parse_error!(ParseErrorKind::InvalidImagFloat(e)),
};
Ok(ParseIncomplete::Complex(re, im))
}
/**
An error which can be returned when parsing a [`Complex`] number.
See the <code>[Complex]::[parse\_radix][Complex::parse_radix]</code> method for
details on what strings are accepted.
# Examples
```rust
use rug::complex::ParseComplexError;
use rug::Complex;
// This string is not a complex number.
let s = "something completely different (_!_!_)";
let error: ParseComplexError = match Complex::parse_radix(s, 4) {
Ok(_) => unreachable!(),
Err(error) => error,
};
println!("Parse error: {}", error);
```
*/
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub struct ParseComplexError {
kind: ParseErrorKind,
}
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
enum ParseErrorKind {
NoDigits,
NoRealDigits,
NoImagDigits,
InvalidFloat(ParseFloatError),
InvalidRealFloat(ParseFloatError),
InvalidImagFloat(ParseFloatError),
MissingSeparator,
MultipleSeparators,
CloseNotLast,
}
impl Display for ParseComplexError {
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
use self::ParseErrorKind::*;
match &self.kind {
NoDigits => Display::fmt("string has no digits", f),
NoRealDigits => Display::fmt("string has no real digits", f),
NoImagDigits => Display::fmt("string has no imaginary digits", f),
InvalidFloat(e) => {
Display::fmt("string is not a valid float: ", f)?;
Display::fmt(e, f)
}
InvalidRealFloat(e) => {
Display::fmt("real part of string is not a valid float: ", f)?;
Display::fmt(e, f)
}
InvalidImagFloat(e) => {
Display::fmt("imaginary part of string is not a valid float: ", f)?;
Display::fmt(e, f)
}
MissingSeparator => Display::fmt("string has no separator inside brackets", f),
MultipleSeparators => {
Display::fmt("string has more than one separator inside brackets", f)
}
CloseNotLast => Display::fmt("string has more characters after closing bracket", f),
}
}
}
#[cfg(feature = "std")]
impl Error for ParseComplexError {
#[allow(deprecated)]
fn description(&self) -> &str {
use self::ParseErrorKind::*;
match self.kind {
NoDigits => "string has no digits",
NoRealDigits => "string has no real digits",
NoImagDigits => "string has no imaginary digits",
InvalidFloat(_) => "string is not a valid float",
InvalidRealFloat(_) => "real part of string is not a valid float",
InvalidImagFloat(_) => "imaginary part of string is not a valid float",
MissingSeparator => "string has no separator inside brackets",
MultipleSeparators => "string has more than one separator inside brackets",
CloseNotLast => "string has more characters after closing bracket",
}
}
}