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
|
[/Cell Content:]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_[] [role blue Max = 59.5[epsilon] (Mean = 26.6[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data[] [role blue Max = 14[epsilon] (Mean = 2.5[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data[] [role blue Max = 9.85[epsilon] (Mean = 1.82[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data[] [role blue Max = 3.76e+03[epsilon] (Mean = 1.19e+03[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_[] [role blue Max = 3.61[epsilon] (Mean = 1.22[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_[] [role blue Max = 1.36[epsilon] (Mean = 0.782[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_[] [role blue Max = 0.82[epsilon] (Mean = 0.354[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data[] [role blue Max = 3.61[epsilon] (Mean = 1.22[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data[] [role blue Max = 1.36[epsilon] (Mean = 0.782[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data[] [role blue Max = 0.82[epsilon] (Mean = 0.354[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_[] [role blue Max = 3.67[epsilon] (Mean = 1.64[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data[] [role blue Max = 7.46[epsilon] (Mean = 1.71[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_In_Random_Data[] [role blue Max = 9.67[epsilon] (Mean = 1.88[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data[] [role blue Max = 2.97[epsilon] (Mean = 1.24[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_[] [role blue Max = 3.46[epsilon] (Mean = 1.32[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_[] [role blue Max = 0.767[epsilon] (Mean = 0.398[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_[] [role blue Max = 0.762[epsilon] (Mean = 0.329[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data[] [role blue Max = 3.46[epsilon] (Mean = 1.32[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data[] [role blue Max = 0.767[epsilon] (Mean = 0.398[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data[] [role blue Max = 0.762[epsilon] (Mean = 0.329[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Integer_arguments[] [role blue Max = 9[epsilon] (Mean = 3[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Values_close_to_and_less_than_1[] [role blue Max = 0.991[epsilon] (Mean = 0.375[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1[] [role blue Max = 0.994[epsilon] (Mean = 0.421[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Random_values_less_than_1[] [role blue Max = 6.84[epsilon] (Mean = 3.12[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Random_values_greater_than_1[] [role blue Max = 0.836[epsilon] (Mean = 0.093[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_trigamma_boost_Mathematica_Data[] [role blue Max = 1[epsilon] (Mean = 0.382[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[] [role blue Max = 0.996[epsilon] (Mean = 0.298[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[] [role blue Max = 0.996[epsilon] (Mean = 0.343[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cos_pi_boost_sin_pi_and_cos_pi[] [role blue Max = 0.996[epsilon] (Mean = 0.284[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_sin_pi_boost_sin_pi_and_cos_pi[] [role blue Max = 0.99[epsilon] (Mean = 0.328[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_ratio_boost_tgamma_ratios[] [role blue Max = 3.28[epsilon] (Mean = 1.12[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_[] [role blue Max = 0.974[epsilon] (Mean = 0.175[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_integer_tgamma_ratios[] [role blue Max = 0.968[epsilon] (Mean = 0.386[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_[] [role blue Max = 2.15[epsilon] (Mean = 0.685[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios[] [role blue Max = 2.74[epsilon] (Mean = 0.736[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_[] [role blue Max = 7.43[epsilon] (Mean = 1.42[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios[] [role blue Max = 7.56[epsilon] (Mean = 1.31[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_spherical_harmonic_i_boost_Spherical_Harmonics[] [role blue Max = 2.27e+04[epsilon] (Mean = 725[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_spherical_harmonic_r_boost_Spherical_Harmonics[] [role blue Max = 2.27e+04[epsilon] (Mean = 725[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases[] [role blue Max = 200[epsilon] (Mean = 57.2[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_small_arguments[] [role blue Max = 3[epsilon] (Mean = 0.496[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_large_negative_arguments[] [role blue Max = 162[epsilon] (Mean = 101[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_negative_arguments[] [role blue Max = 497[epsilon] (Mean = 129[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_large_arguments[] [role blue Max = 150[epsilon] (Mean = 13.9[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data[] [role blue Max = 9.32[epsilon] (Mean = 1.95[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_boost_math_powm1__math_h__powm1[] (['<math.h>:] Max = 1.84[epsilon] (Mean = 0.486[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_boost_math_powm1_boost_powm1[] [role blue Max = 1.84[epsilon] (Mean = 0.486[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_powm1_boost_powm1[] [role blue Max = 1.84[epsilon] (Mean = 0.486[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_sqrt1pm1_boost_sqrt1pm1[] [role blue Max = 1.35[epsilon] (Mean = 0.497[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_owens_t_boost_Owens_T_large_and_diverse_values_[] [role blue Max = 3.78[epsilon] (Mean = 0.621[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_owens_t_boost_Owens_T_medium_small_values_[] [role blue Max = 4.37[epsilon] (Mean = 0.98[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_[] [role blue Max = 227[epsilon] (Mean = 50.4[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_[] [role blue Max = 286[epsilon] (Mean = 62.8[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_[] [role blue Max = 4.6[epsilon] (Mean = 1.63[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_[] [role blue Max = 6.17[epsilon] (Mean = 1.45[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_complement_boost_Non_Central_T[] [role blue Max = 154[epsilon] (Mean = 32.1[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_boost_Non_Central_T[] [role blue Max = 135[epsilon] (Mean = 32.1[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters[] [role blue Max = 5.43e+03[epsilon] (Mean = 705[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters[] [role blue Max = 9.79e+03[epsilon] (Mean = 723[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters[] [role blue Max = 98.6[epsilon] (Mean = 15.8[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters[] [role blue Max = 48.9[epsilon] (Mean = 10[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters[] [role blue Max = 1.25e+04[epsilon] (Mean = 1.49e+03[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters[] [role blue Max = 3.66e+03[epsilon] (Mean = 500[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters[] [role blue Max = 624[epsilon] (Mean = 62.7[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters[] [role blue Max = 242[epsilon] (Mean = 31[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_expm1__math_h__Random_test_data[] (['<math.h>:] Max = 1.31[epsilon] (Mean = 0.496[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_log1p__math_h__Random_test_data[] (['<math.h>:] Max = 0.509[epsilon] (Mean = 0.057[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_expm1_boost_Random_test_data[] [role blue Max = 1.31[epsilon] (Mean = 0.496[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_log1p_boost_Random_test_data[] [role blue Max = 0.509[epsilon] (Mean = 0.057[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values[] [role blue Max = 121[epsilon] (Mean = 7.14[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_legendre_q_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 4.6e+03[epsilon] (Mean = 366[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_legendre_p_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 300[epsilon] (Mean = 33.2[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_legendre_q_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 46.4[epsilon] (Mean = 7.32[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_legendre_p_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 211[epsilon] (Mean = 20.4[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials[] [role blue Max = 434[epsilon] (Mean = 11.1[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_laguerre_n_x__boost_Laguerre_Polynomials[] [role blue Max = 3.1e+03[epsilon] (Mean = 185[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values[] [role blue Max = 2.52[epsilon] (Mean = 0.977[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data[] [role blue Max = 3.89[epsilon] (Mean = 0.824[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[] [role blue Max = 1.52[epsilon] (Mean = 0.357[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi[] [role blue Max = 1.67e+04[epsilon] (Mean = 1e+03[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi[] [role blue Max = 3.27e+04[epsilon] (Mean = 1.93e+03[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi[] [role blue Max = 4.36e+04[epsilon] (Mean = 2.54e+03[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1[] [role blue Max = 6.24e+03[epsilon] (Mean = 482[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1[] [role blue Max = 513[epsilon] (Mean = 126[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1[] [role blue Max = 23.2[epsilon] (Mean = 1.85[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values[] [role blue Max = 16.1[epsilon] (Mean = 0.685[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values[] [role blue Max = 26.2[epsilon] (Mean = 1.17[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values[] [role blue Max = 2.11[epsilon] (Mean = 0.385[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data[] [role blue Max = 1.52[epsilon] (Mean = 0.466[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data[] [role blue Max = 1.83[epsilon] (Mean = 0.455[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data[] [role blue Max = 1.92[epsilon] (Mean = 0.567[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data[] [role blue Max = 34.3[epsilon] (Mean = 8.71[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data[] [role blue Max = 45.8[epsilon] (Mean = 11.4[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data[] [role blue Max = 481[epsilon] (Mean = 113[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inva_boost_Incomplete_gamma_inverses_[] [role blue Max = 5.05[epsilon] (Mean = 1.08[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inva_boost_Incomplete_gamma_inverses_[] [role blue Max = 4.92[epsilon] (Mean = 1.03[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values[] [role blue Max = 451[epsilon] (Mean = 64.7[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values[] [role blue Max = 1.1e+03[epsilon] (Mean = 131[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values[] [role blue Max = 0.814[epsilon] (Mean = 0.0856[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values[] [role blue Max = 0.924[epsilon] (Mean = 0.108[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values[] [role blue Max = 2.88[epsilon] (Mean = 0.469[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values[] [role blue Max = 1.71[epsilon] (Mean = 0.34[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 13[epsilon] (Mean = 2.97[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 8.72[epsilon] (Mean = 1.48[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 2.69[epsilon] (Mean = 0.849[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 5.16[epsilon] (Mean = 1.33[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_large_values[] [role blue Max = 243[epsilon] (Mean = 20.2[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_large_values[] [role blue Max = 469[epsilon] (Mean = 31.5[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_small_values[] [role blue Max = 1.54[epsilon] (Mean = 0.439[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_small_values[] [role blue Max = 2.26[epsilon] (Mean = 0.74[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_lower_boost_tgamma_a_z_small_values[] [role blue Max = 1.57[epsilon] (Mean = 0.525[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_incomplete__boost_tgamma_a_z_small_values[] [role blue Max = 2.53[epsilon] (Mean = 0.66[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_medium_values[] [role blue Max = 35.1[epsilon] (Mean = 6.98[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_medium_values[] [role blue Max = 23.7[epsilon] (Mean = 4[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_lower_boost_tgamma_a_z_medium_values[] [role blue Max = 5.62[epsilon] (Mean = 1.49[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_incomplete__boost_tgamma_a_z_medium_values[] [role blue Max = 8.14[epsilon] (Mean = 1.76[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ibetac_invb_boost_Inverse_incomplete_beta[] [role blue Max = 271[epsilon] (Mean = 16.4[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ibeta_invb_boost_Inverse_incomplete_beta[] [role blue Max = 409[epsilon] (Mean = 19.3[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ibetac_inva_boost_Inverse_incomplete_beta[] [role blue Max = 408[epsilon] (Mean = 26.7[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ibeta_inva_boost_Inverse_incomplete_beta[] [role blue Max = 242[epsilon] (Mean = 22.9[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ibetac_inv_boost_Inverse_incomplete_beta[] [role blue Max = 2.93e+03[epsilon] (Mean = 198[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ibeta_inv_boost_Inverse_incomplete_beta[] [role blue Max = 8.59e+03[epsilon] (Mean = 277[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 6.37[epsilon] (Mean = 1.03[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 3.85[epsilon] (Mean = 0.791[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 26.2[epsilon] (Mean = 6.36[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 26[epsilon] (Mean = 6.28[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 1.88e+03[epsilon] (Mean = 82.7[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 1.32e+03[epsilon] (Mean = 68.5[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 3.72e+03[epsilon] (Mean = 113[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 633[epsilon] (Mean = 29.7[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 56.7[epsilon] (Mean = 14.3[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 106[epsilon] (Mean = 16.3[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 90.6[epsilon] (Mean = 14.8[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 90[epsilon] (Mean = 12.7[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 6.94[epsilon] (Mean = 1.71[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 8.4[epsilon] (Mean = 1.93[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 8.94[epsilon] (Mean = 2.06[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 9.94[epsilon] (Mean = 2.17[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data[] [role blue Max = 2.12[epsilon] (Mean = 0.588[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[] [role blue Max = 1.08[epsilon] (Mean = 0.734[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_hermite_boost_Hermite_Polynomials[] [role blue Max = 4.46[epsilon] (Mean = 1.41[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_55[] (['<math.h>:] Max = 249[epsilon] (Mean = 43.1[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_55[] (['<math.h>:] Max = 3.87e+04[epsilon] (Mean = 6.71e+03[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_10[] (['<math.h>:] Max = 0.997[epsilon] (Mean = 0.444[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_10[] (['<math.h>:] Max = 0.866[epsilon] (Mean = 0.445[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_2[] (['<math.h>:] Max = 0.741[epsilon] (Mean = 0.473[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_2[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_1[] (['<math.h>:] Max = 0.906[epsilon] (Mean = 0.565[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_1[] (['<math.h>:] Max = 1[epsilon] (Mean = 0.4[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_0[] (['<math.h>:] Max = 0.962[epsilon] (Mean = 0.372[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_0[] (['<math.h>:] Max = 1[epsilon] (Mean = 0.405[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__factorials[] (['<math.h>:] Max = 0.958[epsilon] (Mean = 0.38[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__factorials[] (['<math.h>:] Max = 3.17[epsilon] (Mean = 0.928[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma1pm1_boost_tgamma1pm1_dz_[] [role blue Max = 3.31[epsilon] (Mean = 0.517[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_55[] [role blue Max = 0.821[epsilon] (Mean = 0.419[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_55[] [role blue Max = 2.7[epsilon] (Mean = 1.35[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_10[] [role blue Max = 4.22[epsilon] (Mean = 1.33[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_10[] [role blue Max = 1.86[epsilon] (Mean = 0.881[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_2[] [role blue Max = 0.591[epsilon] (Mean = 0.159[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_2[] [role blue Max = 2[epsilon] (Mean = 0.733[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_1[] [role blue Max = 0.867[epsilon] (Mean = 0.468[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_1[] [role blue Max = 1.1[epsilon] (Mean = 0.59[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_0[] [role blue Max = 0.964[epsilon] (Mean = 0.462[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_0[] [role blue Max = 1.5[epsilon] (Mean = 0.635[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_factorials[] [role blue Max = 0.914[epsilon] (Mean = 0.175[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_factorials[] [role blue Max = 1.85[epsilon] (Mean = 0.566[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range[] [role blue Max = 1.7[epsilon] (Mean = 0.66[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_expint_Ei__boost_Exponential_Integral_Ei[] [role blue Max = 1.43[epsilon] (Mean = 0.54[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_expint_En__boost_Exponential_Integral_E1[] [role blue Max = 0.988[epsilon] (Mean = 0.486[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_expint_En__boost_Exponential_Integral_En_small_z_values[] [role blue Max = 2.62[epsilon] (Mean = 0.531[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_expint_En__boost_Exponential_Integral_En[] [role blue Max = 7.16[epsilon] (Mean = 1.85[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_erfc_inv_boost_Inverse_Erfc_Function[] [role blue Max = 1[epsilon] (Mean = 0.491[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_erf_inv_boost_Inverse_Erf_Function[] [role blue Max = 1.09[epsilon] (Mean = 0.502[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_erfc_boost_Erf_Function_Large_Values[] [role blue Max = 1.14[epsilon] (Mean = 0.248[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_erf_boost_Erf_Function_Large_Values[] [role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_erfc_boost_Erf_Function_Medium_Values[] [role blue Max = 1.65[epsilon] (Mean = 0.373[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_erf_boost_Erf_Function_Medium_Values[] [role blue Max = 1[epsilon] (Mean = 0.171[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_erfc_boost_Erf_Function_Small_Values[] [role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_erf_boost_Erf_Function_Small_Values[] [role blue Max = 0.996[epsilon] (Mean = 0.182[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_erfc__math_h__Erf_Function_Large_Values[] (['<math.h>:] Max = 1.84[epsilon] (Mean = 0.331[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_erf__math_h__Erf_Function_Large_Values[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_erfc__math_h__Erf_Function_Medium_Values[] (['<math.h>:] Max = 2.36[epsilon] (Mean = 0.539[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_erf__math_h__Erf_Function_Medium_Values[] (['<math.h>:] Max = 1.19[epsilon] (Mean = 0.244[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_erfc__math_h__Erf_Function_Small_Values[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_erf__math_h__Erf_Function_Small_Values[] (['<math.h>:] Max = 1.57[epsilon] (Mean = 0.317[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data[] [role blue Max = 1.27[epsilon] (Mean = 0.355[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 0.637[epsilon] (Mean = 0.368[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_boost_Elliptic_Integral_D_Random_Data[] [role blue Max = 2.87[epsilon] (Mean = 0.805[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 0.862[epsilon] (Mean = 0.457[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data[] [role blue Max = 2.46[epsilon] (Mean = 0.657[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data[] [role blue Max = 0.971[epsilon] (Mean = 0.464[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data[] [role blue Max = 2.86[epsilon] (Mean = 0.944[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data[] [role blue Max = 8.33[epsilon] (Mean = 0.971[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data[] [role blue Max = 565[epsilon] (Mean = 102[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles[] [role blue Max = 1[epsilon] (Mean = 0.421[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data[] [role blue Max = 1.71[epsilon] (Mean = 0.553[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 1.3[epsilon] (Mean = 0.615[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_boost_Elliptic_Integral_E_Random_Data[] [role blue Max = 2.23[epsilon] (Mean = 0.639[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 1.31[epsilon] (Mean = 0.727[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data[] [role blue Max = 0.958[epsilon] (Mean = 0.408[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data[] [role blue Max = 0.915[epsilon] (Mean = 0.547[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_boost_Elliptic_Integral_F_Random_Data[] [role blue Max = 2.26[epsilon] (Mean = 0.631[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data[] [role blue Max = 0.919[epsilon] (Mean = 0.542[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Half_integer_arguments[] [role blue Max = 0.78[epsilon] (Mean = 0.314[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Integer_arguments[] [role blue Max = 0.992[epsilon] (Mean = 0.452[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Values_near_0[] [role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Negative_Values[] [role blue Max = 214[epsilon] (Mean = 16.1[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Near_Zero[] [role blue Max = 0.953[epsilon] (Mean = 0.337[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Near_the_Positive_Root[] [role blue Max = 0.997[epsilon] (Mean = 0.527[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Large_Values[] [role blue Max = 0.98[epsilon] (Mean = 0.369[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cbrt__math_h__cbrt_Function[] (['<math.h>:] Max = 1.7[epsilon] (Mean = 0.565[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_one_value_zero[] [role blue Max = 1.96[epsilon] (Mean = 0.674[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_two_values_the_same[] [role blue Max = 1.96[epsilon] (Mean = 0.374[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_All_values_the_same_or_zero[] [role blue Max = 1.06[epsilon] (Mean = 0.348[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_two_values_0[] [role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_Random_Data[] [role blue Max = 3.65[epsilon] (Mean = 0.929[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_0[] [role blue Max = 2.64[epsilon] (Mean = 0.894[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_y_z[] [role blue Max = 1.03[epsilon] (Mean = 0.418[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_0_y_z[] [role blue Max = 1.16[epsilon] (Mean = 0.497[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_y[] [role blue Max = 3.51[epsilon] (Mean = 0.816[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_y_z[] [role blue Max = 16.5[epsilon] (Mean = 0.843[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_Random_data[] [role blue Max = 2.16[epsilon] (Mean = 0.803[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_Equal_z_and_p[] [role blue Max = 16.1[epsilon] (Mean = 1.14[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_2_Equal_Values[] [role blue Max = 214[epsilon] (Mean = 5.28[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_3_Equal_Values[] [role blue Max = 39.9[epsilon] (Mean = 1.17[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_4_Equal_Values[] [role blue Max = 1.03[epsilon] (Mean = 0.418[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_Random_data[] [role blue Max = 215[epsilon] (Mean = 7.66[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rc_boost_RC_Random_data[] [role blue Max = 0.962[epsilon] (Mean = 0.407[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_z_0[] [role blue Max = 1.89[epsilon] (Mean = 0.587[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_x_0_y_z[] [role blue Max = 0.999[epsilon] (Mean = 0.407[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_x_y_or_y_z_or_x_z[] [role blue Max = 1.21[epsilon] (Mean = 0.394[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_x_y_z[] [role blue Max = 0.999[epsilon] (Mean = 0.34[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_Random_data[] [role blue Max = 2.02[epsilon] (Mean = 0.677[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cbrt_boost_cbrt_Function[] [role blue Max = 1.7[epsilon] (Mean = 0.565[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_binomial_coefficient_boost_Binomials_large_arguments[] [role blue Max = 37.2[epsilon] (Mean = 7.4[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_binomial_coefficient_boost_Binomials_small_arguments[] [role blue Max = 1[epsilon] (Mean = 0.369[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_beta_boost_Beta_Function_Divergent_Values[] [role blue Max = 11.4[epsilon] (Mean = 2.19[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_beta_boost_Beta_Function_Medium_Values[] [role blue Max = 96.5[epsilon] (Mean = 22.4[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_beta_boost_Beta_Function_Small_Values[] [role blue Max = 2.23[epsilon] (Mean = 1.14[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders___math_h__Yn_Mathworld_Data_Integer_Version_[] (['<math.h>:] Max = 2.49e+05[epsilon] (Mean = 8.14e+04[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders___math_h__Y1_Mathworld_Data_Integer_Version_[] (['<math.h>:] Max = 1.86e+04[epsilon] (Mean = 6.2e+03[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders___math_h__Y0_Mathworld_Data_Integer_Version_[] (['<math.h>:] Max = 5.37e+03[epsilon] (Mean = 1.81e+03[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_sph_neumann_prime_boost_y_Random_Data[] [role blue Max = 296[epsilon] (Mean = 25.6[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_v_Random_Data[] [role blue Max = 3.23e+04[epsilon] (Mean = 1.13e+03[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_n_Random_Data[] [role blue Max = 621[epsilon] (Mean = 36[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data[] [role blue Max = 5.95[epsilon] (Mean = 1.36[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_[] [role blue Max = 0.627[epsilon] (Mean = 0.237[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data[] [role blue Max = 23.7[epsilon] (Mean = 10.1[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_[] [role blue Max = 563[epsilon] (Mean = 178[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_[] [role blue Max = 3.08[epsilon] (Mean = 1.2[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_[] [role blue Max = 4.75[epsilon] (Mean = 1.75[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data[] [role blue Max = 563[epsilon] (Mean = 178[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data[] [role blue Max = 3.08[epsilon] (Mean = 1.2[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data[] [role blue Max = 4.75[epsilon] (Mean = 1.75[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_sph_neumann_boost_y_Random_Data[] [role blue Max = 281[epsilon] (Mean = 31.1[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yv_Random_Data[] [role blue Max = 1.23e+03[epsilon] (Mean = 69.9[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yn_Random_Data[] [role blue Max = 117[epsilon] (Mean = 10.2[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Y0_and_Y1_Random_Data[] [role blue Max = 4.17[epsilon] (Mean = 1.24[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_[] [role blue Max = 0.682[epsilon] (Mean = 0.423[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yv_Mathworld_Data[] [role blue Max = 7.89[epsilon] (Mean = 3.27[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_[] [role blue Max = 35[epsilon] (Mean = 11.9[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_[] [role blue Max = 4.75[epsilon] (Mean = 1.72[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_[] [role blue Max = 4.61[epsilon] (Mean = 2.29[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yn_Mathworld_Data[] [role blue Max = 35[epsilon] (Mean = 11.9[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Y1_Mathworld_Data[] [role blue Max = 4.75[epsilon] (Mean = 1.72[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Y0_Mathworld_Data[] [role blue Max = 4.61[epsilon] (Mean = 2.29[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data[] [role blue Max = 8.32[epsilon] (Mean = 1.65[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data[] [role blue Max = 9.67[epsilon] (Mean = 1.73[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_[] [role blue Max = 18.6[epsilon] (Mean = 11.8[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data[] [role blue Max = 3.94[epsilon] (Mean = 1.47[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_[] [role blue Max = 4.17[epsilon] (Mean = 1.75[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_[] [role blue Max = 0.761[epsilon] (Mean = 0.444[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_[] [role blue Max = 0.786[epsilon] (Mean = 0.39[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data[] [role blue Max = 4.17[epsilon] (Mean = 1.75[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data[] [role blue Max = 0.761[epsilon] (Mean = 0.444[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data[] [role blue Max = 0.786[epsilon] (Mean = 0.39[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_sph_bessel_prime_boost_Bessel_j_Random_Data[] [role blue Max = 307[epsilon] (Mean = 25.2[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_[] [role blue Max = 379[epsilon] (Mean = 45.4[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data[] [role blue Max = 176[epsilon] (Mean = 9.75[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data[] [role blue Max = 6.34[epsilon] (Mean = 0.999[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_[] [role blue Max = 2.9[epsilon] (Mean = 1.61[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data[] [role blue Max = 23.7[epsilon] (Mean = 8[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[] [role blue Max = 14[epsilon] (Mean = 6.13[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[] [role blue Max = 288[epsilon] (Mean = 129[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[] [role blue Max = 0.999[epsilon] (Mean = 0.627[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[] [role blue Max = 3.67[epsilon] (Mean = 1.74[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[] [role blue Max = 6.62[epsilon] (Mean = 2.55[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data[] [role blue Max = 14[epsilon] (Mean = 6.13[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_[] [role blue Max = 288[epsilon] (Mean = 129[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data[] [role blue Max = 0.999[epsilon] (Mean = 0.627[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[] [role blue Max = 3.67[epsilon] (Mean = 1.74[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data[] [role blue Max = 6.62[epsilon] (Mean = 2.55[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data[] [role blue Max = 8.33[epsilon] (Mean = 1.62[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data[] [role blue Max = 9.34[epsilon] (Mean = 1.7[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_[] [role blue Max = 59.8[epsilon] (Mean = 26.9[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data[] [role blue Max = 4.78[epsilon] (Mean = 2.19[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_[] [role blue Max = 3.63[epsilon] (Mean = 1.46[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_[] [role blue Max = 0.786[epsilon] (Mean = 0.39[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_[] [role blue Max = 0.833[epsilon] (Mean = 0.552[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data[] [role blue Max = 3.63[epsilon] (Mean = 1.46[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data[] [role blue Max = 0.786[epsilon] (Mean = 0.39[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data[] [role blue Max = 0.833[epsilon] (Mean = 0.552[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_JN_Mathworld_Data_Integer_Version_[] (['<math.h>:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_JN_Mathworld_Data_Integer_Version_ And other failures.])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[] (['<math.h>:] Max = 1.44e+07[epsilon] (Mean = 6.5e+06[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J1_Mathworld_Data_Integer_Version_[] (['<math.h>:] Max = 11.4[epsilon] (Mean = 4.15[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[] (['<math.h>:] [role red Max = 2.54e+08[epsilon] (Mean = 1.04e+08[epsilon]))]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J0_Mathworld_Data_Integer_Version_[] (['<math.h>:] Max = 1.89[epsilon] (Mean = 0.988[epsilon]))]
[template Microsoft_Visual_C_version_14_1_Win32_double_sph_bessel_boost_Bessel_j_Random_Data[] [role blue Max = 245[epsilon] (Mean = 16.3[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_[] [role blue Max = 59.2[epsilon] (Mean = 8.67[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Random_Data[] [role blue Max = 9.24[epsilon] (Mean = 1.17[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_JN_Random_Data[] [role blue Max = 17.5[epsilon] (Mean = 1.46[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_[] [role blue Max = 9.31[epsilon] (Mean = 5.52[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data[] [role blue Max = 14.9[epsilon] (Mean = 3.89[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[] [role blue Max = 14.7[epsilon] (Mean = 5.4[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[] [role blue Max = 3.23e+04[epsilon] (Mean = 1.45e+04[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[] [role blue Max = 1.73[epsilon] (Mean = 0.976[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[] [role blue Max = 1e+07[epsilon] (Mean = 4.09e+06[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[] [role blue Max = 2.52[epsilon] (Mean = 1.2[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data[] [role blue Max = 14.7[epsilon] (Mean = 5.4[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_[] [role blue Max = 3.23e+04[epsilon] (Mean = 1.45e+04[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data[] [role blue Max = 1.73[epsilon] (Mean = 0.976[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[] [role blue Max = 1e+07[epsilon] (Mean = 4.09e+06[epsilon])]]
[template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data[] [role blue Max = 2.52[epsilon] (Mean = 1.2[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_boost_math_powm1_boost_powm1[] [role blue Max = 1.88[epsilon] (Mean = 0.49[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_powm1_boost_powm1[] [role blue Max = 1.88[epsilon] (Mean = 0.49[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_sqrt1pm1_boost_sqrt1pm1[] [role blue Max = 1.54[epsilon] (Mean = 0.563[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_spherical_harmonic_i_boost_Spherical_Harmonics[] [role blue Max = 1.03e+04[epsilon] (Mean = 327[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_spherical_harmonic_r_boost_Spherical_Harmonics[] [role blue Max = 1.03e+04[epsilon] (Mean = 327[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_ratio_boost_tgamma_ratios[] [role blue Max = 174[epsilon] (Mean = 61.2[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_[] [role blue Max = 0.853[epsilon] (Mean = 0.176[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios[] [role blue Max = 0.997[epsilon] (Mean = 0.4[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_[] [role blue Max = 1.62[epsilon] (Mean = 0.451[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios[] [role blue Max = 1.96[epsilon] (Mean = 0.677[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_[] [role blue Max = 18.3[epsilon] (Mean = 2.03[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios[] [role blue Max = 15.4[epsilon] (Mean = 2.09[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[] [role blue Max = 0.976[epsilon] (Mean = 0.28[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[] [role blue Max = 0.976[epsilon] (Mean = 0.293[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cos_pi_boost_sin_pi_and_cos_pi[] [role blue Max = 0.991[epsilon] (Mean = 0.302[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_sin_pi_boost_sin_pi_and_cos_pi[] [role blue Max = 0.996[epsilon] (Mean = 0.336[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_trigamma_boost_Mathematica_Data[] [role blue Max = 1.28[epsilon] (Mean = 0.449[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Integer_arguments[] [role blue Max = 28[epsilon] (Mean = 5.62[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Values_close_to_and_less_than_1[] [role blue Max = 0.998[epsilon] (Mean = 0.508[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1[] [role blue Max = 0.995[epsilon] (Mean = 0.5[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Random_values_less_than_1[] [role blue Max = 70.1[epsilon] (Mean = 17.1[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Random_values_greater_than_1[] [role blue Max = 0.846[epsilon] (Mean = 0.0833[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_[] [role blue Max = 14.7[epsilon] (Mean = 6.59[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data[] [role blue Max = 283[epsilon] (Mean = 88.4[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_In_Random_Data[] [role blue Max = 176[epsilon] (Mean = 39.1[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data[] [role blue Max = 4.12[epsilon] (Mean = 1.95[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_[] [role blue Max = 463[epsilon] (Mean = 140[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_[] [role blue Max = 0.64[epsilon] (Mean = 0.202[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_[] [role blue Max = 1.95[epsilon] (Mean = 0.661[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data[] [role blue Max = 463[epsilon] (Mean = 140[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data[] [role blue Max = 0.64[epsilon] (Mean = 0.202[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data[] [role blue Max = 1.95[epsilon] (Mean = 0.661[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_[] [role blue Max = 42.6[epsilon] (Mean = 20.2[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data[] [role blue Max = 336[epsilon] (Mean = 68.5[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data[] [role blue Max = 195[epsilon] (Mean = 37.1[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data[] [role blue Max = 2.89e+03[epsilon] (Mean = 914[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_[] [role blue Max = 701[epsilon] (Mean = 212[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_[] [role blue Max = 1.97[epsilon] (Mean = 0.757[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_[] [role blue Max = 0.82[epsilon] (Mean = 0.259[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data[] [role blue Max = 701[epsilon] (Mean = 212[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data[] [role blue Max = 1.97[epsilon] (Mean = 0.757[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data[] [role blue Max = 0.82[epsilon] (Mean = 0.259[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_bessel_prime_boost_Bessel_j_Random_Data[] [role blue Max = 167[epsilon] (Mean = 33.2[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_[] [role blue Max = 474[epsilon] (Mean = 64.5[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data[] [role blue Max = 279[epsilon] (Mean = 27.2[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data[] [role blue Max = 79.4[epsilon] (Mean = 16.2[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_[] [role blue Max = 989[epsilon] (Mean = 495[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data[] [role blue Max = 42.5[epsilon] (Mean = 9.32[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[] [role blue Max = 1.29e+03[epsilon] (Mean = 355[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[] [role blue Max = 5.88e+05[epsilon] (Mean = 2.63e+05[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[] [role blue Max = 7.9[epsilon] (Mean = 3.37[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[] [role blue Max = 7.44[epsilon] (Mean = 3.31[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[] [role blue Max = 18.9[epsilon] (Mean = 6.72[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data[] [role blue Max = 1.29e+03[epsilon] (Mean = 355[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_[] [role blue Max = 5.88e+05[epsilon] (Mean = 2.63e+05[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data[] [role blue Max = 7.9[epsilon] (Mean = 3.37[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[] [role blue Max = 7.44[epsilon] (Mean = 3.31[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data[] [role blue Max = 18.9[epsilon] (Mean = 6.72[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_bessel_boost_Bessel_j_Random_Data[] [role blue Max = 243[epsilon] (Mean = 33.7[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_[] [role blue Max = 785[epsilon] (Mean = 97.4[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data[] [role blue Max = 260[epsilon] (Mean = 34[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_JN_Random_Data[] [role blue Max = 99.6[epsilon] (Mean = 22[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_[] [role blue Max = 607[epsilon] (Mean = 305[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data[] [role blue Max = 14.7[epsilon] (Mean = 4.22[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[] [role blue Max = 463[epsilon] (Mean = 112[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[] [role blue Max = 2.18e+05[epsilon] (Mean = 9.76e+04[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[] [role blue Max = 1.44[epsilon] (Mean = 0.637[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[] [role blue Max = 1.64e+08[epsilon] (Mean = 6.69e+07[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[] [role blue Max = 6.55[epsilon] (Mean = 2.86[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data[] [role blue Max = 463[epsilon] (Mean = 112[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_[] [role blue Max = 2.18e+05[epsilon] (Mean = 9.76e+04[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data[] [role blue Max = 1.44[epsilon] (Mean = 0.637[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[] [role blue Max = 1.64e+08[epsilon] (Mean = 6.69e+07[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data[] [role blue Max = 6.55[epsilon] (Mean = 2.86[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data[] [role blue Max = 7.88[epsilon] (Mean = 1.47[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data[] [role blue Max = 4.55[epsilon] (Mean = 1.12[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_[] [role blue Max = 42.3[epsilon] (Mean = 21[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data[] [role blue Max = 5.21[epsilon] (Mean = 2.53[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_[] [role blue Max = 2.6[epsilon] (Mean = 1.21[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_[] [role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_[] [role blue Max = 0.833[epsilon] (Mean = 0.436[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data[] [role blue Max = 2.6[epsilon] (Mean = 1.21[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data[] [role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data[] [role blue Max = 0.833[epsilon] (Mean = 0.436[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data[] [role blue Max = 7.95[epsilon] (Mean = 1.52[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data[] [role blue Max = 4.45[epsilon] (Mean = 1.19[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_[] [role blue Max = 58.7[epsilon] (Mean = 42.6[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data[] [role blue Max = 3.94[epsilon] (Mean = 2.34[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_[] [role blue Max = 2.16[epsilon] (Mean = 1.08[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_[] [role blue Max = 0.736[epsilon] (Mean = 0.389[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_[] [role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data[] [role blue Max = 2.16[epsilon] (Mean = 1.08[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data[] [role blue Max = 0.736[epsilon] (Mean = 0.389[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data[] [role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_neumann_boost_y_Random_Data[] [role blue Max = 234[epsilon] (Mean = 19.8[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yv_Random_Data[] [role blue Max = 2.08e+03[epsilon] (Mean = 149[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yn_Random_Data[] [role blue Max = 338[epsilon] (Mean = 27.5[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Y0_and_Y1_Random_Data[] [role blue Max = 10.8[epsilon] (Mean = 3.04[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_[] [role blue Max = 1.7[epsilon] (Mean = 1.33[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yv_Mathworld_Data[] [role blue Max = 10.7[epsilon] (Mean = 5.1[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_[] [role blue Max = 55.2[epsilon] (Mean = 17.8[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_[] [role blue Max = 6.33[epsilon] (Mean = 2.29[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_[] [role blue Max = 5.53[epsilon] (Mean = 2.4[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yn_Mathworld_Data[] [role blue Max = 55.2[epsilon] (Mean = 17.8[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Y1_Mathworld_Data[] [role blue Max = 6.33[epsilon] (Mean = 2.29[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Y0_Mathworld_Data[] [role blue Max = 5.53[epsilon] (Mean = 2.4[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_neumann_prime_boost_y_Random_Data[] [role blue Max = 158[epsilon] (Mean = 20.2[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_v_Random_Data[] [role blue Max = 1.16e+05[epsilon] (Mean = 5.28e+03[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_n_Random_Data[] [role blue Max = 2.35e+03[epsilon] (Mean = 136[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data[] [role blue Max = 23.8[epsilon] (Mean = 3.69[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_[] [role blue Max = 1.57[epsilon] (Mean = 1.24[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data[] [role blue Max = 42.5[epsilon] (Mean = 13.6[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_[] [role blue Max = 56[epsilon] (Mean = 21.3[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_[] [role blue Max = 34[epsilon] (Mean = 11.8[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_[] [role blue Max = 6.33[epsilon] (Mean = 3.14[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data[] [role blue Max = 56[epsilon] (Mean = 21.3[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data[] [role blue Max = 34[epsilon] (Mean = 11.8[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data[] [role blue Max = 6.33[epsilon] (Mean = 3.14[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_boost_Beta_Function_Divergent_Values[] [role blue Max = 18.8[epsilon] (Mean = 2.71[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_boost_Beta_Function_Medium_Values[] [role blue Max = 107[epsilon] (Mean = 24.5[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_boost_Beta_Function_Small_Values[] [role blue Max = 2.86[epsilon] (Mean = 1.22[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_binomial_coefficient_boost_Binomials_large_arguments[] [role blue Max = 53.2[epsilon] (Mean = 10.8[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_binomial_coefficient_boost_Binomials_small_arguments[] [role blue Max = 1.5[epsilon] (Mean = 0.339[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cbrt_boost_cbrt_Function[] [role blue Max = 1.34[epsilon] (Mean = 0.471[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cbrt__math_h__cbrt_Function[] (['<math.h>:] Max = 1.34[epsilon] (Mean = 0.471[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Half_integer_arguments[] [role blue Max = 0.906[epsilon] (Mean = 0.409[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Integer_arguments[] [role blue Max = 0.888[epsilon] (Mean = 0.403[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Values_near_0[] [role blue Max = 1[epsilon] (Mean = 0.592[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Negative_Values[] [role blue Max = 180[epsilon] (Mean = 13[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Near_Zero[] [role blue Max = 0.984[epsilon] (Mean = 0.361[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Near_the_Positive_Root[] [role blue Max = 1.31[epsilon] (Mean = 0.471[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Large_Values[] [role blue Max = 1.39[epsilon] (Mean = 0.413[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data[] [role blue Max = 1.27[epsilon] (Mean = 0.473[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data[] [role blue Max = 0.887[epsilon] (Mean = 0.296[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_boost_Elliptic_Integral_F_Random_Data[] [role blue Max = 1.57[epsilon] (Mean = 0.561[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data[] [role blue Max = 0.94[epsilon] (Mean = 0.509[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles[] [role blue Max = 1[epsilon] (Mean = 0.283[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data[] [role blue Max = 1.97[epsilon] (Mean = 0.629[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 0.836[epsilon] (Mean = 0.469[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_boost_Elliptic_Integral_E_Random_Data[] [role blue Max = 2.05[epsilon] (Mean = 0.632[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 0.656[epsilon] (Mean = 0.317[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data[] [role blue Max = 2.4[epsilon] (Mean = 0.677[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data[] [role blue Max = 1.4[epsilon] (Mean = 0.575[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data[] [role blue Max = 3.7[epsilon] (Mean = 0.892[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data[] [role blue Max = 4.49[epsilon] (Mean = 0.885[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data[] [role blue Max = 475[epsilon] (Mean = 86.3[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data[] [role blue Max = 1.27[epsilon] (Mean = 0.334[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 1.27[epsilon] (Mean = 0.735[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_boost_Elliptic_Integral_D_Random_Data[] [role blue Max = 2.51[epsilon] (Mean = 0.883[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 1.3[epsilon] (Mean = 0.813[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_inv_boost_Inverse_Erfc_Function_extreme_values[] [role blue Max = 1.62[epsilon] (Mean = 0.383[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_inv_boost_Inverse_Erfc_Function[] [role blue Max = 1.08[epsilon] (Mean = 0.403[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_inv_boost_Inverse_Erf_Function[] [role blue Max = 1.08[epsilon] (Mean = 0.395[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_boost_Erf_Function_Large_Values[] [role blue Max = 1.57[epsilon] (Mean = 0.564[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_boost_Erf_Function_Large_Values[] [role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_boost_Erf_Function_Medium_Values[] [role blue Max = 1.76[epsilon] (Mean = 0.38[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_boost_Erf_Function_Medium_Values[] [role blue Max = 1.5[epsilon] (Mean = 0.197[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_boost_Erf_Function_Small_Values[] [role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_boost_Erf_Function_Small_Values[] [role blue Max = 0.925[epsilon] (Mean = 0.193[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc__math_h__Erf_Function_Large_Values[] (['<math.h>:] Max = 4.91[epsilon] (Mean = 1.54[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf__math_h__Erf_Function_Large_Values[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc__math_h__Erf_Function_Medium_Values[] (['<math.h>:] Max = 2.81[epsilon] (Mean = 0.739[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf__math_h__Erf_Function_Medium_Values[] (['<math.h>:] Max = 0.921[epsilon] (Mean = 0.071[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc__math_h__Erf_Function_Small_Values[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf__math_h__Erf_Function_Small_Values[] (['<math.h>:] Max = 0.944[epsilon] (Mean = 0.194[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_Ei__boost_Exponential_Integral_Ei_long_exponent_range[] [role blue Max = 1.98[epsilon] (Mean = 0.575[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range[] [role blue Max = 1.72[epsilon] (Mean = 0.607[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_Ei__boost_Exponential_Integral_Ei[] [role blue Max = 5.05[epsilon] (Mean = 0.835[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_En__boost_Exponential_Integral_E1[] [role blue Max = 0.965[epsilon] (Mean = 0.408[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_En__boost_Exponential_Integral_En_small_z_values[] [role blue Max = 1.99[epsilon] (Mean = 0.559[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_En__boost_Exponential_Integral_En[] [role blue Max = 9.97[epsilon] (Mean = 2.13[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_55[] (['<math.h>:] Max = 0.821[epsilon] (Mean = 0.674[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_55[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_10[] (['<math.h>:] Max = 3.04[epsilon] (Mean = 1.01[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_10[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_2[] (['<math.h>:] Max = 0.598[epsilon] (Mean = 0.235[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_2[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_1[] (['<math.h>:] Max = 1.71[epsilon] (Mean = 0.581[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_1[] (['<math.h>:] Max = 1[epsilon] (Mean = 0.175[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_0[] (['<math.h>:] Max = 0.964[epsilon] (Mean = 0.543[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_0[] (['<math.h>:] Max = 0.5[epsilon] (Mean = 0.0791[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__factorials[] (['<math.h>:] Max = 1.36[epsilon] (Mean = 0.476[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__factorials[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma1pm1_boost_tgamma1pm1_dz_[] [role blue Max = 6.61[epsilon] (Mean = 0.84[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_55[] [role blue Max = 1.59[epsilon] (Mean = 0.587[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_55[] [role blue Max = 98.5[epsilon] (Mean = 53.4[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_10[] [role blue Max = 3.81[epsilon] (Mean = 1.01[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_10[] [role blue Max = 1.75[epsilon] (Mean = 0.819[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_2[] [role blue Max = 0.878[epsilon] (Mean = 0.242[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_2[] [role blue Max = 5.01[epsilon] (Mean = 1.89[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_1[] [role blue Max = 0.948[epsilon] (Mean = 0.36[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_1[] [role blue Max = 3.01[epsilon] (Mean = 1.06[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_0[] [role blue Max = 1.42[epsilon] (Mean = 0.566[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_0[] [role blue Max = 2[epsilon] (Mean = 0.647[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_factorials[] [role blue Max = 0.991[epsilon] (Mean = 0.383[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_factorials[] [role blue Max = 172[epsilon] (Mean = 41[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_hermite_boost_Hermite_Polynomials[] [role blue Max = 6.24[epsilon] (Mean = 2.07[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data[] [role blue Max = 3.82[epsilon] (Mean = 0.608[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[] [role blue Max = 1.89[epsilon] (Mean = 0.887[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 107[epsilon] (Mean = 17.1[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 44.5[epsilon] (Mean = 10.1[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 103[epsilon] (Mean = 17.4[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 51.8[epsilon] (Mean = 11[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 6.31e+04[epsilon] (Mean = 2.04e+03[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 4.98e+04[epsilon] (Mean = 2.07e+03[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 1.04e+05[epsilon] (Mean = 5.46e+03[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 6.86e+04[epsilon] (Mean = 2.79e+03[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 132[epsilon] (Mean = 19.8[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 124[epsilon] (Mean = 18.4[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 97.6[epsilon] (Mean = 24.3[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 174[epsilon] (Mean = 25[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 13.8[epsilon] (Mean = 2.68[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 21.3[epsilon] (Mean = 2.75[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 11.2[epsilon] (Mean = 2.94[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 18.7[epsilon] (Mean = 3.19[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_inv_boost_Inverse_incomplete_beta[] [role blue Max = 5.05e+04[epsilon] (Mean = 3.33e+03[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_inv_boost_Inverse_incomplete_beta[] [role blue Max = 4.07e+04[epsilon] (Mean = 2.86e+03[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_invb_boost_Inverse_incomplete_beta[] [role blue Max = 369[epsilon] (Mean = 22.6[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_invb_boost_Inverse_incomplete_beta[] [role blue Max = 407[epsilon] (Mean = 24.4[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_inva_boost_Inverse_incomplete_beta[] [role blue Max = 315[epsilon] (Mean = 23.7[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_inva_boost_Inverse_incomplete_beta[] [role blue Max = 438[epsilon] (Mean = 31.3[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 71.6[epsilon] (Mean = 9.47[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 54.7[epsilon] (Mean = 6.16[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 84.7[epsilon] (Mean = 17.5[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 79.6[epsilon] (Mean = 20.9[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_large_values[] [role blue Max = 3.02e+04[epsilon] (Mean = 1.91e+03[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_large_values[] [role blue Max = 1.15e+04[epsilon] (Mean = 733[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_small_values[] [role blue Max = 2[epsilon] (Mean = 0.461[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_small_values[] [role blue Max = 2.45[epsilon] (Mean = 0.819[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_lower_boost_tgamma_a_z_small_values[] [role blue Max = 1.97[epsilon] (Mean = 0.558[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_incomplete__boost_tgamma_a_z_small_values[] [role blue Max = 2.13[epsilon] (Mean = 0.717[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_medium_values[] [role blue Max = 239[epsilon] (Mean = 30.2[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_medium_values[] [role blue Max = 199[epsilon] (Mean = 26.6[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_lower_boost_tgamma_a_z_medium_values[] [role blue Max = 363[epsilon] (Mean = 63.8[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_incomplete__boost_tgamma_a_z_medium_values[] [role blue Max = 412[epsilon] (Mean = 95.5[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values[] [role blue Max = 8.98e+03[epsilon] (Mean = 877[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values[] [role blue Max = 1.09e+04[epsilon] (Mean = 1.3e+03[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values[] [role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values[] [role blue Max = 0.509[epsilon] (Mean = 0.0447[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values[] [role blue Max = 6.2[epsilon] (Mean = 0.683[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values[] [role blue Max = 1.89[epsilon] (Mean = 0.466[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inva_boost_Incomplete_gamma_inverses_[] [role blue Max = 7.86[epsilon] (Mean = 1.24[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inva_boost_Incomplete_gamma_inverses_[] [role blue Max = 4.08[epsilon] (Mean = 1.12[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi[] [role blue Max = 2.82e+04[epsilon] (Mean = 1.79e+03[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi[] [role blue Max = 2.97e+04[epsilon] (Mean = 1.9e+03[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi[] [role blue Max = 2.45e+04[epsilon] (Mean = 1.51e+03[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1[] [role blue Max = 3.75e+03[epsilon] (Mean = 293[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1[] [role blue Max = 675[epsilon] (Mean = 86.8[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1[] [role blue Max = 109[epsilon] (Mean = 7.38[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values[] [role blue Max = 22.4[epsilon] (Mean = 0.763[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values[] [role blue Max = 10.4[epsilon] (Mean = 0.602[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values[] [role blue Max = 1.99[epsilon] (Mean = 0.347[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data[] [role blue Max = 1.53[epsilon] (Mean = 0.481[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data[] [role blue Max = 1.68[epsilon] (Mean = 0.454[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data[] [role blue Max = 2.01[epsilon] (Mean = 0.593[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data[] [role blue Max = 49[epsilon] (Mean = 14[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data[] [role blue Max = 71.6[epsilon] (Mean = 19.4[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data[] [role blue Max = 341[epsilon] (Mean = 80.7[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values[] [role blue Max = 3.05[epsilon] (Mean = 1.13[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data[] [role blue Max = 3.96[epsilon] (Mean = 1.06[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[] [role blue Max = 1.66[epsilon] (Mean = 0.48[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials[] [role blue Max = 167[epsilon] (Mean = 6.38[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_laguerre_n_x__boost_Laguerre_Polynomials[] [role blue Max = 1.39e+04[epsilon] (Mean = 828[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values[] [role blue Max = 77.7[epsilon] (Mean = 5.59[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_q_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 5.98e+03[epsilon] (Mean = 478[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_p_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 699[epsilon] (Mean = 59.6[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_q_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 50.9[epsilon] (Mean = 8.98[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_p_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 69.2[epsilon] (Mean = 9.58[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expm1__math_h__Random_test_data[] (['<math.h>:] Max = 0.996[epsilon] (Mean = 0.426[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_log1p__math_h__Random_test_data[] (['<math.h>:] Max = 0.818[epsilon] (Mean = 0.249[epsilon]))]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expm1_boost_Random_test_data[] [role blue Max = 1.31[epsilon] (Mean = 0.428[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_log1p_boost_Random_test_data[] [role blue Max = 2.3[epsilon] (Mean = 0.66[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters[] [role blue Max = 3.56e+03[epsilon] (Mean = 707[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters[] [role blue Max = 2.57e+04[epsilon] (Mean = 4.45e+03[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters[] [role blue Max = 554[epsilon] (Mean = 57.2[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters[] [role blue Max = 832[epsilon] (Mean = 38.1[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters[] [role blue Max = 5.1e+03[epsilon] (Mean = 577[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters[] [role blue Max = 6.17e+03[epsilon] (Mean = 677[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters[] [role blue Max = 171[epsilon] (Mean = 22.8[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters[] [role blue Max = 115[epsilon] (Mean = 13.9[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_[] [role blue Max = 9.79e+05[epsilon] (Mean = 1.97e+05[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_[] [role blue Max = 5.24e+05[epsilon] (Mean = 1.47e+05[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_[] [role blue Max = 10.5[epsilon] (Mean = 2.39[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_[] [role blue Max = 9.15[epsilon] (Mean = 2.13[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_complement_boost_Non_Central_T[] [role blue Max = 340[epsilon] (Mean = 43.2[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_boost_Non_Central_T[] [role blue Max = 145[epsilon] (Mean = 30.9[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_owens_t_boost_Owens_T_large_and_diverse_values_[] [role blue Max = 24.5[epsilon] (Mean = 1.39[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_owens_t_boost_Owens_T_medium_small_values_[] [role blue Max = 3.34[epsilon] (Mean = 0.911[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases[] [role blue Max = 145[epsilon] (Mean = 55.9[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_small_arguments[] [role blue Max = 3.33[epsilon] (Mean = 0.75[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_large_negative_arguments[] [role blue Max = 155[epsilon] (Mean = 96.4[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_negative_arguments[] [role blue Max = 269[epsilon] (Mean = 88.4[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_large_arguments[] [role blue Max = 11.1[epsilon] (Mean = 0.848[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data[] [role blue Max = 34.3[epsilon] (Mean = 7.65[epsilon])]]
[template Sun_compiler_version_0x5150_Sun_Solaris_long_double_boost_math_powm1__math_h__powm1[] (['<math.h>:] Max = 1.88[epsilon] (Mean = 0.49[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_legendre_p_associated__GSL_2_1_Associated_Legendre_Polynomials_Small_Values[] (['GSL 2.1:] Max = 121[epsilon] (Mean = 6.75[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_legendre_p_associated__GSL_2_1_Associated_Legendre_Polynomials_Small_Values And other failures.])]
[template GNU_C_version_7_1_0_linux_double_legendre_q_GSL_2_1_Legendre_Polynomials_Large_Values[] (['GSL 2.1:] Max = 4.6e+03[epsilon] (Mean = 366[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_legendre_p_GSL_2_1_Legendre_Polynomials_Large_Values[] (['GSL 2.1:] Max = 300[epsilon] (Mean = 33.2[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_legendre_q_GSL_2_1_Legendre_Polynomials_Small_Values[] (['GSL 2.1:] Max = 46.4[epsilon] (Mean = 7.46[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_legendre_p_GSL_2_1_Legendre_Polynomials_Small_Values[] (['GSL 2.1:] Max = 211[epsilon] (Mean = 20.4[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_legendre_p_associated___cmath__Associated_Legendre_Polynomials_Small_Values[] (['<cmath>:] Max = 175[epsilon] (Mean = 9.36[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_legendre_p_associated___cmath__Associated_Legendre_Polynomials_Small_Values And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_legendre_p__cmath__Legendre_Polynomials_Large_Values[] (['<cmath>:] Max = 343[epsilon] (Mean = 32.1[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_legendre_p__cmath__Legendre_Polynomials_Small_Values[] (['<cmath>:] Max = 124[epsilon] (Mean = 13.2[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values[] [role blue Max = 175[epsilon] (Mean = 9.88[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_legendre_q_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 5.98e+03[epsilon] (Mean = 478[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_legendre_p_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 699[epsilon] (Mean = 59.6[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_legendre_q_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 50.9[epsilon] (Mean = 9[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_legendre_p_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 69.2[epsilon] (Mean = 9.58[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values[] [role blue Max = 0.999[epsilon] (Mean = 0.05[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_legendre_q_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 2.49[epsilon] (Mean = 0.202[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_legendre_p_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 0.632[epsilon] (Mean = 0.0693[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_legendre_q_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 0.612[epsilon] (Mean = 0.0517[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_legendre_p_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 0.732[epsilon] (Mean = 0.0619[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data_large_values_[](['Rmath 3.2.3:] [role red Max = 3.77e+168[epsilon] (Mean = 2.39e+168[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data_large_values_ And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Random_Data[](['Rmath 3.2.3:] [role red Max = 4.28e+08[epsilon] (Mean = 2.85e+07[epsilon]))]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Random_Data[](['Rmath 3.2.3:] Max = 7.37[epsilon] (Mean = 2.4[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data[](['Rmath 3.2.3:] Max = 3.53[epsilon] (Mean = 1.39[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_In_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 1.73[epsilon] (Mean = 0.601[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_In_Mathworld_Data_Integer_Version_ And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I1_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 1.53[epsilon] (Mean = 0.483[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I1_Mathworld_Data_Integer_Version_ And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I0_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 1.52[epsilon] (Mean = 0.622[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I0_Mathworld_Data_Integer_Version_ And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Mathworld_Data[](['Rmath 3.2.3:] Max = 1.73[epsilon] (Mean = 0.601[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I1_Mathworld_Data[](['Rmath 3.2.3:] Max = 1.53[epsilon] (Mean = 0.483[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I1_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I0_Mathworld_Data[](['Rmath 3.2.3:] Max = 1.52[epsilon] (Mean = 0.622[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I0_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Random_Data_Tricky_large_values_[](['Rmath 3.2.3:] Max = 71.6[epsilon] (Mean = 11.7[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Random_Data[](['Rmath 3.2.3:] Max = 6.74[epsilon] (Mean = 1.3[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Random_Data[](['Rmath 3.2.3:] Max = 3.93[epsilon] (Mean = 1.22[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data_large_values_[](['Rmath 3.2.3:] Max = 5.9[epsilon] (Mean = 3.76[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data[](['Rmath 3.2.3:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_JN_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_JN_Mathworld_Data_Integer_Version_ And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[](['Rmath 3.2.3:] Max = 2.93e+06[epsilon] (Mean = 1.7e+06[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 0.946[epsilon] (Mean = 0.39[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_Integer_Version_ And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[](['Rmath 3.2.3:] Max = 1.04e+07[epsilon] (Mean = 4.29e+06[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 0.629[epsilon] (Mean = 0.223[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Integer_Version_ And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Mathworld_Data[](['Rmath 3.2.3:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Mathworld_Data And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data_tricky_cases_[](['Rmath 3.2.3:] Max = 2.93e+06[epsilon] (Mean = 1.7e+06[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data[](['Rmath 3.2.3:] Max = 0.946[epsilon] (Mean = 0.39[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data_Tricky_cases_[](['Rmath 3.2.3:] Max = 1.04e+07[epsilon] (Mean = 4.29e+06[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data[](['Rmath 3.2.3:] Max = 0.629[epsilon] (Mean = 0.223[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kv_Random_Data[](['Rmath 3.2.3:] Max = 7.37[epsilon] (Mean = 1.49[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kn_Random_Data[](['Rmath 3.2.3:] Max = 7.47[epsilon] (Mean = 1.34[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kv_Mathworld_Data_large_values_[](['Rmath 3.2.3:] Max = 84.6[epsilon] (Mean = 37.8[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kv_Mathworld_Data[](['Rmath 3.2.3:] Max = 3.15[epsilon] (Mean = 1.35[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__Rmath_3_2_3_Bessel_Kn_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 8.48[epsilon] (Mean = 2.98[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__Rmath_3_2_3_Bessel_K1_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 0.894[epsilon] (Mean = 0.516[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__Rmath_3_2_3_Bessel_K0_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 0.833[epsilon] (Mean = 0.601[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kn_Mathworld_Data[](['Rmath 3.2.3:] Max = 8.48[epsilon] (Mean = 2.98[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_K1_Mathworld_Data[](['Rmath 3.2.3:] Max = 0.894[epsilon] (Mean = 0.516[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_K0_Mathworld_Data[](['Rmath 3.2.3:] Max = 0.833[epsilon] (Mean = 0.601[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yv_Random_Data[](['Rmath 3.2.3:] Max = 1.79e+05[epsilon] (Mean = 9.64e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yn_Random_Data[](['Rmath 3.2.3:] Max = 691[epsilon] (Mean = 67.9[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Y0_and_Y1_Random_Data[](['Rmath 3.2.3:] Max = 83[epsilon] (Mean = 14.2[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yv_Mathworld_Data_large_values_[](['Rmath 3.2.3:] Max = 0.682[epsilon] (Mean = 0.335[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yv_Mathworld_Data[](['Rmath 3.2.3:] Max = 243[epsilon] (Mean = 73.9[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__Rmath_3_2_3_Yn_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 1.24e+04[epsilon] (Mean = 4e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__Rmath_3_2_3_Y1_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 193[epsilon] (Mean = 64.4[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__Rmath_3_2_3_Y0_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 167[epsilon] (Mean = 56.5[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yn_Mathworld_Data[](['Rmath 3.2.3:] Max = 1.24e+04[epsilon] (Mean = 4e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Y1_Mathworld_Data[](['Rmath 3.2.3:] Max = 193[epsilon] (Mean = 64.4[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Y0_Mathworld_Data[](['Rmath 3.2.3:] Max = 167[epsilon] (Mean = 56.5[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_beta_Rmath_3_2_3_Beta_Function_Divergent_Values[](['Rmath 3.2.3:] Max = 176[epsilon] (Mean = 28[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_beta_Rmath_3_2_3_Beta_Function_Medium_Values[](['Rmath 3.2.3:] Max = 1.09e+03[epsilon] (Mean = 265[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_beta_Rmath_3_2_3_Beta_Function_Small_Values[](['Rmath 3.2.3:] Max = 1.14[epsilon] (Mean = 0.574[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Half_integer_arguments[](['Rmath 3.2.3:] Max = 46.2[epsilon] (Mean = 7.24[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Integer_arguments[](['Rmath 3.2.3:] Max = 4.33[epsilon] (Mean = 0.982[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Values_near_0[](['Rmath 3.2.3:] Max = 3.58e+05[epsilon] (Mean = 1.6e+05[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Negative_Values[](['Rmath 3.2.3:] Max = 4.6e+04[epsilon] (Mean = 3.94e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Near_Zero[](['Rmath 3.2.3:] Max = 1.17[epsilon] (Mean = 0.564[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Near_the_Positive_Root[](['Rmath 3.2.3:] Max = 2.02e+03[epsilon] (Mean = 256[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Large_Values[](['Rmath 3.2.3:] Max = 1.18[epsilon] (Mean = 0.331[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Small_Integer_Values[](['Rmath 3.2.3:] Max = 84.6[epsilon] (Mean = 18[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Small_Integer_Values[](['Rmath 3.2.3:] Max = 62.2[epsilon] (Mean = 8.95[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Large_and_Diverse_Values[](['Rmath 3.2.3:] Max = 889[epsilon] (Mean = 68.4[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Large_and_Diverse_Values[](['Rmath 3.2.3:] Max = 574[epsilon] (Mean = 49.4[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Medium_Values[](['Rmath 3.2.3:] Max = 204[epsilon] (Mean = 25.8[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Medium_Values[](['Rmath 3.2.3:] Max = 232[epsilon] (Mean = 27.9[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Small_Values[](['Rmath 3.2.3:] Max = 22.4[epsilon] (Mean = 3.67[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Small_Values[](['Rmath 3.2.3:] Max = 22.9[epsilon] (Mean = 3.35[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ibetac_inv_Rmath_3_2_3_Inverse_incomplete_beta[](['Rmath 3.2.3:] [role red Max = 3.01e+132[epsilon] (Mean = 8.65e+130[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_ibetac_inv_Rmath_3_2_3_Inverse_incomplete_beta And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_ibeta_inv_Rmath_3_2_3_Inverse_incomplete_beta[](['Rmath 3.2.3:] [role red Max = 1.14e+121[epsilon] (Mean = 3.28e+119[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_ibeta_inv_Rmath_3_2_3_Inverse_incomplete_beta And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_integer_and_half_integer_values[](['Rmath 3.2.3:] Max = 66.2[epsilon] (Mean = 12.2[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_integer_and_half_integer_values[](['Rmath 3.2.3:] Max = 138[epsilon] (Mean = 16.9[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_large_values[](['Rmath 3.2.3:] Max = 1.11e+03[epsilon] (Mean = 67.5[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_large_values[](['Rmath 3.2.3:] Max = 1.02e+03[epsilon] (Mean = 62.7[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_small_values[](['Rmath 3.2.3:] Max = 1.01[epsilon] (Mean = 0.306[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_small_values[](['Rmath 3.2.3:] Max = 65.6[epsilon] (Mean = 11[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_medium_values[](['Rmath 3.2.3:] Max = 389[epsilon] (Mean = 44[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_medium_values[](['Rmath 3.2.3:] Max = 131[epsilon] (Mean = 12.7[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_q_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_small_values[](['Rmath 3.2.3:] Max = 415[epsilon] (Mean = 48.7[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_p_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_small_values[](['Rmath 3.2.3:] Max = 547[epsilon] (Mean = 61.6[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_q_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_large_values[](['Rmath 3.2.3:] Max = 0.894[epsilon] (Mean = 0.106[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_p_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_large_values[](['Rmath 3.2.3:] Max = 0.816[epsilon] (Mean = 0.0874[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_q_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_medium_values[](['Rmath 3.2.3:] Max = 4.66[epsilon] (Mean = 0.792[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_p_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_medium_values[](['Rmath 3.2.3:] Max = 4.88[epsilon] (Mean = 0.868[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_expm1_Rmath_3_2_3_Random_test_data[](['Rmath 3.2.3:] Max = 0.793[epsilon] (Mean = 0.126[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_log1p_Rmath_3_2_3_Random_test_data[](['Rmath 3.2.3:] Max = 0.846[epsilon] (Mean = 0.153[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_large_parameters[](['Rmath 3.2.3:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_large_parameters And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_large_parameters[](['Rmath 3.2.3:] [role red Max = 1.01e+36[epsilon] (Mean = 1.19e+35[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_large_parameters And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_medium_parameters[](['Rmath 3.2.3:] [role red Max = 7.5e+97[epsilon] (Mean = 1.37e+96[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_medium_parameters And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_medium_parameters[](['Rmath 3.2.3:] [role red Max = 1.46e+26[epsilon] (Mean = 3.5e+24[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_medium_parameters And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters[](['Rmath 3.2.3:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters[](['Rmath 3.2.3:] [role red Max = 3.27e+08[epsilon] (Mean = 2.23e+07[epsilon]))]]
[template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters[](['Rmath 3.2.3:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters[](['Rmath 3.2.3:] Max = 727[epsilon] (Mean = 121[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T_large_parameters_[](['Rmath 3.2.3:] Max = 2.24[epsilon] (Mean = 0.945[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T_large_parameters_[](['Rmath 3.2.3:] Max = 2.46[epsilon] (Mean = 0.657[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T_small_non_centrality_[](['Rmath 3.2.3:] Max = 1.87e+03[epsilon] (Mean = 263[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T_small_non_centrality_[](['Rmath 3.2.3:] Max = 2.09e+03[epsilon] (Mean = 244[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T[](['Rmath 3.2.3:] [role red Max = 6.19e+15[epsilon] (Mean = 6.72e+14[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T[](['Rmath 3.2.3:] [role red Max = 5.28e+15[epsilon] (Mean = 8.49e+14[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_Large_orders_and_other_bug_cases[](['Rmath 3.2.3:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_Large_orders_and_other_bug_cases And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_small_arguments[](['Rmath 3.2.3:] Max = 106[epsilon] (Mean = 20[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_negative_arguments[](['Rmath 3.2.3:] Max = 0[epsilon] (Mean = 0[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_negative_arguments And other failures.])]
[template GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_negative_arguments[](['Rmath 3.2.3:] Max = 0[epsilon] (Mean = 0[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_negative_arguments And other failures.])]
[template GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_arguments[](['Rmath 3.2.3:] [role red Max = 1.71e+56[epsilon] (Mean = 1.01e+55[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_arguments And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data[](['Rmath 3.2.3:] Max = 108[epsilon] (Mean = 15.2[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_boost_math_powm1_Rmath_3_2_3_powm1[](['Rmath 3.2.3:] Max = 1.06[epsilon] (Mean = 0.425[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_trigamma_Rmath_3_2_3_Mathematica_Data[](['Rmath 3.2.3:] Max = 1.34e+04[epsilon] (Mean = 1.51e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_trigamma_GSL_2_1_Mathematica_Data[](['GSL 2.1:] Max = 1.34e+04[epsilon] (Mean = 1.49e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_trigamma_boost_Mathematica_Data[][role blue Max = 1.28[epsilon] (Mean = 0.449[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_trigamma_boost_Mathematica_Data[][role blue Max = 0.998[epsilon] (Mean = 0.105[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Integer_arguments[](['GSL 2.1:] Max = 3.75[epsilon] (Mean = 1.1[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Values_close_to_and_less_than_1[](['GSL 2.1:] Max = 0.991[epsilon] (Mean = 0.28[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Values_close_to_and_greater_than_1[](['GSL 2.1:] Max = 7.73[epsilon] (Mean = 4.07[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Random_values_less_than_1[](['GSL 2.1:] Max = 137[epsilon] (Mean = 13.8[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Random_values_greater_than_1[](['GSL 2.1:] Max = 8.69[epsilon] (Mean = 1.03[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Integer_arguments[][role blue Max = 9[epsilon] (Mean = 3.06[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Values_close_to_and_less_than_1[][role blue Max = 0.998[epsilon] (Mean = 0.508[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1[][role blue Max = 0.995[epsilon] (Mean = 0.5[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Random_values_less_than_1[][role blue Max = 7.03[epsilon] (Mean = 2.93[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Random_values_greater_than_1[][role blue Max = 0.846[epsilon] (Mean = 0.0833[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Integer_arguments[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Values_close_to_and_less_than_1[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Random_values_less_than_1[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Random_values_greater_than_1[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Integer_arguments[](['<cmath>:] Max = 70.3[epsilon] (Mean = 17.4[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Values_close_to_and_less_than_1[](['<cmath>:] Max = 8.53e+06[epsilon] (Mean = 1.87e+06[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Values_close_to_and_greater_than_1[](['<cmath>:] Max = 1.9e+06[epsilon] (Mean = 5.11e+05[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Random_values_less_than_1[](['<cmath>:] Max = 538[epsilon] (Mean = 59.3[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Random_values_greater_than_1[](['<cmath>:] Max = 5.45[epsilon] (Mean = 1[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data_large_values_[](['GSL 2.1:] Max = 37[epsilon] (Mean = 18[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data_large_values_ And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Random_Data[](['GSL 2.1:] Max = 6.18e+03[epsilon] (Mean = 1.55e+03[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Random_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Random_Data[](['GSL 2.1:] Max = 261[epsilon] (Mean = 53.2[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Random_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data[](['GSL 2.1:] Max = 5.95[epsilon] (Mean = 2.08[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_In_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 5.15[epsilon] (Mean = 2.13[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_In_Mathworld_Data_Integer_Version_ And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_I1_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 0.82[epsilon] (Mean = 0.456[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_I0_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 0.79[epsilon] (Mean = 0.482[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Mathworld_Data[](['GSL 2.1:] Max = 2.31[epsilon] (Mean = 0.838[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I1_Mathworld_Data[](['GSL 2.1:] Max = 128[epsilon] (Mean = 41[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I1_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I0_Mathworld_Data[](['GSL 2.1:] Max = 270[epsilon] (Mean = 91.6[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I0_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data_large_values_[](['<cmath>:] Max = 118[epsilon] (Mean = 57.2[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data_large_values_ And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Random_Data[](['<cmath>:] Max = 1.05e+03[epsilon] (Mean = 224[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Random_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Random_Data[](['<cmath>:] Max = 645[epsilon] (Mean = 132[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data[](['<cmath>:] Max = 616[epsilon] (Mean = 221[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_In_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 430[epsilon] (Mean = 163[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_In_Mathworld_Data_Integer_Version_ And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I1_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 5[epsilon] (Mean = 2.15[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I1_Mathworld_Data_Integer_Version_ And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I0_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 8.49[epsilon] (Mean = 3.46[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I0_Mathworld_Data_Integer_Version_ And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Mathworld_Data[](['<cmath>:] Max = 430[epsilon] (Mean = 163[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I1_Mathworld_Data[](['<cmath>:] Max = 5[epsilon] (Mean = 2.15[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I1_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I0_Mathworld_Data[](['<cmath>:] Max = 8.49[epsilon] (Mean = 3.46[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I0_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_[][role blue Max = 14.7[epsilon] (Mean = 6.66[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data[][role blue Max = 8.35[epsilon] (Mean = 1.62[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_In_Random_Data[][role blue Max = 4.62[epsilon] (Mean = 1.06[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data[][role blue Max = 4.12[epsilon] (Mean = 1.85[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_[][role blue Max = 1.8[epsilon] (Mean = 1.33[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_[][role blue Max = 0.64[epsilon] (Mean = 0.202[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_[][role blue Max = 1.95[epsilon] (Mean = 0.738[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data[][role blue Max = 1.8[epsilon] (Mean = 1.33[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data[][role blue Max = 0.64[epsilon] (Mean = 0.202[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data[][role blue Max = 1.95[epsilon] (Mean = 0.738[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data[][role blue Max = 0.661[epsilon] (Mean = 0.0441[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_In_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_[][role blue Max = 42.6[epsilon] (Mean = 20.2[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data[][role blue Max = 14.1[epsilon] (Mean = 2.93[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data[][role blue Max = 3.95[epsilon] (Mean = 1.06[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data[][role blue Max = 2.89e+03[epsilon] (Mean = 914[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_[][role blue Max = 2.31[epsilon] (Mean = 1.41[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_[][role blue Max = 1.97[epsilon] (Mean = 0.757[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_[][role blue Max = 0.82[epsilon] (Mean = 0.259[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data[][role blue Max = 2.31[epsilon] (Mean = 1.41[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data[][role blue Max = 1.97[epsilon] (Mean = 0.757[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data[][role blue Max = 0.82[epsilon] (Mean = 0.259[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data[][role blue Max = 1.62[epsilon] (Mean = 0.512[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_sph_bessel_GSL_2_1_Bessel_j_Random_Data[](['GSL 2.1:] Max = 1.79e+03[epsilon] (Mean = 107[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data_Tricky_large_values_[](['GSL 2.1:] Max = 2.48e+05[epsilon] (Mean = 5.11e+04[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data[](['GSL 2.1:] Max = 15.5[epsilon] (Mean = 3.33[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Random_Data[](['GSL 2.1:] Max = 75.7[epsilon] (Mean = 5.36[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data_large_values_[](['GSL 2.1:] Max = 4.91e+03[epsilon] (Mean = 2.46e+03[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data_large_values_ And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data[](['GSL 2.1:] Max = 2.39e+05[epsilon] (Mean = 5.37e+04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_JN_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 6.9e+05[epsilon] (Mean = 2.53e+05[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_JN_Mathworld_Data_Integer_Version_ And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[](['GSL 2.1:] Max = 1.26e+06[epsilon] (Mean = 6.28e+05[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J1_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 1.89[epsilon] (Mean = 0.721[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[](['GSL 2.1:] Max = 1e+07[epsilon] (Mean = 4.11e+06[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J0_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 1.12[epsilon] (Mean = 0.488[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Mathworld_Data[](['GSL 2.1:] Max = 6.9e+05[epsilon] (Mean = 2.15e+05[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data_tricky_cases_[](['GSL 2.1:] Max = 8.75e+05[epsilon] (Mean = 5.32e+05[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data[](['GSL 2.1:] Max = 6.62[epsilon] (Mean = 2.35[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data_Tricky_cases_[](['GSL 2.1:] Max = 6.5e+07[epsilon] (Mean = 2.66e+07[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data[](['GSL 2.1:] Max = 0.629[epsilon] (Mean = 0.223[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_sph_bessel_boost_Bessel_j_Random_Data[][role blue Max = 243[epsilon] (Mean = 13.3[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_[][role blue Max = 785[epsilon] (Mean = 94.2[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data[][role blue Max = 11.4[epsilon] (Mean = 1.68[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_JN_Random_Data[][role blue Max = 50.8[epsilon] (Mean = 3.69[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_[][role blue Max = 607[epsilon] (Mean = 305[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data[][role blue Max = 14.7[epsilon] (Mean = 4.11[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[][role blue Max = 6.85[epsilon] (Mean = 3.35[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[][role blue Max = 2.18e+05[epsilon] (Mean = 9.76e+04[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[][role blue Max = 3.59[epsilon] (Mean = 1.33[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[][role blue Max = 1.64e+08[epsilon] (Mean = 6.69e+07[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[][role blue Max = 6.55[epsilon] (Mean = 2.86[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data[][role blue Max = 6.85[epsilon] (Mean = 3.35[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_[][role blue Max = 2.18e+05[epsilon] (Mean = 9.76e+04[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data[][role blue Max = 3.59[epsilon] (Mean = 1.33[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[][role blue Max = 1.64e+08[epsilon] (Mean = 6.69e+07[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data[][role blue Max = 6.55[epsilon] (Mean = 2.86[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_sph_bessel_boost_Bessel_j_Random_Data[][role blue Max = 0.978[epsilon] (Mean = 0.0445[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_JN_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_[][role blue Max = 0.536[epsilon] (Mean = 0.268[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data[][role blue Max = 10[epsilon] (Mean = 2.24[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[][role blue Max = 106[epsilon] (Mean = 47.5[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[][role blue Max = 8e+04[epsilon] (Mean = 3.27e+04[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_[][role blue Max = 106[epsilon] (Mean = 47.5[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[][role blue Max = 8e+04[epsilon] (Mean = 3.27e+04[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_sph_bessel__cmath__Bessel_j_Random_Data[](['<cmath>:] Max = 1.91e+06[epsilon] (Mean = 1.09e+05[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Random_Data_Tricky_large_values_[](['<cmath>:] [role red Max = 5.01e+17[epsilon] (Mean = 6.23e+16[epsilon]))]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Random_Data[](['<cmath>:] Max = 501[epsilon] (Mean = 52.3[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Random_Data[](['<cmath>:] Max = 1.12e+03[epsilon] (Mean = 88.7[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data_large_values_[](['<cmath>:] Max = 34.9[epsilon] (Mean = 17.4[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data_large_values_ And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data[](['<cmath>:] Max = 3.49e+05[epsilon] (Mean = 8.09e+04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_JN_Mathworld_Data_Integer_Version_[](['<cmath>:] [role red Max = 2.13e+19[epsilon] (Mean = 5.16e+18[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_JN_Mathworld_Data_Integer_Version_ And other failures.])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[](['<cmath>:] Max = 2.15e+06[epsilon] (Mean = 1.58e+06[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 6.1[epsilon] (Mean = 2.95[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_Integer_Version_ And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[](['<cmath>:] Max = 4.79e+08[epsilon] (Mean = 1.96e+08[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 5.04[epsilon] (Mean = 1.78[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Integer_Version_ And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Mathworld_Data[](['<cmath>:] [role red Max = 2.13e+19[epsilon] (Mean = 5.16e+18[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Mathworld_Data And other failures.])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data_tricky_cases_[](['<cmath>:] Max = 2.15e+06[epsilon] (Mean = 1.58e+06[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data[](['<cmath>:] Max = 6.1[epsilon] (Mean = 2.95[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data_Tricky_cases_[](['<cmath>:] Max = 4.79e+08[epsilon] (Mean = 1.96e+08[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data[](['<cmath>:] Max = 5.04[epsilon] (Mean = 1.78[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_sph_bessel_prime_boost_Bessel_j_Random_Data[][role blue Max = 167[epsilon] (Mean = 12[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_[][role blue Max = 474[epsilon] (Mean = 62.2[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data[][role blue Max = 139[epsilon] (Mean = 6.47[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data[][role blue Max = 11.3[epsilon] (Mean = 1.85[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_[][role blue Max = 989[epsilon] (Mean = 495[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data[][role blue Max = 42.5[epsilon] (Mean = 9.31[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[][role blue Max = 1.29e+03[epsilon] (Mean = 312[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[][role blue Max = 5.88e+05[epsilon] (Mean = 2.63e+05[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[][role blue Max = 7.9[epsilon] (Mean = 3.37[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[][role blue Max = 7.44[epsilon] (Mean = 3.34[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[][role blue Max = 18.9[epsilon] (Mean = 6.82[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data[][role blue Max = 1.29e+03[epsilon] (Mean = 312[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_[][role blue Max = 5.88e+05[epsilon] (Mean = 2.63e+05[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data[][role blue Max = 7.9[epsilon] (Mean = 3.37[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[][role blue Max = 7.44[epsilon] (Mean = 3.34[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data[][role blue Max = 18.9[epsilon] (Mean = 6.82[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_sph_bessel_prime_boost_Bessel_j_Random_Data[][role blue Max = 0.753[epsilon] (Mean = 0.0343[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data[][role blue Max = 0.885[epsilon] (Mean = 0.033[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data[][role blue Max = 0.593[epsilon] (Mean = 0.0396[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data[][role blue Max = 21.5[epsilon] (Mean = 4.7[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[][role blue Max = 0.527[epsilon] (Mean = 0.128[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[][role blue Max = 287[epsilon] (Mean = 129[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data[][role blue Max = 0.527[epsilon] (Mean = 0.128[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_[][role blue Max = 287[epsilon] (Mean = 129[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Random_Data[](['GSL 2.1:] Max = 9.71[epsilon] (Mean = 1.47[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Random_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Random_Data[](['GSL 2.1:] Max = 8.71[epsilon] (Mean = 1.76[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Random_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data_large_values_[](['GSL 2.1:] Max = 308[epsilon] (Mean = 142[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data_large_values_ And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data[](['GSL 2.1:] Max = 5.47[epsilon] (Mean = 2.04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__GSL_2_1_Bessel_Kn_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 168[epsilon] (Mean = 59.5[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__GSL_2_1_Bessel_K1_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 0.626[epsilon] (Mean = 0.333[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__GSL_2_1_Bessel_K0_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 1.2[epsilon] (Mean = 0.733[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Mathworld_Data[](['GSL 2.1:] Max = 3.36[epsilon] (Mean = 1.43[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_K1_Mathworld_Data[](['GSL 2.1:] Max = 6.26[epsilon] (Mean = 2.21[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_K0_Mathworld_Data[](['GSL 2.1:] Max = 6.04[epsilon] (Mean = 2.16[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data[][role blue Max = 7.88[epsilon] (Mean = 1.48[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data[][role blue Max = 4.55[epsilon] (Mean = 1.12[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_[][role blue Max = 42.3[epsilon] (Mean = 21[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data[][role blue Max = 3.58[epsilon] (Mean = 2.39[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_[][role blue Max = 2.6[epsilon] (Mean = 1.21[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_[][role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_[][role blue Max = 0.833[epsilon] (Mean = 0.436[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data[][role blue Max = 2.6[epsilon] (Mean = 1.21[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data[][role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data[][role blue Max = 0.833[epsilon] (Mean = 0.436[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data[][role blue Max = 0.507[epsilon] (Mean = 0.0313[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data[][role blue Max = 0.764[epsilon] (Mean = 0.0348[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Random_Data[](['<cmath>:] Max = 13.6[epsilon] (Mean = 2.68[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Random_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Random_Data[](['<cmath>:] Max = 13.9[epsilon] (Mean = 2.91[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data_large_values_[](['<cmath>:] Max = 42.3[epsilon] (Mean = 19.8[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data_large_values_ And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data[](['<cmath>:] Max = 13[epsilon] (Mean = 4.81[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_Kn_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 12.9[epsilon] (Mean = 4.91[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_Kn_Mathworld_Data_Integer_Version_ And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_K1_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 8.94[epsilon] (Mean = 3.19[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_K0_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 9.33[epsilon] (Mean = 3.25[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Mathworld_Data[](['<cmath>:] Max = 12.9[epsilon] (Mean = 4.91[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_K1_Mathworld_Data[](['<cmath>:] Max = 8.94[epsilon] (Mean = 3.19[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_K0_Mathworld_Data[](['<cmath>:] Max = 9.33[epsilon] (Mean = 3.25[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data[][role blue Max = 7.95[epsilon] (Mean = 1.53[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data[][role blue Max = 4.45[epsilon] (Mean = 1.19[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_[][role blue Max = 59.2[epsilon] (Mean = 42.9[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data[][role blue Max = 3.94[epsilon] (Mean = 2.44[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_[][role blue Max = 2.16[epsilon] (Mean = 1.08[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_[][role blue Max = 0.736[epsilon] (Mean = 0.389[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_[][role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data[][role blue Max = 2.16[epsilon] (Mean = 1.08[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data[][role blue Max = 0.736[epsilon] (Mean = 0.389[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data[][role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_sph_neumann_GSL_2_1_y_Random_Data[](['GSL 2.1:] Max = 8.5e+04[epsilon] (Mean = 5.33e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Random_Data[](['GSL 2.1:] Max = 1.41e+06[epsilon] (Mean = 7.67e+04[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Random_Data[](['GSL 2.1:] Max = 500[epsilon] (Mean = 47.8[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Y0_and_Y1_Random_Data[](['GSL 2.1:] Max = 34.4[epsilon] (Mean = 8.9[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data_large_values_[](['GSL 2.1:] Max = 60.8[epsilon] (Mean = 23[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data_large_values_ And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data[](['GSL 2.1:] Max = 1.07e+05[epsilon] (Mean = 3.22e+04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__GSL_2_1_Yn_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 2.41e+05[epsilon] (Mean = 7.62e+04[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__GSL_2_1_Y1_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 1.51[epsilon] (Mean = 0.839[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__GSL_2_1_Y0_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 6.46[epsilon] (Mean = 2.38[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Mathworld_Data[](['GSL 2.1:] Max = 2.41e+05[epsilon] (Mean = 7.62e+04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Y1_Mathworld_Data[](['GSL 2.1:] Max = 23.4[epsilon] (Mean = 8.1[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Y0_Mathworld_Data[](['GSL 2.1:] Max = 60.9[epsilon] (Mean = 20.4[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_sph_neumann_boost_y_Random_Data[][role blue Max = 234[epsilon] (Mean = 19.5[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yv_Random_Data[][role blue Max = 2.08e+03[epsilon] (Mean = 149[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yn_Random_Data[][role blue Max = 338[epsilon] (Mean = 27.5[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Y0_and_Y1_Random_Data[][role blue Max = 10.8[epsilon] (Mean = 3.04[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_[][role blue Max = 1.7[epsilon] (Mean = 1.33[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yv_Mathworld_Data[][role blue Max = 10.7[epsilon] (Mean = 4.93[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_[][role blue Max = 55.2[epsilon] (Mean = 17.8[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_[][role blue Max = 6.33[epsilon] (Mean = 2.25[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_[][role blue Max = 5.53[epsilon] (Mean = 2.4[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yn_Mathworld_Data[][role blue Max = 55.2[epsilon] (Mean = 17.8[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Y1_Mathworld_Data[][role blue Max = 6.33[epsilon] (Mean = 2.25[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Y0_Mathworld_Data[][role blue Max = 5.53[epsilon] (Mean = 2.4[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_sph_neumann_boost_y_Random_Data[][role blue Max = 0.995[epsilon] (Mean = 0.0665[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yv_Random_Data[][role blue Max = 1.53[epsilon] (Mean = 0.102[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yn_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Y0_and_Y1_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yv_Mathworld_Data[][role blue Max = 10[epsilon] (Mean = 3.02[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_[][role blue Max = 0.993[epsilon] (Mean = 0.314[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yn_Mathworld_Data[][role blue Max = 0.993[epsilon] (Mean = 0.314[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Y1_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Y0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_sph_neumann__cmath__y_Random_Data[](['<cmath>:] Max = 1.6e+06[epsilon] (Mean = 1.4e+05[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Random_Data[](['<cmath>:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Random_Data And other failures.])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Random_Data[](['<cmath>:] Max = 4.01e+03[epsilon] (Mean = 348[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Y0_and_Y1_Random_Data[](['<cmath>:] Max = 2.59e+03[epsilon] (Mean = 500[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data_large_values_[](['<cmath>:] Max = 43.2[epsilon] (Mean = 16.3[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data_large_values_ And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data[](['<cmath>:] [role red Max = 3.49e+15[epsilon] (Mean = 1.05e+15[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data And other failures.])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Yn_Mathworld_Data_Integer_Version_[](['<cmath>:] [role red Max = 2.2e+20[epsilon] (Mean = 6.97e+19[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Yn_Mathworld_Data_Integer_Version_ And other failures.])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Y1_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 9.71e+03[epsilon] (Mean = 4.08e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Y0_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 2.05e+05[epsilon] (Mean = 6.87e+04[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Mathworld_Data[](['<cmath>:] [role red Max = 2.2e+20[epsilon] (Mean = 6.97e+19[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Mathworld_Data And other failures.])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Y1_Mathworld_Data[](['<cmath>:] Max = 9.71e+03[epsilon] (Mean = 4.08e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Y0_Mathworld_Data[](['<cmath>:] Max = 2.05e+05[epsilon] (Mean = 6.87e+04[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_sph_neumann_prime_boost_y_Random_Data[][role blue Max = 158[epsilon] (Mean = 18.8[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_v_Random_Data[][role blue Max = 1.16e+05[epsilon] (Mean = 5.28e+03[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_n_Random_Data[][role blue Max = 2.35e+03[epsilon] (Mean = 136[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data[][role blue Max = 23.8[epsilon] (Mean = 3.69[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_[][role blue Max = 1.57[epsilon] (Mean = 1.24[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data[][role blue Max = 42.5[epsilon] (Mean = 13.4[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_[][role blue Max = 56[epsilon] (Mean = 18.2[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_[][role blue Max = 37.1[epsilon] (Mean = 12.8[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_[][role blue Max = 6.33[epsilon] (Mean = 3.12[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data[][role blue Max = 56[epsilon] (Mean = 18.2[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data[][role blue Max = 37.1[epsilon] (Mean = 12.8[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data[][role blue Max = 6.33[epsilon] (Mean = 3.12[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_sph_neumann_prime_boost_y_Random_Data[][role blue Max = 0.988[epsilon] (Mean = 0.0869[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_v_Random_Data[][role blue Max = 56.8[epsilon] (Mean = 2.59[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_n_Random_Data[][role blue Max = 1.53[epsilon] (Mean = 0.0885[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data[][role blue Max = 21.5[epsilon] (Mean = 6.49[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_[][role blue Max = 2.05[epsilon] (Mean = 0.677[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_[][role blue Max = 0.58[epsilon] (Mean = 0.193[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data[][role blue Max = 2.05[epsilon] (Mean = 0.677[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data[][role blue Max = 0.58[epsilon] (Mean = 0.193[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Divergent_Values[](['GSL 2.1:] Max = 12.1[epsilon] (Mean = 1.99[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Medium_Values[](['GSL 2.1:] Max = 1.18e+03[epsilon] (Mean = 238[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Small_Values[](['GSL 2.1:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Small_Values And other failures.])]]
[template GNU_C_version_7_1_0_linux_long_double_beta__cmath__Beta_Function_Divergent_Values[](['<cmath>:] Max = 128[epsilon] (Mean = 23.8[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_beta__cmath__Beta_Function_Medium_Values[](['<cmath>:] Max = 1.07e+03[epsilon] (Mean = 264[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_beta__cmath__Beta_Function_Small_Values[](['<cmath>:] Max = 364[epsilon] (Mean = 76.2[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_beta_boost_Beta_Function_Divergent_Values[][role blue Max = 8.99[epsilon] (Mean = 2.44[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_beta_boost_Beta_Function_Medium_Values[][role blue Max = 61.4[epsilon] (Mean = 19.4[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_beta_boost_Beta_Function_Small_Values[][role blue Max = 2.86[epsilon] (Mean = 1.22[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_beta_boost_Beta_Function_Divergent_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_beta_boost_Beta_Function_Medium_Values[][role blue Max = 0.978[epsilon] (Mean = 0.0595[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_beta_boost_Beta_Function_Small_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_binomial_coefficient_boost_Binomials_large_arguments[][role blue Max = 26.6[epsilon] (Mean = 6.13[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_binomial_coefficient_boost_Binomials_small_arguments[][role blue Max = 1.5[epsilon] (Mean = 0.339[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_binomial_coefficient_boost_Binomials_large_arguments[][role blue Max = 0.939[epsilon] (Mean = 0.314[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_binomial_coefficient_boost_Binomials_small_arguments[][role blue Max = 1[epsilon] (Mean = 0.369[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_one_value_zero[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_two_values_the_same[](['GSL 2.1:] Max = 0.594[epsilon] (Mean = 0.0103[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_All_values_the_same_or_zero[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_two_values_0[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_Random_Data[](['GSL 2.1:] Max = 0.983[epsilon] (Mean = 0.0172[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_0[](['GSL 2.1:] Max = 2.85[epsilon] (Mean = 0.781[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_y_z[](['GSL 2.1:] Max = 1.03[epsilon] (Mean = 0.418[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_0_y_z[](['GSL 2.1:] Max = 2[epsilon] (Mean = 0.656[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_y[](['GSL 2.1:] Max = 3.74[epsilon] (Mean = 0.84[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_y_z[](['GSL 2.1:] Max = 2.88[epsilon] (Mean = 0.839[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_Random_data[](['GSL 2.1:] Max = 2.59[epsilon] (Mean = 0.878[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Equal_z_and_p[](['GSL 2.1:] Max = 2.62[epsilon] (Mean = 0.699[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_2_Equal_Values[](['GSL 2.1:] Max = 2.57[epsilon] (Mean = 0.754[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_3_Equal_Values[](['GSL 2.1:] Max = 3.96[epsilon] (Mean = 1.06[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_4_Equal_Values[](['GSL 2.1:] Max = 1.03[epsilon] (Mean = 0.418[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Random_data[](['GSL 2.1:] Max = 3.57[epsilon] (Mean = 0.704[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Random_data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_ellint_rc_GSL_2_1_RC_Random_data[](['GSL 2.1:] Max = 2.4[epsilon] (Mean = 0.624[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_z_0[](['GSL 2.1:] Max = 2.54[epsilon] (Mean = 0.781[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_x_0_y_z[](['GSL 2.1:] Max = 1.29[epsilon] (Mean = 0.527[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_x_y_or_y_z_or_x_z[](['GSL 2.1:] Max = 2.89[epsilon] (Mean = 0.749[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_x_y_z[](['GSL 2.1:] Max = 0.999[epsilon] (Mean = 0.34[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_Random_data[](['GSL 2.1:] Max = 2.73[epsilon] (Mean = 0.804[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_one_value_zero[][role blue Max = 2.14[epsilon] (Mean = 0.722[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_two_values_the_same[][role blue Max = 1.51[epsilon] (Mean = 0.404[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_All_values_the_same_or_zero[][role blue Max = 0.992[epsilon] (Mean = 0.288[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_two_values_0[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_Random_Data[][role blue Max = 3.95[epsilon] (Mean = 0.951[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_0[][role blue Max = 2.79[epsilon] (Mean = 0.883[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_y_z[][role blue Max = 0.998[epsilon] (Mean = 0.387[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_0_y_z[][role blue Max = 1.19[epsilon] (Mean = 0.522[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_y[][role blue Max = 2.85[epsilon] (Mean = 0.865[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_y_z[][role blue Max = 2.65[epsilon] (Mean = 0.82[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_Random_data[][role blue Max = 2.73[epsilon] (Mean = 0.831[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_Equal_z_and_p[][role blue Max = 17.2[epsilon] (Mean = 1.16[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_2_Equal_Values[][role blue Max = 220[epsilon] (Mean = 6.64[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_3_Equal_Values[][role blue Max = 20.8[epsilon] (Mean = 0.986[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_4_Equal_Values[][role blue Max = 0.998[epsilon] (Mean = 0.387[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_Random_data[][role blue Max = 186[epsilon] (Mean = 6.67[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rc_boost_RC_Random_data[][role blue Max = 0.995[epsilon] (Mean = 0.433[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_z_0[][role blue Max = 1.7[epsilon] (Mean = 0.539[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_x_0_y_z[][role blue Max = 0.894[epsilon] (Mean = 0.338[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_x_y_or_y_z_or_x_z[][role blue Max = 1.95[epsilon] (Mean = 0.418[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_x_y_z[][role blue Max = 0.991[epsilon] (Mean = 0.345[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_Random_data[][role blue Max = 2.54[epsilon] (Mean = 0.674[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_one_value_zero[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_two_values_the_same[][role blue Max = 0.594[epsilon] (Mean = 0.0103[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_All_values_the_same_or_zero[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_two_values_0[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_Random_Data[][role blue Max = 0.983[epsilon] (Mean = 0.0172[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_0[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_y_z[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_0_y_z[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_y[][role blue Max = 0.824[epsilon] (Mean = 0.0272[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_y_z[][role blue Max = 0.896[epsilon] (Mean = 0.022[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_Random_data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_Equal_z_and_p[][role blue Max = 0.742[epsilon] (Mean = 0.0166[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_2_Equal_Values[][role blue Max = 0.6[epsilon] (Mean = 0.0228[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_3_Equal_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_4_Equal_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_Random_data[][role blue Max = 0.52[epsilon] (Mean = 0.0184[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rc_boost_RC_Random_data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_z_0[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_x_0_y_z[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_x_y_or_y_z_or_x_z[][role blue Max = 0.536[epsilon] (Mean = 0.00658[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_x_y_z[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_Random_data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cbrt__math_h__cbrt_Function[](['<math.h>:] Max = 1.34[epsilon] (Mean = 0.471[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cbrt__cmath__cbrt_Function[](['<cmath>:] Max = 1.34[epsilon] (Mean = 0.471[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_cbrt_boost_cbrt_Function[][role blue Max = 1.34[epsilon] (Mean = 0.471[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cbrt_boost_cbrt_Function[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Half_integer_arguments[](['GSL 2.1:] Max = 1.09[epsilon] (Mean = 0.531[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Integer_arguments[](['GSL 2.1:] Max = 1.18[epsilon] (Mean = 0.607[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Values_near_0[](['GSL 2.1:] Max = 0.866[epsilon] (Mean = 0.387[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Negative_Values[](['GSL 2.1:] Max = 4.56e+04[epsilon] (Mean = 3.91e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Near_Zero[](['GSL 2.1:] Max = 0.953[epsilon] (Mean = 0.348[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Near_the_Positive_Root[](['GSL 2.1:] Max = 135[epsilon] (Mean = 11.9[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Large_Values[](['GSL 2.1:] Max = 1.84[epsilon] (Mean = 0.71[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Half_integer_arguments[][role blue Max = 0.906[epsilon] (Mean = 0.409[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Integer_arguments[][role blue Max = 0.888[epsilon] (Mean = 0.403[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Values_near_0[][role blue Max = 1[epsilon] (Mean = 0.592[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Negative_Values[][role blue Max = 180[epsilon] (Mean = 13[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Near_Zero[][role blue Max = 0.984[epsilon] (Mean = 0.361[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Near_the_Positive_Root[][role blue Max = 1.37[epsilon] (Mean = 0.477[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Large_Values[][role blue Max = 1.39[epsilon] (Mean = 0.413[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Half_integer_arguments[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Integer_arguments[][role blue Max = 0.992[epsilon] (Mean = 0.215[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Values_near_0[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Negative_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Near_Zero[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Near_the_Positive_Root[][role blue Max = 0.891[epsilon] (Mean = 0.0995[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Large_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_1_complete__GSL_2_1_Elliptic_Integral_K_Random_Data[](['GSL 2.1:] Max = 2.32[epsilon] (Mean = 0.688[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_1_complete__GSL_2_1_Elliptic_Integral_K_Mathworld_Data[](['GSL 2.1:] Max = 0.623[epsilon] (Mean = 0.393[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_1_GSL_2_1_Elliptic_Integral_F_Random_Data[](['GSL 2.1:] Max = 2.99[epsilon] (Mean = 0.797[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_1_GSL_2_1_Elliptic_Integral_F_Mathworld_Data[](['GSL 2.1:] Max = 0.919[epsilon] (Mean = 0.544[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data[][role blue Max = 1.27[epsilon] (Mean = 0.473[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data[][role blue Max = 0.887[epsilon] (Mean = 0.296[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_1_boost_Elliptic_Integral_F_Random_Data[][role blue Max = 1.57[epsilon] (Mean = 0.56[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data[][role blue Max = 0.94[epsilon] (Mean = 0.509[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data[][role blue Max = 0.851[epsilon] (Mean = 0.0851[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_1_boost_Elliptic_Integral_F_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_1_complete___cmath__Elliptic_Integral_K_Random_Data[](['<cmath>:] Max = 2.19[epsilon] (Mean = 0.694[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_ellint_1_complete___cmath__Elliptic_Integral_K_Mathworld_Data[](['<cmath>:] Max = 1.19[epsilon] (Mean = 0.765[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Random_Data[](['<cmath>:] Max = 2.56[epsilon] (Mean = 0.816[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Mathworld_Data[](['<cmath>:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Mathworld_Data And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_ellint_2_GSL_2_1_Elliptic_Integral_E_Small_Angles[](['GSL 2.1:] Max = 0.5[epsilon] (Mean = 0.118[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Random_Data[](['GSL 2.1:] Max = 4.34[epsilon] (Mean = 1.18[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Mathworld_Data[](['GSL 2.1:] Max = 3.09[epsilon] (Mean = 1.04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_ellint_2_GSL_2_1_Elliptic_Integral_E_Random_Data[](['GSL 2.1:] Max = 4.4[epsilon] (Mean = 1.16[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_2_GSL_2_1_Elliptic_Integral_E_Mathworld_Data[](['GSL 2.1:] Max = 0.63[epsilon] (Mean = 0.325[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Small_Angles[](['<cmath>:] Max = 2[epsilon] (Mean = 0.333[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_ellint_2_complete___cmath__Elliptic_Integral_E_Random_Data[](['<cmath>:] Max = 2.49e+04[epsilon] (Mean = 3.39e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_ellint_2_complete___cmath__Elliptic_Integral_E_Mathworld_Data[](['<cmath>:] Max = 170[epsilon] (Mean = 55.1[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Random_Data[](['<cmath>:] Max = 3.08e+04[epsilon] (Mean = 3.84e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Mathworld_Data[](['<cmath>:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Mathworld_Data And other failures.])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles[][role blue Max = 1[epsilon] (Mean = 0.283[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data[][role blue Max = 1.97[epsilon] (Mean = 0.629[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 0.836[epsilon] (Mean = 0.469[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_2_boost_Elliptic_Integral_E_Random_Data[][role blue Max = 2.05[epsilon] (Mean = 0.632[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 0.656[epsilon] (Mean = 0.317[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_2_boost_Elliptic_Integral_E_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Random_Data[](['GSL 2.1:] Max = 24[epsilon] (Mean = 2.99[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Mathworld_Data[](['GSL 2.1:] Max = 6.33e+04[epsilon] (Mean = 1.54e+04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Large_Random_Data[](['GSL 2.1:] Max = 40.1[epsilon] (Mean = 7.77[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Random_Data[](['GSL 2.1:] Max = 633[epsilon] (Mean = 50.1[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Mathworld_Data[](['GSL 2.1:] Max = 1.48e+05[epsilon] (Mean = 2.54e+04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data[][role blue Max = 2.45[epsilon] (Mean = 0.696[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data[][role blue Max = 1.4[epsilon] (Mean = 0.575[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data[][role blue Max = 3.7[epsilon] (Mean = 0.893[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data[][role blue Max = 4.54[epsilon] (Mean = 0.895[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data[][role blue Max = 475[epsilon] (Mean = 86.3[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data[][role blue Max = 0.557[epsilon] (Mean = 0.0389[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Random_Data[](['<cmath>:] [role red Max = 8.78e+20[epsilon] (Mean = 1.02e+20[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Random_Data And other failures.])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Mathworld_Data[](['<cmath>:] [role red Max = 6.31e+20[epsilon] (Mean = 1.53e+20[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Mathworld_Data And other failures.])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Large_Random_Data[](['<cmath>:] [role red Max = 2.52e+18[epsilon] (Mean = 4.83e+17[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Large_Random_Data And other failures.])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Random_Data[](['<cmath>:] [role red Max = 3.37e+20[epsilon] (Mean = 3.47e+19[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Random_Data And other failures.])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Mathworld_Data[](['<cmath>:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Mathworld_Data And other failures.])]]
[template GNU_C_version_7_1_0_linux_double_ellint_d_GSL_2_1_Elliptic_Integral_D_Random_Data[](['GSL 2.1:] Max = 3.01[epsilon] (Mean = 0.928[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ellint_d_GSL_2_1_Elliptic_Integral_E_Mathworld_Data[](['GSL 2.1:] Max = 0.862[epsilon] (Mean = 0.568[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data[][role blue Max = 1.27[epsilon] (Mean = 0.334[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 1.27[epsilon] (Mean = 0.735[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_d_boost_Elliptic_Integral_D_Random_Data[][role blue Max = 2.51[epsilon] (Mean = 0.883[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 1.3[epsilon] (Mean = 0.813[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 0.637[epsilon] (Mean = 0.368[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_d_boost_Elliptic_Integral_D_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_erfc_GSL_2_1_Erf_Function_Large_Values[](['GSL 2.1:] Max = 3.9[epsilon] (Mean = 0.472[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_erf_GSL_2_1_Erf_Function_Large_Values[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_erfc_GSL_2_1_Erf_Function_Medium_Values[](['GSL 2.1:] Max = 2.64[epsilon] (Mean = 0.662[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_erf_GSL_2_1_Erf_Function_Medium_Values[](['GSL 2.1:] Max = 2.31[epsilon] (Mean = 0.368[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_erfc_GSL_2_1_Erf_Function_Small_Values[](['GSL 2.1:] Max = 1.01[epsilon] (Mean = 0.485[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_erf_GSL_2_1_Erf_Function_Small_Values[](['GSL 2.1:] Max = 2.06[epsilon] (Mean = 0.319[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_erfc__math_h__Erf_Function_Large_Values[](['<math.h>:] Max = 1.26[epsilon] (Mean = 0.441[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_erf__math_h__Erf_Function_Large_Values[](['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_erfc__math_h__Erf_Function_Medium_Values[](['<math.h>:] Max = 1.35[epsilon] (Mean = 0.307[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_erf__math_h__Erf_Function_Medium_Values[](['<math.h>:] Max = 0.921[epsilon] (Mean = 0.0723[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_erfc__math_h__Erf_Function_Small_Values[](['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_erf__math_h__Erf_Function_Small_Values[](['<math.h>:] Max = 0.944[epsilon] (Mean = 0.191[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_erfc_inv_boost_Inverse_Erfc_Function_extreme_values[][role blue Max = 1.62[epsilon] (Mean = 0.383[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_erfc_inv_boost_Inverse_Erfc_Function[][role blue Max = 0.996[epsilon] (Mean = 0.397[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_erf_inv_boost_Inverse_Erf_Function[][role blue Max = 0.996[epsilon] (Mean = 0.389[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_erfc_boost_Erf_Function_Large_Values[][role blue Max = 1.57[epsilon] (Mean = 0.542[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_erf_boost_Erf_Function_Large_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_erfc_boost_Erf_Function_Medium_Values[][role blue Max = 1.76[epsilon] (Mean = 0.365[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_erf_boost_Erf_Function_Medium_Values[][role blue Max = 1.5[epsilon] (Mean = 0.193[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_erfc_boost_Erf_Function_Small_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_erf_boost_Erf_Function_Small_Values[][role blue Max = 0.925[epsilon] (Mean = 0.193[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_erfc_inv_boost_Inverse_Erfc_Function[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_erf_inv_boost_Inverse_Erf_Function[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_erfc_boost_Erf_Function_Large_Values[][role blue Max = 0.868[epsilon] (Mean = 0.147[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_erf_boost_Erf_Function_Large_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_erfc_boost_Erf_Function_Medium_Values[][role blue Max = 0.983[epsilon] (Mean = 0.213[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_erf_boost_Erf_Function_Medium_Values[][role blue Max = 1[epsilon] (Mean = 0.119[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_erfc_boost_Erf_Function_Small_Values[][role blue Max = 0.658[epsilon] (Mean = 0.0537[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_erf_boost_Erf_Function_Small_Values[][role blue Max = 0.841[epsilon] (Mean = 0.0687[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_erfc__cmath__Erf_Function_Large_Values[](['<cmath>:] Max = 1.26[epsilon] (Mean = 0.441[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_erf__cmath__Erf_Function_Large_Values[](['<cmath>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_erfc__cmath__Erf_Function_Medium_Values[](['<cmath>:] Max = 1.35[epsilon] (Mean = 0.307[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_erf__cmath__Erf_Function_Medium_Values[](['<cmath>:] Max = 0.921[epsilon] (Mean = 0.0723[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_erfc__cmath__Erf_Function_Small_Values[](['<cmath>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_erf__cmath__Erf_Function_Small_Values[](['<cmath>:] Max = 0.944[epsilon] (Mean = 0.191[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_expint_Ei__GSL_2_1_Exponential_Integral_Ei_double_exponent_range[](['GSL 2.1:] Max = 1.5[epsilon] (Mean = 0.612[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_expint_Ei__GSL_2_1_Exponential_Integral_Ei[](['GSL 2.1:] Max = 8.96[epsilon] (Mean = 0.703[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_expint_En__GSL_2_1_Exponential_Integral_E1[](['GSL 2.1:] Max = 0.988[epsilon] (Mean = 0.469[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_expint_En__GSL_2_1_Exponential_Integral_En_small_z_values[](['GSL 2.1:] Max = 115[epsilon] (Mean = 23.6[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_expint_En__GSL_2_1_Exponential_Integral_En[](['GSL 2.1:] Max = 58.5[epsilon] (Mean = 17.1[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_expint_Ei__boost_Exponential_Integral_Ei_long_exponent_range[][role blue Max = 1.98[epsilon] (Mean = 0.595[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range[][role blue Max = 1.72[epsilon] (Mean = 0.593[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_expint_Ei__boost_Exponential_Integral_Ei[][role blue Max = 5.05[epsilon] (Mean = 0.821[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_expint_En__boost_Exponential_Integral_E1[][role blue Max = 0.965[epsilon] (Mean = 0.414[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_expint_En__boost_Exponential_Integral_En_small_z_values[][role blue Max = 1.99[epsilon] (Mean = 0.559[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_expint_En__boost_Exponential_Integral_En[][role blue Max = 9.97[epsilon] (Mean = 2.13[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range[][role blue Max = 0.998[epsilon] (Mean = 0.156[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_expint_Ei__boost_Exponential_Integral_Ei[][role blue Max = 0.994[epsilon] (Mean = 0.142[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_expint_En__boost_Exponential_Integral_E1[][role blue Max = 0.556[epsilon] (Mean = 0.0625[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_expint_En__boost_Exponential_Integral_En_small_z_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_expint_En__boost_Exponential_Integral_En[][role blue Max = 0.589[epsilon] (Mean = 0.0331[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei_long_exponent_range[](['<cmath>:] Max = 1.93[epsilon] (Mean = 0.855[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei_double_exponent_range[](['<cmath>:] Max = 3.11[epsilon] (Mean = 1.13[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei[](['<cmath>:] Max = 14.1[epsilon] (Mean = 2.43[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei And other failures.])]
[template GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_55[](['Rmath 3.2.3:] Max = 250[epsilon] (Mean = 60.9[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_55[](['Rmath 3.2.3:] Max = 3.89e+04[epsilon] (Mean = 9.52e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_10[](['Rmath 3.2.3:] Max = 4.22[epsilon] (Mean = 1.26[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_10[](['Rmath 3.2.3:] Max = 34.9[epsilon] (Mean = 9.2[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_2[](['Rmath 3.2.3:] Max = 2.63e+05[epsilon] (Mean = 5.84e+04[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_2[](['Rmath 3.2.3:] Max = 1[epsilon] (Mean = 0.191[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_1[](['Rmath 3.2.3:] Max = 7.99e+04[epsilon] (Mean = 1.68e+04[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_1[](['Rmath 3.2.3:] Max = 1[epsilon] (Mean = 0.32[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_0[](['Rmath 3.2.3:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_0[](['Rmath 3.2.3:] Max = 1[epsilon] (Mean = 0.335[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_factorials[](['Rmath 3.2.3:] Max = 1.55[epsilon] (Mean = 0.592[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_factorials[](['Rmath 3.2.3:] Max = 314[epsilon] (Mean = 93.4[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_55[](['GSL 2.1:] Max = 7.02[epsilon] (Mean = 1.47[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_55[](['GSL 2.1:] Max = 1.8[epsilon] (Mean = 0.782[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_10[](['GSL 2.1:] Max = 24.9[epsilon] (Mean = 4.6[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_10[](['GSL 2.1:] Max = 2.6[epsilon] (Mean = 1.05[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_2[](['GSL 2.1:] Max = 1.17e+03[epsilon] (Mean = 274[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_2[](['GSL 2.1:] Max = 7.95[epsilon] (Mean = 3.12[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_1[](['GSL 2.1:] Max = 442[epsilon] (Mean = 88.8[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_1[](['GSL 2.1:] Max = 4.41[epsilon] (Mean = 1.81[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_0[](['GSL 2.1:] Max = 5.21[epsilon] (Mean = 1.57[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_0[](['GSL 2.1:] Max = 4.51[epsilon] (Mean = 1.92[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_factorials[](['GSL 2.1:] Max = 33.6[epsilon] (Mean = 2.78[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_factorials[](['GSL 2.1:] Max = 3.95[epsilon] (Mean = 0.783[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_55[](['<math.h>:] Max = 1.58[epsilon] (Mean = 0.672[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_55[](['<math.h>:] Max = 1.79[epsilon] (Mean = 0.75[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_10[](['<math.h>:] Max = 0.997[epsilon] (Mean = 0.412[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_10[](['<math.h>:] Max = 2.26[epsilon] (Mean = 1.08[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_2[](['<math.h>:] Max = 0.741[epsilon] (Mean = 0.263[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_2[](['<math.h>:] Max = 0.558[epsilon] (Mean = 0.298[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_1[](['<math.h>:] Max = 0.615[epsilon] (Mean = 0.096[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_1[](['<math.h>:] Max = 0.918[epsilon] (Mean = 0.203[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_0[](['<math.h>:] Max = 0.964[epsilon] (Mean = 0.543[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_0[](['<math.h>:] Max = 1[epsilon] (Mean = 0.376[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__factorials[](['<math.h>:] Max = 1.67[epsilon] (Mean = 0.487[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__factorials[](['<math.h>:] Max = 1.66[epsilon] (Mean = 0.584[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_55[](['<cmath>:] Max = 1.58[epsilon] (Mean = 0.672[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_55[](['<cmath>:] Max = 1.79[epsilon] (Mean = 0.75[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_10[](['<cmath>:] Max = 0.997[epsilon] (Mean = 0.412[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_10[](['<cmath>:] Max = 2.26[epsilon] (Mean = 1.08[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_2[](['<cmath>:] Max = 0.741[epsilon] (Mean = 0.263[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_2[](['<cmath>:] Max = 0.558[epsilon] (Mean = 0.298[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_1[](['<cmath>:] Max = 0.615[epsilon] (Mean = 0.096[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_1[](['<cmath>:] Max = 0.918[epsilon] (Mean = 0.203[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_0[](['<cmath>:] Max = 0.964[epsilon] (Mean = 0.543[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_0[](['<cmath>:] Max = 1[epsilon] (Mean = 0.376[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__factorials[](['<cmath>:] Max = 1.67[epsilon] (Mean = 0.487[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__factorials[](['<cmath>:] Max = 1.66[epsilon] (Mean = 0.584[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_tgamma1pm1_boost_tgamma1pm1_dz_[][role blue Max = 1.12[epsilon] (Mean = 0.49[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_55[][role blue Max = 0.821[epsilon] (Mean = 0.513[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_55[][role blue Max = 2.69[epsilon] (Mean = 1.09[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_10[][role blue Max = 3.81[epsilon] (Mean = 1.01[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_10[][role blue Max = 1.75[epsilon] (Mean = 0.895[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_2[][role blue Max = 0.878[epsilon] (Mean = 0.242[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_2[][role blue Max = 4.1[epsilon] (Mean = 1.55[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_1[][role blue Max = 0.948[epsilon] (Mean = 0.36[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_1[][role blue Max = 2.51[epsilon] (Mean = 1.02[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_0[][role blue Max = 1.42[epsilon] (Mean = 0.566[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_0[][role blue Max = 2[epsilon] (Mean = 0.608[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_lgamma_boost_factorials[][role blue Max = 0.991[epsilon] (Mean = 0.308[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_boost_factorials[][role blue Max = 2.67[epsilon] (Mean = 0.617[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma1pm1_boost_tgamma1pm1_dz_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_lgamma_boost_near_55[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_boost_near_55[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_lgamma_boost_near_10[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_boost_near_10[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_lgamma_boost_near_2[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_boost_near_2[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_lgamma_boost_near_1[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_boost_near_1[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_lgamma_boost_near_0[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_boost_near_0[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_lgamma_boost_factorials[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_boost_factorials[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_hermite_boost_Hermite_Polynomials[][role blue Max = 6.24[epsilon] (Mean = 2.07[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_hermite_boost_Hermite_Polynomials[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data[][role blue Max = 3.82[epsilon] (Mean = 0.609[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[][role blue Max = 1.89[epsilon] (Mean = 0.887[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Small_Integer_Values[](['GSL 2.1:] Max = 254[epsilon] (Mean = 50.9[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Large_and_Diverse_Values[](['GSL 2.1:] Max = 3.9e+05[epsilon] (Mean = 1.82e+04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Large_and_Diverse_Values And other failures.])]
[template GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Medium_Values[](['GSL 2.1:] Max = 690[epsilon] (Mean = 151[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Small_Values[](['GSL 2.1:] Max = 682[epsilon] (Mean = 32.6[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 5.34[epsilon] (Mean = 1.11[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 4.45[epsilon] (Mean = 0.814[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 11.1[epsilon] (Mean = 3.65[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 11.6[epsilon] (Mean = 3.6[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 3.45e+04[epsilon] (Mean = 1.32e+03[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 1.96e+04[epsilon] (Mean = 997[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 1.05e+05[epsilon] (Mean = 5.45e+03[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 6.84e+04[epsilon] (Mean = 2.76e+03[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 73.9[epsilon] (Mean = 11.2[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 50[epsilon] (Mean = 12.1[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 63.5[epsilon] (Mean = 13.5[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 69.2[epsilon] (Mean = 13.4[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 10.6[epsilon] (Mean = 2.22[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 8.97[epsilon] (Mean = 2.09[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 9.92[epsilon] (Mean = 2.3[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 11.1[epsilon] (Mean = 2.32[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 0.586[epsilon] (Mean = 0.0314[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 0.786[epsilon] (Mean = 0.0323[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 0.981[epsilon] (Mean = 0.0573[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 1.26[epsilon] (Mean = 0.063[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 1.12[epsilon] (Mean = 0.0458[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 0.999[epsilon] (Mean = 0.0325[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 0.949[epsilon] (Mean = 0.098[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 0.568[epsilon] (Mean = 0.0254[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 0.676[epsilon] (Mean = 0.0302[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ibetac_inv_boost_Inverse_incomplete_beta[][role blue Max = 4.88e+04[epsilon] (Mean = 3.16e+03[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ibeta_inv_boost_Inverse_incomplete_beta[][role blue Max = 3.8e+04[epsilon] (Mean = 2.66e+03[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibetac_inv_boost_Inverse_incomplete_beta[][role blue Max = 0.977[epsilon] (Mean = 0.0976[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibeta_inv_boost_Inverse_incomplete_beta[][role blue Max = 11[epsilon] (Mean = 0.345[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ibetac_invb_boost_Inverse_incomplete_beta[][role blue Max = 317[epsilon] (Mean = 19.8[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ibeta_invb_boost_Inverse_incomplete_beta[][role blue Max = 407[epsilon] (Mean = 27.2[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ibetac_inva_boost_Inverse_incomplete_beta[][role blue Max = 382[epsilon] (Mean = 22.2[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_ibeta_inva_boost_Inverse_incomplete_beta[][role blue Max = 377[epsilon] (Mean = 24.4[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibetac_invb_boost_Inverse_incomplete_beta[][role blue Max = 0.724[epsilon] (Mean = 0.0303[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibeta_invb_boost_Inverse_incomplete_beta[][role blue Max = 0.765[epsilon] (Mean = 0.0422[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibetac_inva_boost_Inverse_incomplete_beta[][role blue Max = 0.683[epsilon] (Mean = 0.0314[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_ibeta_inva_boost_Inverse_incomplete_beta[][role blue Max = 0.602[epsilon] (Mean = 0.0239[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_integer_and_half_integer_values[](['GSL 2.1:] Max = 128[epsilon] (Mean = 22.6[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_integer_and_half_integer_values[](['GSL 2.1:] Max = 118[epsilon] (Mean = 12.5[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_lower_GSL_2_1_tgamma_a_z_integer_and_half_integer_values[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_incomplete__GSL_2_1_tgamma_a_z_integer_and_half_integer_values[](['GSL 2.1:] Max = 117[epsilon] (Mean = 12.5[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_large_values[](['GSL 2.1:] Max = 1.02e+03[epsilon] (Mean = 105[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_large_values[](['GSL 2.1:] Max = 2.71e+04[epsilon] (Mean = 2.16e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_small_values[](['GSL 2.1:] Max = 4.82[epsilon] (Mean = 0.758[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_small_values[](['GSL 2.1:] [role red Max = 1.38e+10[epsilon] (Mean = 1.05e+09[epsilon]))]]
[template GNU_C_version_7_1_0_linux_double_tgamma_lower_GSL_2_1_tgamma_a_z_small_values[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_incomplete__GSL_2_1_tgamma_a_z_small_values[](['GSL 2.1:] [role red Max = 1.38e+10[epsilon] (Mean = 1.05e+09[epsilon]))]]
[template GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_medium_values[](['GSL 2.1:] Max = 342[epsilon] (Mean = 45.8[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_medium_values[](['GSL 2.1:] Max = 201[epsilon] (Mean = 13.5[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_lower_GSL_2_1_tgamma_a_z_medium_values[](['GSL 2.1:] Max = 0.833[epsilon] (Mean = 0.0315[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_tgamma_incomplete__GSL_2_1_tgamma_a_z_medium_values[](['GSL 2.1:] Max = 200[epsilon] (Mean = 13.3[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 11.8[epsilon] (Mean = 2.66[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 11.1[epsilon] (Mean = 2.07[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 4.83[epsilon] (Mean = 1.15[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 5.52[epsilon] (Mean = 1.48[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_large_values[][role blue Max = 3.08e+04[epsilon] (Mean = 1.86e+03[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_large_values[][role blue Max = 6.82e+03[epsilon] (Mean = 414[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_small_values[][role blue Max = 2[epsilon] (Mean = 0.464[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_small_values[][role blue Max = 2.45[epsilon] (Mean = 0.885[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_lower_boost_tgamma_a_z_small_values[][role blue Max = 1.97[epsilon] (Mean = 0.555[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_incomplete__boost_tgamma_a_z_small_values[][role blue Max = 2.31[epsilon] (Mean = 0.775[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_medium_values[][role blue Max = 41.6[epsilon] (Mean = 8.09[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_medium_values[][role blue Max = 32.3[epsilon] (Mean = 6.61[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_lower_boost_tgamma_a_z_medium_values[][role blue Max = 6.79[epsilon] (Mean = 1.46[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_incomplete__boost_tgamma_a_z_medium_values[][role blue Max = 8.47[epsilon] (Mean = 1.9[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_large_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_large_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_small_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_small_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_lower_boost_tgamma_a_z_small_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_incomplete__boost_tgamma_a_z_small_values[][role blue Max = 0.753[epsilon] (Mean = 0.0474[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_medium_values[][role blue Max = 0.955[epsilon] (Mean = 0.05[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_medium_values[][role blue Max = 0.927[epsilon] (Mean = 0.035[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_lower_boost_tgamma_a_z_medium_values[][role blue Max = 0.833[epsilon] (Mean = 0.0315[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_incomplete__boost_tgamma_a_z_medium_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values[][role blue Max = 8.28e+03[epsilon] (Mean = 1.09e+03[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values[][role blue Max = 9.17e+03[epsilon] (Mean = 1.45e+03[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values[][role blue Max = 0.509[epsilon] (Mean = 0.0447[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values[][role blue Max = 6.2[epsilon] (Mean = 0.627[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values[][role blue Max = 1.8[epsilon] (Mean = 0.406[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values[][role blue Max = 292[epsilon] (Mean = 36.4[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values[][role blue Max = 441[epsilon] (Mean = 53.9[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values[][role blue Max = 0.894[epsilon] (Mean = 0.0915[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values[][role blue Max = 0.912[epsilon] (Mean = 0.154[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values[][role blue Max = 0.993[epsilon] (Mean = 0.15[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_q_inva_boost_Incomplete_gamma_inverses_[][role blue Max = 8.42[epsilon] (Mean = 1.3[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_gamma_p_inva_boost_Incomplete_gamma_inverses_[][role blue Max = 7.87[epsilon] (Mean = 1.15[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_q_inva_boost_Incomplete_gamma_inverses_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_gamma_p_inva_boost_Incomplete_gamma_inverses_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Large_Phi[](['GSL 2.1:] Max = 121[epsilon] (Mean = 22[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Large_Phi[](['GSL 2.1:] Max = 5.92e+03[epsilon] (Mean = 477[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Large_Phi[](['GSL 2.1:] Max = 4.54e+04[epsilon] (Mean = 2.63e+03[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1 And other failures.])]
[template GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1 And other failures.])]
[template GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1 And other failures.])]
[template GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values[](['GSL 2.1:] Max = 1.5[epsilon] (Mean = 0.391[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values And other failures.])]
[template GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values[](['GSL 2.1:] Max = 55.2[epsilon] (Mean = 1.64[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values And other failures.])]
[template GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values[](['GSL 2.1:] Max = 11.7[epsilon] (Mean = 1.65[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values And other failures.])]
[template GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Data[](['GSL 2.1:] Max = 3[epsilon] (Mean = 0.61[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Data[](['GSL 2.1:] Max = 2.43[epsilon] (Mean = 0.803[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Data[](['GSL 2.1:] Max = 4.02[epsilon] (Mean = 1.07[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data[](['GSL 2.1:] Max = 2.82[epsilon] (Mean = 1.18[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data[](['GSL 2.1:] Max = 17.3[epsilon] (Mean = 4.29[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data[](['GSL 2.1:] Max = 588[epsilon] (Mean = 146[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data And other failures.])]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi[][role blue Max = 2.82e+04[epsilon] (Mean = 1.79e+03[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi[][role blue Max = 2.97e+04[epsilon] (Mean = 1.9e+03[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi[][role blue Max = 2.45e+04[epsilon] (Mean = 1.51e+03[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1[][role blue Max = 3.75e+03[epsilon] (Mean = 293[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1[][role blue Max = 675[epsilon] (Mean = 87.1[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1[][role blue Max = 109[epsilon] (Mean = 7.35[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values[][role blue Max = 22.4[epsilon] (Mean = 0.777[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values[][role blue Max = 10.4[epsilon] (Mean = 0.594[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values[][role blue Max = 1.99[epsilon] (Mean = 0.347[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data[][role blue Max = 1.53[epsilon] (Mean = 0.473[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data[][role blue Max = 1.68[epsilon] (Mean = 0.443[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data[][role blue Max = 2.01[epsilon] (Mean = 0.584[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data[][role blue Max = 49[epsilon] (Mean = 14[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data[][role blue Max = 71.6[epsilon] (Mean = 19.3[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data[][role blue Max = 341[epsilon] (Mean = 80.7[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi[][role blue Max = 14.1[epsilon] (Mean = 0.897[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi[][role blue Max = 14.2[epsilon] (Mean = 0.927[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi[][role blue Max = 12[epsilon] (Mean = 0.771[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1[][role blue Max = 2.28[epsilon] (Mean = 0.194[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1[][role blue Max = 0.919[epsilon] (Mean = 0.127[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values[][role blue Max = 0.5[epsilon] (Mean = 0.0122[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data[][role blue Max = 0.816[epsilon] (Mean = 0.0563[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values[][role blue Max = 2.92[epsilon] (Mean = 0.951[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data[][role blue Max = 2.99[epsilon] (Mean = 0.824[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[][role blue Max = 1.66[epsilon] (Mean = 0.48[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_laguerre_n_m_x__GSL_2_1_Associated_Laguerre_Polynomials[](['GSL 2.1:] Max = 434[epsilon] (Mean = 10.7[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_laguerre_n_x__GSL_2_1_Laguerre_Polynomials[](['GSL 2.1:] Max = 3.1e+03[epsilon] (Mean = 185[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_laguerre_n_m_x___cmath__Associated_Laguerre_Polynomials[](['<cmath>:] Max = 206[epsilon] (Mean = 6.86[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_laguerre_n_x___cmath__Laguerre_Polynomials[](['<cmath>:] Max = 4.2e+03[epsilon] (Mean = 251[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials[][role blue Max = 167[epsilon] (Mean = 6.38[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_laguerre_n_x__boost_Laguerre_Polynomials[][role blue Max = 1.39e+04[epsilon] (Mean = 828[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials[][role blue Max = 0.84[epsilon] (Mean = 0.0358[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_laguerre_n_x__boost_Laguerre_Polynomials[][role blue Max = 6.82[epsilon] (Mean = 0.408[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_expm1__math_h__Random_test_data[](['<math.h>:] Max = 0.992[epsilon] (Mean = 0.402[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_log1p__math_h__Random_test_data[](['<math.h>:] Max = 0.818[epsilon] (Mean = 0.227[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_expm1_boost_Random_test_data[][role blue Max = 0.992[epsilon] (Mean = 0.402[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_log1p_boost_Random_test_data[][role blue Max = 0.818[epsilon] (Mean = 0.227[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_expm1_boost_Random_test_data[][role blue Max = 0.793[epsilon] (Mean = 0.126[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_log1p_boost_Random_test_data[][role blue Max = 0.846[epsilon] (Mean = 0.153[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_expm1__cmath__Random_test_data[](['<cmath>:] Max = 0.992[epsilon] (Mean = 0.402[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_log1p__cmath__Random_test_data[](['<cmath>:] Max = 0.818[epsilon] (Mean = 0.227[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters[][role blue Max = 6.83e+03[epsilon] (Mean = 993[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters[][role blue Max = 2.5e+04[epsilon] (Mean = 3.78e+03[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters[][role blue Max = 396[epsilon] (Mean = 50.7[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters[][role blue Max = 824[epsilon] (Mean = 27.4[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters[][role blue Max = 0.986[epsilon] (Mean = 0.188[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters[][role blue Max = 1.18[epsilon] (Mean = 0.175[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters[][role blue Max = 0.998[epsilon] (Mean = 0.0936[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters[][role blue Max = 0.998[epsilon] (Mean = 0.0649[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters[][role blue Max = 5.02e+03[epsilon] (Mean = 630[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters[][role blue Max = 3.07e+03[epsilon] (Mean = 336[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters[][role blue Max = 107[epsilon] (Mean = 17.2[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters[][role blue Max = 46.5[epsilon] (Mean = 10.3[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters[][role blue Max = 2.11[epsilon] (Mean = 0.278[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters[][role blue Max = 1.07[epsilon] (Mean = 0.102[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters[][role blue Max = 0.96[epsilon] (Mean = 0.0635[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters[][role blue Max = 0.99[epsilon] (Mean = 0.0544[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_[][role blue Max = 9.79e+05[epsilon] (Mean = 1.97e+05[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_[][role blue Max = 5.26e+05[epsilon] (Mean = 1.48e+05[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_[][role blue Max = 10.5[epsilon] (Mean = 2.13[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_[][role blue Max = 3.86[epsilon] (Mean = 1.4[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_complement_boost_Non_Central_T[][role blue Max = 201[epsilon] (Mean = 31.7[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_boost_Non_Central_T[][role blue Max = 139[epsilon] (Mean = 31[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_[][role blue Max = 478[epsilon] (Mean = 96.3[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_[][role blue Max = 257[epsilon] (Mean = 72.1[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_boost_Non_Central_T[][role blue Max = 0.707[epsilon] (Mean = 0.0497[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_boost_Non_Central_T[][role blue Max = 0.796[epsilon] (Mean = 0.0691[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_owens_t_boost_Owens_T_large_and_diverse_values_[][role blue Max = 49[epsilon] (Mean = 2.16[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_owens_t_boost_Owens_T_medium_small_values_[][role blue Max = 3.34[epsilon] (Mean = 0.944[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_owens_t_boost_Owens_T_large_and_diverse_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_owens_t_boost_Owens_T_medium_small_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_Large_orders_and_other_bug_cases[](['GSL 2.1:] Max = 151[epsilon] (Mean = 39.3[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_Large_orders_and_other_bug_cases And other failures.])]
[template GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_small_arguments[](['GSL 2.1:] Max = 15.2[epsilon] (Mean = 5.03[epsilon]))]
[template GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_negative_arguments[](['GSL 2.1:] Max = 1.79[epsilon] (Mean = 0.197[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_negative_arguments And other failures.])]
[template GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_negative_arguments[](['GSL 2.1:] Max = 36.6[epsilon] (Mean = 3.04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_negative_arguments And other failures.])]
[template GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_arguments[](['GSL 2.1:] Max = 244[epsilon] (Mean = 32.8[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_arguments And other failures.])]
[template GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data[](['GSL 2.1:] Max = 62.9[epsilon] (Mean = 12.8[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases[][role blue Max = 54.5[epsilon] (Mean = 13.3[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_small_arguments[][role blue Max = 3.33[epsilon] (Mean = 0.75[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_large_negative_arguments[][role blue Max = 155[epsilon] (Mean = 96.4[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_negative_arguments[][role blue Max = 269[epsilon] (Mean = 87.7[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_large_arguments[][role blue Max = 2.23[epsilon] (Mean = 0.323[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data[][role blue Max = 7.38[epsilon] (Mean = 1.84[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_small_arguments[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_large_negative_arguments[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_negative_arguments[][role blue Max = 0.516[epsilon] (Mean = 0.022[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_large_arguments[][role blue Max = 0.998[epsilon] (Mean = 0.0592[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data[][role blue Max = 0.824[epsilon] (Mean = 0.0574[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_boost_math_powm1_GSL_2_1_powm1[](['GSL 2.1:] Max = 1.06[epsilon] (Mean = 0.425[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_boost_math_powm1__math_h__powm1[](['<math.h>:] Max = 2.04[epsilon] (Mean = 0.493[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_boost_math_powm1_boost_powm1[][role blue Max = 2.04[epsilon] (Mean = 0.493[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_powm1_boost_powm1[][role blue Max = 2.04[epsilon] (Mean = 0.493[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_sqrt1pm1_boost_sqrt1pm1[][role blue Max = 1.33[epsilon] (Mean = 0.404[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_boost_math_powm1_boost_powm1[][role blue Max = 1.06[epsilon] (Mean = 0.425[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_powm1_boost_powm1[][role blue Max = 1.06[epsilon] (Mean = 0.425[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_sqrt1pm1_boost_sqrt1pm1[][role blue Max = 1.3[epsilon] (Mean = 0.404[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_boost_math_powm1__cmath__powm1[](['<cmath>:] Max = 2.04[epsilon] (Mean = 0.493[epsilon]))]
[template GNU_C_version_7_1_0_linux_long_double_spherical_harmonic_i_boost_Spherical_Harmonics[][role blue Max = 2.89e+03[epsilon] (Mean = 108[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_spherical_harmonic_r_boost_Spherical_Harmonics[][role blue Max = 2.89e+03[epsilon] (Mean = 108[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_spherical_harmonic_i_boost_Spherical_Harmonics[][role blue Max = 1.36[epsilon] (Mean = 0.0765[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_spherical_harmonic_r_boost_Spherical_Harmonics[][role blue Max = 1.58[epsilon] (Mean = 0.0707[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_ratio_boost_tgamma_ratios[][role blue Max = 2.99[epsilon] (Mean = 1.15[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_[][role blue Max = 0.853[epsilon] (Mean = 0.176[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios[][role blue Max = 0.997[epsilon] (Mean = 0.4[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_[][role blue Max = 1.62[epsilon] (Mean = 0.451[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios[][role blue Max = 1.96[epsilon] (Mean = 0.677[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_[][role blue Max = 7.94[epsilon] (Mean = 1.4[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios[][role blue Max = 5.83[epsilon] (Mean = 1.3[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_ratio_boost_tgamma_ratios[][role blue Max = 0.694[epsilon] (Mean = 0.0347[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_integer_tgamma_ratios[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[][role blue Max = 0.976[epsilon] (Mean = 0.28[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[][role blue Max = 0.976[epsilon] (Mean = 0.293[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_cos_pi_boost_sin_pi_and_cos_pi[][role blue Max = 0.991[epsilon] (Mean = 0.302[epsilon])]]
[template GNU_C_version_7_1_0_linux_long_double_sin_pi_boost_sin_pi_and_cos_pi[][role blue Max = 0.996[epsilon] (Mean = 0.335[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_cos_pi_boost_sin_pi_and_cos_pi[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[template GNU_C_version_7_1_0_linux_double_sin_pi_boost_sin_pi_and_cos_pi[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
[/tables:]
[template table_legendre_p_associated_[]
[table:table_legendre_p_associated_ Error rates for legendre_p (associated)
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Associated Legendre Polynomials: Small Values][[GNU_C_version_7_1_0_linux_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_legendre_p_associated__GSL_2_1_Associated_Legendre_Polynomials_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values][br][br][GNU_C_version_7_1_0_linux_long_double_legendre_p_associated___cmath__Associated_Legendre_Polynomials_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values]]]
]
]
[template table_legendre_q[]
[table:table_legendre_q Error rates for legendre_q
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Legendre Polynomials: Small Values][[GNU_C_version_7_1_0_linux_double_legendre_q_boost_Legendre_Polynomials_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_legendre_q_GSL_2_1_Legendre_Polynomials_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_legendre_q_boost_Legendre_Polynomials_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_q_boost_Legendre_Polynomials_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_legendre_q_boost_Legendre_Polynomials_Small_Values]]]
[[Legendre Polynomials: Large Values][[GNU_C_version_7_1_0_linux_double_legendre_q_boost_Legendre_Polynomials_Large_Values][br][br][GNU_C_version_7_1_0_linux_double_legendre_q_GSL_2_1_Legendre_Polynomials_Large_Values]][[GNU_C_version_7_1_0_linux_long_double_legendre_q_boost_Legendre_Polynomials_Large_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_q_boost_Legendre_Polynomials_Large_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_legendre_q_boost_Legendre_Polynomials_Large_Values]]]
]
]
[template table_legendre_p[]
[table:table_legendre_p Error rates for legendre_p
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Legendre Polynomials: Small Values][[GNU_C_version_7_1_0_linux_double_legendre_p_boost_Legendre_Polynomials_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_legendre_p_GSL_2_1_Legendre_Polynomials_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_legendre_p_boost_Legendre_Polynomials_Small_Values][br][br][GNU_C_version_7_1_0_linux_long_double_legendre_p__cmath__Legendre_Polynomials_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_p_boost_Legendre_Polynomials_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_legendre_p_boost_Legendre_Polynomials_Small_Values]]]
[[Legendre Polynomials: Large Values][[GNU_C_version_7_1_0_linux_double_legendre_p_boost_Legendre_Polynomials_Large_Values][br][br][GNU_C_version_7_1_0_linux_double_legendre_p_GSL_2_1_Legendre_Polynomials_Large_Values]][[GNU_C_version_7_1_0_linux_long_double_legendre_p_boost_Legendre_Polynomials_Large_Values][br][br][GNU_C_version_7_1_0_linux_long_double_legendre_p__cmath__Legendre_Polynomials_Large_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_p_boost_Legendre_Polynomials_Large_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_legendre_p_boost_Legendre_Polynomials_Large_Values]]]
]
]
[template table_trigamma[]
[table:table_trigamma Error rates for trigamma
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Mathematica Data][[GNU_C_version_7_1_0_linux_double_trigamma_boost_Mathematica_Data][br][br][GNU_C_version_7_1_0_linux_double_trigamma_GSL_2_1_Mathematica_Data][br][GNU_C_version_7_1_0_linux_double_trigamma_Rmath_3_2_3_Mathematica_Data]][[GNU_C_version_7_1_0_linux_long_double_trigamma_boost_Mathematica_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_trigamma_boost_Mathematica_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_trigamma_boost_Mathematica_Data]]]
]
]
[template table_zeta[]
[table:table_zeta Error rates for zeta
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Zeta: Random values greater than 1][[GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Random_values_greater_than_1][br][br][GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Random_values_greater_than_1]][[GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Random_values_greater_than_1][br][br][GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Random_values_greater_than_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Random_values_greater_than_1]][[Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Random_values_greater_than_1]]]
[[Zeta: Random values less than 1][[GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Random_values_less_than_1][br][br][GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Random_values_less_than_1]][[GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Random_values_less_than_1][br][br][GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Random_values_less_than_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Random_values_less_than_1]][[Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Random_values_less_than_1]]]
[[Zeta: Values close to and greater than 1][[GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1][br][br][GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Values_close_to_and_greater_than_1]][[GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1][br][br][GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Values_close_to_and_greater_than_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1]][[Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1]]]
[[Zeta: Values close to and less than 1][[GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Values_close_to_and_less_than_1][br][br][GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Values_close_to_and_less_than_1]][[GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Values_close_to_and_less_than_1][br][br][GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Values_close_to_and_less_than_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Values_close_to_and_less_than_1]][[Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Values_close_to_and_less_than_1]]]
[[Zeta: Integer arguments][[GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Integer_arguments][br][br][GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Integer_arguments]][[GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Integer_arguments][br][br][GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Integer_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Integer_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Integer_arguments]]]
]
]
[template table_cyl_bessel_i_integer_orders_[]
[table:table_cyl_bessel_i_integer_orders_ Error rates for cyl_bessel_i (integer orders)
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Bessel I0: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_I0_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_]]]
[[Bessel I1: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_I1_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_]]]
[[Bessel In: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_In_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_In_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_In_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_]]]
]
]
[template table_cyl_bessel_i[]
[table:table_cyl_bessel_i Error rates for cyl_bessel_i
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Bessel I0: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I0_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data]]]
[[Bessel I1: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I1_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data]]]
[[Bessel In: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data]]]
[[Bessel Iv: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data]]]
[[Bessel In: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_In_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_In_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_In_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_In_Random_Data]]]
[[Bessel Iv: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data]]]
[[Bessel Iv: Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data_large_values_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_]]]
]
]
[template table_cyl_bessel_i_prime_integer_orders_[]
[table:table_cyl_bessel_i_prime_integer_orders_ Error rates for cyl_bessel_i_prime (integer orders)
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Bessel I'0: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_]]]
[[Bessel I'1: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_]]]
[[Bessel I'n: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_]]]
]
]
[template table_cyl_bessel_i_prime[]
[table:table_cyl_bessel_i_prime Error rates for cyl_bessel_i_prime
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Bessel I'0: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data]]]
[[Bessel I'1: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data]]]
[[Bessel I'n: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data]]]
[[Bessel I'v: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data]]]
[[Bessel I'n: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data]]]
[[Bessel I'v: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data]]]
[[Bessel I'v: Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_]]]
]
]
[template table_sph_bessel[]
[table:table_sph_bessel Error rates for sph_bessel
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Bessel j: Random Data][[GNU_C_version_7_1_0_linux_long_double_sph_bessel_boost_Bessel_j_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_sph_bessel__cmath__Bessel_j_Random_Data]][[GNU_C_version_7_1_0_linux_double_sph_bessel_boost_Bessel_j_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_sph_bessel_GSL_2_1_Bessel_j_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_bessel_boost_Bessel_j_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_sph_bessel_boost_Bessel_j_Random_Data]]]
]
]
[template table_cyl_bessel_j_integer_orders_[]
[table:table_cyl_bessel_j_integer_orders_ Error rates for cyl_bessel_j (integer orders)
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Bessel J0: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J0_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J0_Mathworld_Data_Integer_Version_]]]
[[Bessel J0: Mathworld Data (Tricky cases) (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]]]
[[Bessel J1: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J1_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J1_Mathworld_Data_Integer_Version_]]]
[[Bessel J1: Mathworld Data (tricky cases) (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]]]
[[Bessel JN: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_JN_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_JN_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_JN_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_JN_Mathworld_Data_Integer_Version_]]]
]
]
[template table_cyl_bessel_j[]
[table:table_cyl_bessel_j Error rates for cyl_bessel_j
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Bessel J0: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data]]]
[[Bessel J0: Mathworld Data (Tricky cases)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data_Tricky_cases_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data_Tricky_cases_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data_Tricky_cases_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_]]]
[[Bessel J1: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data]]]
[[Bessel J1: Mathworld Data (tricky cases)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data_tricky_cases_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data_tricky_cases_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data_tricky_cases_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_]]]
[[Bessel JN: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data]]]
[[Bessel J: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data]]]
[[Bessel J: Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data_large_values_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_]]]
[[Bessel JN: Random Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_JN_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Random_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_JN_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_JN_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_JN_Random_Data]]]
[[Bessel J: Random Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Random_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Random_Data]]]
[[Bessel J: Random Data (Tricky large values)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Random_Data_Tricky_large_values_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data_Tricky_large_values_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Random_Data_Tricky_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_]]]
]
]
[template table_sph_bessel_prime[]
[table:table_sph_bessel_prime Error rates for sph_bessel_prime
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Bessel j': Random Data][[GNU_C_version_7_1_0_linux_double_sph_bessel_prime_boost_Bessel_j_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_sph_bessel_prime_boost_Bessel_j_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_bessel_prime_boost_Bessel_j_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_sph_bessel_prime_boost_Bessel_j_Random_Data]]]
]
]
[template table_cyl_bessel_j_prime_integer_orders_[]
[table:table_cyl_bessel_j_prime_integer_orders_ Error rates for cyl_bessel_j_prime (integer orders)
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Bessel J0': Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_]]]
[[Bessel J0': Mathworld Data (Tricky cases) (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]]]
[[Bessel J1': Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_]]]
[[Bessel J1': Mathworld Data (tricky cases) (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]]]
[[Bessel JN': Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_]]]
]
]
[template table_cyl_bessel_j_prime[]
[table:table_cyl_bessel_j_prime Error rates for cyl_bessel_j_prime
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Bessel J0': Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data]]]
[[Bessel J0': Mathworld Data (Tricky cases)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_]]]
[[Bessel J1': Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data]]]
[[Bessel J1': Mathworld Data (tricky cases)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_]]]
[[Bessel JN': Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data]]]
[[Bessel J': Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data]]]
[[Bessel J': Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_]]]
[[Bessel JN': Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data]]]
[[Bessel J': Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data]]]
[[Bessel J': Random Data (Tricky large values)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_]]]
]
]
[template table_cyl_bessel_k_integer_orders_[]
[table:table_cyl_bessel_k_integer_orders_ Error rates for cyl_bessel_k (integer orders)
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Bessel K0: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_K0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__GSL_2_1_Bessel_K0_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__Rmath_3_2_3_Bessel_K0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_]]]
[[Bessel K1: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_K1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__GSL_2_1_Bessel_K1_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__Rmath_3_2_3_Bessel_K1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_]]]
[[Bessel Kn: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_Kn_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__GSL_2_1_Bessel_Kn_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__Rmath_3_2_3_Bessel_Kn_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_]]]
]
]
[template table_cyl_bessel_k[]
[table:table_cyl_bessel_k Error rates for cyl_bessel_k
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Bessel K0: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_K0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_K0_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_K0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data]]]
[[Bessel K1: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_K1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_K1_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_K1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data]]]
[[Bessel Kn: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kn_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data]]]
[[Bessel Kv: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kv_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data]]]
[[Bessel Kv: Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data_large_values_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kv_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_]]]
[[Bessel Kn: Random Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Random_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kn_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data]]]
[[Bessel Kv: Random Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Random_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kv_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data]]]
]
]
[template table_cyl_bessel_k_prime_integer_orders_[]
[table:table_cyl_bessel_k_prime_integer_orders_ Error rates for cyl_bessel_k_prime (integer orders)
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Bessel K'0: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_]]]
[[Bessel K'1: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_]]]
[[Bessel K'n: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_]]]
]
]
[template table_cyl_bessel_k_prime[]
[table:table_cyl_bessel_k_prime Error rates for cyl_bessel_k_prime
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Bessel K'0: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data]]]
[[Bessel K'1: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data]]]
[[Bessel K'n: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data]]]
[[Bessel K'v: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data]]]
[[Bessel K'v: Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_]]]
[[Bessel K'n: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data]]]
[[Bessel K'v: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data]]]
]
]
[template table_sph_neumann[]
[table:table_sph_neumann Error rates for sph_neumann
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[y: Random Data][[GNU_C_version_7_1_0_linux_long_double_sph_neumann_boost_y_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_sph_neumann__cmath__y_Random_Data]][[GNU_C_version_7_1_0_linux_double_sph_neumann_boost_y_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_sph_neumann_GSL_2_1_y_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_neumann_boost_y_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_sph_neumann_boost_y_Random_Data]]]
]
]
[template table_cyl_neumann_integer_orders_[]
[table:table_cyl_neumann_integer_orders_ Error rates for cyl_neumann (integer orders)
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Y0: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Y0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__GSL_2_1_Y0_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__Rmath_3_2_3_Y0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders___math_h__Y0_Mathworld_Data_Integer_Version_]]]
[[Y1: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Y1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__GSL_2_1_Y1_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__Rmath_3_2_3_Y1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders___math_h__Y1_Mathworld_Data_Integer_Version_]]]
[[Yn: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Yn_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__GSL_2_1_Yn_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__Rmath_3_2_3_Yn_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders___math_h__Yn_Mathworld_Data_Integer_Version_]]]
]
]
[template table_cyl_neumann[]
[table:table_cyl_neumann Error rates for cyl_neumann
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Y0: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Y0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Y0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Y0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Y0_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Y0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Y0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Y0_Mathworld_Data]]]
[[Y1: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Y1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Y1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Y1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Y1_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Y1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Y1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Y1_Mathworld_Data]]]
[[Yn: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yn_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yn_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yn_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yn_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yn_Mathworld_Data]]]
[[Yv: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yv_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yv_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yv_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yv_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yv_Mathworld_Data]]]
[[Yv: Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data_large_values_][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yv_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_]]]
[[Y0 and Y1: Random Data][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Y0_and_Y1_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Y0_and_Y1_Random_Data]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Y0_and_Y1_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Y0_and_Y1_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Y0_and_Y1_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Y0_and_Y1_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Y0_and_Y1_Random_Data]]]
[[Yn: Random Data][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yn_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Random_Data]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yn_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yn_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yn_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yn_Random_Data]]]
[[Yv: Random Data][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yv_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Random_Data]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yv_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yv_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yv_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yv_Random_Data]]]
]
]
[template table_sph_neumann_prime[]
[table:table_sph_neumann_prime Error rates for sph_neumann_prime
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[y': Random Data][[GNU_C_version_7_1_0_linux_double_sph_neumann_prime_boost_y_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_sph_neumann_prime_boost_y_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_neumann_prime_boost_y_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_sph_neumann_prime_boost_y_Random_Data]]]
]
]
[template table_cyl_neumann_prime_integer_orders_[]
[table:table_cyl_neumann_prime_integer_orders_ Error rates for cyl_neumann_prime (integer orders)
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Y'0: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_]]]
[[Y'1: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_]]]
[[Y'n: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_]]]
]
]
[template table_cyl_neumann_prime[]
[table:table_cyl_neumann_prime Error rates for cyl_neumann_prime
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Y'0: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data]]]
[[Y'1: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data]]]
[[Y'n: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data]]]
[[Y'v: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data]]]
[[Y'v: Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_]]]
[[Y'0 and Y'1: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data]]]
[[Y'n: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_n_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_n_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_n_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_n_Random_Data]]]
[[Y'v: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_v_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_v_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_v_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_v_Random_Data]]]
]
]
[template table_beta[]
[table:table_beta Error rates for beta
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Beta Function: Small Values][[GNU_C_version_7_1_0_linux_double_beta_boost_Beta_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Small_Values][br][GNU_C_version_7_1_0_linux_double_beta_Rmath_3_2_3_Beta_Function_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_beta_boost_Beta_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_long_double_beta__cmath__Beta_Function_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_boost_Beta_Function_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_beta_boost_Beta_Function_Small_Values]]]
[[Beta Function: Medium Values][[GNU_C_version_7_1_0_linux_double_beta_boost_Beta_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Medium_Values][br][GNU_C_version_7_1_0_linux_double_beta_Rmath_3_2_3_Beta_Function_Medium_Values]][[GNU_C_version_7_1_0_linux_long_double_beta_boost_Beta_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_long_double_beta__cmath__Beta_Function_Medium_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_boost_Beta_Function_Medium_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_beta_boost_Beta_Function_Medium_Values]]]
[[Beta Function: Divergent Values][[GNU_C_version_7_1_0_linux_double_beta_boost_Beta_Function_Divergent_Values][br][br][GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Divergent_Values][br][GNU_C_version_7_1_0_linux_double_beta_Rmath_3_2_3_Beta_Function_Divergent_Values]][[GNU_C_version_7_1_0_linux_long_double_beta_boost_Beta_Function_Divergent_Values][br][br][GNU_C_version_7_1_0_linux_long_double_beta__cmath__Beta_Function_Divergent_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_boost_Beta_Function_Divergent_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_beta_boost_Beta_Function_Divergent_Values]]]
]
]
[template table_binomial_coefficient[]
[table:table_binomial_coefficient Error rates for binomial_coefficient
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Binomials: small arguments][[GNU_C_version_7_1_0_linux_double_binomial_coefficient_boost_Binomials_small_arguments]][[GNU_C_version_7_1_0_linux_long_double_binomial_coefficient_boost_Binomials_small_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_binomial_coefficient_boost_Binomials_small_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_binomial_coefficient_boost_Binomials_small_arguments]]]
[[Binomials: large arguments][[GNU_C_version_7_1_0_linux_double_binomial_coefficient_boost_Binomials_large_arguments]][[GNU_C_version_7_1_0_linux_long_double_binomial_coefficient_boost_Binomials_large_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_binomial_coefficient_boost_Binomials_large_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_binomial_coefficient_boost_Binomials_large_arguments]]]
]
]
[template table_ellint_rg[]
[table:table_ellint_rg Error rates for ellint_rg
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[RG: Random Data][[GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_Random_Data]]]
[[RG: two values 0][[GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_two_values_0][br][br][GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_two_values_0]][[GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_two_values_0]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_two_values_0]]]
[[RG: All values the same or zero][[GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_All_values_the_same_or_zero][br][br][GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_All_values_the_same_or_zero]][[GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_All_values_the_same_or_zero]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_All_values_the_same_or_zero]]]
[[RG: two values the same][[GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_two_values_the_same][br][br][GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_two_values_the_same]][[GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_two_values_the_same]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_two_values_the_same]]]
[[RG: one value zero][[GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_one_value_zero][br][br][GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_one_value_zero]][[GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_one_value_zero]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_one_value_zero]]]
]
]
[template table_ellint_rd[]
[table:table_ellint_rd Error rates for ellint_rd
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[RD: Random data][[GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_Random_data][br][br][GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_Random_data]][[GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_Random_data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_Random_data]]]
[[RD: y = z][[GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_y_z][br][br][GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_y_z]][[GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_y_z]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_y_z]]]
[[RD: x = y][[GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_y][br][br][GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_y]][[GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_y]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_y]]]
[[RD: x = 0, y = z][[GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_0_y_z][br][br][GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_0_y_z]][[GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_0_y_z]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_0_y_z]]]
[[RD: x = y = z][[GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_y_z][br][br][GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_y_z]][[GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_y_z]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_y_z]]]
[[RD: x = 0][[GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_0][br][br][GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_0]][[GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_0]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_0]]]
]
]
[template table_ellint_rj[]
[table:table_ellint_rj Error rates for ellint_rj
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[RJ: Random data][[GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_Random_data][br][br][GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Random_data]][[GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_Random_data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_Random_data]]]
[[RJ: 4 Equal Values][[GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_4_Equal_Values][br][br][GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_4_Equal_Values]][[GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_4_Equal_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_4_Equal_Values]]]
[[RJ: 3 Equal Values][[GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_3_Equal_Values][br][br][GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_3_Equal_Values]][[GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_3_Equal_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_3_Equal_Values]]]
[[RJ: 2 Equal Values][[GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_2_Equal_Values][br][br][GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_2_Equal_Values]][[GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_2_Equal_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_2_Equal_Values]]]
[[RJ: Equal z and p][[GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_Equal_z_and_p][br][br][GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Equal_z_and_p]][[GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_Equal_z_and_p]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_Equal_z_and_p]]]
]
]
[template table_ellint_rc[]
[table:table_ellint_rc Error rates for ellint_rc
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[RC: Random data][[GNU_C_version_7_1_0_linux_double_ellint_rc_boost_RC_Random_data][br][br][GNU_C_version_7_1_0_linux_double_ellint_rc_GSL_2_1_RC_Random_data]][[GNU_C_version_7_1_0_linux_long_double_ellint_rc_boost_RC_Random_data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rc_boost_RC_Random_data]]]
]
]
[template table_ellint_rf[]
[table:table_ellint_rf Error rates for ellint_rf
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[RF: Random data][[GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_Random_data][br][br][GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_Random_data]][[GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_Random_data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_Random_data]]]
[[RF: x = y = z][[GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_x_y_z][br][br][GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_x_y_z]][[GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_x_y_z]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_x_y_z]]]
[[RF: x = y or y = z or x = z][[GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_x_y_or_y_z_or_x_z][br][br][GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_x_y_or_y_z_or_x_z]][[GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_x_y_or_y_z_or_x_z]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_x_y_or_y_z_or_x_z]]]
[[RF: x = 0, y = z][[GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_x_0_y_z][br][br][GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_x_0_y_z]][[GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_x_0_y_z]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_x_0_y_z]]]
[[RF: z = 0][[GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_z_0][br][br][GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_z_0]][[GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_z_0]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_z_0]]]
]
]
[template table_cbrt[]
[table:table_cbrt Error rates for cbrt
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[cbrt Function][[GNU_C_version_7_1_0_linux_double_cbrt_boost_cbrt_Function]][[GNU_C_version_7_1_0_linux_long_double_cbrt_boost_cbrt_Function][br][br][GNU_C_version_7_1_0_linux_long_double_cbrt__cmath__cbrt_Function][br][GNU_C_version_7_1_0_linux_long_double_cbrt__math_h__cbrt_Function]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cbrt_boost_cbrt_Function][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_cbrt__math_h__cbrt_Function]][[Microsoft_Visual_C_version_14_1_Win32_double_cbrt_boost_cbrt_Function][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cbrt__math_h__cbrt_Function]]]
]
]
[template table_digamma[]
[table:table_digamma Error rates for digamma
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Digamma Function: Large Values][[GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Large_Values][br][br][GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Large_Values][br][GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Large_Values]][[GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Large_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Large_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Large_Values]]]
[[Digamma Function: Near the Positive Root][[GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Near_the_Positive_Root][br][br][GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Near_the_Positive_Root][br][GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Near_the_Positive_Root]][[GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Near_the_Positive_Root]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Near_the_Positive_Root]][[Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Near_the_Positive_Root]]]
[[Digamma Function: Near Zero][[GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Near_Zero][br][br][GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Near_Zero][br][GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Near_Zero]][[GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Near_Zero]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Near_Zero]][[Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Near_Zero]]]
[[Digamma Function: Negative Values][[GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Negative_Values][br][br][GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Negative_Values][br][GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Negative_Values]][[GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Negative_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Negative_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Negative_Values]]]
[[Digamma Function: Values near 0][[GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Values_near_0][br][br][GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Values_near_0][br][GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Values_near_0]][[GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Values_near_0]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Values_near_0]][[Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Values_near_0]]]
[[Digamma Function: Integer arguments][[GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Integer_arguments][br][br][GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Integer_arguments][br][GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Integer_arguments]][[GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Integer_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Integer_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Integer_arguments]]]
[[Digamma Function: Half integer arguments][[GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Half_integer_arguments][br][br][GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Half_integer_arguments][br][GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Half_integer_arguments]][[GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Half_integer_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Half_integer_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Half_integer_arguments]]]
]
]
[template table_ellint_1_complete_[]
[table:table_ellint_1_complete_ Error rates for ellint_1 (complete)
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Elliptic Integral K: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_1_complete___cmath__Elliptic_Integral_K_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_1_complete__GSL_2_1_Elliptic_Integral_K_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data]]]
[[Elliptic Integral K: Random Data][[GNU_C_version_7_1_0_linux_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_1_complete___cmath__Elliptic_Integral_K_Random_Data]][[GNU_C_version_7_1_0_linux_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_1_complete__GSL_2_1_Elliptic_Integral_K_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data]]]
]
]
[template table_ellint_1[]
[table:table_ellint_1 Error rates for ellint_1
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Elliptic Integral F: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_1_GSL_2_1_Elliptic_Integral_F_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data]]]
[[Elliptic Integral F: Random Data][[GNU_C_version_7_1_0_linux_long_double_ellint_1_boost_Elliptic_Integral_F_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Random_Data]][[GNU_C_version_7_1_0_linux_double_ellint_1_boost_Elliptic_Integral_F_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_1_GSL_2_1_Elliptic_Integral_F_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_boost_Elliptic_Integral_F_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_boost_Elliptic_Integral_F_Random_Data]]]
]
]
[template table_ellint_2_complete_[]
[table:table_ellint_2_complete_ Error rates for ellint_2 (complete)
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Elliptic Integral E: Mathworld Data][[GNU_C_version_7_1_0_linux_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_2_complete___cmath__Elliptic_Integral_E_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data]]]
[[Elliptic Integral E: Random Data][[GNU_C_version_7_1_0_linux_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_2_complete___cmath__Elliptic_Integral_E_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data]]]
]
]
[template table_ellint_2[]
[table:table_ellint_2 Error rates for ellint_2
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Elliptic Integral E: Mathworld Data][[GNU_C_version_7_1_0_linux_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_2_GSL_2_1_Elliptic_Integral_E_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data]]]
[[Elliptic Integral E: Random Data][[GNU_C_version_7_1_0_linux_double_ellint_2_boost_Elliptic_Integral_E_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_2_GSL_2_1_Elliptic_Integral_E_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_2_boost_Elliptic_Integral_E_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_boost_Elliptic_Integral_E_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_boost_Elliptic_Integral_E_Random_Data]]]
[[Elliptic Integral E: Small Angles][[GNU_C_version_7_1_0_linux_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles][br][br][GNU_C_version_7_1_0_linux_double_ellint_2_GSL_2_1_Elliptic_Integral_E_Small_Angles]][[GNU_C_version_7_1_0_linux_long_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Small_Angles]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles]]]
]
]
[template table_ellint_3_complete_[]
[table:table_ellint_3_complete_ Error rates for ellint_3 (complete)
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Complete Elliptic Integral PI: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data]]]
[[Complete Elliptic Integral PI: Random Data][[GNU_C_version_7_1_0_linux_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Random_Data]][[GNU_C_version_7_1_0_linux_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data]]]
]
]
[template table_ellint_3[]
[table:table_ellint_3 Error rates for ellint_3
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Elliptic Integral PI: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data]]]
[[Elliptic Integral PI: Random Data][[GNU_C_version_7_1_0_linux_long_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Random_Data]][[GNU_C_version_7_1_0_linux_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data]]]
[[Elliptic Integral PI: Large Random Data][[GNU_C_version_7_1_0_linux_long_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Large_Random_Data]][[GNU_C_version_7_1_0_linux_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Large_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data]]]
]
]
[template table_ellint_d_complete_[]
[table:table_ellint_d_complete_ Error rates for ellint_d (complete)
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Elliptic Integral E: Mathworld Data][[GNU_C_version_7_1_0_linux_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data]]]
[[Elliptic Integral D: Random Data][[GNU_C_version_7_1_0_linux_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data]]]
]
]
[template table_ellint_d[]
[table:table_ellint_d Error rates for ellint_d
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Elliptic Integral E: Mathworld Data][[GNU_C_version_7_1_0_linux_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_d_GSL_2_1_Elliptic_Integral_E_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data]]]
[[Elliptic Integral D: Random Data][[GNU_C_version_7_1_0_linux_double_ellint_d_boost_Elliptic_Integral_D_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_d_GSL_2_1_Elliptic_Integral_D_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_d_boost_Elliptic_Integral_D_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_boost_Elliptic_Integral_D_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_boost_Elliptic_Integral_D_Random_Data]]]
]
]
[template table_erfc_inv[]
[table:table_erfc_inv Error rates for erfc_inv
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Inverse Erfc Function][[GNU_C_version_7_1_0_linux_double_erfc_inv_boost_Inverse_Erfc_Function]][[GNU_C_version_7_1_0_linux_long_double_erfc_inv_boost_Inverse_Erfc_Function]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_inv_boost_Inverse_Erfc_Function]][[Microsoft_Visual_C_version_14_1_Win32_double_erfc_inv_boost_Inverse_Erfc_Function]]]
[[Inverse Erfc Function: extreme values][][[GNU_C_version_7_1_0_linux_long_double_erfc_inv_boost_Inverse_Erfc_Function_extreme_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_inv_boost_Inverse_Erfc_Function_extreme_values]][]]
]
]
[template table_erf_inv[]
[table:table_erf_inv Error rates for erf_inv
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Inverse Erf Function][[GNU_C_version_7_1_0_linux_double_erf_inv_boost_Inverse_Erf_Function]][[GNU_C_version_7_1_0_linux_long_double_erf_inv_boost_Inverse_Erf_Function]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_inv_boost_Inverse_Erf_Function]][[Microsoft_Visual_C_version_14_1_Win32_double_erf_inv_boost_Inverse_Erf_Function]]]
]
]
[template table_erfc[]
[table:table_erfc Error rates for erfc
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Erf Function: Small Values][[GNU_C_version_7_1_0_linux_long_double_erfc_boost_Erf_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_long_double_erfc__cmath__Erf_Function_Small_Values][br][GNU_C_version_7_1_0_linux_long_double_erfc__math_h__Erf_Function_Small_Values]][[GNU_C_version_7_1_0_linux_double_erfc_boost_Erf_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_erfc_GSL_2_1_Erf_Function_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_boost_Erf_Function_Small_Values][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc__math_h__Erf_Function_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_erfc_boost_Erf_Function_Small_Values][br][br][Microsoft_Visual_C_version_14_1_Win32_double_erfc__math_h__Erf_Function_Small_Values]]]
[[Erf Function: Medium Values][[GNU_C_version_7_1_0_linux_long_double_erfc_boost_Erf_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_long_double_erfc__cmath__Erf_Function_Medium_Values][br][GNU_C_version_7_1_0_linux_long_double_erfc__math_h__Erf_Function_Medium_Values]][[GNU_C_version_7_1_0_linux_double_erfc_boost_Erf_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_double_erfc_GSL_2_1_Erf_Function_Medium_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_boost_Erf_Function_Medium_Values][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc__math_h__Erf_Function_Medium_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_erfc_boost_Erf_Function_Medium_Values][br][br][Microsoft_Visual_C_version_14_1_Win32_double_erfc__math_h__Erf_Function_Medium_Values]]]
[[Erf Function: Large Values][[GNU_C_version_7_1_0_linux_long_double_erfc_boost_Erf_Function_Large_Values][br][br][GNU_C_version_7_1_0_linux_long_double_erfc__cmath__Erf_Function_Large_Values][br][GNU_C_version_7_1_0_linux_long_double_erfc__math_h__Erf_Function_Large_Values]][[GNU_C_version_7_1_0_linux_double_erfc_boost_Erf_Function_Large_Values][br][br][GNU_C_version_7_1_0_linux_double_erfc_GSL_2_1_Erf_Function_Large_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_boost_Erf_Function_Large_Values][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc__math_h__Erf_Function_Large_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_erfc_boost_Erf_Function_Large_Values][br][br][Microsoft_Visual_C_version_14_1_Win32_double_erfc__math_h__Erf_Function_Large_Values]]]
]
]
[template table_erf[]
[table:table_erf Error rates for erf
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Erf Function: Small Values][[GNU_C_version_7_1_0_linux_long_double_erf_boost_Erf_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_long_double_erf__cmath__Erf_Function_Small_Values][br][GNU_C_version_7_1_0_linux_long_double_erf__math_h__Erf_Function_Small_Values]][[GNU_C_version_7_1_0_linux_double_erf_boost_Erf_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_erf_GSL_2_1_Erf_Function_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_boost_Erf_Function_Small_Values][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf__math_h__Erf_Function_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_erf_boost_Erf_Function_Small_Values][br][br][Microsoft_Visual_C_version_14_1_Win32_double_erf__math_h__Erf_Function_Small_Values]]]
[[Erf Function: Medium Values][[GNU_C_version_7_1_0_linux_long_double_erf_boost_Erf_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_long_double_erf__cmath__Erf_Function_Medium_Values][br][GNU_C_version_7_1_0_linux_long_double_erf__math_h__Erf_Function_Medium_Values]][[GNU_C_version_7_1_0_linux_double_erf_boost_Erf_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_double_erf_GSL_2_1_Erf_Function_Medium_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_boost_Erf_Function_Medium_Values][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf__math_h__Erf_Function_Medium_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_erf_boost_Erf_Function_Medium_Values][br][br][Microsoft_Visual_C_version_14_1_Win32_double_erf__math_h__Erf_Function_Medium_Values]]]
[[Erf Function: Large Values][[GNU_C_version_7_1_0_linux_long_double_erf_boost_Erf_Function_Large_Values][br][br][GNU_C_version_7_1_0_linux_long_double_erf__cmath__Erf_Function_Large_Values][br][GNU_C_version_7_1_0_linux_long_double_erf__math_h__Erf_Function_Large_Values]][[GNU_C_version_7_1_0_linux_double_erf_boost_Erf_Function_Large_Values][br][br][GNU_C_version_7_1_0_linux_double_erf_GSL_2_1_Erf_Function_Large_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_boost_Erf_Function_Large_Values][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf__math_h__Erf_Function_Large_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_erf_boost_Erf_Function_Large_Values][br][br][Microsoft_Visual_C_version_14_1_Win32_double_erf__math_h__Erf_Function_Large_Values]]]
]
]
[template table_expint_En_[]
[table:table_expint_En_ Error rates for expint (En)
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Exponential Integral En][[GNU_C_version_7_1_0_linux_double_expint_En__boost_Exponential_Integral_En][br][br][GNU_C_version_7_1_0_linux_double_expint_En__GSL_2_1_Exponential_Integral_En]][[GNU_C_version_7_1_0_linux_long_double_expint_En__boost_Exponential_Integral_En]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_En__boost_Exponential_Integral_En]][[Microsoft_Visual_C_version_14_1_Win32_double_expint_En__boost_Exponential_Integral_En]]]
[[Exponential Integral En: small z values][[GNU_C_version_7_1_0_linux_double_expint_En__boost_Exponential_Integral_En_small_z_values][br][br][GNU_C_version_7_1_0_linux_double_expint_En__GSL_2_1_Exponential_Integral_En_small_z_values]][[GNU_C_version_7_1_0_linux_long_double_expint_En__boost_Exponential_Integral_En_small_z_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_En__boost_Exponential_Integral_En_small_z_values]][[Microsoft_Visual_C_version_14_1_Win32_double_expint_En__boost_Exponential_Integral_En_small_z_values]]]
[[Exponential Integral E1][[GNU_C_version_7_1_0_linux_double_expint_En__boost_Exponential_Integral_E1][br][br][GNU_C_version_7_1_0_linux_double_expint_En__GSL_2_1_Exponential_Integral_E1]][[GNU_C_version_7_1_0_linux_long_double_expint_En__boost_Exponential_Integral_E1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_En__boost_Exponential_Integral_E1]][[Microsoft_Visual_C_version_14_1_Win32_double_expint_En__boost_Exponential_Integral_E1]]]
]
]
[template table_expint_Ei_[]
[table:table_expint_Ei_ Error rates for expint (Ei)
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Exponential Integral Ei][[GNU_C_version_7_1_0_linux_long_double_expint_Ei__boost_Exponential_Integral_Ei][br][br][GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei]][[GNU_C_version_7_1_0_linux_double_expint_Ei__boost_Exponential_Integral_Ei][br][br][GNU_C_version_7_1_0_linux_double_expint_Ei__GSL_2_1_Exponential_Integral_Ei]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_Ei__boost_Exponential_Integral_Ei]][[Microsoft_Visual_C_version_14_1_Win32_double_expint_Ei__boost_Exponential_Integral_Ei]]]
[[Exponential Integral Ei: double exponent range][[GNU_C_version_7_1_0_linux_long_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range][br][br][GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei_double_exponent_range]][[GNU_C_version_7_1_0_linux_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range][br][br][GNU_C_version_7_1_0_linux_double_expint_Ei__GSL_2_1_Exponential_Integral_Ei_double_exponent_range]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range]][[Microsoft_Visual_C_version_14_1_Win32_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range]]]
[[Exponential Integral Ei: long exponent range][[GNU_C_version_7_1_0_linux_long_double_expint_Ei__boost_Exponential_Integral_Ei_long_exponent_range][br][br][GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei_long_exponent_range]][][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_Ei__boost_Exponential_Integral_Ei_long_exponent_range]][]]
]
]
[template table_tgamma1pm1[]
[table:table_tgamma1pm1 Error rates for tgamma1pm1
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[tgamma1pm1(dz)][[GNU_C_version_7_1_0_linux_double_tgamma1pm1_boost_tgamma1pm1_dz_]][[GNU_C_version_7_1_0_linux_long_double_tgamma1pm1_boost_tgamma1pm1_dz_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma1pm1_boost_tgamma1pm1_dz_]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma1pm1_boost_tgamma1pm1_dz_]]]
]
]
[template table_lgamma[]
[table:table_lgamma Error rates for lgamma
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[factorials][[GNU_C_version_7_1_0_linux_double_lgamma_boost_factorials][br][br][GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_factorials][br][GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_factorials]][[GNU_C_version_7_1_0_linux_long_double_lgamma_boost_factorials][br][br][GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__factorials][br][GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__factorials]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_factorials][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__factorials]][[Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_factorials][br][br][Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__factorials]]]
[[near 0][[GNU_C_version_7_1_0_linux_double_lgamma_boost_near_0][br][br][GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_0][br][GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_0]][[GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_0][br][br][GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_0][br][GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_0]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_0][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_0]][[Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_0][br][br][Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_0]]]
[[near 1][[GNU_C_version_7_1_0_linux_double_lgamma_boost_near_1][br][br][GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_1][br][GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_1]][[GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_1][br][br][GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_1][br][GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_1][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_1]][[Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_1][br][br][Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_1]]]
[[near 2][[GNU_C_version_7_1_0_linux_double_lgamma_boost_near_2][br][br][GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_2][br][GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_2]][[GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_2][br][br][GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_2][br][GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_2]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_2][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_2]][[Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_2][br][br][Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_2]]]
[[near -10][[GNU_C_version_7_1_0_linux_double_lgamma_boost_near_10][br][br][GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_10][br][GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_10]][[GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_10][br][br][GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_10][br][GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_10]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_10][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_10]][[Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_10][br][br][Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_10]]]
[[near -55][[GNU_C_version_7_1_0_linux_double_lgamma_boost_near_55][br][br][GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_55][br][GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_55]][[GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_55][br][br][GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_55][br][GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_55]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_55][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_55]][[Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_55][br][br][Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_55]]]
]
]
[template table_tgamma[]
[table:table_tgamma Error rates for tgamma
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[factorials][[GNU_C_version_7_1_0_linux_double_tgamma_boost_factorials][br][br][GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_factorials][br][GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_factorials]][[GNU_C_version_7_1_0_linux_long_double_tgamma_boost_factorials][br][br][GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__factorials][br][GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__factorials]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_factorials][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__factorials]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_factorials][br][br][Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__factorials]]]
[[near 0][[GNU_C_version_7_1_0_linux_double_tgamma_boost_near_0][br][br][GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_0][br][GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_0]][[GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_0][br][br][GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_0][br][GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_0]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_0][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_0]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_0][br][br][Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_0]]]
[[near 1][[GNU_C_version_7_1_0_linux_double_tgamma_boost_near_1][br][br][GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_1][br][GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_1]][[GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_1][br][br][GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_1][br][GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_1][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_1]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_1][br][br][Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_1]]]
[[near 2][[GNU_C_version_7_1_0_linux_double_tgamma_boost_near_2][br][br][GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_2][br][GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_2]][[GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_2][br][br][GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_2][br][GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_2]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_2][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_2]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_2][br][br][Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_2]]]
[[near -10][[GNU_C_version_7_1_0_linux_double_tgamma_boost_near_10][br][br][GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_10][br][GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_10]][[GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_10][br][br][GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_10][br][GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_10]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_10][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_10]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_10][br][br][Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_10]]]
[[near -55][[GNU_C_version_7_1_0_linux_double_tgamma_boost_near_55][br][br][GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_55][br][GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_55]][[GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_55][br][br][GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_55][br][GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_55]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_55][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_55]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_55][br][br][Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_55]]]
]
]
[template table_hermite[]
[table:table_hermite Error rates for hermite
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Hermite Polynomials][[GNU_C_version_7_1_0_linux_double_hermite_boost_Hermite_Polynomials]][[GNU_C_version_7_1_0_linux_long_double_hermite_boost_Hermite_Polynomials]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_hermite_boost_Hermite_Polynomials]][[Microsoft_Visual_C_version_14_1_Win32_double_hermite_boost_Hermite_Polynomials]]]
]
]
[template table_heuman_lambda[]
[table:table_heuman_lambda Error rates for heuman_lambda
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Elliptic Integral Jacobi Zeta: Mathworld Data][[GNU_C_version_7_1_0_linux_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]]]
[[Elliptic Integral Heuman Lambda: Random Data][[GNU_C_version_7_1_0_linux_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data]]]
]
]
[template table_ibetac[]
[table:table_ibetac Error rates for ibetac
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Incomplete Beta Function: Small Values][[GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Small_Values]]]
[[Incomplete Beta Function: Medium Values][[GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Medium_Values]][[GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values]]]
[[Incomplete Beta Function: Large and Diverse Values][[GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values][br][br][GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Large_and_Diverse_Values]][[GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]]]
[[Incomplete Beta Function: Small Integer Values][[GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values][br][br][GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Small_Integer_Values]][[GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values]]]
]
]
[template table_ibeta[]
[table:table_ibeta Error rates for ibeta
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Incomplete Beta Function: Small Values][[GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Small_Values][br][GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Small_Values]]]
[[Incomplete Beta Function: Medium Values][[GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Medium_Values][br][GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Medium_Values]][[GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values]]]
[[Incomplete Beta Function: Large and Diverse Values][[GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values][br][br][GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Large_and_Diverse_Values][br][GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Large_and_Diverse_Values]][[GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]]]
[[Incomplete Beta Function: Small Integer Values][[GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values][br][br][GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Small_Integer_Values][br][GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Small_Integer_Values]][[GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values]]]
]
]
[template table_betac[]
[table:table_betac Error rates for betac
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Incomplete Beta Function: Small Values][[GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Small_Values]]]
[[Incomplete Beta Function: Medium Values][[GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Medium_Values]][[GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Medium_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Medium_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Medium_Values]]]
[[Incomplete Beta Function: Large and Diverse Values][[GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]]]
[[Incomplete Beta Function: Small Integer Values][[GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values]][[GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values]]]
]
]
[template table_beta_incomplete_[]
[table:table_beta_incomplete_ Error rates for beta (incomplete)
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Incomplete Beta Function: Small Values][[GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values]]]
[[Incomplete Beta Function: Medium Values][[GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values]][[GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values]]]
[[Incomplete Beta Function: Large and Diverse Values][[GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values]]]
[[Incomplete Beta Function: Small Integer Values][[GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values]][[GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values]]]
]
]
[template table_ibetac_inv[]
[table:table_ibetac_inv Error rates for ibetac_inv
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Inverse incomplete beta][[GNU_C_version_7_1_0_linux_double_ibetac_inv_boost_Inverse_incomplete_beta][br][br][GNU_C_version_7_1_0_linux_double_ibetac_inv_Rmath_3_2_3_Inverse_incomplete_beta]][[GNU_C_version_7_1_0_linux_long_double_ibetac_inv_boost_Inverse_incomplete_beta]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_inv_boost_Inverse_incomplete_beta]][[Microsoft_Visual_C_version_14_1_Win32_double_ibetac_inv_boost_Inverse_incomplete_beta]]]
]
]
[template table_ibeta_inv[]
[table:table_ibeta_inv Error rates for ibeta_inv
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Inverse incomplete beta][[GNU_C_version_7_1_0_linux_double_ibeta_inv_boost_Inverse_incomplete_beta][br][br][GNU_C_version_7_1_0_linux_double_ibeta_inv_Rmath_3_2_3_Inverse_incomplete_beta]][[GNU_C_version_7_1_0_linux_long_double_ibeta_inv_boost_Inverse_incomplete_beta]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_inv_boost_Inverse_incomplete_beta]][[Microsoft_Visual_C_version_14_1_Win32_double_ibeta_inv_boost_Inverse_incomplete_beta]]]
]
]
[template table_ibetac_invb[]
[table:table_ibetac_invb Error rates for ibetac_invb
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Inverse incomplete beta][[GNU_C_version_7_1_0_linux_double_ibetac_invb_boost_Inverse_incomplete_beta]][[GNU_C_version_7_1_0_linux_long_double_ibetac_invb_boost_Inverse_incomplete_beta]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_invb_boost_Inverse_incomplete_beta]][[Microsoft_Visual_C_version_14_1_Win32_double_ibetac_invb_boost_Inverse_incomplete_beta]]]
]
]
[template table_ibeta_invb[]
[table:table_ibeta_invb Error rates for ibeta_invb
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Inverse incomplete beta][[GNU_C_version_7_1_0_linux_double_ibeta_invb_boost_Inverse_incomplete_beta]][[GNU_C_version_7_1_0_linux_long_double_ibeta_invb_boost_Inverse_incomplete_beta]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_invb_boost_Inverse_incomplete_beta]][[Microsoft_Visual_C_version_14_1_Win32_double_ibeta_invb_boost_Inverse_incomplete_beta]]]
]
]
[template table_ibetac_inva[]
[table:table_ibetac_inva Error rates for ibetac_inva
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Inverse incomplete beta][[GNU_C_version_7_1_0_linux_double_ibetac_inva_boost_Inverse_incomplete_beta]][[GNU_C_version_7_1_0_linux_long_double_ibetac_inva_boost_Inverse_incomplete_beta]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_inva_boost_Inverse_incomplete_beta]][[Microsoft_Visual_C_version_14_1_Win32_double_ibetac_inva_boost_Inverse_incomplete_beta]]]
]
]
[template table_ibeta_inva[]
[table:table_ibeta_inva Error rates for ibeta_inva
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Inverse incomplete beta][[GNU_C_version_7_1_0_linux_double_ibeta_inva_boost_Inverse_incomplete_beta]][[GNU_C_version_7_1_0_linux_long_double_ibeta_inva_boost_Inverse_incomplete_beta]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_inva_boost_Inverse_incomplete_beta]][[Microsoft_Visual_C_version_14_1_Win32_double_ibeta_inva_boost_Inverse_incomplete_beta]]]
]
]
[template table_gamma_p[]
[table:table_gamma_p Error rates for gamma_p
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[tgamma(a, z) medium values][[GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_medium_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_medium_values][br][GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_medium_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_medium_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_medium_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_medium_values]]]
[[tgamma(a, z) small values][[GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_small_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_small_values][br][GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_small_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_small_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_small_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_small_values]]]
[[tgamma(a, z) large values][[GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_large_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_large_values][br][GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_large_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_large_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_large_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_large_values]]]
[[tgamma(a, z) integer and half integer values][[GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_integer_and_half_integer_values][br][GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_integer_and_half_integer_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values]]]
]
]
[template table_gamma_q[]
[table:table_gamma_q Error rates for gamma_q
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[tgamma(a, z) medium values][[GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_medium_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_medium_values][br][GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_medium_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_medium_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_medium_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_medium_values]]]
[[tgamma(a, z) small values][[GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_small_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_small_values][br][GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_small_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_small_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_small_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_small_values]]]
[[tgamma(a, z) large values][[GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_large_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_large_values][br][GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_large_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_large_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_large_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_large_values]]]
[[tgamma(a, z) integer and half integer values][[GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_integer_and_half_integer_values][br][GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_integer_and_half_integer_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values]]]
]
]
[template table_tgamma_lower[]
[table:table_tgamma_lower Error rates for tgamma_lower
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[tgamma(a, z) medium values][[GNU_C_version_7_1_0_linux_double_tgamma_lower_boost_tgamma_a_z_medium_values][br][br][GNU_C_version_7_1_0_linux_double_tgamma_lower_GSL_2_1_tgamma_a_z_medium_values]][[GNU_C_version_7_1_0_linux_long_double_tgamma_lower_boost_tgamma_a_z_medium_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_lower_boost_tgamma_a_z_medium_values]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_lower_boost_tgamma_a_z_medium_values]]]
[[tgamma(a, z) small values][[GNU_C_version_7_1_0_linux_double_tgamma_lower_boost_tgamma_a_z_small_values][br][br][GNU_C_version_7_1_0_linux_double_tgamma_lower_GSL_2_1_tgamma_a_z_small_values]][[GNU_C_version_7_1_0_linux_long_double_tgamma_lower_boost_tgamma_a_z_small_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_lower_boost_tgamma_a_z_small_values]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_lower_boost_tgamma_a_z_small_values]]]
[[tgamma(a, z) integer and half integer values][[GNU_C_version_7_1_0_linux_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values][br][br][GNU_C_version_7_1_0_linux_double_tgamma_lower_GSL_2_1_tgamma_a_z_integer_and_half_integer_values]][[GNU_C_version_7_1_0_linux_long_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values]]]
]
]
[template table_tgamma_incomplete_[]
[table:table_tgamma_incomplete_ Error rates for tgamma (incomplete)
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[tgamma(a, z) medium values][[GNU_C_version_7_1_0_linux_double_tgamma_incomplete__boost_tgamma_a_z_medium_values][br][br][GNU_C_version_7_1_0_linux_double_tgamma_incomplete__GSL_2_1_tgamma_a_z_medium_values]][[GNU_C_version_7_1_0_linux_long_double_tgamma_incomplete__boost_tgamma_a_z_medium_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_incomplete__boost_tgamma_a_z_medium_values]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_incomplete__boost_tgamma_a_z_medium_values]]]
[[tgamma(a, z) small values][[GNU_C_version_7_1_0_linux_double_tgamma_incomplete__boost_tgamma_a_z_small_values][br][br][GNU_C_version_7_1_0_linux_double_tgamma_incomplete__GSL_2_1_tgamma_a_z_small_values]][[GNU_C_version_7_1_0_linux_long_double_tgamma_incomplete__boost_tgamma_a_z_small_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_incomplete__boost_tgamma_a_z_small_values]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_incomplete__boost_tgamma_a_z_small_values]]]
[[tgamma(a, z) integer and half integer values][[GNU_C_version_7_1_0_linux_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values][br][br][GNU_C_version_7_1_0_linux_double_tgamma_incomplete__GSL_2_1_tgamma_a_z_integer_and_half_integer_values]][[GNU_C_version_7_1_0_linux_long_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values]]]
]
]
[template table_gamma_q_inv[]
[table:table_gamma_q_inv Error rates for gamma_q_inv
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[incomplete gamma inverse(a, z) medium values][[GNU_C_version_7_1_0_linux_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_q_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_medium_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values]]]
[[incomplete gamma inverse(a, z) large values][[GNU_C_version_7_1_0_linux_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_q_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_large_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values]]]
[[incomplete gamma inverse(a, z) small values][[GNU_C_version_7_1_0_linux_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_q_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_small_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values]]]
]
]
[template table_gamma_p_inv[]
[table:table_gamma_p_inv Error rates for gamma_p_inv
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[incomplete gamma inverse(a, z) medium values][[GNU_C_version_7_1_0_linux_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_p_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_medium_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values]]]
[[incomplete gamma inverse(a, z) large values][[GNU_C_version_7_1_0_linux_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_p_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_large_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values]]]
[[incomplete gamma inverse(a, z) small values][[GNU_C_version_7_1_0_linux_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_p_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_small_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values]]]
]
]
[template table_gamma_q_inva[]
[table:table_gamma_q_inva Error rates for gamma_q_inva
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Incomplete gamma inverses.][[GNU_C_version_7_1_0_linux_double_gamma_q_inva_boost_Incomplete_gamma_inverses_]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_inva_boost_Incomplete_gamma_inverses_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inva_boost_Incomplete_gamma_inverses_]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inva_boost_Incomplete_gamma_inverses_]]]
]
]
[template table_gamma_p_inva[]
[table:table_gamma_p_inva Error rates for gamma_p_inva
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Incomplete gamma inverses.][[GNU_C_version_7_1_0_linux_double_gamma_p_inva_boost_Incomplete_gamma_inverses_]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_inva_boost_Incomplete_gamma_inverses_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inva_boost_Incomplete_gamma_inverses_]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inva_boost_Incomplete_gamma_inverses_]]]
]
]
[template table_jacobi_dn[]
[table:table_jacobi_dn Error rates for jacobi_dn
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Jacobi Elliptic: Mathworld Data][[GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data]]]
[[Jacobi Elliptic: Random Data][[GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data]]]
[[Jacobi Elliptic: Random Small Values][[GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values]]]
[[Jacobi Elliptic: Modulus near 1][[GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1][br][br][GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]][[GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1]]]
[[Jacobi Elliptic: Large Phi][[GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi][br][br][GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Large_Phi]][[GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi]]]
]
]
[template table_jacobi_cn[]
[table:table_jacobi_cn Error rates for jacobi_cn
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Jacobi Elliptic: Mathworld Data][[GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data]]]
[[Jacobi Elliptic: Random Data][[GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data]]]
[[Jacobi Elliptic: Random Small Values][[GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values]]]
[[Jacobi Elliptic: Modulus near 1][[GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1][br][br][GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]][[GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1]]]
[[Jacobi Elliptic: Large Phi][[GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi][br][br][GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Large_Phi]][[GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi]]]
]
]
[template table_jacobi_sn[]
[table:table_jacobi_sn Error rates for jacobi_sn
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Jacobi Elliptic: Mathworld Data][[GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data]]]
[[Jacobi Elliptic: Random Data][[GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data]]]
[[Jacobi Elliptic: Random Small Values][[GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values]]]
[[Jacobi Elliptic: Modulus near 1][[GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1][br][br][GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]][[GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1]]]
[[Jacobi Elliptic: Large Phi][[GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi][br][br][GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Large_Phi]][[GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi]]]
]
]
[template table_jacobi_zeta[]
[table:table_jacobi_zeta Error rates for jacobi_zeta
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Elliptic Integral Jacobi Zeta: Mathworld Data][[GNU_C_version_7_1_0_linux_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]]]
[[Elliptic Integral Jacobi Zeta: Random Data][[GNU_C_version_7_1_0_linux_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data]]]
[[Elliptic Integral Jacobi Zeta: Large Phi Values][[GNU_C_version_7_1_0_linux_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values]][[GNU_C_version_7_1_0_linux_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values]]]
]
]
[template table_laguerre_n_m_x_[]
[table:table_laguerre_n_m_x_ Error rates for laguerre(n, m, x)
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Associated Laguerre Polynomials][[GNU_C_version_7_1_0_linux_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials][br][br][GNU_C_version_7_1_0_linux_double_laguerre_n_m_x__GSL_2_1_Associated_Laguerre_Polynomials]][[GNU_C_version_7_1_0_linux_long_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials][br][br][GNU_C_version_7_1_0_linux_long_double_laguerre_n_m_x___cmath__Associated_Laguerre_Polynomials]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials]][[Microsoft_Visual_C_version_14_1_Win32_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials]]]
]
]
[template table_laguerre_n_x_[]
[table:table_laguerre_n_x_ Error rates for laguerre(n, x)
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Laguerre Polynomials][[GNU_C_version_7_1_0_linux_double_laguerre_n_x__boost_Laguerre_Polynomials][br][br][GNU_C_version_7_1_0_linux_double_laguerre_n_x__GSL_2_1_Laguerre_Polynomials]][[GNU_C_version_7_1_0_linux_long_double_laguerre_n_x__boost_Laguerre_Polynomials][br][br][GNU_C_version_7_1_0_linux_long_double_laguerre_n_x___cmath__Laguerre_Polynomials]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_laguerre_n_x__boost_Laguerre_Polynomials]][[Microsoft_Visual_C_version_14_1_Win32_double_laguerre_n_x__boost_Laguerre_Polynomials]]]
]
]
[template table_expm1[]
[table:table_expm1 Error rates for expm1
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Random test data][[GNU_C_version_7_1_0_linux_long_double_expm1_boost_Random_test_data][br][br][GNU_C_version_7_1_0_linux_long_double_expm1__cmath__Random_test_data][br][GNU_C_version_7_1_0_linux_long_double_expm1__math_h__Random_test_data]][[GNU_C_version_7_1_0_linux_double_expm1_boost_Random_test_data][br][br][GNU_C_version_7_1_0_linux_double_expm1_Rmath_3_2_3_Random_test_data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_expm1_boost_Random_test_data][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_expm1__math_h__Random_test_data]][[Microsoft_Visual_C_version_14_1_Win32_double_expm1_boost_Random_test_data][br][br][Microsoft_Visual_C_version_14_1_Win32_double_expm1__math_h__Random_test_data]]]
]
]
[template table_log1p[]
[table:table_log1p Error rates for log1p
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Random test data][[GNU_C_version_7_1_0_linux_long_double_log1p_boost_Random_test_data][br][br][GNU_C_version_7_1_0_linux_long_double_log1p__cmath__Random_test_data][br][GNU_C_version_7_1_0_linux_long_double_log1p__math_h__Random_test_data]][[GNU_C_version_7_1_0_linux_double_log1p_boost_Random_test_data][br][br][GNU_C_version_7_1_0_linux_double_log1p_Rmath_3_2_3_Random_test_data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_log1p_boost_Random_test_data][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_log1p__math_h__Random_test_data]][[Microsoft_Visual_C_version_14_1_Win32_double_log1p_boost_Random_test_data][br][br][Microsoft_Visual_C_version_14_1_Win32_double_log1p__math_h__Random_test_data]]]
]
]
[template table_non_central_beta_CDF_complement[]
[table:table_non_central_beta_CDF_complement Error rates for non central beta CDF complement
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Non Central Beta, medium parameters][[GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_medium_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters]]]
[[Non Central Beta, large parameters][[GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_large_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters]]]
]
]
[template table_non_central_beta_CDF[]
[table:table_non_central_beta_CDF Error rates for non central beta CDF
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Non Central Beta, medium parameters][[GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_medium_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters]]]
[[Non Central Beta, large parameters][[GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_large_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters]]]
]
]
[template table_non_central_chi_squared_CDF_complement[]
[table:table_non_central_chi_squared_CDF_complement Error rates for non central chi squared CDF complement
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Non Central Chi Squared, medium parameters][[GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters]]]
[[Non Central Chi Squared, large parameters][[GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters]]]
]
]
[template table_non_central_chi_squared_CDF[]
[table:table_non_central_chi_squared_CDF Error rates for non central chi squared CDF
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Non Central Chi Squared, medium parameters][[GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters]]]
[[Non Central Chi Squared, large parameters][[GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters]]]
]
]
[template table_non_central_t_CDF_complement[]
[table:table_non_central_t_CDF_complement Error rates for non central t CDF complement
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Non Central T][[GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_boost_Non_Central_T][br][br][GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T]][[GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_complement_boost_Non_Central_T]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_complement_boost_Non_Central_T]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_complement_boost_Non_Central_T]]]
[[Non Central T (small non-centrality)][[GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_][br][br][GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T_small_non_centrality_]][[GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_]]]
[[Non Central T (large parameters)][[GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_][br][br][GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T_large_parameters_]][[GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_]]]
]
]
[template table_non_central_t_CDF[]
[table:table_non_central_t_CDF Error rates for non central t CDF
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Non Central T][[GNU_C_version_7_1_0_linux_double_non_central_t_CDF_boost_Non_Central_T][br][br][GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T]][[GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_boost_Non_Central_T]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_boost_Non_Central_T]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_boost_Non_Central_T]]]
[[Non Central T (small non-centrality)][[GNU_C_version_7_1_0_linux_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_][br][br][GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T_small_non_centrality_]][[GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_]]]
[[Non Central T (large parameters)][[GNU_C_version_7_1_0_linux_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_][br][br][GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T_large_parameters_]][[GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_]]]
]
]
[template table_owens_t[]
[table:table_owens_t Error rates for owens_t
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Owens T (medium small values)][[GNU_C_version_7_1_0_linux_double_owens_t_boost_Owens_T_medium_small_values_]][[GNU_C_version_7_1_0_linux_long_double_owens_t_boost_Owens_T_medium_small_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_owens_t_boost_Owens_T_medium_small_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_owens_t_boost_Owens_T_medium_small_values_]]]
[[Owens T (large and diverse values)][[GNU_C_version_7_1_0_linux_double_owens_t_boost_Owens_T_large_and_diverse_values_]][[GNU_C_version_7_1_0_linux_long_double_owens_t_boost_Owens_T_large_and_diverse_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_owens_t_boost_Owens_T_large_and_diverse_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_owens_t_boost_Owens_T_large_and_diverse_values_]]]
]
]
[template table_polygamma[]
[table:table_polygamma Error rates for polygamma
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Mathematica Data][[GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data][br][br][GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data][br][GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data]][[GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data]]]
[[Mathematica Data - large arguments][[GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_large_arguments][br][br][GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_arguments][br][GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_arguments]][[GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_large_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_large_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_large_arguments]]]
[[Mathematica Data - negative arguments][[GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_negative_arguments][br][br][GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_negative_arguments][br][GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_negative_arguments]][[GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_negative_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_negative_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_negative_arguments]]]
[[Mathematica Data - large negative arguments][[GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_large_negative_arguments][br][br][GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_negative_arguments][br][GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_negative_arguments]][[GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_large_negative_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_large_negative_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_large_negative_arguments]]]
[[Mathematica Data - small arguments][[GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_small_arguments][br][br][GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_small_arguments][br][GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_small_arguments]][[GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_small_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_small_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_small_arguments]]]
[[Mathematica Data - Large orders and other bug cases][[GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases][br][br][GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_Large_orders_and_other_bug_cases][br][GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_Large_orders_and_other_bug_cases]][[GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases]][[Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases]]]
]
]
[template table_powm1[]
[table:table_powm1 Error rates for powm1
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[powm1][[GNU_C_version_7_1_0_linux_double_powm1_boost_powm1]][[GNU_C_version_7_1_0_linux_long_double_powm1_boost_powm1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_powm1_boost_powm1]][[Microsoft_Visual_C_version_14_1_Win32_double_powm1_boost_powm1]]]
]
]
[template table_sqrt1pm1[]
[table:table_sqrt1pm1 Error rates for sqrt1pm1
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[sqrt1pm1][[GNU_C_version_7_1_0_linux_double_sqrt1pm1_boost_sqrt1pm1]][[GNU_C_version_7_1_0_linux_long_double_sqrt1pm1_boost_sqrt1pm1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_sqrt1pm1_boost_sqrt1pm1]][[Microsoft_Visual_C_version_14_1_Win32_double_sqrt1pm1_boost_sqrt1pm1]]]
]
]
[template table_boost_math_powm1[]
[table:table_boost_math_powm1 Error rates for boost::math::powm1
[[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[powm1][[GNU_C_version_7_1_0_linux_long_double_boost_math_powm1__math_h__powm1][br][br][GNU_C_version_7_1_0_linux_long_double_boost_math_powm1_boost_powm1][br][br][GNU_C_version_7_1_0_linux_long_double_boost_math_powm1__cmath__powm1]][[GNU_C_version_7_1_0_linux_double_boost_math_powm1_Rmath_3_2_3_powm1][br][br][GNU_C_version_7_1_0_linux_double_boost_math_powm1_GSL_2_1_powm1][br][br][GNU_C_version_7_1_0_linux_double_boost_math_powm1_boost_powm1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_boost_math_powm1_boost_powm1][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_boost_math_powm1__math_h__powm1]][[Microsoft_Visual_C_version_14_1_Win32_double_boost_math_powm1__math_h__powm1][br][br][Microsoft_Visual_C_version_14_1_Win32_double_boost_math_powm1_boost_powm1]]]
]
]
[template table_spherical_harmonic_i[]
[table:table_spherical_harmonic_i Error rates for spherical_harmonic_i
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Spherical Harmonics][[GNU_C_version_7_1_0_linux_double_spherical_harmonic_i_boost_Spherical_Harmonics]][[GNU_C_version_7_1_0_linux_long_double_spherical_harmonic_i_boost_Spherical_Harmonics]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_spherical_harmonic_i_boost_Spherical_Harmonics]][[Microsoft_Visual_C_version_14_1_Win32_double_spherical_harmonic_i_boost_Spherical_Harmonics]]]
]
]
[template table_spherical_harmonic_r[]
[table:table_spherical_harmonic_r Error rates for spherical_harmonic_r
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[Spherical Harmonics][[GNU_C_version_7_1_0_linux_double_spherical_harmonic_r_boost_Spherical_Harmonics]][[GNU_C_version_7_1_0_linux_long_double_spherical_harmonic_r_boost_Spherical_Harmonics]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_spherical_harmonic_r_boost_Spherical_Harmonics]][[Microsoft_Visual_C_version_14_1_Win32_double_spherical_harmonic_r_boost_Spherical_Harmonics]]]
]
]
[template table_tgamma_ratio[]
[table:table_tgamma_ratio Error rates for tgamma_ratio
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[tgamma ratios][[GNU_C_version_7_1_0_linux_double_tgamma_ratio_boost_tgamma_ratios]][[GNU_C_version_7_1_0_linux_long_double_tgamma_ratio_boost_tgamma_ratios]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_ratio_boost_tgamma_ratios]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_ratio_boost_tgamma_ratios]]]
]
]
[template table_tgamma_delta_ratio[]
[table:table_tgamma_delta_ratio Error rates for tgamma_delta_ratio
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[tgamma + small delta ratios][[GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios]][[GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios]]]
[[tgamma + small delta ratios (negative delta)][[GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_]][[GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_]]]
[[tgamma + small integer ratios][[GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios]][[GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios]]]
[[tgamma + small integer ratios (negative delta)][[GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_]][[GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_]]]
[[integer tgamma ratios][[GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_integer_tgamma_ratios]][[GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_integer_tgamma_ratios]]]
[[integer tgamma ratios (negative delta)][[GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_]][[GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_]]]
]
]
[template table_cos_pi[]
[table:table_cos_pi Error rates for cos_pi
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[sin_pi and cos_pi][[GNU_C_version_7_1_0_linux_double_cos_pi_boost_sin_pi_and_cos_pi]][[GNU_C_version_7_1_0_linux_long_double_cos_pi_boost_sin_pi_and_cos_pi]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cos_pi_boost_sin_pi_and_cos_pi]][[Microsoft_Visual_C_version_14_1_Win32_double_cos_pi_boost_sin_pi_and_cos_pi]]]
[[sin_pi and cos_pi near integers and half integers][[GNU_C_version_7_1_0_linux_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]][[GNU_C_version_7_1_0_linux_long_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]][[Microsoft_Visual_C_version_14_1_Win32_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]]]
]
]
[template table_sin_pi[]
[table:table_sin_pi Error rates for sin_pi
[[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
[[sin_pi and cos_pi][[GNU_C_version_7_1_0_linux_double_sin_pi_boost_sin_pi_and_cos_pi]][[GNU_C_version_7_1_0_linux_long_double_sin_pi_boost_sin_pi_and_cos_pi]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_sin_pi_boost_sin_pi_and_cos_pi]][[Microsoft_Visual_C_version_14_1_Win32_double_sin_pi_boost_sin_pi_and_cos_pi]]]
[[sin_pi and cos_pi near integers and half integers][[GNU_C_version_7_1_0_linux_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]][[GNU_C_version_7_1_0_linux_long_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]][[Microsoft_Visual_C_version_14_1_Win32_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]]]
]
]
[/sections:]
[template section_legendre_p_associated_[]
[section:section_legendre_p_associated_ legendre_p (associated)]
[table_legendre_p_associated_]
[endsect]
]
[template section_legendre_q[]
[section:section_legendre_q legendre_q]
[table_legendre_q]
[endsect]
]
[template section_legendre_p[]
[section:section_legendre_p legendre_p]
[table_legendre_p]
[endsect]
]
[template section_trigamma[]
[section:section_trigamma trigamma]
[table_trigamma]
[endsect]
]
[template section_zeta[]
[section:section_zeta zeta]
[table_zeta]
[endsect]
]
[template section_cyl_bessel_i_integer_orders_[]
[section:section_cyl_bessel_i_integer_orders_ cyl_bessel_i (integer orders)]
[table_cyl_bessel_i_integer_orders_]
[endsect]
]
[template section_cyl_bessel_i[]
[section:section_cyl_bessel_i cyl_bessel_i]
[table_cyl_bessel_i]
[endsect]
]
[template section_cyl_bessel_i_prime_integer_orders_[]
[section:section_cyl_bessel_i_prime_integer_orders_ cyl_bessel_i_prime (integer orders)]
[table_cyl_bessel_i_prime_integer_orders_]
[endsect]
]
[template section_cyl_bessel_i_prime[]
[section:section_cyl_bessel_i_prime cyl_bessel_i_prime]
[table_cyl_bessel_i_prime]
[endsect]
]
[template section_sph_bessel[]
[section:section_sph_bessel sph_bessel]
[table_sph_bessel]
[endsect]
]
[template section_cyl_bessel_j_integer_orders_[]
[section:section_cyl_bessel_j_integer_orders_ cyl_bessel_j (integer orders)]
[table_cyl_bessel_j_integer_orders_]
[endsect]
]
[template section_cyl_bessel_j[]
[section:section_cyl_bessel_j cyl_bessel_j]
[table_cyl_bessel_j]
[endsect]
]
[template section_sph_bessel_prime[]
[section:section_sph_bessel_prime sph_bessel_prime]
[table_sph_bessel_prime]
[endsect]
]
[template section_cyl_bessel_j_prime_integer_orders_[]
[section:section_cyl_bessel_j_prime_integer_orders_ cyl_bessel_j_prime (integer orders)]
[table_cyl_bessel_j_prime_integer_orders_]
[endsect]
]
[template section_cyl_bessel_j_prime[]
[section:section_cyl_bessel_j_prime cyl_bessel_j_prime]
[table_cyl_bessel_j_prime]
[endsect]
]
[template section_cyl_bessel_k_integer_orders_[]
[section:section_cyl_bessel_k_integer_orders_ cyl_bessel_k (integer orders)]
[table_cyl_bessel_k_integer_orders_]
[endsect]
]
[template section_cyl_bessel_k[]
[section:section_cyl_bessel_k cyl_bessel_k]
[table_cyl_bessel_k]
[endsect]
]
[template section_cyl_bessel_k_prime_integer_orders_[]
[section:section_cyl_bessel_k_prime_integer_orders_ cyl_bessel_k_prime (integer orders)]
[table_cyl_bessel_k_prime_integer_orders_]
[endsect]
]
[template section_cyl_bessel_k_prime[]
[section:section_cyl_bessel_k_prime cyl_bessel_k_prime]
[table_cyl_bessel_k_prime]
[endsect]
]
[template section_sph_neumann[]
[section:section_sph_neumann sph_neumann]
[table_sph_neumann]
[endsect]
]
[template section_cyl_neumann_integer_orders_[]
[section:section_cyl_neumann_integer_orders_ cyl_neumann (integer orders)]
[table_cyl_neumann_integer_orders_]
[endsect]
]
[template section_cyl_neumann[]
[section:section_cyl_neumann cyl_neumann]
[table_cyl_neumann]
[endsect]
]
[template section_sph_neumann_prime[]
[section:section_sph_neumann_prime sph_neumann_prime]
[table_sph_neumann_prime]
[endsect]
]
[template section_cyl_neumann_prime_integer_orders_[]
[section:section_cyl_neumann_prime_integer_orders_ cyl_neumann_prime (integer orders)]
[table_cyl_neumann_prime_integer_orders_]
[endsect]
]
[template section_cyl_neumann_prime[]
[section:section_cyl_neumann_prime cyl_neumann_prime]
[table_cyl_neumann_prime]
[endsect]
]
[template section_beta[]
[section:section_beta beta]
[table_beta]
[endsect]
]
[template section_binomial_coefficient[]
[section:section_binomial_coefficient binomial_coefficient]
[table_binomial_coefficient]
[endsect]
]
[template section_ellint_rg[]
[section:section_ellint_rg ellint_rg]
[table_ellint_rg]
[endsect]
]
[template section_ellint_rd[]
[section:section_ellint_rd ellint_rd]
[table_ellint_rd]
[endsect]
]
[template section_ellint_rj[]
[section:section_ellint_rj ellint_rj]
[table_ellint_rj]
[endsect]
]
[template section_ellint_rc[]
[section:section_ellint_rc ellint_rc]
[table_ellint_rc]
[endsect]
]
[template section_ellint_rf[]
[section:section_ellint_rf ellint_rf]
[table_ellint_rf]
[endsect]
]
[template section_cbrt[]
[section:section_cbrt cbrt]
[table_cbrt]
[endsect]
]
[template section_digamma[]
[section:section_digamma digamma]
[table_digamma]
[endsect]
]
[template section_ellint_1_complete_[]
[section:section_ellint_1_complete_ ellint_1 (complete)]
[table_ellint_1_complete_]
[endsect]
]
[template section_ellint_1[]
[section:section_ellint_1 ellint_1]
[table_ellint_1]
[endsect]
]
[template section_ellint_2_complete_[]
[section:section_ellint_2_complete_ ellint_2 (complete)]
[table_ellint_2_complete_]
[endsect]
]
[template section_ellint_2[]
[section:section_ellint_2 ellint_2]
[table_ellint_2]
[endsect]
]
[template section_ellint_3_complete_[]
[section:section_ellint_3_complete_ ellint_3 (complete)]
[table_ellint_3_complete_]
[endsect]
]
[template section_ellint_3[]
[section:section_ellint_3 ellint_3]
[table_ellint_3]
[endsect]
]
[template section_ellint_d_complete_[]
[section:section_ellint_d_complete_ ellint_d (complete)]
[table_ellint_d_complete_]
[endsect]
]
[template section_ellint_d[]
[section:section_ellint_d ellint_d]
[table_ellint_d]
[endsect]
]
[template section_erfc_inv[]
[section:section_erfc_inv erfc_inv]
[table_erfc_inv]
[endsect]
]
[template section_erf_inv[]
[section:section_erf_inv erf_inv]
[table_erf_inv]
[endsect]
]
[template section_erfc[]
[section:section_erfc erfc]
[table_erfc]
[endsect]
]
[template section_erf[]
[section:section_erf erf]
[table_erf]
[endsect]
]
[template section_expint_En_[]
[section:section_expint_En_ expint (En)]
[table_expint_En_]
[endsect]
]
[template section_expint_Ei_[]
[section:section_expint_Ei_ expint (Ei)]
[table_expint_Ei_]
[endsect]
]
[template section_tgamma1pm1[]
[section:section_tgamma1pm1 tgamma1pm1]
[table_tgamma1pm1]
[endsect]
]
[template section_lgamma[]
[section:section_lgamma lgamma]
[table_lgamma]
[endsect]
]
[template section_tgamma[]
[section:section_tgamma tgamma]
[table_tgamma]
[endsect]
]
[template section_hermite[]
[section:section_hermite hermite]
[table_hermite]
[endsect]
]
[template section_heuman_lambda[]
[section:section_heuman_lambda heuman_lambda]
[table_heuman_lambda]
[endsect]
]
[template section_ibetac[]
[section:section_ibetac ibetac]
[table_ibetac]
[endsect]
]
[template section_ibeta[]
[section:section_ibeta ibeta]
[table_ibeta]
[endsect]
]
[template section_betac[]
[section:section_betac betac]
[table_betac]
[endsect]
]
[template section_beta_incomplete_[]
[section:section_beta_incomplete_ beta (incomplete)]
[table_beta_incomplete_]
[endsect]
]
[template section_ibetac_inv[]
[section:section_ibetac_inv ibetac_inv]
[table_ibetac_inv]
[endsect]
]
[template section_ibeta_inv[]
[section:section_ibeta_inv ibeta_inv]
[table_ibeta_inv]
[endsect]
]
[template section_ibetac_invb[]
[section:section_ibetac_invb ibetac_invb]
[table_ibetac_invb]
[endsect]
]
[template section_ibeta_invb[]
[section:section_ibeta_invb ibeta_invb]
[table_ibeta_invb]
[endsect]
]
[template section_ibetac_inva[]
[section:section_ibetac_inva ibetac_inva]
[table_ibetac_inva]
[endsect]
]
[template section_ibeta_inva[]
[section:section_ibeta_inva ibeta_inva]
[table_ibeta_inva]
[endsect]
]
[template section_gamma_p[]
[section:section_gamma_p gamma_p]
[table_gamma_p]
[endsect]
]
[template section_gamma_q[]
[section:section_gamma_q gamma_q]
[table_gamma_q]
[endsect]
]
[template section_tgamma_lower[]
[section:section_tgamma_lower tgamma_lower]
[table_tgamma_lower]
[endsect]
]
[template section_tgamma_incomplete_[]
[section:section_tgamma_incomplete_ tgamma (incomplete)]
[table_tgamma_incomplete_]
[endsect]
]
[template section_gamma_q_inv[]
[section:section_gamma_q_inv gamma_q_inv]
[table_gamma_q_inv]
[endsect]
]
[template section_gamma_p_inv[]
[section:section_gamma_p_inv gamma_p_inv]
[table_gamma_p_inv]
[endsect]
]
[template section_gamma_q_inva[]
[section:section_gamma_q_inva gamma_q_inva]
[table_gamma_q_inva]
[endsect]
]
[template section_gamma_p_inva[]
[section:section_gamma_p_inva gamma_p_inva]
[table_gamma_p_inva]
[endsect]
]
[template section_jacobi_dn[]
[section:section_jacobi_dn jacobi_dn]
[table_jacobi_dn]
[endsect]
]
[template section_jacobi_cn[]
[section:section_jacobi_cn jacobi_cn]
[table_jacobi_cn]
[endsect]
]
[template section_jacobi_sn[]
[section:section_jacobi_sn jacobi_sn]
[table_jacobi_sn]
[endsect]
]
[template section_jacobi_zeta[]
[section:section_jacobi_zeta jacobi_zeta]
[table_jacobi_zeta]
[endsect]
]
[template section_laguerre_n_m_x_[]
[section:section_laguerre_n_m_x_ laguerre(n, m, x)]
[table_laguerre_n_m_x_]
[endsect]
]
[template section_laguerre_n_x_[]
[section:section_laguerre_n_x_ laguerre(n, x)]
[table_laguerre_n_x_]
[endsect]
]
[template section_expm1[]
[section:section_expm1 expm1]
[table_expm1]
[endsect]
]
[template section_log1p[]
[section:section_log1p log1p]
[table_log1p]
[endsect]
]
[template section_non_central_beta_CDF_complement[]
[section:section_non_central_beta_CDF_complement non central beta CDF complement]
[table_non_central_beta_CDF_complement]
[endsect]
]
[template section_non_central_beta_CDF[]
[section:section_non_central_beta_CDF non central beta CDF]
[table_non_central_beta_CDF]
[endsect]
]
[template section_non_central_chi_squared_CDF_complement[]
[section:section_non_central_chi_squared_CDF_complement non central chi squared CDF complement]
[table_non_central_chi_squared_CDF_complement]
[endsect]
]
[template section_non_central_chi_squared_CDF[]
[section:section_non_central_chi_squared_CDF non central chi squared CDF]
[table_non_central_chi_squared_CDF]
[endsect]
]
[template section_non_central_t_CDF_complement[]
[section:section_non_central_t_CDF_complement non central t CDF complement]
[table_non_central_t_CDF_complement]
[endsect]
]
[template section_non_central_t_CDF[]
[section:section_non_central_t_CDF non central t CDF]
[table_non_central_t_CDF]
[endsect]
]
[template section_owens_t[]
[section:section_owens_t owens_t]
[table_owens_t]
[endsect]
]
[template section_polygamma[]
[section:section_polygamma polygamma]
[table_polygamma]
[endsect]
]
[template section_powm1[]
[section:section_powm1 powm1]
[table_powm1]
[endsect]
]
[template section_sqrt1pm1[]
[section:section_sqrt1pm1 sqrt1pm1]
[table_sqrt1pm1]
[endsect]
]
[template section_boost_math_powm1[]
[section:section_boost_math_powm1 boost::math::powm1]
[table_boost_math_powm1]
[endsect]
]
[template section_spherical_harmonic_i[]
[section:section_spherical_harmonic_i spherical_harmonic_i]
[table_spherical_harmonic_i]
[endsect]
]
[template section_spherical_harmonic_r[]
[section:section_spherical_harmonic_r spherical_harmonic_r]
[table_spherical_harmonic_r]
[endsect]
]
[template section_tgamma_ratio[]
[section:section_tgamma_ratio tgamma_ratio]
[table_tgamma_ratio]
[endsect]
]
[template section_tgamma_delta_ratio[]
[section:section_tgamma_delta_ratio tgamma_delta_ratio]
[table_tgamma_delta_ratio]
[endsect]
]
[template section_cos_pi[]
[section:section_cos_pi cos_pi]
[table_cos_pi]
[endsect]
]
[template section_sin_pi[]
[section:section_sin_pi sin_pi]
[table_sin_pi]
[endsect]
]
[template all_sections[]
[section_beta]
[section_beta_incomplete_]
[section_betac]
[section_binomial_coefficient]
[section_boost_math_powm1]
[section_cbrt]
[section_cos_pi]
[section_cyl_bessel_i]
[section_cyl_bessel_i_integer_orders_]
[section_cyl_bessel_i_prime]
[section_cyl_bessel_i_prime_integer_orders_]
[section_cyl_bessel_j]
[section_cyl_bessel_j_integer_orders_]
[section_cyl_bessel_j_prime]
[section_cyl_bessel_j_prime_integer_orders_]
[section_cyl_bessel_k]
[section_cyl_bessel_k_integer_orders_]
[section_cyl_bessel_k_prime]
[section_cyl_bessel_k_prime_integer_orders_]
[section_cyl_neumann]
[section_cyl_neumann_integer_orders_]
[section_cyl_neumann_prime]
[section_cyl_neumann_prime_integer_orders_]
[section_digamma]
[section_ellint_1]
[section_ellint_1_complete_]
[section_ellint_2]
[section_ellint_2_complete_]
[section_ellint_3]
[section_ellint_3_complete_]
[section_ellint_d]
[section_ellint_d_complete_]
[section_ellint_rc]
[section_ellint_rd]
[section_ellint_rf]
[section_ellint_rg]
[section_ellint_rj]
[section_erf]
[section_erf_inv]
[section_erfc]
[section_erfc_inv]
[section_expint_Ei_]
[section_expint_En_]
[section_expm1]
[section_gamma_p]
[section_gamma_p_inv]
[section_gamma_p_inva]
[section_gamma_q]
[section_gamma_q_inv]
[section_gamma_q_inva]
[section_hermite]
[section_heuman_lambda]
[section_ibeta]
[section_ibeta_inv]
[section_ibeta_inva]
[section_ibeta_invb]
[section_ibetac]
[section_ibetac_inv]
[section_ibetac_inva]
[section_ibetac_invb]
[section_jacobi_cn]
[section_jacobi_dn]
[section_jacobi_sn]
[section_jacobi_zeta]
[section_laguerre_n_m_x_]
[section_laguerre_n_x_]
[section_legendre_p]
[section_legendre_p_associated_]
[section_legendre_q]
[section_lgamma]
[section_log1p]
[section_non_central_beta_CDF]
[section_non_central_beta_CDF_complement]
[section_non_central_chi_squared_CDF]
[section_non_central_chi_squared_CDF_complement]
[section_non_central_t_CDF]
[section_non_central_t_CDF_complement]
[section_owens_t]
[section_polygamma]
[section_powm1]
[section_sin_pi]
[section_sph_bessel]
[section_sph_bessel_prime]
[section_sph_neumann]
[section_sph_neumann_prime]
[section_spherical_harmonic_i]
[section_spherical_harmonic_r]
[section_sqrt1pm1]
[section_tgamma]
[section_tgamma1pm1]
[section_tgamma_delta_ratio]
[section_tgamma_incomplete_]
[section_tgamma_lower]
[section_tgamma_ratio]
[section_trigamma]
[section_zeta]
]
[template all_tables[]
[table_beta]
[table_beta_incomplete_]
[table_betac]
[table_binomial_coefficient]
[table_boost_math_powm1]
[table_cbrt]
[table_cos_pi]
[table_cyl_bessel_i]
[table_cyl_bessel_i_integer_orders_]
[table_cyl_bessel_i_prime]
[table_cyl_bessel_i_prime_integer_orders_]
[table_cyl_bessel_j]
[table_cyl_bessel_j_integer_orders_]
[table_cyl_bessel_j_prime]
[table_cyl_bessel_j_prime_integer_orders_]
[table_cyl_bessel_k]
[table_cyl_bessel_k_integer_orders_]
[table_cyl_bessel_k_prime]
[table_cyl_bessel_k_prime_integer_orders_]
[table_cyl_neumann]
[table_cyl_neumann_integer_orders_]
[table_cyl_neumann_prime]
[table_cyl_neumann_prime_integer_orders_]
[table_digamma]
[table_ellint_1]
[table_ellint_1_complete_]
[table_ellint_2]
[table_ellint_2_complete_]
[table_ellint_3]
[table_ellint_3_complete_]
[table_ellint_d]
[table_ellint_d_complete_]
[table_ellint_rc]
[table_ellint_rd]
[table_ellint_rf]
[table_ellint_rg]
[table_ellint_rj]
[table_erf]
[table_erf_inv]
[table_erfc]
[table_erfc_inv]
[table_expint_Ei_]
[table_expint_En_]
[table_expm1]
[table_gamma_p]
[table_gamma_p_inv]
[table_gamma_p_inva]
[table_gamma_q]
[table_gamma_q_inv]
[table_gamma_q_inva]
[table_hermite]
[table_heuman_lambda]
[table_ibeta]
[table_ibeta_inv]
[table_ibeta_inva]
[table_ibeta_invb]
[table_ibetac]
[table_ibetac_inv]
[table_ibetac_inva]
[table_ibetac_invb]
[table_jacobi_cn]
[table_jacobi_dn]
[table_jacobi_sn]
[table_jacobi_zeta]
[table_laguerre_n_m_x_]
[table_laguerre_n_x_]
[table_legendre_p]
[table_legendre_p_associated_]
[table_legendre_q]
[table_lgamma]
[table_log1p]
[table_non_central_beta_CDF]
[table_non_central_beta_CDF_complement]
[table_non_central_chi_squared_CDF]
[table_non_central_chi_squared_CDF_complement]
[table_non_central_t_CDF]
[table_non_central_t_CDF_complement]
[table_owens_t]
[table_polygamma]
[table_powm1]
[table_sin_pi]
[table_sph_bessel]
[table_sph_bessel_prime]
[table_sph_neumann]
[table_sph_neumann_prime]
[table_spherical_harmonic_i]
[table_spherical_harmonic_r]
[table_sqrt1pm1]
[table_tgamma]
[table_tgamma1pm1]
[table_tgamma_delta_ratio]
[table_tgamma_incomplete_]
[table_tgamma_lower]
[table_tgamma_ratio]
[table_trigamma]
[table_zeta]
]
[/error_content:]
[template errors_Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_JN_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_j (integer orders) with compiler Microsoft Visual C++ version 14.1 and library <math.h> and test data Bessel JN: Mathworld Data (Integer Version)]
[#errors_Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_JN_Mathworld_Data_Integer_Version_]
CAUTION: Found non-finite result, when a finite value was expected at entry 16[br]Found: -nan(ind) Expected 0 Error: 1.79769e+308[br]10, 1e-100, 0[br]CAUTION: Gross error found at entry 16.[br]Found: -nan(ind) Expected 0 Error: 1.79769e+308[br]10, 1e-100, 0[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_legendre_p_associated__GSL_2_1_Associated_Legendre_Polynomials_Small_Values[]
[h4 Error Output For legendre_p (associated) with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Associated Legendre Polynomials: Small Values]
[#errors_GNU_C_version_7_1_0_linux_double_legendre_p_associated__GSL_2_1_Associated_Legendre_Polynomials_Small_Values]
domain error[br]3.75573, -3, 0.264719, 0.0186823[br]domain error[br]3.75573, -3, 0.670017, 0.0085227[br]domain error[br]3.75573, -3, 0.915014, 0.00136786[br]domain error[br]3.75573, -3, 0.93539, 0.000921218[br]domain error[br]3.75573, -2, -0.804919, -0.035427[br]domain error[br]3.75573, -2, -0.623236, -0.0476446[br]domain error[br]3.75573, -2, 0.629447, 0.0475072[br]domain error[br]3.75573, -2, 0.929777, 0.0157498[br]domain error[br]3.75573, -2, 0.985763, 0.0034837[br]domain error[br]3.75573, -1, 0.093763, -0.118979[br]domain error[br]4.28576, -4, 0.0944412, 0.00255792[br]domain error[br]4.28576, -4, 0.670017, 0.000790849[br]domain error[br]4.28576, -3, -0.746026, -0.00458957[br]domain error[br]4.28576, -2, -0.623236, 0.0219016[br]domain error[br]4.28576, -2, 0.629447, 0.0223081[br]domain error[br]4.28576, -2, 0.93539, 0.0133504[br]domain error[br]4.28576, -1, 0.915014, 0.132001[br]domain error[br]4.28576, -1, 0.985763, 0.0787743[br]domain error[br]4.43859, -4, 0.093763, 0.00255858[br]domain error[br]4.43859, -4, 0.811584, 0.000303404[br]domain error[br]4.43859, -4, 0.826752, 0.000260835[br]domain error[br]4.43859, -4, 0.929777, 4.78235e-05[br]domain error[br]4.43859, -3, -0.804919, -0.00350364[br]domain error[br]4.43859, -3, -0.729046, -0.00487043[br]domain error[br]4.43859, -3, -0.623236, -0.00620995[br]domain error[br]4.43859, -3, 0.93539, 0.000861698[br]domain error[br]4.43859, -2, -0.557932, 0.0169167[br]domain error[br]4.43859, -2, -0.443004, 0.0062586[br]domain error[br]4.43859, -2, 0.915014, 0.016481[br]domain error[br]4.43859, -1, 0.629447, -0.0138523[br]domain error[br]5.39088, -5, 0.0944412, 0.000254649[br]domain error[br]5.39088, -5, 0.264719, 0.000217164[br]domain error[br]5.39088, -5, 0.670017, 5.87083e-05[br]domain error[br]5.39088, -5, 0.915014, 2.78273e-06[br]domain error[br]5.39088, -3, 0.929777, 0.000880849[br]domain error[br]5.39088, -2, 0.629447, 0.00448021[br]domain error[br]5.39088, -2, 0.826752, 0.01718[br]domain error[br]5.39088, -2, 0.937736, 0.011583[br]domain error[br]5.39088, -1, -0.804919, 0.0276144[br]domain error[br]5.39088, -1, -0.746026, -0.0119425[br]domain error[br]5.39088, -1, -0.443004, -0.0525987[br]domain error[br]5.39088, -1, 0.811584, 0.032475[br]domain error[br]5.39088, -1, 0.985763, 0.0759289[br]domain error[br]5.97861, -5, -0.729046, 3.91223e-05[br]domain error[br]5.97861, -5, -0.383666, 0.000174899[br]domain error[br]5.97861, -5, 0.93539, 1.43993e-06[br]domain error[br]5.97861, -4, -0.623236, -0.000607048[br]domain error[br]5.97861, -4, 0.264719, 0.00059614[br]domain error[br]5.97861, -3, 0.629447, 0.00313497[br]domain error[br]5.97861, -3, 0.670017, 0.00323895[br]domain error[br]5.97861, -2, 0.915014, 0.0140705[br]domain error[br]5.97861, -2, 0.992923, 0.00171356[br]domain error[br]5.97861, -1, -0.746026, -0.0119425[br]domain error[br]5.97861, -1, 0.937736, 0.106972[br]domain error[br]7.01297, -6, -0.443004, -4.99177e-06[br]domain error[br]7.01297, -6, 0.629447, 3.00689e-06[br]domain error[br]7.01297, -6, 0.811584, 7.00407e-07[br]domain error[br]7.01297, -6, 0.985763, 4.83431e-10[br]domain error[br]7.01297, -3, 0.670017, 0.000233323[br]domain error[br]7.01297, -2, -0.804919, -0.0027739[br]domain error[br]7.01297, -1, -0.383666, 0.0397866[br]domain error[br]7.01297, -1, 0.929777, 0.0544549[br]domain error[br]7.54701, -7, 0.929777, 1.42008e-09[br]domain error[br]7.54701, -6, 0.992923, 6.04622e-11[br]domain error[br]7.54701, -5, -0.804919, 1.18502e-05[br]domain error[br]7.54701, -5, -0.623236, 2.57049e-05[br]domain error[br]7.54701, -5, -0.557932, 2.60266e-05[br]domain error[br]7.54701, -5, 0.826752, 9.64276e-06[br]domain error[br]7.54701, -4, -0.746026, -0.0001618[br]domain error[br]7.54701, -3, 0.0944412, 0.000622493[br]domain error[br]7.54701, -3, 0.985763, 9.14782e-05[br]domain error[br]7.54701, -1, 0.811584, -0.0376184[br]domain error[br]11.8439, -10, -0.557932, -2.32652e-11[br]domain error[br]11.8439, -10, 0.811584, 1.01194e-12[br]domain error[br]11.8439, -8, -0.746026, -1.34891e-09[br]domain error[br]11.8439, -8, -0.729046, -1.5428e-09[br]domain error[br]11.8439, -8, 0.985763, 5.90035e-14[br]domain error[br]11.8439, -4, 0.629447, -1.44723e-05[br]domain error[br]11.8439, -4, 0.929777, 1.98812e-05[br]domain error[br]11.8439, -3, 0.670017, -4.58296e-05[br]domain error[br]11.8439, -2, 0.826752, -0.00244759[br]domain error[br]11.8439, -2, 0.992923, 0.00151458[br]domain error[br]11.8439, -1, -0.383666, 0.00419108[br]domain error[br]11.85, -11, 0.093763, 1.16526e-11[br]domain error[br]11.85, -11, 0.929777, 2.05797e-16[br]domain error[br]11.85, -11, 0.93539, 1.32249e-16[br]domain error[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_legendre_p_associated___cmath__Associated_Legendre_Polynomials_Small_Values[]
[h4 Error Output For legendre_p (associated) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Associated Legendre Polynomials: Small Values]
[#errors_GNU_C_version_7_1_0_linux_long_double_legendre_p_associated___cmath__Associated_Legendre_Polynomials_Small_Values]
order parameters less than 0 not supported in TR1[br]3.75573, -3, 0.264719, 0.0186823[br]order parameters less than 0 not supported in TR1[br]3.75573, -3, 0.670017, 0.0085227[br]order parameters less than 0 not supported in TR1[br]3.75573, -3, 0.915014, 0.00136786[br]order parameters less than 0 not supported in TR1[br]3.75573, -3, 0.93539, 0.000921218[br]order parameters less than 0 not supported in TR1[br]3.75573, -2, -0.804919, -0.035427[br]order parameters less than 0 not supported in TR1[br]3.75573, -2, -0.623236, -0.0476446[br]order parameters less than 0 not supported in TR1[br]3.75573, -2, 0.629447, 0.0475072[br]order parameters less than 0 not supported in TR1[br]3.75573, -2, 0.929777, 0.0157498[br]order parameters less than 0 not supported in TR1[br]3.75573, -2, 0.985763, 0.0034837[br]order parameters less than 0 not supported in TR1[br]3.75573, -1, 0.093763, -0.118979[br]order parameters less than 0 not supported in TR1[br]4.28576, -4, 0.0944412, 0.00255792[br]order parameters less than 0 not supported in TR1[br]4.28576, -4, 0.670017, 0.000790849[br]order parameters less than 0 not supported in TR1[br]4.28576, -3, -0.746026, -0.00458957[br]order parameters less than 0 not supported in TR1[br]4.28576, -2, -0.623236, 0.0219016[br]order parameters less than 0 not supported in TR1[br]4.28576, -2, 0.629447, 0.0223081[br]order parameters less than 0 not supported in TR1[br]4.28576, -2, 0.93539, 0.0133504[br]order parameters less than 0 not supported in TR1[br]4.28576, -1, 0.915014, 0.132001[br]order parameters less than 0 not supported in TR1[br]4.28576, -1, 0.985763, 0.0787743[br]order parameters less than 0 not supported in TR1[br]4.43859, -4, 0.093763, 0.00255858[br]order parameters less than 0 not supported in TR1[br]4.43859, -4, 0.811584, 0.000303404[br]order parameters less than 0 not supported in TR1[br]4.43859, -4, 0.826752, 0.000260835[br]order parameters less than 0 not supported in TR1[br]4.43859, -4, 0.929777, 4.78235e-05[br]order parameters less than 0 not supported in TR1[br]4.43859, -3, -0.804919, -0.00350364[br]order parameters less than 0 not supported in TR1[br]4.43859, -3, -0.729046, -0.00487043[br]order parameters less than 0 not supported in TR1[br]4.43859, -3, -0.623236, -0.00620995[br]order parameters less than 0 not supported in TR1[br]4.43859, -3, 0.93539, 0.000861698[br]order parameters less than 0 not supported in TR1[br]4.43859, -2, -0.557932, 0.0169167[br]order parameters less than 0 not supported in TR1[br]4.43859, -2, -0.443004, 0.0062586[br]order parameters less than 0 not supported in TR1[br]4.43859, -2, 0.915014, 0.016481[br]order parameters less than 0 not supported in TR1[br]4.43859, -1, 0.629447, -0.0138523[br]order parameters less than 0 not supported in TR1[br]5.39088, -5, 0.0944412, 0.000254649[br]order parameters less than 0 not supported in TR1[br]5.39088, -5, 0.264719, 0.000217164[br]order parameters less than 0 not supported in TR1[br]5.39088, -5, 0.670017, 5.87083e-05[br]order parameters less than 0 not supported in TR1[br]5.39088, -5, 0.915014, 2.78273e-06[br]order parameters less than 0 not supported in TR1[br]5.39088, -3, 0.929777, 0.000880849[br]order parameters less than 0 not supported in TR1[br]5.39088, -2, 0.629447, 0.00448021[br]order parameters less than 0 not supported in TR1[br]5.39088, -2, 0.826752, 0.01718[br]order parameters less than 0 not supported in TR1[br]5.39088, -2, 0.937736, 0.011583[br]order parameters less than 0 not supported in TR1[br]5.39088, -1, -0.804919, 0.0276144[br]order parameters less than 0 not supported in TR1[br]5.39088, -1, -0.746026, -0.0119425[br]order parameters less than 0 not supported in TR1[br]5.39088, -1, -0.443004, -0.0525987[br]order parameters less than 0 not supported in TR1[br]5.39088, -1, 0.811584, 0.032475[br]order parameters less than 0 not supported in TR1[br]5.39088, -1, 0.985763, 0.0759289[br]order parameters less than 0 not supported in TR1[br]5.97861, -5, -0.729046, 3.91223e-05[br]order parameters less than 0 not supported in TR1[br]5.97861, -5, -0.383666, 0.000174899[br]order parameters less than 0 not supported in TR1[br]5.97861, -5, 0.93539, 1.43993e-06[br]order parameters less than 0 not supported in TR1[br]5.97861, -4, -0.623236, -0.000607048[br]order parameters less than 0 not supported in TR1[br]5.97861, -4, 0.264719, 0.00059614[br]order parameters less than 0 not supported in TR1[br]5.97861, -3, 0.629447, 0.00313497[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data_large_values_[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel Iv: Mathworld Data (large values)]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data_large_values_]
CAUTION: Gross error found at entry 0.[br]Found: 0 Expected 1.86459e-155 Error: 8.37988e+152[br]-1, 3.72917e-155, 1.86459e-155[br]CAUTION: Gross error found at entry 1.[br]Found: 0 Expected 1.86459e-155 Error: 8.37988e+152[br]1, 3.72917e-155, 1.86459e-155[br]CAUTION: Gross error found at entry 3.[br]Found: 0 Expected 8.02269e-175 Error: 3.60559e+133[br]1.125, 3.72917e-155, 8.02269e-175[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_In_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_i (integer orders) with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel In: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_In_Mathworld_Data_Integer_Version_]
Unsupported domain[br]-5, -1, -0.000271463[br]Unsupported domain[br]10, -5, 0.00458004[br]Unsupported domain[br]-100, -200, 4.35275e+74[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I1_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_i (integer orders) with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel I1: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I1_Mathworld_Data_Integer_Version_]
Unsupported domain[br]1, -2, -1.59064[br]Unsupported domain[br]1, -8, -399.873[br]Unsupported domain[br]1, -10, -2670.99[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I0_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_i (integer orders) with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel I0: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I0_Mathworld_Data_Integer_Version_]
Unsupported domain[br]0, -2, 2.27959[br]Unsupported domain[br]0, -7, 168.594[br]Unsupported domain[br]0, -1, 1.26607[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Mathworld_Data[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel In: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Mathworld_Data]
Unsupported domain[br]-5, -1, -0.000271463[br]Unsupported domain[br]10, -5, 0.00458004[br]Unsupported domain[br]-100, -200, 4.35275e+74[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I1_Mathworld_Data[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel I1: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I1_Mathworld_Data]
Unsupported domain[br]1, -2, -1.59064[br]Unsupported domain[br]1, -8, -399.873[br]Unsupported domain[br]1, -10, -2670.99[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I0_Mathworld_Data[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel I0: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I0_Mathworld_Data]
Unsupported domain[br]0, -2, 2.27959[br]Unsupported domain[br]0, -7, 168.594[br]Unsupported domain[br]0, -1, 1.26607[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel J: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data]
CAUTION: Gross error found at entry 6.[br]Found: 0 Expected -0.000747424 Error: 3.3591e+304[br]5.5, 1e+06, -0.000747424[br]CAUTION: Gross error found at entry 7.[br]Found: 0 Expected -0.0007766 Error: 3.49022e+304[br]5.125, 1e+06, -0.0007766[br]CAUTION: Gross error found at entry 8.[br]Found: 0 Expected -0.000466323 Error: 2.09576e+304[br]5.875, 1e+06, -0.000466323[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_JN_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_j (integer orders) with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel JN: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_JN_Mathworld_Data_Integer_Version_]
Unsupported domain[br]5, -10, 0.234062[br]CAUTION: Gross error found at entry 6.[br]Found: 0 Expected 0.000725964 Error: 3.26265e+304[br]-5, 1e+06, 0.000725964[br]CAUTION: Gross error found at entry 7.[br]Found: 0 Expected -0.000725964 Error: 3.26265e+304[br]5, 1e+06, -0.000725964[br]Unsupported domain[br]-5, -1, 0.000249758[br]Unsupported domain[br]10, -10, 0.207486[br]Unsupported domain[br]10, -5, 0.0014678[br]CAUTION: Gross error found at entry 12.[br]Found: 0 Expected -0.000331079 Error: 1.48795e+304[br]-10, 1e+06, -0.000331079[br]CAUTION: Gross error found at entry 13.[br]Found: 0 Expected -0.000331079 Error: 1.48795e+304[br]10, 1e+06, -0.000331079[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_j (integer orders) with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel J1: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_Integer_Version_]
Unsupported domain[br]1, -2, -0.576725[br]Unsupported domain[br]1, -8, -0.234636[br]Unsupported domain[br]1, -10, -0.0434727[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_j (integer orders) with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel J0: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Integer_Version_]
Unsupported domain[br]0, -2, 0.223891[br]Unsupported domain[br]0, -8, 0.171651[br]Unsupported domain[br]0, -10, -0.245936[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Mathworld_Data[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel JN: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Mathworld_Data]
Unsupported domain[br]5, -10, 0.234062[br]CAUTION: Gross error found at entry 6.[br]Found: 0 Expected 0.000725964 Error: 3.26265e+304[br]-5, 1e+06, 0.000725964[br]CAUTION: Gross error found at entry 7.[br]Found: 0 Expected -0.000725964 Error: 3.26265e+304[br]5, 1e+06, -0.000725964[br]Unsupported domain[br]-5, -1, 0.000249758[br]Unsupported domain[br]10, -10, 0.207486[br]Unsupported domain[br]10, -5, 0.0014678[br]CAUTION: Gross error found at entry 12.[br]Found: 0 Expected -0.000331079 Error: 1.48795e+304[br]-10, 1e+06, -0.000331079[br]CAUTION: Gross error found at entry 13.[br]Found: 0 Expected -0.000331079 Error: 1.48795e+304[br]10, 1e+06, -0.000331079[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel J1: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data]
Unsupported domain[br]1, -2, -0.576725[br]Unsupported domain[br]1, -8, -0.234636[br]Unsupported domain[br]1, -10, -0.0434727[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel J0: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data]
Unsupported domain[br]0, -2, 0.223891[br]Unsupported domain[br]0, -8, 0.171651[br]Unsupported domain[br]0, -10, -0.245936[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_ibetac_inv_Rmath_3_2_3_Inverse_incomplete_beta[]
[h4 Error Output For ibetac_inv with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Inverse incomplete beta]
[#errors_GNU_C_version_7_1_0_linux_double_ibetac_inv_Rmath_3_2_3_Inverse_incomplete_beta]
CAUTION: Gross error found at entry 7.[br]Found: 3.8247e-302 Expected 0 Error: 1.71891e+06[br]1.38853e-05, 0.0497627, 0.632396, 0, 0[br]CAUTION: Gross error found at entry 71.[br]Found: 1.38362e-204 Expected 0 Error: 6.21832e+103[br]3.77931e-05, 0.0150073, 0.835025, 0, 0[br]CAUTION: Gross error found at entry 90.[br]Found: 1.09275e-303 Expected 0 Error: 49109.6[br]4.29383e-05, 0.0428761, 0.814742, 0, 0[br]CAUTION: Gross error found at entry 102.[br]Found: 3.8625e-304 Expected 0 Error: 17358[br]4.80089e-05, 0.0296236, 0.913384, 0, 0[br]CAUTION: Gross error found at entry 115.[br]Found: 1.51774e-303 Expected 0 Error: 68209.8[br]0.000130387, 0.0404969, 0.814742, 0, 0[br]CAUTION: Gross error found at entry 123.[br]Found: 1.28036e-303 Expected 0 Error: 57541.4[br]0.000149328, 0.0201182, 0.905801, 5.70765e-267, 0[br]CAUTION: Gross error found at entry 133.[br]Found: 1.96732e-302 Expected 0 Error: 884160[br]0.000173563, 0.0301908, 0.913384, 4.21662e-213, 0[br]CAUTION: Gross error found at entry 159.[br]Found: 1.48697e-191 Expected 0 Error: 6.68279e+116[br]0.000260723, 0.0252933, 0.632396, 0, 0[br]CAUTION: Gross error found at entry 256.[br]Found: 9.24166e-245 Expected 0 Error: 4.15342e+63[br]0.00246975, 0.016063, 0.913384, 1, 0[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_ibeta_inv_Rmath_3_2_3_Inverse_incomplete_beta[]
[h4 Error Output For ibeta_inv with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Inverse incomplete beta]
[#errors_GNU_C_version_7_1_0_linux_double_ibeta_inv_Rmath_3_2_3_Inverse_incomplete_beta]
CAUTION: Gross error found at entry 1.[br]Found: 1.90197e-247 Expected 0 Error: 8.54789e+60[br]1.12733e-05, 0.022662, 0.135563, 0, 0[br]CAUTION: Gross error found at entry 30.[br]Found: 1.36217e-301 Expected 0 Error: 6.12191e+06[br]2.10769e-05, 0.0448972, 0.221112, 0, 0[br]CAUTION: Gross error found at entry 152.[br]Found: 2.92621e-285 Expected 0 Error: 1.31511e+23[br]0.000240381, 0.017982, 0.221112, 0, 0[br]CAUTION: Gross error found at entry 184.[br]Found: 5.63355e-203 Expected 0 Error: 2.53185e+105[br]0.000348822, 0.0275467, 0.135563, 0, 1.88165e-166[br]CAUTION: Gross error found at entry 205.[br]Found: 5.52731e-303 Expected 0 Error: 248409[br]0.000441212, 0.0313573, 0.127074, 0, 9.07221e-121[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_large_parameters[]
[h4 Error Output For non central beta CDF complement with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central Beta, large parameters]
[#errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_large_parameters]
CAUTION: Gross error found at entry 10.[br]Found: 9.76918e-10 Expected 1.61248e-15 Error: 605846[br]290.682, 72.6705, 20005.4, 0.997663, 1, 1.61248e-15[br]CAUTION: Gross error found at entry 11.[br]Found: 9.94184e-10 Expected 3.0108e-42 Error: 3.30205e+32[br]290.682, 145.341, 53489.1, 0.998663, 1, 3.0108e-42[br]CAUTION: Gross error found at entry 16.[br]Found: 8.45406e-10 Expected 4.46652e-22 Error: 1.89276e+12[br]290.682, 1162.73, 2308.07, 0.656921, 1, 4.46652e-22[br]CAUTION: Gross error found at entry 17.[br]Found: 9.41971e-10 Expected 1.7241e-50 Error: 5.46356e+40[br]290.682, 1453.41, 8064.48, 0.832237, 1, 1.7241e-50[br]CAUTION: Gross error found at entry 18.[br]Found: 9.30663e-10 Expected 2.09803e-305 Error: 4.43589e+295[br]975.766, 731.824, 232.285, 0.919742, 1, 2.09803e-305[br]CAUTION: Gross error found at entry 27.[br]Found: 9.76918e-10 Expected 9.3474e-18 Error: 1.04512e+08[br]1879.05, 187.905, 20005.4, 0.992215, 1, 9.3474e-18[br]CAUTION: Gross error found at entry 28.[br]Found: 9.94184e-10 Expected 1.8122e-90 Error: 5.48607e+80[br]1879.05, 469.762, 53489.1, 0.994618, 1, 1.8122e-90[br]CAUTION: Gross error found at entry 32.[br]Found: 9.27224e-10 Expected 3.18255e-15 Error: 291345[br]1879.05, 3758.1, 1879.05, 0.480508, 1, 3.18255e-15[br]CAUTION: Gross error found at entry 33.[br]Found: 8.45406e-10 Expected 1.10218e-77 Error: 7.67029e+67[br]1879.05, 5637.15, 2308.07, 0.458181, 1, 1.10218e-77[br]CAUTION: Gross error found at entry 34.[br]Found: 9.30663e-10 Expected 0 Error: 4.18262e+298[br]2308.07, 1154.03, 232.285, 0.919371, 1, 0[br]CAUTION: Gross error found at entry 35.[br]Found: 8.93617e-10 Expected 0 Error: 4.01612e+298[br]2308.07, 1731.05, 290.682, 0.917262, 1, 0[br]CAUTION: Gross error found at entry 43.[br]Found: 9.94184e-10 Expected 3.57283e-70 Error: 2.78262e+60[br]8064.48, 806.448, 53489.1, 0.988678, 1, 3.57283e-70[br]CAUTION: Gross error found at entry 48.[br]Found: 8.45406e-10 Expected 8.78057e-74 Error: 9.62814e+63[br]8064.48, 16129, 2308.07, 0.421531, 1, 8.78057e-74[br]CAUTION: Gross error found at entry 49.[br]Found: 9.30663e-10 Expected 0 Error: 4.18262e+298[br]15674.4, 3918.59, 232.285, 0.933726, 1, 0[br]CAUTION: Gross error found at entry 50.[br]Found: 8.93617e-10 Expected 0 Error: 4.01612e+298[br]15674.4, 7837.19, 290.682, 0.917179, 1, 0[br]CAUTION: Gross error found at entry 51.[br]Found: 8.9318e-10 Expected 0 Error: 4.01416e+298[br]15674.4, 11755.8, 975.766, 0.915784, 1, 0[br]CAUTION: Gross error found at entry 63.[br]Found: 9.41971e-10 Expected 2.31296e-171 Error: 4.07258e+161[br]20005.4, 40010.8, 8064.48, 0.432094, 1, 2.31296e-171[br]CAUTION: Gross error found at entry 64.[br]Found: 9.30663e-10 Expected 0 Error: 4.18262e+298[br]53489.1, 5348.92, 232.285, 0.954635, 1, 0[br]CAUTION: Gross error found at entry 65.[br]Found: 8.93617e-10 Expected 0 Error: 4.01612e+298[br]53489.1, 13372.3, 290.682, 0.933478, 1, 0[br]CAUTION: Gross error found at entry 66.[br]Found: 8.9318e-10 Expected 0 Error: 4.01416e+298[br]53489.1, 26744.6, 975.766, 0.91717, 1, 0[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_large_parameters[]
[h4 Error Output For non central beta CDF with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central Beta, large parameters]
[#errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_large_parameters]
CAUTION: Gross error found at entry 0.[br]Found: 9.1136e-209 Expected 5.82279e-200 Error: 6.38913e+08[br]232.285, 209.056, 232.285, 0.062486, 5.82279e-200, 1[br]CAUTION: Gross error found at entry 1.[br]Found: 4.08108e-115 Expected 2.37643e-112 Error: 581.304[br]232.285, 229.962, 290.682, 0.155342, 2.37643e-112, 1[br]CAUTION: Gross error found at entry 2.[br]Found: 1.07549e-93 Expected 9.53431e-89 Error: 88650[br]232.285, 232.052, 975.766, 0.378086, 9.53431e-89, 1[br]CAUTION: Gross error found at entry 3.[br]Found: 2.58402e-54 Expected 8.27353e-53 Error: 31.0181[br]232.285, 232.285, 1879.05, 0.625865, 8.27353e-53, 1[br]CAUTION: Gross error found at entry 4.[br]Found: 1.93718e-19 Expected 6.64275e-16 Error: 3428.08[br]232.285, 232.308, 2308.07, 0.770774, 6.64275e-16, 1[br]CAUTION: Gross error found at entry 21.[br]Found: 8.12962e-240 Expected 1.82294e-219 Error: 2.24234e+20[br]975.766, 974.79, 1879.05, 0.331337, 1.82294e-219, 1[br]CAUTION: Gross error found at entry 22.[br]Found: 3.47274e-69 Expected 1.42183e-67 Error: 39.9426[br]975.766, 975.766, 2308.07, 0.514323, 1.42183e-67, 1[br]CAUTION: Gross error found at entry 23.[br]Found: 5.86885e-50 Expected 1.27896e-47 Error: 216.923[br]975.766, 975.863, 8064.48, 0.753209, 1.27896e-47, 1[br]CAUTION: Gross error found at entry 39.[br]Found: 4.82785e-230 Expected 1.25446e-213 Error: 2.59838e+16[br]2308.07, 2308.07, 8064.48, 0.54983, 1.25446e-213, 1[br]CAUTION: Gross error found at entry 40.[br]Found: 1.22971e-87 Expected 1.82618e-85 Error: 147.505[br]2308.07, 2308.3, 15674.4, 0.733174, 1.82618e-85, 1[br]CAUTION: Gross error found at entry 56.[br]Found: 2.97337e-127 Expected 2.56068e-124 Error: 860.205[br]15674.4, 15675.9, 20005.4, 0.55883, 2.56068e-124, 1[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_medium_parameters[]
[h4 Error Output For non central beta CDF complement with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central Beta, medium parameters]
[#errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_medium_parameters]
CAUTION: Gross error found at entry 296.[br]Found: 9.44166e-10 Expected 6.22975e-10 Error: 0.515577[br]22.9367, 114.683, 19.5081, 0.480981, 1, 6.22975e-10[br]CAUTION: Gross error found at entry 369.[br]Found: 2.52234e-10 Expected 1.40246e-10 Error: 0.79851[br]27.5277, 20.6457, 0.956697, 0.915111, 1, 1.40246e-10[br]CAUTION: Gross error found at entry 429.[br]Found: 1.18105e-09 Expected 7.45745e-10 Error: 0.58372[br]28.8063, 21.6047, 60.3826, 0.946143, 1, 7.45745e-10[br]CAUTION: Gross error found at entry 430.[br]Found: 2.44435e-09 Expected 1.60695e-09 Error: 0.521115[br]28.8063, 21.6047, 148.129, 0.965121, 1, 1.60695e-09[br]CAUTION: Gross error found at entry 477.[br]Found: 7.57435e-10 Expected 7.14133e-11 Error: 9.60635[br]28.8063, 144.032, 42.3849, 0.504845, 1, 7.14133e-11[br]CAUTION: Gross error found at entry 489.[br]Found: 4.8561e-10 Expected 5.62991e-11 Error: 7.62553[br]31.9438, 23.9579, 44.2068, 0.93835, 1, 5.62991e-11[br]CAUTION: Gross error found at entry 490.[br]Found: 8.35187e-10 Expected 1.87483e-10 Error: 3.45473[br]31.9438, 23.9579, 135.747, 0.961117, 1, 1.87483e-10[br]CAUTION: Gross error found at entry 491.[br]Found: 1.00174e-09 Expected 2.38491e-10 Error: 3.20032[br]31.9438, 23.9579, 191.501, 0.968273, 1, 2.38491e-10[br]CAUTION: Gross error found at entry 537.[br]Found: 7.29746e-10 Expected 1.31223e-12 Error: 555.111[br]31.9438, 159.719, 34.2373, 0.489796, 1, 1.31223e-12[br]CAUTION: Gross error found at entry 538.[br]Found: 2.49663e-09 Expected 1.54239e-09 Error: 0.618681[br]31.9438, 159.719, 126.472, 0.581861, 1, 1.54239e-09[br]CAUTION: Gross error found at entry 549.[br]Found: 4.16125e-10 Expected 4.8536e-13 Error: 856.353[br]38.0822, 28.5617, 34.773, 0.931853, 1, 4.8536e-13[br]CAUTION: Gross error found at entry 550.[br]Found: 9.69907e-10 Expected 2.87054e-12 Error: 336.883[br]38.0822, 28.5617, 127.953, 0.956104, 1, 2.87054e-12[br]CAUTION: Gross error found at entry 551.[br]Found: 5.90132e-10 Expected 4.08361e-12 Error: 143.512[br]38.0822, 28.5617, 183.147, 0.963764, 1, 4.08361e-12[br]CAUTION: Gross error found at entry 597.[br]Found: 4.67033e-10 Expected 9.82939e-16 Error: 475139[br]38.0822, 190.411, 27.0954, 0.475419, 1, 9.82939e-16[br]CAUTION: Gross error found at entry 598.[br]Found: 9.33207e-10 Expected 4.03465e-12 Error: 230.298[br]38.0822, 190.411, 100.733, 0.544491, 1, 4.03465e-12[br]CAUTION: Gross error found at entry 599.[br]Found: 7.4092e-10 Expected 9.53942e-11 Error: 6.76693[br]38.0822, 190.411, 169.826, 0.594614, 1, 9.53942e-11[br]CAUTION: Gross error found at entry 609.[br]Found: 5.71813e-10 Expected 1.17207e-14 Error: 48785.7[br]42.7789, 32.0842, 28.3773, 0.927814, 1, 1.17207e-14[br]CAUTION: Gross error found at entry 610.[br]Found: 5.16834e-10 Expected 9.62679e-14 Error: 5367.71[br]42.7789, 32.0842, 109.376, 0.950307, 1, 9.62679e-14[br]CAUTION: Gross error found at entry 611.[br]Found: 6.08012e-10 Expected 1.7454e-13 Error: 3482.51[br]42.7789, 32.0842, 175.686, 0.960431, 1, 1.7454e-13[br]CAUTION: Gross error found at entry 657.[br]Found: 5.59489e-10 Expected 2.86344e-18 Error: 1.95391e+08[br]42.7789, 213.895, 21.9724, 0.467166, 1, 2.86344e-18[br]CAUTION: Gross error found at entry 658.[br]Found: 5.14798e-10 Expected 2.50972e-14 Error: 20511.2[br]42.7789, 213.895, 84.4175, 0.522676, 1, 2.50972e-14[br]CAUTION: Gross error found at entry 659.[br]Found: 8.49991e-10 Expected 2.38005e-12 Error: 356.131[br]42.7789, 213.895, 160.056, 0.576191, 1, 2.38005e-12[br]CAUTION: Gross error found at entry 671.[br]Found: 3.03281e-10 Expected 2.22036e-15 Error: 136590[br]44.5963, 33.4472, 22.4929, 0.924976, 1, 2.22036e-15[br]CAUTION: Gross error found at entry 672.[br]Found: 8.40636e-10 Expected 2.22384e-14 Error: 37800.1[br]44.5963, 33.4472, 94.9517, 0.946545, 1, 2.22384e-14[br]CAUTION: Gross error found at entry 673.[br]Found: 8.15021e-10 Expected 4.75974e-14 Error: 17122.2[br]44.5963, 33.4472, 162.945, 0.95793, 1, 4.75974e-14[br]CAUTION: Gross error found at entry 716.[br]Found: 1.11988e-10 Expected 2.84965e-22 Error: 3.92989e+11[br]44.5963, 222.981, 0.956697, 0.445432, 1, 2.84965e-22[br]CAUTION: Gross error found at entry 717.[br]Found: 7.99524e-10 Expected 3.04552e-15 Error: 262523[br]44.5963, 222.981, 78.4454, 0.515267, 1, 3.04552e-15[br]CAUTION: Gross error found at entry 718.[br]Found: 8.0958e-10 Expected 5.89458e-13 Error: 1372.43[br]44.5963, 222.981, 158.441, 0.57107, 1, 5.89458e-13[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_medium_parameters[]
[h4 Error Output For non central beta CDF with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central Beta, medium parameters]
[#errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_medium_parameters]
CAUTION: Gross error found at entry 14.[br]Found: 4.64669e-35 Expected 7.14875e-33 Error: 152.846[br]1.45431, 1.30887, 158.441, 0.0983847, 7.14875e-33, 1[br]CAUTION: Gross error found at entry 15.[br]Found: 4.66674e-46 Expected 3.13332e-40 Error: 671416[br]1.45431, 1.30887, 196.222, 0.09869, 3.13332e-40, 1[br]CAUTION: Gross error found at entry 18.[br]Found: 5.84342e-28 Expected 3.61559e-27 Error: 5.18745[br]1.45431, 1.43976, 159.586, 0.245596, 3.61559e-27, 1[br]CAUTION: Gross error found at entry 19.[br]Found: 1.72833e-34 Expected 1.76943e-33 Error: 9.2378[br]1.45431, 1.43976, 198.576, 0.246444, 1.76943e-33, 1[br]CAUTION: Gross error found at entry 22.[br]Found: 1.76915e-19 Expected 3.69506e-18 Error: 19.8861[br]1.45431, 1.45285, 159.621, 0.491116, 3.69506e-18, 1[br]CAUTION: Gross error found at entry 23.[br]Found: 2.52007e-25 Expected 2.00482e-22 Error: 794.544[br]1.45431, 1.45285, 199.292, 0.492849, 2.00482e-22, 1[br]CAUTION: Gross error found at entry 73.[br]Found: 2.04477e-34 Expected 2.45287e-33 Error: 10.9958[br]7.62448, 6.86203, 148.129, 0.0921776, 2.45287e-33, 1[br]CAUTION: Gross error found at entry 74.[br]Found: 2.36587e-46 Expected 7.32638e-42 Error: 30966[br]7.62448, 6.86203, 193.539, 0.093784, 7.32638e-42, 1[br]CAUTION: Gross error found at entry 76.[br]Found: 3.29122e-26 Expected 7.418e-25 Error: 21.5387[br]7.62448, 7.54824, 148.626, 0.228717, 7.418e-25, 1[br]CAUTION: Gross error found at entry 77.[br]Found: 1.70126e-32 Expected 1.07666e-31 Error: 5.32864[br]7.62448, 7.54824, 193.774, 0.23303, 1.07666e-31, 1[br]CAUTION: Gross error found at entry 79.[br]Found: 1.3478e-15 Expected 4.21836e-15 Error: 2.12982[br]7.62448, 7.61686, 151.548, 0.457773, 4.21836e-15, 1[br]CAUTION: Gross error found at entry 80.[br]Found: 8.78487e-21 Expected 3.41238e-19 Error: 37.8438[br]7.62448, 7.61686, 194.119, 0.465826, 3.41238e-19, 1[br]CAUTION: Gross error found at entry 132.[br]Found: 3.85783e-23 Expected 1.54142e-22 Error: 2.99555[br]19.9593, 17.9634, 44.2068, 0.0698905, 1.54142e-22, 1[br]CAUTION: Gross error found at entry 133.[br]Found: 8.6122e-39 Expected 3.94361e-38 Error: 3.5791[br]19.9593, 17.9634, 135.747, 0.0829178, 3.94361e-38, 1[br]CAUTION: Gross error found at entry 134.[br]Found: 3.61781e-52 Expected 3.98669e-48 Error: 11018.6[br]19.9593, 17.9634, 191.501, 0.0864897, 3.98669e-48, 1[br]CAUTION: Gross error found at entry 135.[br]Found: 2.07122e-15 Expected 7.08614e-15 Error: 2.42124[br]19.9593, 19.7597, 55.6996, 0.176444, 7.08614e-15, 1[br]CAUTION: Gross error found at entry 136.[br]Found: 2.28223e-27 Expected 2.16759e-25 Error: 93.977[br]19.9593, 19.7597, 136.272, 0.20393, 2.16759e-25, 1[br]CAUTION: Gross error found at entry 137.[br]Found: 6.4251e-34 Expected 4.0064e-33 Error: 5.23554[br]19.9593, 19.7597, 191.898, 0.213398, 4.0064e-33, 1[br]CAUTION: Gross error found at entry 139.[br]Found: 2.1734e-14 Expected 4.65637e-14 Error: 1.14243[br]19.9593, 19.9394, 145.168, 0.410858, 4.65637e-14, 1[br]CAUTION: Gross error found at entry 140.[br]Found: 2.18388e-19 Expected 5.1677e-18 Error: 22.663[br]19.9593, 19.9394, 192.978, 0.426523, 5.1677e-18, 1[br]CAUTION: Gross error found at entry 192.[br]Found: 3.29537e-23 Expected 8.29996e-23 Error: 1.51867[br]22.4174, 20.1757, 34.773, 0.0661999, 8.29996e-23, 1[br]CAUTION: Gross error found at entry 193.[br]Found: 7.86091e-39 Expected 2.77686e-38 Error: 2.5325[br]22.4174, 20.1757, 127.953, 0.0809614, 2.77686e-38, 1[br]CAUTION: Gross error found at entry 194.[br]Found: 3.0161e-51 Expected 4.5396e-48 Error: 1504.12[br]22.4174, 20.1757, 183.147, 0.0848857, 4.5396e-48, 1[br]CAUTION: Gross error found at entry 195.[br]Found: 3.08022e-14 Expected 1.42713e-13 Error: 3.6332[br]22.4174, 22.1932, 37.6764, 0.162145, 1.42713e-13, 1[br]CAUTION: Gross error found at entry 196.[br]Found: 8.89935e-28 Expected 2.56187e-25 Error: 286.871[br]22.4174, 22.1932, 131.096, 0.199361, 2.56187e-25, 1[br]CAUTION: Gross error found at entry 197.[br]Found: 9.34392e-34 Expected 6.14831e-33 Error: 5.58001[br]22.4174, 22.1932, 186.799, 0.209601, 6.14831e-33, 1[br]CAUTION: Gross error found at entry 199.[br]Found: 2.79341e-13 Expected 4.79277e-13 Error: 0.71574[br]22.4174, 22.395, 131.148, 0.398015, 4.79277e-13, 1[br]CAUTION: Gross error found at entry 200.[br]Found: 3.13989e-19 Expected 7.01608e-18 Error: 21.345[br]22.4174, 22.395, 191.433, 0.419933, 7.01608e-18, 1[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters[]
[h4 Error Output For non central chi squared CDF complement with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central Chi Squared, large parameters]
[#errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters]
CAUTION: Gross error found at entry 12.[br]Found: 0 Expected 1.17655e-12 Error: 5.28771e+295[br]101.815, 5236.73, 6406.25, 1, 1.17655e-12[br]CAUTION: Gross error found at entry 13.[br]Found: 0 Expected 1.79374e-44 Error: 8.06149e+263[br]101.815, 9735.22, 12788.2, 1, 1.79374e-44[br]CAUTION: Gross error found at entry 35.[br]Found: 2.58682e-14 Expected 1.84404e-61 Error: 1.4028e+47[br]107.623, 122.456, 920.317, 1, 1.84404e-61[br]CAUTION: Gross error found at entry 36.[br]Found: 0 Expected 2.30757e-102 Error: 1.03707e+206[br]107.623, 156.292, 1319.58, 1, 2.30757e-102[br]CAUTION: Gross error found at entry 52.[br]Found: 0 Expected 6.40952e-24 Error: 2.88059e+284[br]114.68, 417.884, 1065.13, 1, 6.40952e-24[br]CAUTION: Gross error found at entry 53.[br]Found: 0 Expected 1.02366e-98 Error: 4.60058e+209[br]114.68, 669.781, 2353.38, 1, 1.02366e-98[br]CAUTION: Gross error found at entry 69.[br]Found: 0 Expected 6.55726e-39 Error: 2.94699e+269[br]118.032, 3168.71, 4930.11, 1, 6.55726e-39[br]CAUTION: Gross error found at entry 85.[br]Found: 0 Expected 7.30688e-22 Error: 3.28388e+286[br]163.004, 9735.22, 11877.9, 1, 7.30688e-22[br]CAUTION: Gross error found at entry 86.[br]Found: 0 Expected 1.17171e-111 Error: 5.26596e+196[br]163.004, 25344.1, 33159.2, 1, 1.17171e-111[br]CAUTION: Gross error found at entry 108.[br]Found: 1.12355e-13 Expected 2.67349e-61 Error: 4.20255e+47[br]256.292, 122.456, 1136.25, 1, 2.67349e-61[br]CAUTION: Gross error found at entry 109.[br]Found: 1.16462e-13 Expected 8.30595e-116 Error: 1.40216e+102[br]256.292, 156.292, 1650.34, 1, 8.30595e-116[br]CAUTION: Gross error found at entry 124.[br]Found: 1.05804e-13 Expected 1.01672e-15 Error: 103.064[br]517.884, 417.884, 1403.65, 1, 1.01672e-15[br]CAUTION: Gross error found at entry 125.[br]Found: 2.00728e-13 Expected 3.50192e-56 Error: 5.73194e+42[br]517.884, 669.781, 2375.33, 1, 3.50192e-56[br]CAUTION: Gross error found at entry 141.[br]Found: 0 Expected 1.36924e-20 Error: 6.15368e+287[br]769.781, 3168.71, 5120.04, 1, 1.36924e-20[br]CAUTION: Gross error found at entry 142.[br]Found: 0 Expected 3.19215e-72 Error: 1.43463e+236[br]769.781, 5236.73, 9009.76, 1, 3.19215e-72[br]CAUTION: Gross error found at entry 157.[br]Found: 0 Expected 7.26231e-08 Error: 3.26385e+300[br]1223.88, 9735.22, 12055, 1, 7.26231e-08[br]CAUTION: Gross error found at entry 158.[br]Found: 0 Expected 4.5906e-56 Error: 2.06312e+252[br]1223.88, 25344.1, 31881.6, 1, 4.5906e-56[br]CAUTION: Gross error found at entry 194.[br]Found: 0 Expected 5.34714e-12 Error: 2.40313e+296[br]9835.22, 122.456, 10953.4, 1, 5.34714e-12[br]CAUTION: Gross error found at entry 195.[br]Found: 0 Expected 4.84412e-40 Error: 2.17706e+268[br]9835.22, 156.292, 11989.8, 1, 4.84412e-40[br]CAUTION: Gross error found at entry 196.[br]Found: 0 Expected 5.50199e-83 Error: 2.47272e+225[br]9835.22, 417.884, 13329, 1, 5.50199e-83[br]CAUTION: Gross error found at entry 197.[br]Found: 0 Expected 1.28192e-205 Error: 5.76124e+102[br]9835.22, 669.781, 15757.5, 1, 1.28192e-205[br]CAUTION: Gross error found at entry 211.[br]Found: 0 Expected 3.83272e-28 Error: 1.72251e+280[br]25444.1, 1123.88, 29224.8, 1, 3.83272e-28[br]CAUTION: Gross error found at entry 212.[br]Found: 0 Expected 1.69815e-101 Error: 7.63188e+206[br]25444.1, 3168.71, 34335.4, 1, 1.69815e-101[br]CAUTION: Gross error found at entry 213.[br]Found: 0 Expected 1.09245e-217 Error: 4.90974e+90[br]25444.1, 5236.73, 39885.1, 1, 1.09245e-217[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters[]
[h4 Error Output For non central chi squared CDF complement with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central Chi Squared, medium parameters]
[#errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters]
CAUTION: Gross error found at entry 36.[br]Found: 1.11022e-14 Expected 1.30043e-26 Error: 8.53738e+11[br]1.95191, 109.376, 445.313, 1, 1.30043e-26[br]CAUTION: Gross error found at entry 37.[br]Found: 0 Expected 1.45478e-39 Error: 6.53812e+268[br]1.95191, 109.444, 556.98, 1, 1.45478e-39[br]CAUTION: Gross error found at entry 54.[br]Found: 2.91989e-14 Expected 4.25949e-21 Error: 6.85501e+06[br]1.95191, 159.586, 484.613, 1, 4.25949e-21[br]CAUTION: Gross error found at entry 55.[br]Found: 0 Expected 1.33424e-37 Error: 5.99639e+270[br]1.95191, 159.621, 646.292, 1, 1.33424e-37[br]CAUTION: Gross error found at entry 56.[br]Found: 1.25455e-14 Expected 1.95903e-56 Error: 6.40393e+41[br]1.95191, 160.056, 810.04, 1, 1.95903e-56[br]CAUTION: Gross error found at entry 73.[br]Found: 0 Expected 4.34735e-25 Error: 1.9538e+283[br]1.95191, 193.539, 586.473, 1, 4.34735e-25[br]CAUTION: Gross error found at entry 74.[br]Found: 0 Expected 4.66119e-45 Error: 2.09485e+263[br]1.95191, 193.774, 782.902, 1, 4.66119e-45[br]CAUTION: Gross error found at entry 75.[br]Found: 4.77396e-15 Expected 8.92248e-68 Error: 5.35048e+52[br]1.95191, 194.119, 980.352, 1, 8.92248e-68[br]CAUTION: Gross error found at entry 111.[br]Found: 0 Expected 3.1064e-15 Error: 1.39609e+293[br]20.4105, 84.4175, 314.484, 1, 3.1064e-15[br]CAUTION: Gross error found at entry 112.[br]Found: 0 Expected 7.50903e-29 Error: 3.37473e+279[br]20.4105, 94.9517, 461.449, 1, 7.50903e-29[br]CAUTION: Gross error found at entry 113.[br]Found: 3.77476e-15 Expected 1.74225e-43 Error: 2.1666e+28[br]20.4105, 97.0751, 587.428, 1, 1.74225e-43[br]CAUTION: Gross error found at entry 130.[br]Found: 8.88178e-16 Expected 4.13277e-23 Error: 2.14911e+07[br]20.4105, 151.548, 515.876, 1, 4.13277e-23[br]CAUTION: Gross error found at entry 131.[br]Found: 1.75415e-14 Expected 1.92146e-41 Error: 9.12928e+26[br]20.4105, 152.75, 692.642, 1, 1.92146e-41[br]CAUTION: Gross error found at entry 132.[br]Found: 1.38778e-14 Expected 7.09864e-64 Error: 1.95499e+49[br]20.4105, 158.441, 894.26, 1, 7.09864e-64[br]CAUTION: Gross error found at entry 149.[br]Found: 2.22045e-16 Expected 8.74501e-28 Error: 2.5391e+11[br]20.4105, 191.433, 635.532, 1, 8.74501e-28[br]CAUTION: Gross error found at entry 150.[br]Found: 0 Expected 6.94227e-50 Error: 3.12002e+258[br]20.4105, 191.501, 847.648, 1, 6.94227e-50[br]CAUTION: Gross error found at entry 151.[br]Found: 3.40838e-14 Expected 5.3889e-75 Error: 6.32482e+60[br]20.4105, 191.898, 1061.55, 1, 5.3889e-75[br]CAUTION: Gross error found at entry 206.[br]Found: 5.88418e-15 Expected 2.69136e-22 Error: 2.18632e+07[br]22.8625, 141.209, 492.215, 1, 2.69136e-22[br]CAUTION: Gross error found at entry 207.[br]Found: 3.60822e-14 Expected 1.64941e-40 Error: 2.18759e+26[br]22.8625, 145.168, 672.121, 1, 1.64941e-40[br]CAUTION: Gross error found at entry 208.[br]Found: 3.73035e-14 Expected 1.6094e-61 Error: 2.31784e+47[br]22.8625, 148.129, 854.96, 1, 1.6094e-61[br]CAUTION: Gross error found at entry 225.[br]Found: 0 Expected 3.73672e-27 Error: 1.67937e+281[br]22.8625, 182.675, 616.613, 1, 3.73672e-27[br]CAUTION: Gross error found at entry 226.[br]Found: 0 Expected 8.85688e-49 Error: 3.98049e+259[br]22.8625, 183.147, 824.038, 1, 8.85688e-49[br]CAUTION: Gross error found at entry 227.[br]Found: 0 Expected 2.29176e-74 Error: 1.02997e+234[br]22.8625, 186.799, 1048.31, 1, 2.29176e-74[br]CAUTION: Gross error found at entry 282.[br]Found: 0 Expected 2.18831e-21 Error: 9.8348e+286[br]23.3804, 132.721, 468.305, 1, 2.18831e-21[br]CAUTION: Gross error found at entry 283.[br]Found: 0 Expected 1.3071e-38 Error: 5.87439e+269[br]23.3804, 135.747, 636.51, 1, 1.3071e-38[br]CAUTION: Gross error found at entry 284.[br]Found: 1.84297e-14 Expected 8.27843e-58 Error: 2.22623e+43[br]23.3804, 136.272, 798.262, 1, 8.27843e-58[br]CAUTION: Gross error found at entry 301.[br]Found: 0 Expected 9.85282e-26 Error: 4.42808e+282[br]23.3804, 169.826, 579.619, 1, 9.85282e-26[br]CAUTION: Gross error found at entry 302.[br]Found: 0 Expected 4.8094e-47 Error: 2.16145e+261[br]23.3804, 174.486, 791.465, 1, 4.8094e-47[br]CAUTION: Gross error found at entry 303.[br]Found: 1.11022e-16 Expected 6.70476e-71 Error: 1.65587e+54[br]23.3804, 175.686, 995.333, 1, 6.70476e-71[br]CAUTION: Gross error found at entry 358.[br]Found: 0 Expected 3.9702e-21 Error: 1.7843e+287[br]26.2704, 126.472, 458.227, 1, 3.9702e-21[br]CAUTION: Gross error found at entry 359.[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T[]
[h4 Error Output For non central t CDF complement with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central T]
[#errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T]
CAUTION: Gross error found at entry 56.[br]Found: 0.000186411 Expected 7.85192e-05 Error: 1.37408[br]61.6335, 46.2251, 68.8608, 0.999921, 7.85192e-05[br]CAUTION: Gross error found at entry 75.[br]Found: 0.00011439 Expected 5.05344e-05 Error: 1.26361[br]80.8418, 60.6313, 86.1278, 0.999949, 5.05344e-05[br]CAUTION: Gross error found at entry 93.[br]Found: 0.000655162 Expected 0.000423927 Error: 0.545458[br]100.733, 50.3663, 65.7619, 0.999576, 0.000423927[br]CAUTION: Gross error found at entry 112.[br]Found: 0.000518249 Expected 0.00034473 Error: 0.503348[br]127.953, 63.9764, 81.0824, 0.999655, 0.00034473[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T[]
[h4 Error Output For non central t CDF with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central T]
[#errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T]
CAUTION: Gross error found at entry 74.[br]Found: 0.000830062 Expected 0.000522858 Error: 0.587549[br]79.7478, -39.8739, -53.8066, 0.000522858, 0.999477[br]CAUTION: Gross error found at entry 94.[br]Found: 7.69292e-05 Expected 3.54024e-05 Error: 1.17299[br]101.191, -75.8936, -104.104, 3.54024e-05, 0.999965[br]CAUTION: Gross error found at entry 113.[br]Found: 5.07713e-05 Expected 2.4439e-05 Error: 1.07747[br]128.792, -96.5942, -128.112, 2.4439e-05, 0.999976[br]CAUTION: Gross error found at entry 132.[br]Found: 4.08612e-05 Expected 2.01542e-05 Error: 1.02743[br]146.56, -109.92, -143.392, 2.01542e-05, 0.99998[br]CAUTION: Gross error found at entry 151.[br]Found: 3.55146e-05 Expected 1.7803e-05 Error: 0.994869[br]159.586, -119.689, -154.522, 1.7803e-05, 0.999982[br]CAUTION: Gross error found at entry 170.[br]Found: 3.03671e-05 Expected 1.55023e-05 Error: 0.958873[br]175.686, -131.765, -168.211, 1.55023e-05, 0.999984[br]CAUTION: Gross error found at entry 189.[br]Found: 2.61339e-05 Expected 1.3581e-05 Error: 0.924298[br]192.978, -144.733, -182.834, 1.3581e-05, 0.999986[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_Large_orders_and_other_bug_cases[]
[h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Mathematica Data - Large orders and other bug cases]
[#errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_Large_orders_and_other_bug_cases]
CAUTION: Found non-finite result, when a finite value was expected at entry 0[br]Found: -nan Expected 2.07309e+257 Error: 1.79769e+308[br]171, 2, 2.07309e+257[br]CAUTION: Gross error found at entry 0.[br]Found: -nan Expected 2.07309e+257 Error: 1.79769e+308[br]171, 2, 2.07309e+257[br]CAUTION: Found non-finite result, when a finite value was expected at entry 1[br]Found: -nan Expected 7.42912e+188 Error: 1.79769e+308[br]171, 5, 7.42912e+188[br]CAUTION: Gross error found at entry 1.[br]Found: -nan Expected 7.42912e+188 Error: 1.79769e+308[br]171, 5, 7.42912e+188[br]CAUTION: Found non-finite result, when a finite value was expected at entry 2[br]Found: -nan Expected -4.81295e+247 Error: 1.79769e+308[br]166, 2, -4.81295e+247[br]CAUTION: Gross error found at entry 2.[br]Found: -nan Expected -4.81295e+247 Error: 1.79769e+308[br]166, 2, -4.81295e+247[br]CAUTION: Found non-finite result, when a finite value was expected at entry 3[br]Found: -nan Expected -1.88439e+218 Error: 1.79769e+308[br]166, 3, -1.88439e+218[br]CAUTION: Gross error found at entry 3.[br]Found: -nan Expected -1.88439e+218 Error: 1.79769e+308[br]166, 3, -1.88439e+218[br]CAUTION: Found non-finite result, when a finite value was expected at entry 4[br]Found: -nan Expected 7.53144e+74 Error: 1.79769e+308[br]171, 23, 7.53144e+74[br]CAUTION: Gross error found at entry 4.[br]Found: -nan Expected 7.53144e+74 Error: 1.79769e+308[br]171, 23, 7.53144e+74[br]CAUTION: Found non-finite result, when a finite value was expected at entry 5[br]Found: -nan Expected -6.52661e-66 Error: 1.79769e+308[br]168, 150, -6.52661e-66[br]CAUTION: Gross error found at entry 5.[br]Found: -nan Expected -6.52661e-66 Error: 1.79769e+308[br]168, 150, -6.52661e-66[br]CAUTION: Found non-finite result, when a finite value was expected at entry 6[br]Found: -nan Expected 9.2734e-88 Error: 1.79769e+308[br]169, 202, 9.2734e-88[br]CAUTION: Gross error found at entry 6.[br]Found: -nan Expected 9.2734e-88 Error: 1.79769e+308[br]169, 202, 9.2734e-88[br]Outside supported domain[br]20, -9.5, -0.00103076[br]Outside supported domain[br]21, -9.5, 4.28582e+26[br]Outside supported domain[br]22, -9.5, -0.00419144[br]Outside supported domain[br]23, -9.5, 8.6745e+29[br]Outside supported domain[br]24, -9.5, -0.0204825[br]Outside supported domain[br]25, -9.5, 2.08188e+33[br]Outside supported domain[br]26, -9.5, -0.118403[br]Outside supported domain[br]27, -9.5, 5.84592e+36[br]Outside supported domain[br]28, -9.5, -0.798969[br]Outside supported domain[br]29, -9.5, 1.89875e+40[br]Outside supported domain[br]30, -9.5, -6.22245[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_negative_arguments[]
[h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Mathematica Data - large negative arguments]
[#errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_negative_arguments]
Outside supported domain[br]124, -1.5, 7.63705e+240[br]Outside supported domain[br]124, -2.5, 7.63705e+240[br]Outside supported domain[br]124, -3.5, 7.63705e+240[br]Outside supported domain[br]124, -4.5, 7.63705e+240[br]Outside supported domain[br]124, -5.5, 7.63705e+240[br]Outside supported domain[br]124, -6.5, 7.63705e+240[br]Outside supported domain[br]124, -7.5, 7.63705e+240[br]Outside supported domain[br]124, -8.5, 7.63705e+240[br]Outside supported domain[br]124, -9.5, 7.63705e+240[br]Outside supported domain[br]124, -10.5, 7.63705e+240[br]Outside supported domain[br]124, -11.5, 7.63705e+240[br]Outside supported domain[br]124, -12.5, 7.63705e+240[br]Outside supported domain[br]124, -13.5, 7.63705e+240[br]Outside supported domain[br]124, -14.5, 7.63705e+240[br]Outside supported domain[br]124, -15.5, 7.63705e+240[br]Outside supported domain[br]124, -16.5, 7.63705e+240[br]Outside supported domain[br]124, -17.5, 7.63705e+240[br]Outside supported domain[br]124, -18.5, 7.63705e+240[br]Outside supported domain[br]124, -19.5, 7.63705e+240[br]Outside supported domain[br]124, -20.5, 7.63705e+240[br]Outside supported domain[br]124, -1.5, -7.63705e+240[br]Outside supported domain[br]124, -2.5, -7.63705e+240[br]Outside supported domain[br]124, -3.5, -7.63705e+240[br]Outside supported domain[br]124, -4.5, -7.63705e+240[br]Outside supported domain[br]124, -5.5, -7.63705e+240[br]Outside supported domain[br]124, -6.5, -7.63705e+240[br]Outside supported domain[br]124, -7.5, -7.63705e+240[br]Outside supported domain[br]124, -8.5, -7.63705e+240[br]Outside supported domain[br]124, -9.5, -7.63705e+240[br]Outside supported domain[br]124, -10.5, -7.63705e+240[br]Outside supported domain[br]124, -11.5, -7.63705e+240[br]Outside supported domain[br]124, -12.5, -7.63705e+240[br]Outside supported domain[br]124, -13.5, -7.63705e+240[br]Outside supported domain[br]124, -14.5, -7.63705e+240[br]Outside supported domain[br]124, -15.5, -7.63705e+240[br]Outside supported domain[br]124, -16.5, -7.63705e+240[br]Outside supported domain[br]124, -17.5, -7.63705e+240[br]Outside supported domain[br]124, -18.5, -7.63705e+240[br]Outside supported domain[br]124, -19.5, -7.63705e+240[br]Outside supported domain[br]124, -20.5, -7.63705e+240[br]Outside supported domain[br]1, -0.5, 8.9348[br]Outside supported domain[br]2, -0.5, -0.828797[br]Outside supported domain[br]3, -0.5, 193.409[br]Outside supported domain[br]4, -0.5, -3.47425[br]Outside supported domain[br]5, -0.5, 15371.1[br]Outside supported domain[br]6, -0.5, -43.4579[br]Outside supported domain[br]7, -0.5, 2.58068e+06[br]Outside supported domain[br]8, -0.5, -1059.96[br]Outside supported domain[br]9, -0.5, 7.43185e+08[br]Outside supported domain[br]10, -0.5, -42108.9[br]Outside supported domain[br]11, -0.5, 3.26999e+11[br]Outside supported domain[br]12, -0.5, -2.46448e+06[br]Outside supported domain[br]13, -0.5, 2.04047e+14[br]Outside supported domain[br]14, -0.5, -1.9918e+08[br]Outside supported domain[br]15, -0.5, 1.71399e+17[br]Outside supported domain[br]16, -0.5, -2.12394e+10[br]Outside supported domain[br]17, -0.5, 1.86483e+20[br]Outside supported domain[br]18, -0.5, -2.88824e+12[br]Outside supported domain[br]19, -0.5, 2.55108e+23[br]Outside supported domain[br]20, -0.5, -4.87773e+14[br]Outside supported domain[br]21, -0.5, 4.28582e+26[br]Outside supported domain[br]1, -0.5, 8.9348[br]Outside supported domain[br]2, -0.5, -0.828843[br]Outside supported domain[br]3, -0.5, 193.409[br]Outside supported domain[br]4, -0.5, -3.47791[br]Outside supported domain[br]5, -0.5, 15371.1[br]Outside supported domain[br]6, -0.5, -44.0732[br]Outside supported domain[br]7, -0.5, 2.58068e+06[br]Outside supported domain[br]8, -0.5, -1237.15[br]Outside supported domain[br]9, -0.5, 7.43185e+08[br]Outside supported domain[br]10, -0.5, -120071[br]Outside supported domain[br]11, -0.5, 3.26999e+11[br]Outside supported domain[br]12, -0.5, -5.11131e+07[br]Outside supported domain[br]13, -0.5, 2.04047e+14[br]Outside supported domain[br]14, -0.5, -4.1064e+10[br]Outside supported domain[br]15, -0.5, 1.71399e+17[br]Outside supported domain[br]16, -0.5, -4.44822e+13[br]Outside supported domain[br]17, -0.5, 1.86483e+20[br]Outside supported domain[br]18, -0.5, -6.08254e+16[br]Outside supported domain[br]19, -0.5, 2.55108e+23[br]Outside supported domain[br]20, -0.5, -1.02182e+20[br]Outside supported domain[br]21, -0.5, 4.28582e+26[br]Outside supported domain[br]1, -0.5, 8.9348[br]Outside supported domain[br]2, -0.5, -0.828751[br]Outside supported domain[br]3, -0.5, 193.409[br]Outside supported domain[br]4, -0.5, -3.47059[br]Outside supported domain[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_negative_arguments[]
[h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Mathematica Data - negative arguments]
[#errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_negative_arguments]
Outside supported domain[br]1, -12.75, 19.6638[br]Outside supported domain[br]1, -12.25, 19.6608[br]Outside supported domain[br]1, -11.75, 19.6576[br]Outside supported domain[br]1, -11.25, 19.6542[br]Outside supported domain[br]1, -10.75, 19.6504[br]Outside supported domain[br]1, -10.25, 19.6463[br]Outside supported domain[br]1, -9.75, 19.6417[br]Outside supported domain[br]1, -9.25, 19.6367[br]Outside supported domain[br]1, -8.75, 19.6312[br]Outside supported domain[br]1, -8.25, 19.625[br]Outside supported domain[br]1, -7.75, 19.6181[br]Outside supported domain[br]1, -7.25, 19.6104[br]Outside supported domain[br]1, -6.75, 19.6015[br]Outside supported domain[br]1, -6.25, 19.5913[br]Outside supported domain[br]1, -5.75, 19.5795[br]Outside supported domain[br]1, -5.25, 19.5657[br]Outside supported domain[br]1, -4.75, 19.5493[br]Outside supported domain[br]1, -4.25, 19.5294[br]Outside supported domain[br]1, -3.75, 19.505[br]Outside supported domain[br]1, -3.25, 19.4741[br]Outside supported domain[br]1, -2.75, 19.4339[br]Outside supported domain[br]1, -2.25, 19.3794[br]Outside supported domain[br]1, -1.75, 19.3016[br]Outside supported domain[br]1, -1.25, 19.1819[br]Outside supported domain[br]1, -0.75, 18.9751[br]Outside supported domain[br]1, -0.25, 18.5419[br]Outside supported domain[br]2, -12.75, -124.031[br]Outside supported domain[br]2, -12.25, 124.019[br]Outside supported domain[br]2, -11.75, -124.032[br]Outside supported domain[br]2, -11.25, 124.018[br]Outside supported domain[br]2, -10.75, -124.033[br]Outside supported domain[br]2, -10.25, 124.016[br]Outside supported domain[br]2, -9.75, -124.035[br]Outside supported domain[br]2, -9.25, 124.015[br]Outside supported domain[br]2, -8.75, -124.037[br]Outside supported domain[br]2, -8.25, 124.012[br]Outside supported domain[br]2, -7.75, -124.04[br]Outside supported domain[br]2, -7.25, 124.009[br]Outside supported domain[br]2, -6.75, -124.044[br]Outside supported domain[br]2, -6.25, 124.003[br]Outside supported domain[br]2, -5.75, -124.051[br]Outside supported domain[br]2, -5.25, 123.995[br]Outside supported domain[br]2, -4.75, -124.061[br]Outside supported domain[br]2, -4.25, 123.981[br]Outside supported domain[br]2, -3.75, -124.08[br]Outside supported domain[br]2, -3.25, 123.955[br]Outside supported domain[br]2, -2.75, -124.118[br]Outside supported domain[br]2, -2.25, 123.897[br]Outside supported domain[br]2, -1.75, -124.214[br]Outside supported domain[br]2, -1.25, 123.721[br]Outside supported domain[br]2, -0.75, -124.587[br]Outside supported domain[br]2, -0.25, 122.697[br]Outside supported domain[br]3, -12.75, 1558.54[br]Outside supported domain[br]3, -12.25, 1558.54[br]Outside supported domain[br]3, -11.75, 1558.54[br]Outside supported domain[br]3, -11.25, 1558.54[br]Outside supported domain[br]3, -10.75, 1558.54[br]Outside supported domain[br]3, -10.25, 1558.54[br]Outside supported domain[br]3, -9.75, 1558.54[br]Outside supported domain[br]3, -9.25, 1558.54[br]Outside supported domain[br]3, -8.75, 1558.54[br]Outside supported domain[br]3, -8.25, 1558.54[br]Outside supported domain[br]3, -7.75, 1558.54[br]Outside supported domain[br]3, -7.25, 1558.54[br]Outside supported domain[br]3, -6.75, 1558.54[br]Outside supported domain[br]3, -6.25, 1558.54[br]Outside supported domain[br]3, -5.75, 1558.54[br]Outside supported domain[br]3, -5.25, 1558.54[br]Outside supported domain[br]3, -4.75, 1558.53[br]Outside supported domain[br]3, -4.25, 1558.53[br]Outside supported domain[br]3, -3.75, 1558.52[br]Outside supported domain[br]3, -3.25, 1558.51[br]Outside supported domain[br]3, -2.75, 1558.49[br]Outside supported domain[br]3, -2.25, 1558.46[br]Outside supported domain[br]3, -1.75, 1558.38[br]Outside supported domain[br]3, -1.25, 1558.22[br]Outside supported domain[br]3, -0.75, 1557.75[br]Outside supported domain[br]3, -0.25, 1555.76[br]Outside supported domain[br]4, -12.75, -24481.6[br]Outside supported domain[br]4, -12.25, 24481.6[br]Outside supported domain[br]4, -11.75, -24481.6[br]Outside supported domain[br]4, -11.25, 24481.6[br]Outside supported domain[br]4, -10.75, -24481.6[br]Outside supported domain[br]4, -10.25, 24481.6[br]Outside supported domain[br]4, -9.75, -24481.6[br]Outside supported domain[br]4, -9.25, 24481.6[br]Outside supported domain[br]4, -8.75, -24481.6[br]Outside supported domain[br]4, -8.25, 24481.6[br]Outside supported domain[br]4, -7.75, -24481.6[br]Outside supported domain[br]4, -7.25, 24481.6[br]Outside supported domain[br]4, -6.75, -24481.6[br]Outside supported domain[br]4, -6.25, 24481.6[br]Outside supported domain[br]4, -5.75, -24481.6[br]Outside supported domain[br]4, -5.25, 24481.6[br]Outside supported domain[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_arguments[]
[h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Mathematica Data - large arguments]
[#errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_arguments]
CAUTION: Gross error found at entry 211.[br]Found: -0 Expected -8.44974e-268 Error: 3.79751e+40[br]30, 8.58993e+09, -8.44974e-268[br]CAUTION: Gross error found at entry 212.[br]Found: -0 Expected -7.86943e-277 Error: 3.5367e+31[br]30, 1.71799e+10, -7.86943e-277[br]CAUTION: Gross error found at entry 213.[br]Found: -0 Expected -7.32898e-286 Error: 3.29381e+22[br]30, 3.43597e+10, -7.32898e-286[br]CAUTION: Gross error found at entry 214.[br]Found: -0 Expected -6.82564e-295 Error: 3.0676e+13[br]30, 6.87195e+10, -6.82564e-295[br]CAUTION: Gross error found at entry 215.[br]Found: -0 Expected -6.35687e-304 Error: 28568.3[br]30, 1.37439e+11, -6.35687e-304[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data_large_values_[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Iv: Mathworld Data (large values)]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data_large_values_]
domain error[br]-1, 3.72917e-155, 1.86459e-155[br]domain error[br]-1.125, 3.72917e-155, -1.34964e+173[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Random_Data[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Iv: Random Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Random_Data]
domain error[br]-80.4919, 24.7501, 4.18698e+28[br]domain error[br]-80.4919, 63.7722, 2.03248e+06[br]domain error[br]-74.6026, 24.7501, 7.20977e+23[br]domain error[br]-74.6026, 63.7722, 8.7549e+08[br]domain error[br]-72.9046, 24.7501, 1.04535e+22[br]domain error[br]-72.9046, 63.7722, 4.7162e+09[br]domain error[br]-62.3236, 24.7501, 3.65147e+14[br]domain error[br]-62.3236, 63.7722, 8.56683e+13[br]domain error[br]-55.7932, 24.7501, -7.70364e+09[br]domain error[br]-55.7932, 63.7722, 1.95969e+16[br]domain error[br]-44.3004, 9.50706, 2.93478e+22[br]domain error[br]-44.3004, 24.7501, 640.568[br]domain error[br]-44.3004, 63.7722, 8.05557e+19[br]domain error[br]-38.3666, 5.11399, 2.89105e+27[br]domain error[br]-38.3666, 9.50706, 8.80632e+16[br]domain error[br]-38.3666, 24.7501, 0.389004[br]domain error[br]-38.3666, 63.7722, 3.06303e+21[br]underflow[br]81.1584, 0.00177219, 0[br]underflow[br]81.1584, 0.00221773, 0[br]underflow[br]81.1584, 0.0074445, 6.08857e-319[br]underflow[br]82.6752, 0.00177219, 0[br]underflow[br]82.6752, 0.00221773, 0[br]underflow[br]82.6752, 0.0074445, 0[br]underflow[br]91.5014, 0.00177219, 0[br]underflow[br]91.5014, 0.00221773, 0[br]underflow[br]91.5014, 0.0074445, 0[br]underflow[br]91.5014, 0.014336, 0[br]underflow[br]91.5014, 0.0176092, 0[br]underflow[br]92.9777, 0.00177219, 0[br]underflow[br]92.9777, 0.00221773, 0[br]underflow[br]92.9777, 0.0074445, 0[br]underflow[br]92.9777, 0.014336, 0[br]underflow[br]92.9777, 0.0176092, 0[br]underflow[br]93.539, 0.00177219, 0[br]underflow[br]93.539, 0.00221773, 0[br]underflow[br]93.539, 0.0074445, 0[br]underflow[br]93.539, 0.014336, 0[br]underflow[br]93.539, 0.0176092, 0[br]underflow[br]93.7736, 0.00177219, 0[br]underflow[br]93.7736, 0.00221773, 0[br]underflow[br]93.7736, 0.0074445, 0[br]underflow[br]93.7736, 0.014336, 0[br]underflow[br]93.7736, 0.0176092, 0[br]underflow[br]98.5763, 0.00177219, 0[br]underflow[br]98.5763, 0.00221773, 0[br]underflow[br]98.5763, 0.0074445, 0[br]underflow[br]98.5763, 0.014336, 0[br]underflow[br]98.5763, 0.0176092, 0[br]underflow[br]99.2923, 0.00177219, 0[br]underflow[br]99.2923, 0.00221773, 0[br]underflow[br]99.2923, 0.0074445, 0[br]underflow[br]99.2923, 0.014336, 0[br]underflow[br]99.2923, 0.0176092, 0[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Random_Data[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel In: Random Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Random_Data]
underflow[br]70, 0.00177219, 1.75887e-314[br]underflow[br]73, 0.00177219, 0[br]underflow[br]73, 0.00221773, 4.24896e-322[br]underflow[br]76, 0.00177219, 0[br]underflow[br]76, 0.00221773, 0[br]underflow[br]79, 0.00177219, 0[br]underflow[br]79, 0.00221773, 0[br]underflow[br]79, 0.0074445, 1.38676e-309[br]underflow[br]82, 0.00177219, 0[br]underflow[br]82, 0.00221773, 0[br]underflow[br]82, 0.0074445, 1.33398e-322[br]underflow[br]85, 0.00177219, 0[br]underflow[br]85, 0.00221773, 0[br]underflow[br]85, 0.0074445, 0[br]underflow[br]85, 0.014336, 1.81568e-311[br]underflow[br]88, 0.00177219, 0[br]underflow[br]88, 0.00221773, 0[br]underflow[br]88, 0.0074445, 0[br]underflow[br]88, 0.014336, 9.88131e-324[br]underflow[br]88, 0.0176092, 7.34647e-316[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Iv: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data]
domain error[br]-4.99902, 2.125, 0.0267921[br]domain error[br]-5.5, 10, 597.578[br]domain error[br]-5.5, 100, 9.22363e+41[br]domain error[br]-10.0003, 0.000976562, 1.41474e+35[br]domain error[br]-10.0003, 50, 1.07153e+20[br]domain error[br]-141.4, 100, 2066.28[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_In_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_i (integer orders) with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel In: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_In_Mathworld_Data_Integer_Version_]
underflow[br]10, 1e-100, 0[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Mathworld_Data[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel In: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Mathworld_Data]
domain error[br]-2, 0, 0[br]domain error[br]-5, 100, 9.47009e+41[br]domain error[br]-5, -1, -0.000271463[br]domain error[br]10, -5, 0.00458004[br]domain error[br]-100, -200, 4.35275e+74[br]underflow[br]10, 1e-100, 0[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I1_Mathworld_Data[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel I1: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I1_Mathworld_Data]
domain error[br]1, -2, -1.59064[br]domain error[br]1, -8, -399.873[br]domain error[br]1, -10, -2670.99[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I0_Mathworld_Data[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel I0: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I0_Mathworld_Data]
domain error[br]0, -2, 2.27959[br]domain error[br]0, -7, 168.594[br]domain error[br]0, -1, 1.26607[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data_large_values_[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Iv: Mathworld Data (large values)]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data_large_values_]
Bad argument in __cyl_bessel_i.[br]-1, 3.72917e-155, 1.86459e-155[br]Bad argument in __cyl_bessel_i.[br]-1.125, 3.72917e-155, -1.34964e+173[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Random_Data[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Iv: Random Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Random_Data]
Bad argument in __cyl_bessel_i.[br]-80.4919, 24.7501, 4.18698e+28[br]Bad argument in __cyl_bessel_i.[br]-80.4919, 63.7722, 2.03248e+06[br]Bad argument in __cyl_bessel_i.[br]-74.6026, 24.7501, 7.20977e+23[br]Bad argument in __cyl_bessel_i.[br]-74.6026, 63.7722, 8.7549e+08[br]Bad argument in __cyl_bessel_i.[br]-72.9046, 24.7501, 1.04535e+22[br]Bad argument in __cyl_bessel_i.[br]-72.9046, 63.7722, 4.7162e+09[br]Bad argument in __cyl_bessel_i.[br]-62.3236, 24.7501, 3.65147e+14[br]Bad argument in __cyl_bessel_i.[br]-62.3236, 63.7722, 8.56683e+13[br]Bad argument in __cyl_bessel_i.[br]-55.7932, 24.7501, -7.70364e+09[br]Bad argument in __cyl_bessel_i.[br]-55.7932, 63.7722, 1.95969e+16[br]Bad argument in __cyl_bessel_i.[br]-44.3004, 9.50706, 2.93478e+22[br]Bad argument in __cyl_bessel_i.[br]-44.3004, 24.7501, 640.568[br]Bad argument in __cyl_bessel_i.[br]-44.3004, 63.7722, 8.05557e+19[br]Bad argument in __cyl_bessel_i.[br]-38.3666, 5.11399, 2.89105e+27[br]Bad argument in __cyl_bessel_i.[br]-38.3666, 9.50706, 8.80632e+16[br]Bad argument in __cyl_bessel_i.[br]-38.3666, 24.7501, 0.389004[br]Bad argument in __cyl_bessel_i.[br]-38.3666, 63.7722, 3.06303e+21[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Iv: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data]
Bad argument in __cyl_bessel_i.[br]-4.99902, 2.125, 0.0267921[br]Bad argument in __cyl_bessel_i.[br]-5.5, 10, 597.578[br]Bad argument in __cyl_bessel_i.[br]-5.5, 100, 9.22363e+41[br]Bad argument in __cyl_bessel_i.[br]-10.0003, 0.000976562, 1.41474e+35[br]Bad argument in __cyl_bessel_i.[br]-10.0003, 50, 1.07153e+20[br]Bad argument in __cyl_bessel_i.[br]-141.4, 100, 2066.28[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_In_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_i (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel In: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_In_Mathworld_Data_Integer_Version_]
Bad argument in __cyl_bessel_i.[br]-2, 0, 0[br]Bad argument in __cyl_bessel_i.[br]-5, 100, 9.47009e+41[br]Bad argument in __cyl_bessel_i.[br]-5, -1, -0.000271463[br]Bad argument in __cyl_bessel_i.[br]10, -5, 0.00458004[br]Bad argument in __cyl_bessel_i.[br]-100, -200, 4.35275e+74[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I1_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_i (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel I1: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I1_Mathworld_Data_Integer_Version_]
Bad argument in __cyl_bessel_i.[br]1, -2, -1.59064[br]Bad argument in __cyl_bessel_i.[br]1, -8, -399.873[br]Bad argument in __cyl_bessel_i.[br]1, -10, -2670.99[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I0_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_i (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel I0: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I0_Mathworld_Data_Integer_Version_]
Bad argument in __cyl_bessel_i.[br]0, -2, 2.27959[br]Bad argument in __cyl_bessel_i.[br]0, -7, 168.594[br]Bad argument in __cyl_bessel_i.[br]0, -1, 1.26607[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Mathworld_Data[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel In: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Mathworld_Data]
Bad argument in __cyl_bessel_i.[br]-2, 0, 0[br]Bad argument in __cyl_bessel_i.[br]-5, 100, 9.47009e+41[br]Bad argument in __cyl_bessel_i.[br]-5, -1, -0.000271463[br]Bad argument in __cyl_bessel_i.[br]10, -5, 0.00458004[br]Bad argument in __cyl_bessel_i.[br]-100, -200, 4.35275e+74[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I1_Mathworld_Data[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel I1: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I1_Mathworld_Data]
Bad argument in __cyl_bessel_i.[br]1, -2, -1.59064[br]Bad argument in __cyl_bessel_i.[br]1, -8, -399.873[br]Bad argument in __cyl_bessel_i.[br]1, -10, -2670.99[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I0_Mathworld_Data[]
[h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel I0: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I0_Mathworld_Data]
Bad argument in __cyl_bessel_i.[br]0, -2, 2.27959[br]Bad argument in __cyl_bessel_i.[br]0, -7, 168.594[br]Bad argument in __cyl_bessel_i.[br]0, -1, 1.26607[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel J: Random Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data]
underflow[br]63.8868, 5.5381e-05, 0[br]underflow[br]63.8868, 6.9304e-05, 0[br]underflow[br]63.8868, 0.000232641, 0[br]underflow[br]63.8868, 0.000448, 8.39912e-323[br]underflow[br]63.8868, 0.000550287, 4.32897e-317[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data_large_values_[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel J: Mathworld Data (large values)]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data_large_values_]
domain error[br]-0.5, 1.2459e-206, 7.14823e+102[br]domain error[br]-256, 8, 0[br]domain error[br]-2.5, 4, -0.0145679[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel J: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data]
domain error[br]-5.5, 3.1416, -2.5582[br]domain error[br]-5.5, 10000, 0.00244984[br]domain error[br]-5.5, 10000, 0.00244984[br]domain error[br]-5.5, 1e+06, 0.000279243[br]domain error[br]-0.5, 101, 0.0708185[br]domain error[br]-10.0003, 0.000976562, 1.41474e+35[br]domain error[br]-10.0003, 15, -0.0902239[br]domain error[br]-10.0003, 100, -0.0547614[br]domain error[br]-10.0003, 20000, -0.00556869[br]domain error[br]-8.5, 12.5664, -0.257087[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_JN_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_j (integer orders) with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel JN: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_JN_Mathworld_Data_Integer_Version_]
underflow[br]10, 1e-100, 0[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Mathworld_Data[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel JN: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Mathworld_Data]
domain error[br]-1, 1.25, -0.510623[br]domain error[br]-2, 0, 0[br]domain error[br]5, -10, 0.234062[br]domain error[br]-5, 1e+06, 0.000725964[br]domain error[br]-5, -1, 0.000249758[br]domain error[br]10, -10, 0.207486[br]domain error[br]10, -5, 0.0014678[br]domain error[br]-10, 1e+06, -0.000331079[br]underflow[br]10, 1e-100, 0[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel J1: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data]
domain error[br]1, -2, -0.576725[br]domain error[br]1, -8, -0.234636[br]domain error[br]1, -10, -0.0434727[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel J0: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data]
domain error[br]0, -2, 0.223891[br]domain error[br]0, -8, 0.171651[br]domain error[br]0, -10, -0.245936[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data_large_values_[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel J: Mathworld Data (large values)]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data_large_values_]
Bad argument in __cyl_bessel_j.[br]-0.5, 1.2459e-206, 7.14823e+102[br]Bad argument in __cyl_bessel_j.[br]-256, 8, 1.46866e-353[br]Bad argument in __cyl_bessel_j.[br]-2.5, 4, -0.0145679[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel J: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data]
Bad argument in __cyl_bessel_j.[br]-5.5, 3.1416, -2.5582[br]Bad argument in __cyl_bessel_j.[br]-5.5, 10000, 0.00244984[br]Bad argument in __cyl_bessel_j.[br]-5.5, 10000, 0.00244984[br]Bad argument in __cyl_bessel_j.[br]-5.5, 1e+06, 0.000279243[br]Bad argument in __cyl_bessel_j.[br]-0.5, 101, 0.0708185[br]Bad argument in __cyl_bessel_j.[br]-10.0003, 0.000976562, 1.41474e+35[br]Bad argument in __cyl_bessel_j.[br]-10.0003, 15, -0.0902239[br]Bad argument in __cyl_bessel_j.[br]-10.0003, 100, -0.0547614[br]Bad argument in __cyl_bessel_j.[br]-10.0003, 20000, -0.00556869[br]Bad argument in __cyl_bessel_j.[br]-8.5, 12.5664, -0.257087[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_JN_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_j (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel JN: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_JN_Mathworld_Data_Integer_Version_]
Bad argument in __cyl_bessel_j.[br]-1, 1.25, -0.510623[br]Bad argument in __cyl_bessel_j.[br]-2, 0, 0[br]Bad argument in __cyl_bessel_j.[br]5, -10, 0.234062[br]Bad argument in __cyl_bessel_j.[br]-5, 1e+06, 0.000725964[br]Bad argument in __cyl_bessel_j.[br]-5, -1, 0.000249758[br]Bad argument in __cyl_bessel_j.[br]10, -10, 0.207486[br]Bad argument in __cyl_bessel_j.[br]10, -5, 0.0014678[br]Bad argument in __cyl_bessel_j.[br]-10, 1e+06, -0.000331079[br]CAUTION: Gross error found at entry 15.[br]Found: 0.0042409 Expected 0.00128318 Error: 2.305[br]1000, 100000, 0.00128318[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_j (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel J1: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_Integer_Version_]
Bad argument in __cyl_bessel_j.[br]1, -2, -0.576725[br]Bad argument in __cyl_bessel_j.[br]1, -8, -0.234636[br]Bad argument in __cyl_bessel_j.[br]1, -10, -0.0434727[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_j (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel J0: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Integer_Version_]
Bad argument in __cyl_bessel_j.[br]0, -2, 0.223891[br]Bad argument in __cyl_bessel_j.[br]0, -8, 0.171651[br]Bad argument in __cyl_bessel_j.[br]0, -10, -0.245936[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Mathworld_Data[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel JN: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Mathworld_Data]
Bad argument in __cyl_bessel_j.[br]-1, 1.25, -0.510623[br]Bad argument in __cyl_bessel_j.[br]-2, 0, 0[br]Bad argument in __cyl_bessel_j.[br]5, -10, 0.234062[br]Bad argument in __cyl_bessel_j.[br]-5, 1e+06, 0.000725964[br]Bad argument in __cyl_bessel_j.[br]-5, -1, 0.000249758[br]Bad argument in __cyl_bessel_j.[br]10, -10, 0.207486[br]Bad argument in __cyl_bessel_j.[br]10, -5, 0.0014678[br]Bad argument in __cyl_bessel_j.[br]-10, 1e+06, -0.000331079[br]CAUTION: Gross error found at entry 15.[br]Found: 0.0042409 Expected 0.00128318 Error: 2.305[br]1000, 100000, 0.00128318[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel J1: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data]
Bad argument in __cyl_bessel_j.[br]1, -2, -0.576725[br]Bad argument in __cyl_bessel_j.[br]1, -8, -0.234636[br]Bad argument in __cyl_bessel_j.[br]1, -10, -0.0434727[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data[]
[h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel J0: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data]
Bad argument in __cyl_bessel_j.[br]0, -2, 0.223891[br]Bad argument in __cyl_bessel_j.[br]0, -8, 0.171651[br]Bad argument in __cyl_bessel_j.[br]0, -10, -0.245936[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Random_Data[]
[h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Kv: Random Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Random_Data]
domain error[br]-80.4919, 24.7501, 6.57902e+28[br]domain error[br]-80.4919, 63.7722, 2.39552e-09[br]domain error[br]-80.4919, 125.28, 3.06904e-45[br]domain error[br]-80.4919, 255.547, 2.30343e-107[br]domain error[br]-80.4919, 503.011, 1.20315e-217[br]domain error[br]-80.4919, 1007.46, 0[br]domain error[br]-80.4919, 1185.4, 0[br]domain error[br]-80.4919, 3534.52, 0[br]domain error[br]-80.4919, 8071.55, 0[br]domain error[br]-80.4919, 16229.2, 0[br]domain error[br]-80.4919, 32066.2, 0[br]domain error[br]-80.4919, 36367.9, 0[br]domain error[br]-74.6026, 24.7501, 1.19405e+24[br]domain error[br]-74.6026, 63.7722, 5.81897e-12[br]domain error[br]-74.6026, 125.28, 9.89214e-47[br]domain error[br]-74.6026, 255.547, 3.9726e-108[br]domain error[br]-74.6026, 503.011, 4.87462e-218[br]domain error[br]-74.6026, 1007.46, 0[br]domain error[br]-74.6026, 1185.4, 0[br]domain error[br]-74.6026, 3534.52, 0[br]domain error[br]-74.6026, 8071.55, 0[br]domain error[br]-74.6026, 16229.2, 0[br]domain error[br]-74.6026, 32066.2, 0[br]domain error[br]-74.6026, 36367.9, 0[br]domain error[br]-72.9046, 24.7501, 5.5618e+22[br]domain error[br]-72.9046, 63.7722, 1.09452e-12[br]domain error[br]-72.9046, 125.28, 3.8393e-47[br]domain error[br]-72.9046, 255.547, 2.45173e-108[br]domain error[br]-72.9046, 503.011, 3.80454e-218[br]domain error[br]-72.9046, 1007.46, 0[br]domain error[br]-72.9046, 1185.4, 0[br]domain error[br]-72.9046, 3534.52, 0[br]domain error[br]-72.9046, 8071.55, 0[br]domain error[br]-72.9046, 16229.2, 0[br]domain error[br]-72.9046, 32066.2, 0[br]domain error[br]-72.9046, 36367.9, 0[br]domain error[br]-62.3236, 24.7501, 6.74518e+14[br]domain error[br]-62.3236, 63.7722, 6.54531e-17[br]domain error[br]-62.3236, 125.28, 1.65653e-49[br]domain error[br]-62.3236, 255.547, 1.54767e-109[br]domain error[br]-62.3236, 503.011, 9.22721e-219[br]domain error[br]-62.3236, 1007.46, 0[br]domain error[br]-62.3236, 1185.4, 0[br]domain error[br]-62.3236, 3534.52, 0[br]domain error[br]-62.3236, 8071.55, 0[br]domain error[br]-62.3236, 16229.2, 0[br]domain error[br]-62.3236, 32066.2, 0[br]domain error[br]-62.3236, 36367.9, 0[br]domain error[br]-55.7932, 24.7501, 2.00028e+10[br]domain error[br]-55.7932, 63.7722, 3.01107e-19[br]domain error[br]-55.7932, 125.28, 8.54693e-51[br]domain error[br]-55.7932, 255.547, 3.47666e-110[br]domain error[br]-55.7932, 503.011, 4.29705e-219[br]domain error[br]-55.7932, 1007.46, 0[br]domain error[br]-55.7932, 1185.4, 0[br]domain error[br]-55.7932, 3534.52, 0[br]domain error[br]-55.7932, 8071.55, 0[br]domain error[br]-55.7932, 16229.2, 0[br]domain error[br]-55.7932, 32066.2, 0[br]domain error[br]-55.7932, 36367.9, 0[br]domain error[br]-44.3004, 9.50706, 5.6936e+22[br]domain error[br]-44.3004, 24.7501, 1242.73[br]domain error[br]-44.3004, 63.7722, 7.99341e-23[br]domain error[br]-44.3004, 125.28, 9.88149e-53[br]domain error[br]-44.3004, 255.547, 3.73007e-111[br]domain error[br]-44.3004, 503.011, 1.37367e-219[br]domain error[br]-44.3004, 1007.46, 0[br]domain error[br]-44.3004, 1185.4, 0[br]domain error[br]-44.3004, 3534.52, 0[br]domain error[br]-44.3004, 8071.55, 0[br]domain error[br]-44.3004, 16229.2, 0[br]domain error[br]-44.3004, 32066.2, 0[br]domain error[br]-44.3004, 36367.9, 0[br]domain error[br]-38.3666, 5.11399, 4.97154e+27[br]domain error[br]-38.3666, 9.50706, 1.51436e+17[br]domain error[br]-38.3666, 24.7501, 0.639495[br]domain error[br]-38.3666, 63.7722, 2.19334e-24[br]domain error[br]-38.3666, 125.28, 1.45351e-53[br]domain error[br]-38.3666, 255.547, 1.43713e-111[br]domain error[br]-38.3666, 503.011, 8.44445e-220[br]domain error[br]-38.3666, 1007.46, 0[br]domain error[br]-38.3666, 1185.4, 0[br]domain error[br]-38.3666, 3534.52, 0[br]domain error[br]-38.3666, 8071.55, 0[br]domain error[br]-38.3666, 16229.2, 0[br]domain error[br]-38.3666, 32066.2, 0[br]domain error[br]-38.3666, 36367.9, 0[br]underflow[br]9.3763, 1007.46, 0[br]underflow[br]9.3763, 1185.4, 0[br]underflow[br]9.3763, 3534.52, 0[br]underflow[br]9.3763, 8071.55, 0[br]underflow[br]9.3763, 16229.2, 0[br]underflow[br]9.3763, 32066.2, 0[br]underflow[br]9.3763, 36367.9, 0[br]underflow[br]9.44412, 1007.46, 0[br]underflow[br]9.44412, 1185.4, 0[br]underflow[br]9.44412, 3534.52, 0[br]underflow[br]9.44412, 8071.55, 0[br]underflow[br]9.44412, 16229.2, 0[br]underflow[br]9.44412, 32066.2, 0[br]underflow[br]9.44412, 36367.9, 0[br]underflow[br]26.4719, 1007.46, 0[br]underflow[br]26.4719, 1185.4, 0[br]underflow[br]26.4719, 3534.52, 0[br]underflow[br]26.4719, 8071.55, 0[br]underflow[br]26.4719, 16229.2, 0[br]underflow[br]26.4719, 32066.2, 0[br]underflow[br]26.4719, 36367.9, 0[br]underflow[br]62.9447, 1007.46, 0[br]underflow[br]62.9447, 1185.4, 0[br]underflow[br]62.9447, 3534.52, 0[br]underflow[br]62.9447, 8071.55, 0[br]underflow[br]62.9447, 16229.2, 0[br]underflow[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Random_Data[]
[h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Kn: Random Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Random_Data]
underflow[br]0, 1007.46, 0[br]underflow[br]0, 1185.4, 0[br]underflow[br]0, 3534.52, 0[br]underflow[br]0, 8071.55, 0[br]underflow[br]0, 16229.2, 0[br]underflow[br]0, 32066.2, 0[br]underflow[br]0, 36367.9, 0[br]underflow[br]1, 1007.46, 0[br]underflow[br]1, 1185.4, 0[br]underflow[br]1, 3534.52, 0[br]underflow[br]1, 8071.55, 0[br]underflow[br]1, 16229.2, 0[br]underflow[br]1, 32066.2, 0[br]underflow[br]1, 36367.9, 0[br]underflow[br]4, 1007.46, 0[br]underflow[br]4, 1185.4, 0[br]underflow[br]4, 3534.52, 0[br]underflow[br]4, 8071.55, 0[br]underflow[br]4, 16229.2, 0[br]underflow[br]4, 32066.2, 0[br]underflow[br]4, 36367.9, 0[br]underflow[br]7, 1007.46, 0[br]underflow[br]7, 1185.4, 0[br]underflow[br]7, 3534.52, 0[br]underflow[br]7, 8071.55, 0[br]underflow[br]7, 16229.2, 0[br]underflow[br]7, 32066.2, 0[br]underflow[br]7, 36367.9, 0[br]underflow[br]10, 1007.46, 0[br]underflow[br]10, 1185.4, 0[br]underflow[br]10, 3534.52, 0[br]underflow[br]10, 8071.55, 0[br]underflow[br]10, 16229.2, 0[br]underflow[br]10, 32066.2, 0[br]underflow[br]10, 36367.9, 0[br]underflow[br]13, 1007.46, 0[br]underflow[br]13, 1185.4, 0[br]underflow[br]13, 3534.52, 0[br]underflow[br]13, 8071.55, 0[br]underflow[br]13, 16229.2, 0[br]underflow[br]13, 32066.2, 0[br]underflow[br]13, 36367.9, 0[br]underflow[br]16, 1007.46, 0[br]underflow[br]16, 1185.4, 0[br]underflow[br]16, 3534.52, 0[br]underflow[br]16, 8071.55, 0[br]underflow[br]16, 16229.2, 0[br]underflow[br]16, 32066.2, 0[br]underflow[br]16, 36367.9, 0[br]underflow[br]19, 1007.46, 0[br]underflow[br]19, 1185.4, 0[br]underflow[br]19, 3534.52, 0[br]underflow[br]19, 8071.55, 0[br]underflow[br]19, 16229.2, 0[br]underflow[br]19, 32066.2, 0[br]underflow[br]19, 36367.9, 0[br]underflow[br]22, 1007.46, 0[br]underflow[br]22, 1185.4, 0[br]underflow[br]22, 3534.52, 0[br]underflow[br]22, 8071.55, 0[br]underflow[br]22, 16229.2, 0[br]underflow[br]22, 32066.2, 0[br]underflow[br]22, 36367.9, 0[br]underflow[br]25, 1007.46, 0[br]underflow[br]25, 1185.4, 0[br]underflow[br]25, 3534.52, 0[br]underflow[br]25, 8071.55, 0[br]underflow[br]25, 16229.2, 0[br]underflow[br]25, 32066.2, 0[br]underflow[br]25, 36367.9, 0[br]underflow[br]28, 1007.46, 0[br]underflow[br]28, 1185.4, 0[br]underflow[br]28, 3534.52, 0[br]underflow[br]28, 8071.55, 0[br]underflow[br]28, 16229.2, 0[br]underflow[br]28, 32066.2, 0[br]underflow[br]28, 36367.9, 0[br]underflow[br]31, 1007.46, 0[br]underflow[br]31, 1185.4, 0[br]underflow[br]31, 3534.52, 0[br]underflow[br]31, 8071.55, 0[br]underflow[br]31, 16229.2, 0[br]underflow[br]31, 32066.2, 0[br]underflow[br]31, 36367.9, 0[br]underflow[br]34, 1007.46, 0[br]underflow[br]34, 1185.4, 0[br]underflow[br]34, 3534.52, 0[br]underflow[br]34, 8071.55, 0[br]underflow[br]34, 16229.2, 0[br]underflow[br]34, 32066.2, 0[br]underflow[br]34, 36367.9, 0[br]underflow[br]37, 1007.46, 0[br]underflow[br]37, 1185.4, 0[br]underflow[br]37, 3534.52, 0[br]underflow[br]37, 8071.55, 0[br]underflow[br]37, 16229.2, 0[br]underflow[br]37, 32066.2, 0[br]underflow[br]37, 36367.9, 0[br]underflow[br]40, 1007.46, 0[br]underflow[br]40, 1185.4, 0[br]underflow[br]40, 3534.52, 0[br]underflow[br]40, 8071.55, 0[br]underflow[br]40, 16229.2, 0[br]underflow[br]40, 32066.2, 0[br]underflow[br]40, 36367.9, 0[br]underflow[br]43, 1007.46, 0[br]underflow[br]43, 1185.4, 0[br]underflow[br]43, 3534.52, 0[br]underflow[br]43, 8071.55, 0[br]underflow[br]43, 16229.2, 0[br]underflow[br]43, 32066.2, 0[br]underflow[br]43, 36367.9, 0[br]underflow[br]46, 1007.46, 0[br]underflow[br]46, 1185.4, 0[br]underflow[br]46, 3534.52, 0[br]underflow[br]46, 8071.55, 0[br]underflow[br]46, 16229.2, 0[br]underflow[br]46, 32066.2, 0[br]underflow[br]46, 36367.9, 0[br]underflow[br]49, 1007.46, 0[br]underflow[br]49, 1185.4, 0[br]underflow[br]49, 3534.52, 0[br]underflow[br]49, 8071.55, 0[br]underflow[br]49, 16229.2, 0[br]underflow[br]49, 32066.2, 0[br]underflow[br]49, 36367.9, 0[br]underflow[br]52, 1007.46, 0[br]underflow[br]52, 1185.4, 0[br]underflow[br]52, 3534.52, 0[br]underflow[br]52, 8071.55, 0[br]underflow[br]52, 16229.2, 0[br]underflow[br]52, 32066.2, 0[br]underflow[br]52, 36367.9, 0[br]underflow[br]55, 1007.46, 0[br]underflow[br]55, 1185.4, 0[br]underflow[br]55, 3534.52, 0[br]underflow[br]55, 8071.55, 0[br]underflow[br]55, 16229.2, 0[br]underflow[br]55, 32066.2, 0[br]underflow[br]55, 36367.9, 0[br]underflow[br]58, 1007.46, 0[br]underflow[br]58, 1185.4, 0[br]underflow[br]58, 3534.52, 0[br]underflow[br]58, 8071.55, 0[br]underflow[br]58, 16229.2, 0[br]underflow[br]58, 32066.2, 0[br]underflow[br]58, 36367.9, 0[br]underflow[br]61, 1007.46, 0[br]underflow[br]61, 1185.4, 0[br]underflow[br]61, 3534.52, 0[br]underflow[br]61, 8071.55, 0[br]underflow[br]61, 16229.2, 0[br]underflow[br]61, 32066.2, 0[br]underflow[br]61, 36367.9, 0[br]underflow[br]64, 1007.46, 0[br]underflow[br]64, 1185.4, 0[br]underflow[br]64, 3534.52, 0[br]underflow[br]64, 8071.55, 0[br]underflow[br]64, 16229.2, 0[br]underflow[br]64, 32066.2, 0[br]underflow[br]64, 36367.9, 0[br]underflow[br]67, 1007.46, 0[br]underflow[br]67, 1185.4, 0[br]underflow[br]67, 3534.52, 0[br]underflow[br]67, 8071.55, 0[br]underflow[br]67, 16229.2, 0[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data_large_values_[]
[h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Kv: Mathworld Data (large values)]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data_large_values_]
domain error[br]-1, 3.72917e-155, 2.68156e+154[br]domain error[br]-1.125, 3.72917e-155, 5.53984e+173[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data[]
[h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Kv: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data]
domain error[br]-5.5, 10, 7.33045e-05[br]domain error[br]-5.5, 100, 5.41275e-45[br]domain error[br]-141.399, 50, 1.30185e+42[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Mathworld_Data[]
[h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Kn: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Mathworld_Data]
domain error[br]-5, 100, 5.27326e-45[br]domain error[br]-10, 1, 1.80713e+08[br]domain error[br]-1000, 700, 6.51562e-31[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Random_Data[]
[h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Kv: Random Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Random_Data]
Bad argument in __cyl_bessel_k.[br]-80.4919, 24.7501, 6.57902e+28[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 63.7722, 2.39552e-09[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 125.28, 3.06904e-45[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 255.547, 2.30343e-107[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 503.011, 1.20315e-217[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 1007.46, 2.86537e-438[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 1185.4, 8.63263e-516[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 3534.52, 5.01367e-1537[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 8071.55, 7.76555e-3508[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 16229.2, 0[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 32066.2, 0[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 36367.9, 0[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 24.7501, 1.19405e+24[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 63.7722, 5.81897e-12[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 125.28, 9.89214e-47[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 255.547, 3.9726e-108[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 503.011, 4.87462e-218[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 1007.46, 1.82221e-438[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 1185.4, 5.87506e-516[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 3534.52, 4.40608e-1537[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 8071.55, 7.3384e-3508[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 16229.2, 0[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 32066.2, 0[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 36367.9, 0[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 24.7501, 5.5618e+22[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 63.7722, 1.09452e-12[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 125.28, 3.8393e-47[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 255.547, 2.45173e-108[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 503.011, 3.80454e-218[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 1007.46, 1.60949e-438[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 1185.4, 5.28662e-516[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 3534.52, 4.25273e-1537[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 8071.55, 7.22542e-3508[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 16229.2, 0[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 32066.2, 0[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 36367.9, 0[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 24.7501, 6.74518e+14[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 63.7722, 6.54531e-17[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 125.28, 1.65653e-49[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 255.547, 1.54767e-109[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 503.011, 9.22721e-219[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 1007.46, 7.91894e-439[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 1185.4, 2.89281e-516[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 3534.52, 3.4736e-1537[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 8071.55, 6.6126e-3508[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 16229.2, 0[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 32066.2, 0[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 36367.9, 0[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 24.7501, 2.00028e+10[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 63.7722, 3.01107e-19[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 125.28, 8.54693e-51[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 255.547, 3.47666e-110[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 503.011, 4.29705e-219[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 1007.46, 5.40242e-439[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 1185.4, 2.08996e-516[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 3534.52, 3.11458e-1537[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 8071.55, 6.30409e-3508[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 16229.2, 0[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 32066.2, 0[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 36367.9, 0[br]Bad argument in __cyl_bessel_k.[br]-44.3004, 9.50706, 5.6936e+22[br]Bad argument in __cyl_bessel_k.[br]-44.3004, 24.7501, 1242.73[br]Bad argument in __cyl_bessel_k.[br]-44.3004, 63.7722, 7.99341e-23[br]Bad argument in __cyl_bessel_k.[br]-44.3004, 125.28, 9.88149e-53[br]Bad argument in __cyl_bessel_k.[br]-44.3004, 255.547, 3.73007e-111[br]Bad argument in __cyl_bessel_k.[br]-44.3004, 503.011, 1.37367e-219[br]Bad argument in __cyl_bessel_k.[br]-44.3004, 1007.46, 3.05398e-439[br]Bad argument in __cyl_bessel_k.[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data_large_values_[]
[h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Kv: Mathworld Data (large values)]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data_large_values_]
Bad argument in __cyl_bessel_k.[br]-1, 3.72917e-155, 2.68156e+154[br]Bad argument in __cyl_bessel_k.[br]-1.125, 3.72917e-155, 5.53984e+173[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data[]
[h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Kv: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data]
Bad argument in __cyl_bessel_k.[br]-5.5, 10, 7.33045e-05[br]Bad argument in __cyl_bessel_k.[br]-5.5, 100, 5.41275e-45[br]Bad argument in __cyl_bessel_k.[br]-141.399, 50, 1.30185e+42[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_Kn_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_bessel_k (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Kn: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_Kn_Mathworld_Data_Integer_Version_]
Bad argument in __cyl_bessel_k.[br]-5, 100, 5.27326e-45[br]Bad argument in __cyl_bessel_k.[br]-10, 1, 1.80713e+08[br]Bad argument in __cyl_bessel_k.[br]-1000, 700, 6.51562e-31[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Mathworld_Data[]
[h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Kn: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Mathworld_Data]
Bad argument in __cyl_bessel_k.[br]-5, 100, 5.27326e-45[br]Bad argument in __cyl_bessel_k.[br]-10, 1, 1.80713e+08[br]Bad argument in __cyl_bessel_k.[br]-1000, 700, 6.51562e-31[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data_large_values_[]
[h4 Error Output For cyl_neumann with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Yv: Mathworld Data (large values)]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data_large_values_]
domain error[br]-0.5, 1.2459e-206, 8.90598e-104[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data[]
[h4 Error Output For cyl_neumann with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Yv: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data]
domain error[br]-5.5, 3.125, -0.0274994[br]domain error[br]-5.5, 10000, -0.00759344[br]domain error[br]-10.0003, 0.000976562, -1.50382e+38[br]domain error[br]-10.0003, 100, 0.0583042[br]domain error[br]-141.75, 100, -3.8101e+09[br]domain error[br]-8.5, 12.5664, 0.0436808[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Mathworld_Data[]
[h4 Error Output For cyl_neumann with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Yn: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Mathworld_Data]
domain error[br]-5, 1e+06, 0.000331052[br]domain error[br]-10, 1e+06, 0.000725952[br]domain error[br]-1000, 700, -1.88753e+77[br]domain error[br]-25, 8, 3.45114e+08[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Random_Data[]
[h4 Error Output For cyl_neumann with compiler GNU C++ version 7.1.0 and library <cmath> and test data Yv: Random Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Random_Data]
CAUTION: Gross error found at entry 394.[br]Found: -3.29903 Expected 0.0192842 Error: 1.18973e+4932[br]125.28, 1007.46, 0.0192842[br]CAUTION: Gross error found at entry 395.[br]Found: 1.13543 Expected 0.0230358 Error: 48.2897[br]125.28, 1185.4, 0.0230358[br]CAUTION: Gross error found at entry 396.[br]Found: 0.00119445 Expected 0.00460223 Error: 2.85302[br]125.28, 3534.52, 0.00460223[br]CAUTION: Gross error found at entry 403.[br]Found: 1068 Expected -0.00270959 Error: 1.18973e+4932[br]255.547, 1007.46, -0.00270959[br]CAUTION: Gross error found at entry 404.[br]Found: -395.006 Expected 0.00738845 Error: 1.18973e+4932[br]255.547, 1185.4, 0.00738845[br]CAUTION: Gross error found at entry 405.[br]Found: 1.08701 Expected -0.000407036 Error: 1.18973e+4932[br]255.547, 3534.52, -0.000407036[br]CAUTION: Gross error found at entry 406.[br]Found: 0.0232211 Expected 0.00886946 Error: 1.61809[br]255.547, 8071.55, 0.00886946[br]CAUTION: Gross error found at entry 411.[br]Found: 65895.7 Expected -0.0158467 Error: 1.18973e+4932[br]503.011, 1007.46, -0.0158467[br]CAUTION: Gross error found at entry 412.[br]Found: -123316 Expected 0.00594357 Error: 1.18973e+4932[br]503.011, 1185.4, 0.00594357[br]CAUTION: Gross error found at entry 413.[br]Found: -706.209 Expected 0.010151 Error: 1.18973e+4932[br]503.011, 3534.52, 0.010151[br]CAUTION: Gross error found at entry 414.[br]Found: -21.2081 Expected 0.00888375 Error: 1.18973e+4932[br]503.011, 8071.55, 0.00888375[br]CAUTION: Gross error found at entry 415.[br]Found: 0.0272835 Expected 0.00552287 Error: 3.94008[br]503.011, 16229.2, 0.00552287[br]CAUTION: Gross error found at entry 416.[br]Found: 0.0103324 Expected 0.00445559 Error: 1.31898[br]503.011, 32066.2, 0.00445559[br]CAUTION: Gross error found at entry 417.[br]Found: 0.00540788 Expected -0.00384344 Error: 1.18973e+4932[br]503.011, 36367.9, -0.00384344[br]CAUTION: Gross error found at entry 418.[br]Found: 5.43091e+07 Expected -0.0772843 Error: 1.18973e+4932[br]1007.46, 1007.46, -0.0772843[br]CAUTION: Gross error found at entry 419.[br]Found: -2.84383e+07 Expected 0.0304312 Error: 1.18973e+4932[br]1007.46, 1185.4, 0.0304312[br]CAUTION: Gross error found at entry 420.[br]Found: -61440.2 Expected -0.00474217 Error: 1.29562e+07[br]1007.46, 3534.52, -0.00474217[br]CAUTION: Gross error found at entry 421.[br]Found: -4126.89 Expected -0.0074205 Error: 556146[br]1007.46, 8071.55, -0.0074205[br]CAUTION: Gross error found at entry 422.[br]Found: -69.2831 Expected -0.00179572 Error: 38581.4[br]1007.46, 16229.2, -0.00179572[br]CAUTION: Gross error found at entry 423.[br]Found: 2.32048 Expected 0.000750053 Error: 3092.76[br]1007.46, 32066.2, 0.000750053[br]CAUTION: Gross error found at entry 424.[br]Found: 3.90724 Expected 0.00305125 Error: 1279.54[br]1007.46, 36367.9, 0.00305125[br]CAUTION: Gross error found at entry 425.[br]Found: -1.83374e+08 Expected -7.25176e+28 Error: 3.95463e+20[br]1185.4, 1007.46, -7.25176e+28[br]CAUTION: Gross error found at entry 426.[br]Found: 1.09822e+08 Expected -0.0732059 Error: 1.18973e+4932[br]1185.4, 1185.4, -0.0732059[br]CAUTION: Gross error found at entry 427.[br]Found: 315632 Expected 0.000479585 Error: 6.58136e+08[br]1185.4, 3534.52, 0.000479585[br]CAUTION: Gross error found at entry 428.[br]Found: 16815.6 Expected 0.00174909 Error: 9.61391e+06[br]1185.4, 8071.55, 0.00174909[br]CAUTION: Gross error found at entry 429.[br]Found: 133.356 Expected 0.00416288 Error: 32033.6[br]1185.4, 16229.2, 0.00416288[br]CAUTION: Gross error found at entry 430.[br]Found: -1.38401 Expected -0.000320056 Error: 4323.27[br]1185.4, 32066.2, -0.000320056[br]CAUTION: Gross error found at entry 431.[br]Found: -17.7085 Expected -0.00417656 Error: 4238.96[br]1185.4, 36367.9, -0.00417656[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data_large_values_[]
[h4 Error Output For cyl_neumann with compiler GNU C++ version 7.1.0 and library <cmath> and test data Yv: Mathworld Data (large values)]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data_large_values_]
Bad argument in __cyl_neumann_n.[br]-0.5, 1.2459e-206, 8.90598e-104[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data[]
[h4 Error Output For cyl_neumann with compiler GNU C++ version 7.1.0 and library <cmath> and test data Yv: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data]
Bad argument in __cyl_neumann_n.[br]-5.5, 3.125, -0.0274994[br]Bad argument in __cyl_neumann_n.[br]-5.5, 10000, -0.00759344[br]Bad argument in __cyl_neumann_n.[br]-10.0003, 0.000976562, -1.50382e+38[br]Bad argument in __cyl_neumann_n.[br]-10.0003, 100, 0.0583042[br]Bad argument in __cyl_neumann_n.[br]-141.75, 100, -3.8101e+09[br]Bad argument in __cyl_neumann_n.[br]-8.5, 12.5664, 0.0436808[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Yn_Mathworld_Data_Integer_Version_[]
[h4 Error Output For cyl_neumann (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Yn: Mathworld Data (Integer Version)]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Yn_Mathworld_Data_Integer_Version_]
Bad argument in __cyl_neumann_n.[br]-5, 1e+06, 0.000331052[br]Bad argument in __cyl_neumann_n.[br]-10, 1e+06, 0.000725952[br]CAUTION: Gross error found at entry 7.[br]Found: 0.0540745 Expected 0.00217255 Error: 23.8899[br]1000, 100000, 0.00217255[br]Bad argument in __cyl_neumann_n.[br]-1000, 700, -1.88753e+77[br]Bad argument in __cyl_neumann_n.[br]-25, 8, 3.45114e+08[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Mathworld_Data[]
[h4 Error Output For cyl_neumann with compiler GNU C++ version 7.1.0 and library <cmath> and test data Yn: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Mathworld_Data]
Bad argument in __cyl_neumann_n.[br]-5, 1e+06, 0.000331052[br]Bad argument in __cyl_neumann_n.[br]-10, 1e+06, 0.000725952[br]CAUTION: Gross error found at entry 7.[br]Found: 0.0540745 Expected 0.00217255 Error: 23.8899[br]1000, 100000, 0.00217255[br]Bad argument in __cyl_neumann_n.[br]-1000, 700, -1.88753e+77[br]Bad argument in __cyl_neumann_n.[br]-25, 8, 3.45114e+08[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Small_Values[]
[h4 Error Output For beta with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Beta Function: Small Values]
[#errors_GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Small_Values]
CAUTION: Found non-finite result, when a finite value was expected at entry 22[br]Found: inf Expected 5.69832e+154 Error: 1.79769e+308[br]2.98334e-154, 1.86459e-155, 5.69832e+154[br]CAUTION: Gross error found at entry 22.[br]Found: inf Expected 5.69832e+154 Error: 1.79769e+308[br]2.98334e-154, 1.86459e-155, 5.69832e+154[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Random_data[]
[h4 Error Output For ellint_rj with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data RJ: Random data]
[#errors_GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Random_data]
domain error[br]1.77787e-31, 1.40657e+18, 10.046, -4.8298e-10, -2.51795e-10[br]domain error[br]3.37448e-31, 4.65772e+22, 0.469831, -4.33756e-09, -2.95865e-11[br]domain error[br]5.25297e-31, 5.85483e+25, 2.02482e-15, -1.87347e-28, 3.36445e+07[br]domain error[br]6.22216e-31, 3.43401e+23, 0.673005, -2.7626e-13, -7.58898e-12[br]domain error[br]6.26875e-31, 2.62568e-13, 1.06394e+24, -1.36451e+14, -6.70372e-25[br]domain error[br]6.84599e-31, 3.57666e-29, 1.82191e+11, -3.63292e+08, -8.35235e-13[br]domain error[br]8.90482e-31, 1.97093e-28, 1.14939e-31, -1.26424e-12, -6.39454e+26[br]domain error[br]1.07374e-30, 1.70005e-12, 1.88773e-25, -1.16558e-29, 4.31668e+32[br]domain error[br]1.17141e-30, 24.2523, 3.67522e+21, -4.79065e-22, 2.2702e-05[br]domain error[br]1.64143e-30, 2.01978e-22, 2.58942e+12, -8.52649e-12, -2.82629e+06[br]domain error[br]1.85141e-30, 0.0386712, 2.37846e-13, -1.57357e+15, -1.38574e-13[br]domain error[br]2.70034e-30, 4.43896e-24, 7.54576e+16, -1.1436e-14, -1.10082e+07[br]domain error[br]4.01162e-30, 2.73343e+23, 1.32333e+13, -1.86032e-07, -4.16626e-25[br]domain error[br]4.13665e-30, 1.08034e-30, 3.13547e-16, -5.58099e-08, -5.14643e+16[br]domain error[br]4.3728e-30, 7.79812e+12, 8.58894e+21, -4.58312e-24, 5.28901e-09[br]domain error[br]5.6397e-30, 1.64768e+23, 9.64423e-15, -1.82207e+20, -1.62886e-30[br]domain error[br]9.89841e-30, 9.69731e+10, 1.03263e+21, -0.00343967, -9.62714e-22[br]domain error[br]1.3797e-29, 6.03357e+08, 5.62497e-15, -5.87235e+16, -5.80287e-20[br]domain error[br]1.96963e-29, 3.22384e-25, 2.92187e+23, -3.80643e+27, -8.2513e-38[br]domain error[br]2.00927e-29, 5.6976e-05, 1.16219e+25, -1.64129e-22, 0.00318397[br]domain error[br]7.29506e-29, 5904.94, 9.93922e+10, -19.528, -1.60795e-09[br]domain error[br]1.19698e-28, 1.66816e-22, 28472, -1.21137e-19, -5.84699e+17[br]domain error[br]1.64095e-28, 2.13421e-21, 7.8914e-15, -1.77584e-07, -1.70156e+15[br]domain error[br]2.03475e-28, 4.40987e+15, 28739.1, -9624.5, -1.29418e-12[br]domain error[br]2.73113e-28, 1.08457e+19, 4.00674e+08, -5.70043e-11, 1.092e-17[br]domain error[br]5.52633e-28, 1.45707e-17, 1.29411e-27, -1.67255e-15, -5.84881e+24[br]domain error[br]5.61278e-28, 9.22881e-12, 8.64222e-13, -5.6282e+23, -4.57782e-18[br]domain error[br]6.08465e-28, 1.32249e+26, 1.25536e-30, -1.89097e-14, -223.246[br]domain error[br]9.50943e-28, 2.49682e-18, 0.000904584, -3.1419e-12, -2.44954e+14[br]domain error[br]1.20779e-27, 35383.2, 1.35533e-15, -4.67834e-24, 3.20581e+15[br]domain error[br]2.29822e-27, 3.35258e-16, 2.60689e+08, -9.99161e-20, -5.4924e+11[br]domain error[br]3.0926e-27, 3.11839e-13, 3.37883e-23, -1.94349e+26, -3.55191e-19[br]domain error[br]3.12803e-27, 1.15118e+16, 1.52495e+10, -4.2399e+13, -3.07515e-21[br]domain error[br]4.49747e-27, 716.685, 1.69018e-23, -1.32558e-14, -9.2291e+13[br]domain error[br]4.84575e-27, 3.44028e-27, 3.42665e+09, -812.399, -2.12767e-06[br]domain error[br]5.81424e-27, 3.70845e-15, 3.69338e+11, -4.15794e+06, -2.95944e-11[br]domain error[br]6.08654e-27, 1.23742e+08, 1.09124e-26, -2.19946e+16, -4.90896e-19[br]domain error[br]7.71967e-27, 9.46115e-26, 1.24324e+25, -522800, -5.83203e-17[br]domain error[br]9.20037e-27, 207550, 2.45782e-17, -6.06901e+29, -2.88945e-31[br]domain error[br]1.75502e-26, 5.81507e+16, 8.83063e+21, -1.11214e-21, 1.57697e-11[br]domain error[br]2.29965e-26, 2.9716e-21, 1.81059e-25, -5.23972e-08, -6.23302e+18[br]domain error[br]2.32628e-26, 0.0655133, 1.62901e-21, -7.15441e-17, -9.88586e+17[br]domain error[br]3.49194e-26, 2.53343e+14, 756.217, -1.3359e+10, -1.275e-16[br]domain error[br]1.009e-25, 0.0694304, 1.20267e-14, -1.55746e-22, 2.10701e+17[br]domain error[br]3.54771e-25, 1.67999e-27, 2.3917e+24, -9.98754e+25, -1.11704e-36[br]domain error[br]6.31714e-25, 3.4594e-28, 6.37951e-24, -1.25529e-24, -9.56292e+35[br]domain error[br]6.74086e-25, 2.47169e+12, 1.32962e+23, -6.78845e+06, -3.32861e-24[br]domain error[br]1.8099e-24, 4.5215e-06, 8.66937e-11, -3.70795e-08, -1.41893e+11[br]domain error[br]2.29798e-24, 9.30454e-30, 6.56584e-17, -9890.38, -373149[br]domain error[br]2.88161e-24, 8.82377e-05, 1.57747e+21, -4.25068e-24, 2260.61[br]domain error[br]3.25991e-24, 1.92923e+29, 3.09752e-05, -1.00986e+11, -1.25485e-24[br]domain error[br]6.36705e-24, 2.8074e+22, 1.75569e-13, -1.53152e+24, -4.89823e-34[br]domain error[br]7.90772e-24, 2.11611e-30, 1.42682e-07, -0.00296297, -5.38814e+07[br]domain error[br]1.05302e-23, 4.83473e+26, 4.43149e-30, -1.56818e+13, -3.6836e-25[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Mathworld_Data[]
[h4 Error Output For ellint_1 with compiler GNU C++ version 7.1.0 and library <cmath> and test data Elliptic Integral F: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Mathworld_Data]
CAUTION: Gross error found at entry 9.[br]Found: -7.02862e+09 Expected 1.04181e+20 Error: 1.18973e+4932[br]1e+20, 0.390625, 1.04181e+20[br]CAUTION: Gross error found at entry 10.[br]Found: -9.3866e+09 Expected 1.39133e+50 Error: 1.18973e+4932[br]1e+50, 0.875, 1.39133e+50[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Mathworld_Data[]
[h4 Error Output For ellint_2 (complete) with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Elliptic Integral E: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Mathworld_Data]
domain error[br]-1, 1[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Mathworld_Data[]
[h4 Error Output For ellint_2 with compiler GNU C++ version 7.1.0 and library <cmath> and test data Elliptic Integral E: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Mathworld_Data]
CAUTION: Gross error found at entry 7.[br]Found: -6.3027e+09 Expected 9.34215e+09 Error: 1.18973e+4932[br]1e+10, -0.5, 9.34215e+09[br]CAUTION: Gross error found at entry 8.[br]Found: -6.48129e+09 Expected 7.08861e+19 Error: 1.18973e+4932[br]7.3787e+19, 0.390625, 7.08861e+19[br]CAUTION: Gross error found at entry 9.[br]Found: -5.13973e+09 Expected 7.1259e+49 Error: 1.18973e+4932[br]9.35361e+49, 0.878906, 7.1259e+49[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Mathworld_Data[]
[h4 Error Output For ellint_3 (complete) with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Complete Elliptic Integral PI: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Mathworld_Data]
domain error[br]-4.14952e+180, 0.5, 7.71119e-91[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Mathworld_Data[]
[h4 Error Output For ellint_3 with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Elliptic Integral PI: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Mathworld_Data]
domain error[br]1.125, 10, 0.25, 0.662468[br]domain error[br]1.125, 3, 0.25, -0.142697[br]domain error[br]1.00391, 21.5, 0.125, -0.535406[br]domain error[br]1, 2, 0.5, -2.87535[br]domain error[br]1, -2, 0.5, 2.87535[br]domain error[br]1, 2, 6.22302e-61, -2.18504[br]domain error[br]1, -2, 6.22302e-61, 2.18504[br]domain error[br]20, 3.14257, 0.5, 0.000975941[br]domain error[br]20, -3.14257, 0.5, -0.000975941[br]domain error[br]1.01562, 1.6958, 0.5, -27.1647[br]domain error[br]1.01562, -1.6958, 0.5, 27.1647[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Random_Data[]
[h4 Error Output For ellint_3 (complete) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Complete Elliptic Integral PI: Random Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Random_Data]
Argument too small in __ellint_rj[br]-87.1743, 0.126987, 0.167413[br]Argument too small in __ellint_rj[br]-87.1743, 0.135477, 0.167431[br]Argument too small in __ellint_rj[br]-87.1743, 0.221034, 0.167683[br]Argument too small in __ellint_rj[br]-87.1743, 0.308167, 0.168078[br]Argument too small in __ellint_rj[br]-87.1743, 0.632359, 0.17122[br]Argument too small in __ellint_rj[br]-87.1743, 0.814724, 0.175341[br]Argument too small in __ellint_rj[br]-87.1743, 0.835009, 0.176056[br]Argument too small in __ellint_rj[br]-87.1743, 0.905792, 0.179501[br]Argument too small in __ellint_rj[br]-87.1743, 0.913376, 0.180014[br]Argument too small in __ellint_rj[br]-87.1743, 0.968868, 0.186162[br]Argument too small in __ellint_rj[br]-86.3168, 0.126987, 0.168233[br]Argument too small in __ellint_rj[br]-86.3168, 0.135477, 0.168252[br]Argument too small in __ellint_rj[br]-86.3168, 0.221034, 0.168506[br]Argument too small in __ellint_rj[br]-86.3168, 0.308167, 0.168905[br]Argument too small in __ellint_rj[br]-86.3168, 0.632359, 0.172077[br]Argument too small in __ellint_rj[br]-86.3168, 0.814724, 0.176237[br]Argument too small in __ellint_rj[br]-86.3168, 0.835009, 0.176958[br]Argument too small in __ellint_rj[br]-86.3168, 0.905792, 0.180437[br]Argument too small in __ellint_rj[br]-86.3168, 0.913376, 0.180955[br]Argument too small in __ellint_rj[br]-86.3168, 0.968868, 0.187163[br]Argument too small in __ellint_rj[br]-77.6756, 0.126987, 0.177238[br]Argument too small in __ellint_rj[br]-77.6756, 0.135477, 0.177258[br]Argument too small in __ellint_rj[br]-77.6756, 0.221034, 0.17754[br]Argument too small in __ellint_rj[br]-77.6756, 0.308167, 0.17798[br]Argument too small in __ellint_rj[br]-77.6756, 0.632359, 0.181485[br]Argument too small in __ellint_rj[br]-77.6756, 0.814724, 0.186089[br]Argument too small in __ellint_rj[br]-77.6756, 0.835009, 0.186888[br]Argument too small in __ellint_rj[br]-77.6756, 0.905792, 0.190742[br]Argument too small in __ellint_rj[br]-77.6756, 0.913376, 0.191315[br]Argument too small in __ellint_rj[br]-77.6756, 0.968868, 0.1982[br]Argument too small in __ellint_rj[br]-68.8751, 0.126987, 0.188077[br]Argument too small in __ellint_rj[br]-68.8751, 0.135477, 0.188099[br]Argument too small in __ellint_rj[br]-68.8751, 0.221034, 0.188414[br]Argument too small in __ellint_rj[br]-68.8751, 0.308167, 0.188907[br]Argument too small in __ellint_rj[br]-68.8751, 0.632359, 0.192834[br]Argument too small in __ellint_rj[br]-68.8751, 0.814724, 0.198[br]Argument too small in __ellint_rj[br]-68.8751, 0.835009, 0.198896[br]Argument too small in __ellint_rj[br]-68.8751, 0.905792, 0.203226[br]Argument too small in __ellint_rj[br]-68.8751, 0.913376, 0.203871[br]Argument too small in __ellint_rj[br]-68.8751, 0.968868, 0.211615[br]Argument too small in __ellint_rj[br]-36.1317, 0.126987, 0.258074[br]Argument too small in __ellint_rj[br]-36.1317, 0.135477, 0.258115[br]Argument too small in __ellint_rj[br]-36.1317, 0.221034, 0.258686[br]Argument too small in __ellint_rj[br]-36.1317, 0.308167, 0.259579[br]Argument too small in __ellint_rj[br]-36.1317, 0.632359, 0.266738[br]Argument too small in __ellint_rj[br]-36.1317, 0.814724, 0.276242[br]Argument too small in __ellint_rj[br]-36.1317, 0.835009, 0.2779[br]Argument too small in __ellint_rj[br]-36.1317, 0.905792, 0.285938[br]Argument too small in __ellint_rj[br]-36.1317, 0.913376, 0.287139[br]Argument too small in __ellint_rj[br]-36.1317, 0.968868, 0.301608[br]Argument too small in __ellint_rj[br]-17.7129, 0.126987, 0.363673[br]Argument too small in __ellint_rj[br]-17.7129, 0.135477, 0.36375[br]Argument too small in __ellint_rj[br]-17.7129, 0.221034, 0.364822[br]Argument too small in __ellint_rj[br]-17.7129, 0.308167, 0.366503[br]Argument too small in __ellint_rj[br]-17.7129, 0.632359, 0.380066[br]Argument too small in __ellint_rj[br]-17.7129, 0.814724, 0.398311[br]Argument too small in __ellint_rj[br]-17.7129, 0.835009, 0.401518[br]Argument too small in __ellint_rj[br]-17.7129, 0.905792, 0.417145[br]Argument too small in __ellint_rj[br]-17.7129, 0.913376, 0.41949[br]Argument too small in __ellint_rj[br]-17.7129, 0.968868, 0.447893[br]Argument too small in __ellint_rj[br]-15.6641, 0.126987, 0.385409[br]Argument too small in __ellint_rj[br]-15.6641, 0.135477, 0.385495[br]Argument too small in __ellint_rj[br]-15.6641, 0.221034, 0.386686[br]Argument too small in __ellint_rj[br]-15.6641, 0.308167, 0.388553[br]Argument too small in __ellint_rj[br]-15.6641, 0.632359, 0.403643[br]Argument too small in __ellint_rj[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Mathworld_Data[]
[h4 Error Output For ellint_3 (complete) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Complete Elliptic Integral PI: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Mathworld_Data]
CAUTION: Gross error found at entry 3.[br]Found: 1.28255 Expected 2.22144 Error: 0.732051[br]0.5, 0, 2.22144[br]Argument too small in __ellint_rj[br]-4, 0.3, 0.712709[br]Argument too small in __ellint_rj[br]-100000, -0.5, 0.00496945[br]Argument too small in __ellint_rj[br]-1e+10, -0.75, 1.5708e-05[br]CAUTION: Gross error found at entry 8.[br]Found: 1.45615 Expected 101.045 Error: 68.3919[br]0.999023, -0.875, 101.045[br]Argument too small in __ellint_rj[br]-4.14952e+180, 0.5, 7.71119e-91[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Large_Random_Data[]
[h4 Error Output For ellint_3 with compiler GNU C++ version 7.1.0 and library <cmath> and test data Elliptic Integral PI: Large Random Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Large_Random_Data]
Argument too small in __ellint_rj[br]-88.2952, -8.04919, 0.814724, -0.874724[br]Argument too small in __ellint_rj[br]-88.2952, -7.46026, 0.135477, -0.827189[br]Argument too small in __ellint_rj[br]-88.2952, -7.29046, 0.905792, -0.877476[br]Argument too small in __ellint_rj[br]-88.2952, -6.23236, 0.835009, -0.652152[br]Argument too small in __ellint_rj[br]-88.2952, -5.57932, 0.126987, -0.512276[br]Argument too small in __ellint_rj[br]-88.2952, -4.43004, 0.968868, -0.543324[br]Argument too small in __ellint_rj[br]-88.2952, -3.83666, 0.913376, -0.513389[br]Argument too small in __ellint_rj[br]-88.2952, 0.93763, 0.221034, 0.158243[br]Argument too small in __ellint_rj[br]-88.2952, 0.944412, 0.632359, 0.160101[br]Argument too small in __ellint_rj[br]-88.2952, 2.64719, 0.308167, 0.188127[br]Argument too small in __ellint_rj[br]-88.2952, 6.29447, 0.0975404, 0.676465[br]Argument too small in __ellint_rj[br]-88.2952, 6.70017, 0.547221, 0.817785[br]Argument too small in __ellint_rj[br]-88.2952, 8.11584, 0.278498, 0.837452[br]Argument too small in __ellint_rj[br]-88.2952, 8.26752, 0.188382, 0.837571[br]Argument too small in __ellint_rj[br]-88.2952, 9.15014, 0.546881, 0.885365[br]Argument too small in __ellint_rj[br]-88.2952, 9.29777, 0.992881, 1.06701[br]Argument too small in __ellint_rj[br]-88.2952, 9.3539, 0.957507, 1.03573[br]Argument too small in __ellint_rj[br]-88.2952, 9.37736, 0.996461, 1.13933[br]Argument too small in __ellint_rj[br]-88.2952, 9.85763, 0.964889, 1.24906[br]Argument too small in __ellint_rj[br]-88.2952, 9.92923, 0.967695, 1.25621[br]Argument too small in __ellint_rj[br]-86.8166, -8.04919, 0.157613, -0.841405[br]Argument too small in __ellint_rj[br]-86.8166, -7.46026, 0.725839, -0.859877[br]Argument too small in __ellint_rj[br]-86.8166, -7.29046, 0.970593, -0.914439[br]Argument too small in __ellint_rj[br]-86.8166, -6.23236, 0.98111, -0.710627[br]Argument too small in __ellint_rj[br]-86.8166, -5.57932, 0.957167, -0.58106[br]Argument too small in __ellint_rj[br]-86.8166, -4.43004, 0.109862, -0.499839[br]Argument too small in __ellint_rj[br]-86.8166, -3.83666, 0.485376, -0.494286[br]Argument too small in __ellint_rj[br]-86.8166, 0.93763, 0.798106, 0.162644[br]Argument too small in __ellint_rj[br]-86.8166, 0.944412, 0.80028, 0.16282[br]Argument too small in __ellint_rj[br]-86.8166, 2.64719, 0.297029, 0.18978[br]Argument too small in __ellint_rj[br]-86.8166, 6.29447, 0.141886, 0.682392[br]Argument too small in __ellint_rj[br]-86.8166, 6.70017, 0.00478348, 0.812885[br]Argument too small in __ellint_rj[br]-86.8166, 8.11584, 0.421761, 0.849249[br]Argument too small in __ellint_rj[br]-86.8166, 8.26752, 0.112465, 0.843648[br]Argument too small in __ellint_rj[br]-86.8166, 9.15014, 0.915736, 0.953733[br]Argument too small in __ellint_rj[br]-86.8166, 9.29777, 0.639763, 0.936743[br]Argument too small in __ellint_rj[br]-86.8166, 9.3539, 0.792207, 0.987359[br]Argument too small in __ellint_rj[br]-86.8166, 9.37736, 0.878431, 1.02525[br]Argument too small in __ellint_rj[br]-86.8166, 9.85763, 0.959492, 1.25508[br]Argument too small in __ellint_rj[br]-86.8166, 9.92923, 0.503663, 1.16735[br]Argument too small in __ellint_rj[br]-84.7616, -8.04919, 0.655741, -0.873305[br]Argument too small in __ellint_rj[br]-84.7616, -7.46026, 0.797929, -0.879044[br]Argument too small in __ellint_rj[br]-84.7616, -7.29046, 0.0357117, -0.840785[br]Argument too small in __ellint_rj[br]-84.7616, -6.23236, 0.361294, -0.635502[br]Argument too small in __ellint_rj[br]-84.7616, -5.57932, 0.849129, -0.558231[br]Argument too small in __ellint_rj[br]-84.7616, -4.43004, 0.211924, -0.506533[br]Argument too small in __ellint_rj[br]-84.7616, -3.83666, 0.933993, -0.527681[br]Argument too small in __ellint_rj[br]-84.7616, 0.93763, 0.68136, 0.163458[br]Argument too small in __ellint_rj[br]-84.7616, 0.944412, 0.678735, 0.163582[br]Argument too small in __ellint_rj[br]-84.7616, 2.64719, 0.398739, 0.193458[br]Argument too small in __ellint_rj[br]-84.7616, 6.29447, 0.75774, 0.716086[br]Argument too small in __ellint_rj[br]-84.7616, 6.70017, 0.740647, 0.847849[br]Argument too small in __ellint_rj[br]-84.7616, 8.11584, 0.743132, 0.883827[br]Argument too small in __ellint_rj[br]-84.7616, 8.26752, 0.474759, 0.864181[br]Argument too small in __ellint_rj[br]-84.7616, 9.15014, 0.392227, 0.895646[br]Argument too small in __ellint_rj[br]-84.7616, 9.29777, 0.422088, 0.933423[br]Argument too small in __ellint_rj[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Random_Data[]
[h4 Error Output For ellint_3 with compiler GNU C++ version 7.1.0 and library <cmath> and test data Elliptic Integral PI: Random Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Random_Data]
CAUTION: Gross error found at entry 150.[br]Found: 1.09748 Expected 1.76311 Error: 0.606506[br]0.546881, 1.27977, 0.349984, 1.76311[br]CAUTION: Gross error found at entry 151.[br]Found: 1.39529 Expected 2.4686 Error: 0.769232[br]0.546881, 1.31163, 0.907365, 2.4686[br]CAUTION: Gross error found at entry 152.[br]Found: 1.17627 Expected 2.03097 Error: 0.726615[br]0.546881, 1.42281, 0.196595, 2.03097[br]CAUTION: Gross error found at entry 153.[br]Found: 1.47192 Expected 2.76894 Error: 0.881179[br]0.546881, 1.43473, 0.848468, 2.76894[br]CAUTION: Gross error found at entry 154.[br]Found: 1.23674 Expected 2.22733 Error: 0.800966[br]0.546881, 1.50405, 0.251084, 2.22733[br]CAUTION: Gross error found at entry 155.[br]Found: 1.87704 Expected 3.98415 Error: 1.12257[br]0.546881, 1.51564, 0.955018, 3.98415[br]CAUTION: Gross error found at entry 156.[br]Found: 1.35817 Expected 2.53989 Error: 0.870091[br]0.546881, 1.52005, 0.616045, 2.53989[br]CAUTION: Gross error found at entry 157.[br]Found: 1.48427 Expected 2.87082 Error: 0.934166[br]0.546881, 1.52189, 0.778898, 2.87082[br]CAUTION: Gross error found at entry 158.[br]Found: 1.32687 Expected 2.48679 Error: 0.874176[br]0.546881, 1.55961, 0.473289, 2.48679[br]CAUTION: Gross error found at entry 159.[br]Found: 2.37485 Expected 5.58805 Error: 1.35301[br]0.546881, 1.56524, 0.98746, 5.58805[br]CAUTION: Gross error found at entry 170.[br]Found: 1.08889 Expected 1.74565 Error: 0.603142[br]0.547221, 1.27977, 0.285839, 1.74565[br]CAUTION: Gross error found at entry 171.[br]Found: 1.21346 Expected 2.03956 Error: 0.680778[br]0.547221, 1.31163, 0.67982, 2.03956[br]CAUTION: Gross error found at entry 172.[br]Found: 1.36407 Expected 2.48392 Error: 0.820965[br]0.547221, 1.42281, 0.7572, 2.48392[br]CAUTION: Gross error found at entry 173.[br]Found: 1.21442 Expected 2.12881 Error: 0.752947[br]0.547221, 1.43473, 0.39232, 2.12881[br]CAUTION: Gross error found at entry 174.[br]Found: 1.4409 Expected 2.74399 Error: 0.904352[br]0.547221, 1.50405, 0.753729, 2.74399[br]CAUTION: Gross error found at entry 175.[br]Found: 1.32796 Expected 2.46156 Error: 0.853642[br]0.547221, 1.51564, 0.561557, 2.46156[br]CAUTION: Gross error found at entry 176.[br]Found: 1.27163 Expected 2.32413 Error: 0.82767[br]0.547221, 1.52005, 0.380446, 2.32413[br]CAUTION: Gross error found at entry 177.[br]Found: 1.24298 Expected 2.25511 Error: 0.814274[br]0.547221, 1.52189, 0.208068, 2.25511[br]CAUTION: Gross error found at entry 178.[br]Found: 1.36528 Expected 2.58635 Error: 0.894379[br]0.547221, 1.55961, 0.567822, 2.58635[br]CAUTION: Gross error found at entry 179.[br]Found: 1.35151 Expected 2.55463 Error: 0.890206[br]0.547221, 1.56524, 0.527371, 2.55463[br]CAUTION: Gross error found at entry 189.[br]Found: 1.01047 Expected 1.52344 Error: 0.507658[br]0.632359, 0.993308, 0.964966, 1.52344[br]CAUTION: Gross error found at entry 190.[br]Found: 1.05231 Expected 1.84135 Error: 0.749817[br]0.632359, 1.27977, 0.129906, 1.84135[br]CAUTION: Gross error found at entry 191.[br]Found: 1.07393 Expected 1.92224 Error: 0.789918[br]0.632359, 1.31163, 0.154438, 1.92224[br]CAUTION: Gross error found at entry 192.[br]Found: 1.22616 Expected 2.43657 Error: 0.987156[br]0.632359, 1.42281, 0.568824, 2.43657[br]CAUTION: Gross error found at entry 193.[br]Found: 1.18462 Expected 2.33142 Error: 0.968083[br]0.632359, 1.43473, 0.394908, 2.33142[br]CAUTION: Gross error found at entry 194.[br]Found: 1.25094 Expected 2.59169 Error: 1.0718[br]0.632359, 1.50405, 0.469391, 2.59169[br]CAUTION: Gross error found at entry 195.[br]Found: 1.23693 Expected 2.56158 Error: 1.07091[br]0.632359, 1.51564, 0.387296, 2.56158[br]CAUTION: Gross error found at entry 196.[br]Found: 1.19839 Expected 2.45293 Error: 1.04685[br]0.632359, 1.52005, 0.0119021, 2.45293[br]CAUTION: Gross error found at entry 197.[br]Found: 1.39415 Expected 3.05228 Error: 1.18935[br]0.632359, 1.52189, 0.726955, 3.05228[br]CAUTION: Gross error found at entry 198.[br]Found: 1.25489 Expected 2.6569 Error: 1.11723[br]0.632359, 1.55961, 0.337123, 2.6569[br]CAUTION: Gross error found at entry 199.[br]Found: 1.27021 Expected 2.70857 Error: 1.13237[br]0.632359, 1.56524, 0.38857, 2.70857[br]CAUTION: Gross error found at entry 209.[br]Found: 0.83304 Expected 1.35947 Error: 0.631944[br]0.814724, 0.993308, 0.119547, 1.35947[br]CAUTION: Gross error found at entry 210.[br]Found: 1.07764 Expected 2.50291 Error: 1.32258[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Mathworld_Data[]
[h4 Error Output For ellint_3 with compiler GNU C++ version 7.1.0 and library <cmath> and test data Elliptic Integral PI: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Mathworld_Data]
CAUTION: Gross error found at entry 0.[br]Found: -0.809353 Expected -1.55741 Error: 0.924263[br]1, -1, 0, -1.55741[br]CAUTION: Gross error found at entry 11.[br]Found: 1.07555 Expected 13.2822 Error: 11.3492[br]0.999023, 1.5, 0, 13.2822[br]CAUTION: Gross error found at entry 13.[br]Found: -5.86896e+09 Expected 1.53659e+10 Error: 1.18973e+4932[br]0.5, 1e+10, 0.5, 1.53659e+10[br]Argument too small in __ellint_rj[br]-100000, 10, 0.75, 0.0347926[br]Argument too small in __ellint_rj[br]-1e+10, 10, 0.875, 0.000109956[br]Argument too small in __ellint_rj[br]-1e+10, 1e+20, 0.875, 1.00001e+15[br]Argument too small in __ellint_rj[br]-1e+10, 1.57031, 0.875, 1.57081e-05[br]CAUTION: Gross error found at entry 18.[br]Found: -6.25413e+09 Expected 6.43274e+21 Error: 1.18973e+4932[br]0.999023, 1e+20, 0.875, 6.43274e+21[br]CAUTION: Gross error found at entry 19.[br]Found: 0.102424 Expected 0.196321 Error: 0.916748[br]50, 0.125, 0.25, 0.196321[br]CAUTION: Gross error found at entry 20.[br]Found: 0.798807 Expected 1.773 Error: 1.21956[br]1.125, 1, 0.25, 1.773[br]CAUTION: Gross error found at entry 21.[br]Found: 7.07138 Expected 0.662468 Error: 9.6743[br]1.125, 10, 0.25, 0.662468[br]CAUTION: Gross error found at entry 22.[br]Found: 2.04288 Expected -0.142697 Error: 1.18973e+4932[br]1.125, 3, 0.25, -0.142697[br]CAUTION: Gross error found at entry 23.[br]Found: 1.07762 Expected 22.2699 Error: 19.6659[br]1.00391, 1.5, 0.125, 22.2699[br]CAUTION: Gross error found at entry 24.[br]Found: 15.1275 Expected -0.535406 Error: 1.18973e+4932[br]1.00391, 21.5, 0.125, -0.535406[br]CAUTION: Gross error found at entry 41.[br]Found: 1.57454 Expected 3.0338 Error: 0.926787[br]0.5, 2, 0, 3.0338[br]CAUTION: Gross error found at entry 42.[br]Found: 3.0338 Expected 1.57454 Error: 0.926787[br]-0.5, 2, 0, 1.57454[br]CAUTION: Gross error found at entry 43.[br]Found: -1.57454 Expected -3.0338 Error: 0.926787[br]0.5, -2, 0, -3.0338[br]CAUTION: Gross error found at entry 44.[br]Found: -3.0338 Expected -1.57454 Error: 0.926787[br]-0.5, -2, 0, -1.57454[br]CAUTION: Found non-finite result, when a finite value was expected at entry 51[br]Found: inf Expected -2.87535 Error: 1.18973e+4932[br]1, 2, 0.5, -2.87535[br]CAUTION: Gross error found at entry 51.[br]Found: inf Expected -2.87535 Error: 1.18973e+4932[br]1, 2, 0.5, -2.87535[br]CAUTION: Found non-finite result, when a finite value was expected at entry 52[br]Found: -inf Expected 2.87535 Error: 1.18973e+4932[br]1, -2, 0.5, 2.87535[br]CAUTION: Gross error found at entry 52.[br]Found: -inf Expected 2.87535 Error: 1.18973e+4932[br]1, -2, 0.5, 2.87535[br]CAUTION: Found non-finite result, when a finite value was expected at entry 53[br]Found: inf Expected -2.18504 Error: 1.18973e+4932[br]1, 2, 6.22302e-61, -2.18504[br]CAUTION: Gross error found at entry 53.[br]Found: inf Expected -2.18504 Error: 1.18973e+4932[br]1, 2, 6.22302e-61, -2.18504[br]CAUTION: Found non-finite result, when a finite value was expected at entry 54[br]Found: -inf Expected 2.18504 Error: 1.18973e+4932[br]1, -2, 6.22302e-61, 2.18504[br]CAUTION: Gross error found at entry 54.[br]Found: -inf Expected 2.18504 Error: 1.18973e+4932[br]1, -2, 6.22302e-61, 2.18504[br]CAUTION: Gross error found at entry 57.[br]Found: 0.703907 Expected 0.000975941 Error: 720.259[br]20, 3.14257, 0.5, 0.000975941[br]CAUTION: Gross error found at entry 58.[br]Found: -0.703907 Expected -0.000975941 Error: 720.259[br]20, -3.14257, 0.5, -0.000975941[br]CAUTION: Gross error found at entry 59.[br]Found: 1.24445 Expected -27.1647 Error: 1.18973e+4932[br]1.01562, 1.6958, 0.5, -27.1647[br]CAUTION: Gross error found at entry 60.[br]Found: -1.24445 Expected 27.1647 Error: 1.18973e+4932[br]1.01562, -1.6958, 0.5, 27.1647[br]
]
[template errors_GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei[]
[h4 Error Output For expint (Ei) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Exponential Integral Ei]
[#errors_GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei]
Continued fraction failed in __expint_En_cont_frac.[br]-1.30539, -0.134326[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Large_and_Diverse_Values[]
[h4 Error Output For ibeta with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Incomplete Beta Function: Large and Diverse Values]
[#errors_GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Large_and_Diverse_Values]
underflow[br]1.04761e-05, 39078.2, 0.913384, 95444.4, 0, 1, 0[br]underflow[br]1.2158e-05, 24110.5, 0.135563, 82239.7, 0, 1, 0[br]underflow[br]1.30342e-05, 26168.3, 0.127074, 76710.7, 0, 1, 0[br]underflow[br]1.51962e-05, 16177.5, 0.814742, 65795.4, 0, 1, 0[br]underflow[br]1.64873e-05, 470997, 0.127074, 60639.1, 0, 1, 0[br]underflow[br]1.66259e-05, 147819, 0.632396, 60134.5, 0, 1, 0[br]underflow[br]1.78638e-05, 439.387, 0.835025, 55972.4, 0, 1, 0[br]underflow[br]2.00434e-05, 482.007, 0.905801, 49885.1, 0, 1, 0[br]underflow[br]2.05189e-05, 236088, 0.835025, 48722.7, 0, 1, 0[br]underflow[br]2.14336e-05, 3719.28, 0.814742, 46647, 0, 1, 0[br]underflow[br]2.24486e-05, 445071, 0.221112, 44532.6, 0, 1, 0[br]underflow[br]2.34849e-05, 25542.8, 0.968871, 42569.8, 0, 1, 0[br]underflow[br]2.39993e-05, 462.946, 0.814742, 41661.1, 0, 1, 0[br]underflow[br]2.52178e-05, 1832.27, 0.913384, 39646.4, 0, 1, 0[br]underflow[br]2.87756e-05, 25491.8, 0.905801, 34740.9, 0, 1, 0[br]underflow[br]2.89316e-05, 494.984, 0.968871, 34557.6, 0, 1, 0[br]underflow[br]3.11413e-05, 348144, 0.308236, 32098.3, 0, 1, 0[br]underflow[br]3.12319e-05, 33713, 0.221112, 32007.5, 0, 1, 0[br]underflow[br]3.19889e-05, 3931.19, 0.308236, 31251.9, 0, 1, 0[br]underflow[br]3.27129e-05, 3109.49, 0.968871, 30560.4, 0, 1, 0[br]underflow[br]3.27529e-05, 25796.3, 0.835025, 30520.9, 0, 1, 0[br]underflow[br]3.34106e-05, 3378.01, 0.221112, 29922, 0, 1, 0[br]underflow[br]3.40793e-05, 288783, 0.814742, 29330.2, 0, 1, 0[br]underflow[br]3.46418e-05, 411.559, 0.913384, 28860.3, 0, 1, 0[br]underflow[br]3.61632e-05, 311937, 0.905801, 27639.2, 0, 1, 0[br]underflow[br]3.75686e-05, 386440, 0.913384, 26604.5, 0, 1, 0[br]underflow[br]3.99261e-05, 495352, 0.968871, 25032.6, 0, 1, 0[br]underflow[br]4.01492e-05, 3246.23, 0.905801, 24898.5, 0, 1, 0[br]underflow[br]4.0288e-05, 2569.28, 0.835025, 24812.9, 0, 1, 0[br]underflow[br]4.11667e-05, 24253.8, 0.308236, 24280.8, 0, 1, 0[br]underflow[br]4.17714e-05, 274447, 0.135563, 23926.7, 0, 1, 0[br]underflow[br]4.66877e-05, 3780.93, 0.632396, 21410.1, 0, 1, 0[br]underflow[br]4.73604e-05, 48598.7, 0.632396, 21103.3, 0, 1, 0[br]underflow[br]0.00013245, 251.768, 0.968871, 7543.9, 0, 1, 0[br]underflow[br]0.000168283, 195801, 0.905801, 5929.61, 0, 1, 0[br]underflow[br]0.000177906, 276489, 0.814742, 5607.86, 0, 1, 0[br]underflow[br]0.000183097, 316055, 0.127074, 5448.36, 0, 1, 0[br]underflow[br]0.000190369, 159132, 0.835025, 5240.42, 0, 1, 0[br]underflow[br]0.000191066, 419861, 0.913384, 5220.29, 0, 1, 0[br]underflow[br]0.000192195, 177798, 0.308236, 5190.39, 0, 1, 0[br]underflow[br]0.000220499, 107380, 0.135563, 4523.03, 0, 1, 0[br]underflow[br]0.00022254, 1432.25, 0.814742, 4485.74, 0, 1, 0[br]underflow[br]0.000240291, 49604.4, 0.632396, 4150.25, 0, 1, 0[br]underflow[br]0.000251444, 15605.8, 0.135563, 3966.81, 0, 1, 0[br]underflow[br]0.000274279, 289206, 0.968871, 3632.79, 0, 1, 0[br]underflow[br]0.000274343, 2954.47, 0.308236, 3636.51, 0, 1, 0[br]underflow[br]0.000278714, 4023.16, 0.632396, 3579.05, 0, 1, 0[br]underflow[br]0.000288369, 460073, 0.221112, 3454.19, 0, 1, 0[br]underflow[br]0.000294717, 4642.26, 0.221112, 3384.08, 0, 1, 0[br]underflow[br]0.000303403, 2574.36, 0.835025, 3287.52, 0, 1, 0[br]underflow[br]0.000304309, 4480.75, 0.905801, 3277.17, 0, 1, 0[br]underflow[br]0.00031313, 47957, 0.308236, 3182.22, 0, 1, 0[br]underflow[br]0.000320063, 25544.6, 0.905801, 3113.68, 0, 1, 0[br]underflow[br]0.000334818, 29065.5, 0.968871, 2975.86, 0, 1, 0[br]underflow[br]0.00034899, 41187.6, 0.913384, 2854.23, 0, 1, 0[br]underflow[br]0.000350247, 426.308, 0.905801, 2848.5, 0, 1, 0[br]underflow[br]0.000357727, 31752.2, 0.127074, 2784.5, 0, 1, 0[br]underflow[br]0.000412091, 367.714, 0.913384, 2420.17, 0, 1, 0[br]underflow[br]0.000417933, 4668.47, 0.968871, 2383.72, 0, 1, 0[br]underflow[br]0.000424632, 17994.9, 0.221112, 2344.63, 0, 1, 0[br]underflow[br]0.000427051, 2443.44, 0.913384, 2333.28, 0, 1, 0[br]underflow[br]0.000437724, 454399, 0.632396, 2270.98, 0, 1, 0[br]underflow[br]0.000450377, 10660.8, 0.835025, 2210.53, 0, 1, 0[br]underflow[br]0.000475601, 19603, 0.814742, 2092.17, 0, 1, 0[br]underflow[br]0.00116972, 4487.22, 0.221112, 845.964, 0, 1, 0[br]underflow[br]0.00124188, 211066, 0.632396, 792.493, 0, 1, 0[br]underflow[br]0.00128578, 4738.41, 0.308236, 768.75, 0, 1, 0[br]underflow[br]0.00133388, 46277.8, 0.913384, 738.46, 0, 1, 0[br]underflow[br]0.00138692, 2158.76, 0.814742, 712.816, 0, 1, 0[br]underflow[br]0.00153268, 13060.2, 0.968871, 642.474, 0, 1, 0[br]underflow[br]0.00159946, 1780.43, 0.968871, 617.202, 0, 1, 0[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1[]
[h4 Error Output For jacobi_dn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Modulus near 1]
[#errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]
|m| > 1.0[br]-4.0246, 1, -0.999361, 0.0357365, 0.0357231[br]|m| > 1.0[br]-4.0246, 1, -0.999361, 0.0357497, 0.0357097[br]|m| > 1.0[br]-4.0246, 1, -0.99936, 0.0357762, 0.0356829[br]|m| > 1.0[br]-4.0246, 1, -0.999359, 0.0357895, 0.0356695[br]|m| > 1.0[br]-4.0246, 1.00001, -0.999354, 0.0359354, 0.0355222[br]|m| > 1.0[br]-4.0246, 1.00003, -0.999347, 0.0361343, 0.0353212[br]|m| > 1.0[br]-4.0246, 1.00004, -0.999343, 0.036247, 0.0352073[br]|m| > 1.0[br]-4.0246, 1.0001, -0.999311, 0.0371157, 0.0343296[br]|m| > 1.0[br]-4.0246, 1.00016, -0.99928, 0.0379513, 0.0334851[br]|m| > 1.0[br]-4.0246, 1.00027, -0.999221, 0.0394571, 0.0319634[br]|m| > 1.0[br]-4.0246, 1.00076, -0.99893, 0.0462407, 0.0251046[br]|m| > 1.0[br]-4.0246, 1.00125, -0.998589, 0.0531109, 0.0181532[br]|m| > 1.0[br]-4.0246, 1.00232, -0.99768, 0.0680761, 0.0029944[br]|m| > 1.0[br]-4.0246, 1.00604, -0.992752, 0.120179, -0.049966[br]|m| > 1.0[br]-4.0246, 1.01557, -0.967356, 0.25342, -0.186698[br]|m| > 1.0[br]-4.0246, 1.03059, -0.890373, 0.455232, -0.397492[br]|m| > 1.0[br]-4.0246, 1.06239, -0.607191, 0.794556, -0.76412[br]|m| > 1.0[br]-3.73013, 1, -0.998849, 0.0479567, 0.0479467[br]|m| > 1.0[br]-3.73013, 1, -0.998849, 0.0479665, 0.0479367[br]|m| > 1.0[br]-3.73013, 1, -0.998848, 0.0479862, 0.0479167[br]|m| > 1.0[br]-3.73013, 1, -0.998848, 0.047996, 0.0479067[br]|m| > 1.0[br]-3.73013, 1.00001, -0.998842, 0.0481042, 0.0477966[br]|m| > 1.0[br]-3.73013, 1.00003, -0.998835, 0.0482517, 0.0476465[br]|m| > 1.0[br]-3.73013, 1.00004, -0.998831, 0.0483354, 0.0475615[br]|m| > 1.0[br]-3.73013, 1.0001, -0.9988, 0.0489797, 0.0469059[br]|m| > 1.0[br]-3.73013, 1.00016, -0.998769, 0.0495995, 0.0462752[br]|m| > 1.0[br]-3.73013, 1.00027, -0.998713, 0.0507164, 0.0451386[br]|m| > 1.0[br]-3.73013, 1.00076, -0.998445, 0.0557477, 0.0400164[br]|m| > 1.0[br]-3.73013, 1.00125, -0.998147, 0.0608429, 0.0348257[br]|m| > 1.0[br]-3.73013, 1.00232, -0.997409, 0.0719406, 0.0235071[br]|m| > 1.0[br]-3.73013, 1.00604, -0.993866, 0.110593, -0.016048[br]|m| > 1.0[br]-3.73013, 1.01557, -0.977708, 0.209971, -0.118704[br]|m| > 1.0[br]-3.73013, 1.03059, -0.931162, 0.364606, -0.281224[br]|m| > 1.0[br]-3.73013, 1.06239, -0.753495, 0.657453, -0.599326[br]|m| > 1.0[br]-3.64523, 1, -0.998637, 0.0521997, 0.0521906[br]|m| > 1.0[br]-3.64523, 1, -0.998636, 0.0522087, 0.0521814[br]|m| > 1.0[br]-3.64523, 1, -0.998635, 0.0522268, 0.052163[br]|m| > 1.0[br]-3.64523, 1, -0.998635, 0.0522358, 0.0521538[br]|m| > 1.0[br]-3.64523, 1.00001, -0.99863, 0.052335, 0.0520526[br]|m| > 1.0[br]-3.64523, 1.00003, -0.998622, 0.0524703, 0.0519145[br]|m| > 1.0[br]-3.64523, 1.00004, -0.998618, 0.052547, 0.0518363[br]|m| > 1.0[br]-3.64523, 1.0001, -0.998587, 0.0531379, 0.0512335[br]|m| > 1.0[br]-3.64523, 1.00016, -0.998557, 0.0537063, 0.0506536[br]|m| > 1.0[br]-3.64523, 1.00027, -0.998501, 0.0547305, 0.0496084[br]|m| > 1.0[br]-3.64523, 1.00076, -0.998238, 0.0593443, 0.0448986[br]|m| > 1.0[br]-3.64523, 1.00125, -0.997949, 0.0640165, 0.0401258[br]|m| > 1.0[br]-3.64523, 1.00232, -0.997244, 0.0741927, 0.0297191[br]|m| > 1.0[br]-3.64523, 1.00604, -0.993972, 0.109636, -0.00664888[br]|m| > 1.0[br]-3.64523, 1.01557, -0.979623, 0.200844, -0.101111[br]|m| > 1.0[br]-3.64523, 1.03059, -0.939163, 0.343472, -0.251382[br]|m| > 1.0[br]-3.64523, 1.06239, -0.784719, 0.619852, -0.552253[br]|m| > 1.0[br]-3.11618, 1, -0.996078, 0.0884811, 0.0884757[br]|m| > 1.0[br]-3.11618, 1, -0.996077, 0.0884863, 0.0884702[br]|m| > 1.0[br]-3.11618, 1, -0.996076, 0.0884967, 0.0884593[br]|m| > 1.0[br]-3.11618, 1, -0.996076, 0.0885019, 0.0884538[br]|m| > 1.0[br]-3.11618, 1.00001, -0.996071, 0.0885593, 0.0883936[br]|m| > 1.0[br]-3.11618, 1.00003, -0.996064, 0.0886376, 0.0883114[br]|m| > 1.0[br]-3.11618, 1.00004, -0.99606, 0.0886819, 0.0882648[br]|m| > 1.0[br]-3.11618, 1.0001, -0.99603, 0.0890236, 0.0879059[br]|m| > 1.0[br]-3.11618, 1.00016, -0.996, 0.0893523, 0.0875607[br]|m| > 1.0[br]-3.11618, 1.00027, -0.995947, 0.0899445, 0.0869386[br]|m| > 1.0[br]-3.11618, 1.00076, -0.995702, 0.092612, 0.0841353[br]|m| > 1.0[br]-3.11618, 1.00125, -0.995447, 0.0953126, 0.0812953[br]|m| > 1.0[br]-3.11618, 1.00232, -0.994867, 0.101193, 0.0751049[br]|m| > 1.0[br]-3.11618, 1.00604, -0.992571, 0.121667, 0.0534858[br]|m| > 1.0[br]-3.11618, 1.01557, -0.984666, 0.174451, -0.00273723[br]|m| > 1.0[br]-3.11618, 1.03059, -0.966077, 0.258253, -0.0934336[br]|m| > 1.0[br]-3.11618, 1.06239, -0.901067, 0.433681, -0.289151[br]|m| > 1.0[br]-2.78966, 1, -0.992478, 0.122424, 0.12242[br]|m| > 1.0[br]-2.78966, 1, -0.992477, 0.122428, 0.122416[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1[]
[h4 Error Output For jacobi_cn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Modulus near 1]
[#errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]
|m| > 1.0[br]-4.0246, 1, -0.999361, 0.0357365, 0.0357231[br]|m| > 1.0[br]-4.0246, 1, -0.999361, 0.0357497, 0.0357097[br]|m| > 1.0[br]-4.0246, 1, -0.99936, 0.0357762, 0.0356829[br]|m| > 1.0[br]-4.0246, 1, -0.999359, 0.0357895, 0.0356695[br]|m| > 1.0[br]-4.0246, 1.00001, -0.999354, 0.0359354, 0.0355222[br]|m| > 1.0[br]-4.0246, 1.00003, -0.999347, 0.0361343, 0.0353212[br]|m| > 1.0[br]-4.0246, 1.00004, -0.999343, 0.036247, 0.0352073[br]|m| > 1.0[br]-4.0246, 1.0001, -0.999311, 0.0371157, 0.0343296[br]|m| > 1.0[br]-4.0246, 1.00016, -0.99928, 0.0379513, 0.0334851[br]|m| > 1.0[br]-4.0246, 1.00027, -0.999221, 0.0394571, 0.0319634[br]|m| > 1.0[br]-4.0246, 1.00076, -0.99893, 0.0462407, 0.0251046[br]|m| > 1.0[br]-4.0246, 1.00125, -0.998589, 0.0531109, 0.0181532[br]|m| > 1.0[br]-4.0246, 1.00232, -0.99768, 0.0680761, 0.0029944[br]|m| > 1.0[br]-4.0246, 1.00604, -0.992752, 0.120179, -0.049966[br]|m| > 1.0[br]-4.0246, 1.01557, -0.967356, 0.25342, -0.186698[br]|m| > 1.0[br]-4.0246, 1.03059, -0.890373, 0.455232, -0.397492[br]|m| > 1.0[br]-4.0246, 1.06239, -0.607191, 0.794556, -0.76412[br]|m| > 1.0[br]-3.73013, 1, -0.998849, 0.0479567, 0.0479467[br]|m| > 1.0[br]-3.73013, 1, -0.998849, 0.0479665, 0.0479367[br]|m| > 1.0[br]-3.73013, 1, -0.998848, 0.0479862, 0.0479167[br]|m| > 1.0[br]-3.73013, 1, -0.998848, 0.047996, 0.0479067[br]|m| > 1.0[br]-3.73013, 1.00001, -0.998842, 0.0481042, 0.0477966[br]|m| > 1.0[br]-3.73013, 1.00003, -0.998835, 0.0482517, 0.0476465[br]|m| > 1.0[br]-3.73013, 1.00004, -0.998831, 0.0483354, 0.0475615[br]|m| > 1.0[br]-3.73013, 1.0001, -0.9988, 0.0489797, 0.0469059[br]|m| > 1.0[br]-3.73013, 1.00016, -0.998769, 0.0495995, 0.0462752[br]|m| > 1.0[br]-3.73013, 1.00027, -0.998713, 0.0507164, 0.0451386[br]|m| > 1.0[br]-3.73013, 1.00076, -0.998445, 0.0557477, 0.0400164[br]|m| > 1.0[br]-3.73013, 1.00125, -0.998147, 0.0608429, 0.0348257[br]|m| > 1.0[br]-3.73013, 1.00232, -0.997409, 0.0719406, 0.0235071[br]|m| > 1.0[br]-3.73013, 1.00604, -0.993866, 0.110593, -0.016048[br]|m| > 1.0[br]-3.73013, 1.01557, -0.977708, 0.209971, -0.118704[br]|m| > 1.0[br]-3.73013, 1.03059, -0.931162, 0.364606, -0.281224[br]|m| > 1.0[br]-3.73013, 1.06239, -0.753495, 0.657453, -0.599326[br]|m| > 1.0[br]-3.64523, 1, -0.998637, 0.0521997, 0.0521906[br]|m| > 1.0[br]-3.64523, 1, -0.998636, 0.0522087, 0.0521814[br]|m| > 1.0[br]-3.64523, 1, -0.998635, 0.0522268, 0.052163[br]|m| > 1.0[br]-3.64523, 1, -0.998635, 0.0522358, 0.0521538[br]|m| > 1.0[br]-3.64523, 1.00001, -0.99863, 0.052335, 0.0520526[br]|m| > 1.0[br]-3.64523, 1.00003, -0.998622, 0.0524703, 0.0519145[br]|m| > 1.0[br]-3.64523, 1.00004, -0.998618, 0.052547, 0.0518363[br]|m| > 1.0[br]-3.64523, 1.0001, -0.998587, 0.0531379, 0.0512335[br]|m| > 1.0[br]-3.64523, 1.00016, -0.998557, 0.0537063, 0.0506536[br]|m| > 1.0[br]-3.64523, 1.00027, -0.998501, 0.0547305, 0.0496084[br]|m| > 1.0[br]-3.64523, 1.00076, -0.998238, 0.0593443, 0.0448986[br]|m| > 1.0[br]-3.64523, 1.00125, -0.997949, 0.0640165, 0.0401258[br]|m| > 1.0[br]-3.64523, 1.00232, -0.997244, 0.0741927, 0.0297191[br]|m| > 1.0[br]-3.64523, 1.00604, -0.993972, 0.109636, -0.00664888[br]|m| > 1.0[br]-3.64523, 1.01557, -0.979623, 0.200844, -0.101111[br]|m| > 1.0[br]-3.64523, 1.03059, -0.939163, 0.343472, -0.251382[br]|m| > 1.0[br]-3.64523, 1.06239, -0.784719, 0.619852, -0.552253[br]|m| > 1.0[br]-3.11618, 1, -0.996078, 0.0884811, 0.0884757[br]|m| > 1.0[br]-3.11618, 1, -0.996077, 0.0884863, 0.0884702[br]|m| > 1.0[br]-3.11618, 1, -0.996076, 0.0884967, 0.0884593[br]|m| > 1.0[br]-3.11618, 1, -0.996076, 0.0885019, 0.0884538[br]|m| > 1.0[br]-3.11618, 1.00001, -0.996071, 0.0885593, 0.0883936[br]|m| > 1.0[br]-3.11618, 1.00003, -0.996064, 0.0886376, 0.0883114[br]|m| > 1.0[br]-3.11618, 1.00004, -0.99606, 0.0886819, 0.0882648[br]|m| > 1.0[br]-3.11618, 1.0001, -0.99603, 0.0890236, 0.0879059[br]|m| > 1.0[br]-3.11618, 1.00016, -0.996, 0.0893523, 0.0875607[br]|m| > 1.0[br]-3.11618, 1.00027, -0.995947, 0.0899445, 0.0869386[br]|m| > 1.0[br]-3.11618, 1.00076, -0.995702, 0.092612, 0.0841353[br]|m| > 1.0[br]-3.11618, 1.00125, -0.995447, 0.0953126, 0.0812953[br]|m| > 1.0[br]-3.11618, 1.00232, -0.994867, 0.101193, 0.0751049[br]|m| > 1.0[br]-3.11618, 1.00604, -0.992571, 0.121667, 0.0534858[br]|m| > 1.0[br]-3.11618, 1.01557, -0.984666, 0.174451, -0.00273723[br]|m| > 1.0[br]-3.11618, 1.03059, -0.966077, 0.258253, -0.0934336[br]|m| > 1.0[br]-3.11618, 1.06239, -0.901067, 0.433681, -0.289151[br]|m| > 1.0[br]-2.78966, 1, -0.992478, 0.122424, 0.12242[br]|m| > 1.0[br]-2.78966, 1, -0.992477, 0.122428, 0.122416[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1[]
[h4 Error Output For jacobi_sn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Modulus near 1]
[#errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]
|m| > 1.0[br]-4.0246, 1, -0.999361, 0.0357365, 0.0357231[br]|m| > 1.0[br]-4.0246, 1, -0.999361, 0.0357497, 0.0357097[br]|m| > 1.0[br]-4.0246, 1, -0.99936, 0.0357762, 0.0356829[br]|m| > 1.0[br]-4.0246, 1, -0.999359, 0.0357895, 0.0356695[br]|m| > 1.0[br]-4.0246, 1.00001, -0.999354, 0.0359354, 0.0355222[br]|m| > 1.0[br]-4.0246, 1.00003, -0.999347, 0.0361343, 0.0353212[br]|m| > 1.0[br]-4.0246, 1.00004, -0.999343, 0.036247, 0.0352073[br]|m| > 1.0[br]-4.0246, 1.0001, -0.999311, 0.0371157, 0.0343296[br]|m| > 1.0[br]-4.0246, 1.00016, -0.99928, 0.0379513, 0.0334851[br]|m| > 1.0[br]-4.0246, 1.00027, -0.999221, 0.0394571, 0.0319634[br]|m| > 1.0[br]-4.0246, 1.00076, -0.99893, 0.0462407, 0.0251046[br]|m| > 1.0[br]-4.0246, 1.00125, -0.998589, 0.0531109, 0.0181532[br]|m| > 1.0[br]-4.0246, 1.00232, -0.99768, 0.0680761, 0.0029944[br]|m| > 1.0[br]-4.0246, 1.00604, -0.992752, 0.120179, -0.049966[br]|m| > 1.0[br]-4.0246, 1.01557, -0.967356, 0.25342, -0.186698[br]|m| > 1.0[br]-4.0246, 1.03059, -0.890373, 0.455232, -0.397492[br]|m| > 1.0[br]-4.0246, 1.06239, -0.607191, 0.794556, -0.76412[br]|m| > 1.0[br]-3.73013, 1, -0.998849, 0.0479567, 0.0479467[br]|m| > 1.0[br]-3.73013, 1, -0.998849, 0.0479665, 0.0479367[br]|m| > 1.0[br]-3.73013, 1, -0.998848, 0.0479862, 0.0479167[br]|m| > 1.0[br]-3.73013, 1, -0.998848, 0.047996, 0.0479067[br]|m| > 1.0[br]-3.73013, 1.00001, -0.998842, 0.0481042, 0.0477966[br]|m| > 1.0[br]-3.73013, 1.00003, -0.998835, 0.0482517, 0.0476465[br]|m| > 1.0[br]-3.73013, 1.00004, -0.998831, 0.0483354, 0.0475615[br]|m| > 1.0[br]-3.73013, 1.0001, -0.9988, 0.0489797, 0.0469059[br]|m| > 1.0[br]-3.73013, 1.00016, -0.998769, 0.0495995, 0.0462752[br]|m| > 1.0[br]-3.73013, 1.00027, -0.998713, 0.0507164, 0.0451386[br]|m| > 1.0[br]-3.73013, 1.00076, -0.998445, 0.0557477, 0.0400164[br]|m| > 1.0[br]-3.73013, 1.00125, -0.998147, 0.0608429, 0.0348257[br]|m| > 1.0[br]-3.73013, 1.00232, -0.997409, 0.0719406, 0.0235071[br]|m| > 1.0[br]-3.73013, 1.00604, -0.993866, 0.110593, -0.016048[br]|m| > 1.0[br]-3.73013, 1.01557, -0.977708, 0.209971, -0.118704[br]|m| > 1.0[br]-3.73013, 1.03059, -0.931162, 0.364606, -0.281224[br]|m| > 1.0[br]-3.73013, 1.06239, -0.753495, 0.657453, -0.599326[br]|m| > 1.0[br]-3.64523, 1, -0.998637, 0.0521997, 0.0521906[br]|m| > 1.0[br]-3.64523, 1, -0.998636, 0.0522087, 0.0521814[br]|m| > 1.0[br]-3.64523, 1, -0.998635, 0.0522268, 0.052163[br]|m| > 1.0[br]-3.64523, 1, -0.998635, 0.0522358, 0.0521538[br]|m| > 1.0[br]-3.64523, 1.00001, -0.99863, 0.052335, 0.0520526[br]|m| > 1.0[br]-3.64523, 1.00003, -0.998622, 0.0524703, 0.0519145[br]|m| > 1.0[br]-3.64523, 1.00004, -0.998618, 0.052547, 0.0518363[br]|m| > 1.0[br]-3.64523, 1.0001, -0.998587, 0.0531379, 0.0512335[br]|m| > 1.0[br]-3.64523, 1.00016, -0.998557, 0.0537063, 0.0506536[br]|m| > 1.0[br]-3.64523, 1.00027, -0.998501, 0.0547305, 0.0496084[br]|m| > 1.0[br]-3.64523, 1.00076, -0.998238, 0.0593443, 0.0448986[br]|m| > 1.0[br]-3.64523, 1.00125, -0.997949, 0.0640165, 0.0401258[br]|m| > 1.0[br]-3.64523, 1.00232, -0.997244, 0.0741927, 0.0297191[br]|m| > 1.0[br]-3.64523, 1.00604, -0.993972, 0.109636, -0.00664888[br]|m| > 1.0[br]-3.64523, 1.01557, -0.979623, 0.200844, -0.101111[br]|m| > 1.0[br]-3.64523, 1.03059, -0.939163, 0.343472, -0.251382[br]|m| > 1.0[br]-3.64523, 1.06239, -0.784719, 0.619852, -0.552253[br]|m| > 1.0[br]-3.11618, 1, -0.996078, 0.0884811, 0.0884757[br]|m| > 1.0[br]-3.11618, 1, -0.996077, 0.0884863, 0.0884702[br]|m| > 1.0[br]-3.11618, 1, -0.996076, 0.0884967, 0.0884593[br]|m| > 1.0[br]-3.11618, 1, -0.996076, 0.0885019, 0.0884538[br]|m| > 1.0[br]-3.11618, 1.00001, -0.996071, 0.0885593, 0.0883936[br]|m| > 1.0[br]-3.11618, 1.00003, -0.996064, 0.0886376, 0.0883114[br]|m| > 1.0[br]-3.11618, 1.00004, -0.99606, 0.0886819, 0.0882648[br]|m| > 1.0[br]-3.11618, 1.0001, -0.99603, 0.0890236, 0.0879059[br]|m| > 1.0[br]-3.11618, 1.00016, -0.996, 0.0893523, 0.0875607[br]|m| > 1.0[br]-3.11618, 1.00027, -0.995947, 0.0899445, 0.0869386[br]|m| > 1.0[br]-3.11618, 1.00076, -0.995702, 0.092612, 0.0841353[br]|m| > 1.0[br]-3.11618, 1.00125, -0.995447, 0.0953126, 0.0812953[br]|m| > 1.0[br]-3.11618, 1.00232, -0.994867, 0.101193, 0.0751049[br]|m| > 1.0[br]-3.11618, 1.00604, -0.992571, 0.121667, 0.0534858[br]|m| > 1.0[br]-3.11618, 1.01557, -0.984666, 0.174451, -0.00273723[br]|m| > 1.0[br]-3.11618, 1.03059, -0.966077, 0.258253, -0.0934336[br]|m| > 1.0[br]-3.11618, 1.06239, -0.901067, 0.433681, -0.289151[br]|m| > 1.0[br]-2.78966, 1, -0.992478, 0.122424, 0.12242[br]|m| > 1.0[br]-2.78966, 1, -0.992477, 0.122428, 0.122416[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values[]
[h4 Error Output For jacobi_dn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Random Small Values]
[#errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]
|m| > 1.0[br]1.65048e-12, 1.65574, 1.65048e-12, 1, 1[br]|m| > 1.0[br]2.06542e-12, 1.65574, 2.06542e-12, 1, 1[br]|m| > 1.0[br]6.93323e-12, 1.65574, 6.93323e-12, 1, 1[br]|m| > 1.0[br]1.33514e-11, 1.65574, 1.33514e-11, 1, 1[br]|m| > 1.0[br]1.63998e-11, 1.65574, 1.63998e-11, 1, 1[br]|m| > 1.0[br]5.73016e-11, 1.65574, 5.73016e-11, 1, 1[br]|m| > 1.0[br]1.11373e-10, 1.65574, 1.11373e-10, 1, 1[br]|m| > 1.0[br]1.42147e-10, 1.65574, 1.42147e-10, 1, 1[br]|m| > 1.0[br]3.80063e-10, 1.65574, 3.80063e-10, 1, 1[br]|m| > 1.0[br]6.09163e-10, 1.65574, 6.09163e-10, 1, 1[br]|m| > 1.0[br]1.02216e-09, 1.65574, 1.02216e-09, 1, 1[br]|m| > 1.0[br]2.88192e-09, 1.65574, 2.88192e-09, 1, 1[br]|m| > 1.0[br]4.76278e-09, 1.65574, 4.76278e-09, 1, 1[br]|m| > 1.0[br]8.85413e-09, 1.65574, 8.85413e-09, 1, 1[br]|m| > 1.0[br]2.30503e-08, 1.65574, 2.30503e-08, 1, 1[br]|m| > 1.0[br]5.93925e-08, 1.65574, 5.93925e-08, 1, 1[br]|m| > 1.0[br]1.16676e-07, 1.65574, 1.16676e-07, 1, 1[br]|m| > 1.0[br]2.37997e-07, 1.65574, 2.37997e-07, 1, 1[br]|m| > 1.0[br]4.68466e-07, 1.65574, 4.68466e-07, 1, 1[br]|m| > 1.0[br]9.3827e-07, 1.65574, 9.3827e-07, 1, 1[br]|m| > 1.0[br]1.10399e-06, 1.65574, 1.10399e-06, 1, 1[br]|m| > 1.0[br]3.29178e-06, 1.65574, 3.29178e-06, 1, 1[br]|m| > 1.0[br]7.51721e-06, 1.65574, 7.51721e-06, 1, 1[br]|m| > 1.0[br]1.51147e-05, 1.65574, 1.51147e-05, 1, 1[br]|m| > 1.0[br]2.9864e-05, 1.65574, 2.9864e-05, 1, 1[br]|m| > 1.0[br]3.38703e-05, 1.65574, 3.38703e-05, 1, 1[br]|m| > 1.0[br]9.06601e-05, 1.65574, 9.06601e-05, 1, 1[br]|m| > 1.0[br]0.000219495, 1.65574, 0.000219495, 1, 1[br]|m| > 1.0[br]0.000439522, 1.65574, 0.000439521, 1, 1[br]|m| > 1.0[br]0.000633315, 1.65574, 0.000633315, 1, 0.999999[br]|m| > 1.0[br]0.00111512, 1.65574, 0.00111512, 0.999999, 0.999998[br]|m| > 1.0[br]0.00196247, 1.65574, 0.00196246, 0.999998, 0.999995[br]|m| > 1.0[br]0.00555375, 1.65574, 0.00555365, 0.999985, 0.999958[br]|m| > 1.0[br]0.00869113, 1.65574, 0.00869072, 0.999962, 0.999896[br]|m| > 1.0[br]0.0299334, 1.65574, 0.0299166, 0.999552, 0.998772[br]|m| > 1.0[br]0.0512426, 1.65574, 0.0511588, 0.998691, 0.996406[br]|m| > 1.0[br]0.112013, 1.65574, 0.111143, 0.993804, 0.982922[br]|m| > 1.0[br]0.234804, 1.65574, 0.227, 0.973895, 0.926679[br]|m| > 1.0[br]0.489873, 1.65574, 0.425971, 0.904737, 0.708912[br]|m| > 1.0[br]0.751831, 1.65574, 0.553446, 0.832885, 0.400346[br]|m| > 1.0[br]1.65574, 1.65574, 0.408154, 0.912913, -0.737088[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values[]
[h4 Error Output For jacobi_cn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Random Small Values]
[#errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]
|m| > 1.0[br]1.65048e-12, 1.65574, 1.65048e-12, 1, 1[br]|m| > 1.0[br]2.06542e-12, 1.65574, 2.06542e-12, 1, 1[br]|m| > 1.0[br]6.93323e-12, 1.65574, 6.93323e-12, 1, 1[br]|m| > 1.0[br]1.33514e-11, 1.65574, 1.33514e-11, 1, 1[br]|m| > 1.0[br]1.63998e-11, 1.65574, 1.63998e-11, 1, 1[br]|m| > 1.0[br]5.73016e-11, 1.65574, 5.73016e-11, 1, 1[br]|m| > 1.0[br]1.11373e-10, 1.65574, 1.11373e-10, 1, 1[br]|m| > 1.0[br]1.42147e-10, 1.65574, 1.42147e-10, 1, 1[br]|m| > 1.0[br]3.80063e-10, 1.65574, 3.80063e-10, 1, 1[br]|m| > 1.0[br]6.09163e-10, 1.65574, 6.09163e-10, 1, 1[br]|m| > 1.0[br]1.02216e-09, 1.65574, 1.02216e-09, 1, 1[br]|m| > 1.0[br]2.88192e-09, 1.65574, 2.88192e-09, 1, 1[br]|m| > 1.0[br]4.76278e-09, 1.65574, 4.76278e-09, 1, 1[br]|m| > 1.0[br]8.85413e-09, 1.65574, 8.85413e-09, 1, 1[br]|m| > 1.0[br]2.30503e-08, 1.65574, 2.30503e-08, 1, 1[br]|m| > 1.0[br]5.93925e-08, 1.65574, 5.93925e-08, 1, 1[br]|m| > 1.0[br]1.16676e-07, 1.65574, 1.16676e-07, 1, 1[br]|m| > 1.0[br]2.37997e-07, 1.65574, 2.37997e-07, 1, 1[br]|m| > 1.0[br]4.68466e-07, 1.65574, 4.68466e-07, 1, 1[br]|m| > 1.0[br]9.3827e-07, 1.65574, 9.3827e-07, 1, 1[br]|m| > 1.0[br]1.10399e-06, 1.65574, 1.10399e-06, 1, 1[br]|m| > 1.0[br]3.29178e-06, 1.65574, 3.29178e-06, 1, 1[br]|m| > 1.0[br]7.51721e-06, 1.65574, 7.51721e-06, 1, 1[br]|m| > 1.0[br]1.51147e-05, 1.65574, 1.51147e-05, 1, 1[br]|m| > 1.0[br]2.9864e-05, 1.65574, 2.9864e-05, 1, 1[br]|m| > 1.0[br]3.38703e-05, 1.65574, 3.38703e-05, 1, 1[br]|m| > 1.0[br]9.06601e-05, 1.65574, 9.06601e-05, 1, 1[br]|m| > 1.0[br]0.000219495, 1.65574, 0.000219495, 1, 1[br]|m| > 1.0[br]0.000439522, 1.65574, 0.000439521, 1, 1[br]|m| > 1.0[br]0.000633315, 1.65574, 0.000633315, 1, 0.999999[br]|m| > 1.0[br]0.00111512, 1.65574, 0.00111512, 0.999999, 0.999998[br]|m| > 1.0[br]0.00196247, 1.65574, 0.00196246, 0.999998, 0.999995[br]|m| > 1.0[br]0.00555375, 1.65574, 0.00555365, 0.999985, 0.999958[br]|m| > 1.0[br]0.00869113, 1.65574, 0.00869072, 0.999962, 0.999896[br]|m| > 1.0[br]0.0299334, 1.65574, 0.0299166, 0.999552, 0.998772[br]|m| > 1.0[br]0.0512426, 1.65574, 0.0511588, 0.998691, 0.996406[br]|m| > 1.0[br]0.112013, 1.65574, 0.111143, 0.993804, 0.982922[br]|m| > 1.0[br]0.234804, 1.65574, 0.227, 0.973895, 0.926679[br]|m| > 1.0[br]0.489873, 1.65574, 0.425971, 0.904737, 0.708912[br]|m| > 1.0[br]0.751831, 1.65574, 0.553446, 0.832885, 0.400346[br]|m| > 1.0[br]1.65574, 1.65574, 0.408154, 0.912913, -0.737088[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values[]
[h4 Error Output For jacobi_sn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Random Small Values]
[#errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]
|m| > 1.0[br]1.65048e-12, 1.65574, 1.65048e-12, 1, 1[br]|m| > 1.0[br]2.06542e-12, 1.65574, 2.06542e-12, 1, 1[br]|m| > 1.0[br]6.93323e-12, 1.65574, 6.93323e-12, 1, 1[br]|m| > 1.0[br]1.33514e-11, 1.65574, 1.33514e-11, 1, 1[br]|m| > 1.0[br]1.63998e-11, 1.65574, 1.63998e-11, 1, 1[br]|m| > 1.0[br]5.73016e-11, 1.65574, 5.73016e-11, 1, 1[br]|m| > 1.0[br]1.11373e-10, 1.65574, 1.11373e-10, 1, 1[br]|m| > 1.0[br]1.42147e-10, 1.65574, 1.42147e-10, 1, 1[br]|m| > 1.0[br]3.80063e-10, 1.65574, 3.80063e-10, 1, 1[br]|m| > 1.0[br]6.09163e-10, 1.65574, 6.09163e-10, 1, 1[br]|m| > 1.0[br]1.02216e-09, 1.65574, 1.02216e-09, 1, 1[br]|m| > 1.0[br]2.88192e-09, 1.65574, 2.88192e-09, 1, 1[br]|m| > 1.0[br]4.76278e-09, 1.65574, 4.76278e-09, 1, 1[br]|m| > 1.0[br]8.85413e-09, 1.65574, 8.85413e-09, 1, 1[br]|m| > 1.0[br]2.30503e-08, 1.65574, 2.30503e-08, 1, 1[br]|m| > 1.0[br]5.93925e-08, 1.65574, 5.93925e-08, 1, 1[br]|m| > 1.0[br]1.16676e-07, 1.65574, 1.16676e-07, 1, 1[br]|m| > 1.0[br]2.37997e-07, 1.65574, 2.37997e-07, 1, 1[br]|m| > 1.0[br]4.68466e-07, 1.65574, 4.68466e-07, 1, 1[br]|m| > 1.0[br]9.3827e-07, 1.65574, 9.3827e-07, 1, 1[br]|m| > 1.0[br]1.10399e-06, 1.65574, 1.10399e-06, 1, 1[br]|m| > 1.0[br]3.29178e-06, 1.65574, 3.29178e-06, 1, 1[br]|m| > 1.0[br]7.51721e-06, 1.65574, 7.51721e-06, 1, 1[br]|m| > 1.0[br]1.51147e-05, 1.65574, 1.51147e-05, 1, 1[br]|m| > 1.0[br]2.9864e-05, 1.65574, 2.9864e-05, 1, 1[br]|m| > 1.0[br]3.38703e-05, 1.65574, 3.38703e-05, 1, 1[br]|m| > 1.0[br]9.06601e-05, 1.65574, 9.06601e-05, 1, 1[br]|m| > 1.0[br]0.000219495, 1.65574, 0.000219495, 1, 1[br]|m| > 1.0[br]0.000439522, 1.65574, 0.000439521, 1, 1[br]|m| > 1.0[br]0.000633315, 1.65574, 0.000633315, 1, 0.999999[br]|m| > 1.0[br]0.00111512, 1.65574, 0.00111512, 0.999999, 0.999998[br]|m| > 1.0[br]0.00196247, 1.65574, 0.00196246, 0.999998, 0.999995[br]|m| > 1.0[br]0.00555375, 1.65574, 0.00555365, 0.999985, 0.999958[br]|m| > 1.0[br]0.00869113, 1.65574, 0.00869072, 0.999962, 0.999896[br]|m| > 1.0[br]0.0299334, 1.65574, 0.0299166, 0.999552, 0.998772[br]|m| > 1.0[br]0.0512426, 1.65574, 0.0511588, 0.998691, 0.996406[br]|m| > 1.0[br]0.112013, 1.65574, 0.111143, 0.993804, 0.982922[br]|m| > 1.0[br]0.234804, 1.65574, 0.227, 0.973895, 0.926679[br]|m| > 1.0[br]0.489873, 1.65574, 0.425971, 0.904737, 0.708912[br]|m| > 1.0[br]0.751831, 1.65574, 0.553446, 0.832885, 0.400346[br]|m| > 1.0[br]1.65574, 1.65574, 0.408154, 0.912913, -0.737088[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data[]
[h4 Error Output For jacobi_dn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]
|m| > 1.0[br]2.98023e-08, 1.5, 2.98023e-08, 1, 1[br]|m| > 1.0[br]-2.98023e-08, 1.5, -2.98023e-08, 1, 1[br]|m| > 1.0[br]0.25, 1.5, 0.24183, 0.970319, 0.931888[br]|m| > 1.0[br]-0.25, 1.5, -0.24183, 0.970319, 0.931888[br]|m| > 1.0[br]1.25, 1.5, 0.665876, 0.746063, -0.0486921[br]|m| > 1.0[br]-1.25, 1.5, -0.665876, 0.746063, -0.0486921[br]|m| > 1.0[br]25, 1.5, 0.618665, 0.785655, 0.372585[br]|m| > 1.0[br]-25, 1.5, -0.618665, 0.785655, 0.372585[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data[]
[h4 Error Output For jacobi_cn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]
|m| > 1.0[br]2.98023e-08, 1.5, 2.98023e-08, 1, 1[br]|m| > 1.0[br]-2.98023e-08, 1.5, -2.98023e-08, 1, 1[br]|m| > 1.0[br]0.25, 1.5, 0.24183, 0.970319, 0.931888[br]|m| > 1.0[br]-0.25, 1.5, -0.24183, 0.970319, 0.931888[br]|m| > 1.0[br]1.25, 1.5, 0.665876, 0.746063, -0.0486921[br]|m| > 1.0[br]-1.25, 1.5, -0.665876, 0.746063, -0.0486921[br]|m| > 1.0[br]25, 1.5, 0.618665, 0.785655, 0.372585[br]|m| > 1.0[br]-25, 1.5, -0.618665, 0.785655, 0.372585[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data[]
[h4 Error Output For jacobi_sn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Mathworld Data]
[#errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]
|m| > 1.0[br]2.98023e-08, 1.5, 2.98023e-08, 1, 1[br]|m| > 1.0[br]-2.98023e-08, 1.5, -2.98023e-08, 1, 1[br]|m| > 1.0[br]0.25, 1.5, 0.24183, 0.970319, 0.931888[br]|m| > 1.0[br]-0.25, 1.5, -0.24183, 0.970319, 0.931888[br]|m| > 1.0[br]1.25, 1.5, 0.665876, 0.746063, -0.0486921[br]|m| > 1.0[br]-1.25, 1.5, -0.665876, 0.746063, -0.0486921[br]|m| > 1.0[br]25, 1.5, 0.618665, 0.785655, 0.372585[br]|m| > 1.0[br]-25, 1.5, -0.618665, 0.785655, 0.372585[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_Large_orders_and_other_bug_cases[]
[h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Mathematica Data - Large orders and other bug cases]
[#errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_Large_orders_and_other_bug_cases]
underflow[br]168, 150, -6.52661e-66[br]underflow[br]169, 202, 9.2734e-88[br]domain error[br]20, -9.5, -0.00103076[br]domain error[br]21, -9.5, 4.28582e+26[br]domain error[br]22, -9.5, -0.00419144[br]domain error[br]23, -9.5, 8.6745e+29[br]domain error[br]24, -9.5, -0.0204825[br]domain error[br]25, -9.5, 2.08188e+33[br]domain error[br]26, -9.5, -0.118403[br]domain error[br]27, -9.5, 5.84592e+36[br]domain error[br]28, -9.5, -0.798969[br]domain error[br]29, -9.5, 1.89875e+40[br]domain error[br]30, -9.5, -6.22245[br]underflow[br]10, 1.32923e+36, -0[br]underflow[br]15, 1.32923e+36, 0[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_negative_arguments[]
[h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Mathematica Data - large negative arguments]
[#errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_negative_arguments]
domain error[br]124, -1.5, 7.63705e+240[br]domain error[br]124, -2.5, 7.63705e+240[br]domain error[br]124, -3.5, 7.63705e+240[br]domain error[br]124, -4.5, 7.63705e+240[br]domain error[br]124, -5.5, 7.63705e+240[br]domain error[br]124, -6.5, 7.63705e+240[br]domain error[br]124, -7.5, 7.63705e+240[br]domain error[br]124, -8.5, 7.63705e+240[br]domain error[br]124, -9.5, 7.63705e+240[br]domain error[br]124, -10.5, 7.63705e+240[br]domain error[br]124, -11.5, 7.63705e+240[br]domain error[br]124, -12.5, 7.63705e+240[br]domain error[br]124, -13.5, 7.63705e+240[br]domain error[br]124, -14.5, 7.63705e+240[br]domain error[br]124, -15.5, 7.63705e+240[br]domain error[br]124, -16.5, 7.63705e+240[br]domain error[br]124, -17.5, 7.63705e+240[br]domain error[br]124, -18.5, 7.63705e+240[br]domain error[br]124, -19.5, 7.63705e+240[br]domain error[br]124, -20.5, 7.63705e+240[br]domain error[br]124, -1.5, -7.63705e+240[br]domain error[br]124, -2.5, -7.63705e+240[br]domain error[br]124, -3.5, -7.63705e+240[br]domain error[br]124, -4.5, -7.63705e+240[br]domain error[br]124, -5.5, -7.63705e+240[br]domain error[br]124, -6.5, -7.63705e+240[br]domain error[br]124, -7.5, -7.63705e+240[br]domain error[br]124, -8.5, -7.63705e+240[br]domain error[br]124, -9.5, -7.63705e+240[br]domain error[br]124, -10.5, -7.63705e+240[br]domain error[br]124, -11.5, -7.63705e+240[br]domain error[br]124, -12.5, -7.63705e+240[br]domain error[br]124, -13.5, -7.63705e+240[br]domain error[br]124, -14.5, -7.63705e+240[br]domain error[br]124, -15.5, -7.63705e+240[br]domain error[br]124, -16.5, -7.63705e+240[br]domain error[br]124, -17.5, -7.63705e+240[br]domain error[br]124, -18.5, -7.63705e+240[br]domain error[br]124, -19.5, -7.63705e+240[br]domain error[br]124, -20.5, -7.63705e+240[br]domain error[br]2, -0.5, -0.828797[br]domain error[br]3, -0.5, 193.409[br]domain error[br]4, -0.5, -3.47425[br]domain error[br]5, -0.5, 15371.1[br]domain error[br]6, -0.5, -43.4579[br]domain error[br]7, -0.5, 2.58068e+06[br]domain error[br]8, -0.5, -1059.96[br]domain error[br]9, -0.5, 7.43185e+08[br]domain error[br]10, -0.5, -42108.9[br]domain error[br]11, -0.5, 3.26999e+11[br]domain error[br]12, -0.5, -2.46448e+06[br]domain error[br]13, -0.5, 2.04047e+14[br]domain error[br]14, -0.5, -1.9918e+08[br]domain error[br]15, -0.5, 1.71399e+17[br]domain error[br]16, -0.5, -2.12394e+10[br]domain error[br]17, -0.5, 1.86483e+20[br]domain error[br]18, -0.5, -2.88824e+12[br]domain error[br]19, -0.5, 2.55108e+23[br]domain error[br]20, -0.5, -4.87773e+14[br]domain error[br]21, -0.5, 4.28582e+26[br]domain error[br]2, -0.5, -0.828843[br]domain error[br]3, -0.5, 193.409[br]domain error[br]4, -0.5, -3.47791[br]domain error[br]5, -0.5, 15371.1[br]domain error[br]6, -0.5, -44.0732[br]domain error[br]7, -0.5, 2.58068e+06[br]domain error[br]8, -0.5, -1237.15[br]domain error[br]9, -0.5, 7.43185e+08[br]domain error[br]10, -0.5, -120071[br]domain error[br]11, -0.5, 3.26999e+11[br]domain error[br]12, -0.5, -5.11131e+07[br]domain error[br]13, -0.5, 2.04047e+14[br]domain error[br]14, -0.5, -4.1064e+10[br]domain error[br]15, -0.5, 1.71399e+17[br]domain error[br]16, -0.5, -4.44822e+13[br]domain error[br]17, -0.5, 1.86483e+20[br]domain error[br]18, -0.5, -6.08254e+16[br]domain error[br]19, -0.5, 2.55108e+23[br]domain error[br]20, -0.5, -1.02182e+20[br]domain error[br]21, -0.5, 4.28582e+26[br]domain error[br]2, -0.5, -0.828751[br]domain error[br]3, -0.5, 193.409[br]domain error[br]4, -0.5, -3.47059[br]domain error[br]5, -0.5, 15371.1[br]domain error[br]6, -0.5, -42.8426[br]domain error[br]7, -0.5, 2.58068e+06[br]domain error[br]8, -0.5, -882.773[br]domain error[br]9, -0.5, 7.43185e+08[br]domain error[br]10, -0.5, 35853.7[br]domain error[br]11, -0.5, 3.26999e+11[br]domain error[br]12, -0.5, 4.61841e+07[br]domain error[br]13, -0.5, 2.04047e+14[br]domain error[br]14, -0.5, 4.06656e+10[br]domain error[br]15, -0.5, 1.71399e+17[br]domain error[br]16, -0.5, 4.44397e+13[br]domain error[br]17, -0.5, 1.86483e+20[br]domain error[br]18, -0.5, 6.08197e+16[br]domain error[br]19, -0.5, 2.55108e+23[br]domain error[br]20, -0.5, 1.02181e+20[br]domain error[br]21, -0.5, 4.28582e+26[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_negative_arguments[]
[h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Mathematica Data - negative arguments]
[#errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_negative_arguments]
domain error[br]2, -12.75, -124.031[br]domain error[br]2, -12.25, 124.019[br]domain error[br]2, -11.75, -124.032[br]domain error[br]2, -11.25, 124.018[br]domain error[br]2, -10.75, -124.033[br]domain error[br]2, -10.25, 124.016[br]domain error[br]2, -9.75, -124.035[br]domain error[br]2, -9.25, 124.015[br]domain error[br]2, -8.75, -124.037[br]domain error[br]2, -8.25, 124.012[br]domain error[br]2, -7.75, -124.04[br]domain error[br]2, -7.25, 124.009[br]domain error[br]2, -6.75, -124.044[br]domain error[br]2, -6.25, 124.003[br]domain error[br]2, -5.75, -124.051[br]domain error[br]2, -5.25, 123.995[br]domain error[br]2, -4.75, -124.061[br]domain error[br]2, -4.25, 123.981[br]domain error[br]2, -3.75, -124.08[br]domain error[br]2, -3.25, 123.955[br]domain error[br]2, -2.75, -124.118[br]domain error[br]2, -2.25, 123.897[br]domain error[br]2, -1.75, -124.214[br]domain error[br]2, -1.25, 123.721[br]domain error[br]2, -0.75, -124.587[br]domain error[br]2, -0.25, 122.697[br]domain error[br]3, -12.75, 1558.54[br]domain error[br]3, -12.25, 1558.54[br]domain error[br]3, -11.75, 1558.54[br]domain error[br]3, -11.25, 1558.54[br]domain error[br]3, -10.75, 1558.54[br]domain error[br]3, -10.25, 1558.54[br]domain error[br]3, -9.75, 1558.54[br]domain error[br]3, -9.25, 1558.54[br]domain error[br]3, -8.75, 1558.54[br]domain error[br]3, -8.25, 1558.54[br]domain error[br]3, -7.75, 1558.54[br]domain error[br]3, -7.25, 1558.54[br]domain error[br]3, -6.75, 1558.54[br]domain error[br]3, -6.25, 1558.54[br]domain error[br]3, -5.75, 1558.54[br]domain error[br]3, -5.25, 1558.54[br]domain error[br]3, -4.75, 1558.53[br]domain error[br]3, -4.25, 1558.53[br]domain error[br]3, -3.75, 1558.52[br]domain error[br]3, -3.25, 1558.51[br]domain error[br]3, -2.75, 1558.49[br]domain error[br]3, -2.25, 1558.46[br]domain error[br]3, -1.75, 1558.38[br]domain error[br]3, -1.25, 1558.22[br]domain error[br]3, -0.75, 1557.75[br]domain error[br]3, -0.25, 1555.76[br]domain error[br]4, -12.75, -24481.6[br]domain error[br]4, -12.25, 24481.6[br]domain error[br]4, -11.75, -24481.6[br]domain error[br]4, -11.25, 24481.6[br]domain error[br]4, -10.75, -24481.6[br]domain error[br]4, -10.25, 24481.6[br]domain error[br]4, -9.75, -24481.6[br]domain error[br]4, -9.25, 24481.6[br]domain error[br]4, -8.75, -24481.6[br]domain error[br]4, -8.25, 24481.6[br]domain error[br]4, -7.75, -24481.6[br]domain error[br]4, -7.25, 24481.6[br]domain error[br]4, -6.75, -24481.6[br]domain error[br]4, -6.25, 24481.6[br]domain error[br]4, -5.75, -24481.6[br]domain error[br]4, -5.25, 24481.6[br]domain error[br]4, -4.75, -24481.6[br]domain error[br]4, -4.25, 24481.6[br]domain error[br]4, -3.75, -24481.6[br]domain error[br]4, -3.25, 24481.5[br]domain error[br]4, -2.75, -24481.6[br]domain error[br]4, -2.25, 24481.5[br]domain error[br]4, -1.75, -24481.8[br]domain error[br]4, -1.25, 24481.1[br]domain error[br]4, -0.75, -24483.2[br]domain error[br]4, -0.25, 24473.2[br]domain error[br]5, -12.75, 492231[br]domain error[br]5, -12.25, 492231[br]domain error[br]5, -11.75, 492231[br]domain error[br]5, -11.25, 492231[br]domain error[br]5, -10.75, 492231[br]domain error[br]5, -10.25, 492231[br]domain error[br]5, -9.75, 492231[br]domain error[br]5, -9.25, 492231[br]domain error[br]5, -8.75, 492231[br]domain error[br]5, -8.25, 492231[br]domain error[br]5, -7.75, 492231[br]domain error[br]5, -7.25, 492231[br]domain error[br]5, -6.75, 492231[br]domain error[br]5, -6.25, 492231[br]domain error[br]5, -5.75, 492231[br]domain error[br]5, -5.25, 492231[br]domain error[br]5, -4.75, 492231[br]domain error[br]5, -4.25, 492231[br]domain error[br]5, -3.75, 492231[br]domain error[br]5, -3.25, 492231[br]domain error[br]5, -2.75, 492231[br]domain error[br]5, -2.25, 492231[br]domain error[br]5, -1.75, 492231[br]domain error[br]5, -1.25, 492230[br]domain error[br]5, -0.75, 492227[br]domain error[br]5, -0.25, 492199[br]domain error[br]6, -12.75, -1.17912e+07[br]domain error[br]6, -12.25, 1.17912e+07[br]domain error[br]6, -11.75, -1.17912e+07[br]domain error[br]6, -11.25, 1.17912e+07[br]domain error[br]6, -10.75, -1.17912e+07[br]domain error[br]6, -10.25, 1.17912e+07[br]domain error[br]6, -9.75, -1.17912e+07[br]domain error[br]6, -9.25, 1.17912e+07[br]domain error[br]6, -8.75, -1.17912e+07[br]domain error[br]6, -8.25, 1.17912e+07[br]domain error[br]6, -7.75, -1.17912e+07[br]domain error[br]6, -7.25, 1.17912e+07[br]domain error[br]6, -6.75, -1.17912e+07[br]domain error[br]6, -6.25, 1.17912e+07[br]domain error[br]6, -5.75, -1.17912e+07[br]domain error[br]6, -5.25, 1.17912e+07[br]domain error[br]6, -4.75, -1.17912e+07[br]domain error[br]6, -4.25, 1.17912e+07[br]domain error[br]6, -3.75, -1.17912e+07[br]domain error[br]6, -3.25, 1.17912e+07[br]domain error[br]6, -2.75, -1.17912e+07[br]domain error[br]6, -2.25, 1.17912e+07[br]domain error[br]6, -1.75, -1.17912e+07[br]domain error[br]6, -1.25, 1.17912e+07[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
]
[template errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_arguments[]
[h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Mathematica Data - large arguments]
[#errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_arguments]
underflow[br]30, 8.58993e+09, -8.44974e-268[br]underflow[br]30, 1.71799e+10, -7.86943e-277[br]underflow[br]30, 3.43597e+10, -7.32898e-286[br]underflow[br]30, 6.87195e+10, -6.82564e-295[br]underflow[br]30, 1.37439e+11, -6.35687e-304[br]underflow[br]30, 2.74878e+11, -5.9203e-313[br]underflow[br]30, 5.49756e+11, -5.53354e-322[br]underflow[br]30, 1.09951e+12, -0[br]underflow[br]30, 2.19902e+12, -0[br]underflow[br]30, 4.39805e+12, -0[br]underflow[br]30, 8.79609e+12, -0[br]underflow[br]30, 1.75922e+13, -0[br]underflow[br]30, 3.51844e+13, -0[br]underflow[br]30, 7.03687e+13, -0[br]underflow[br]30, 1.40737e+14, -0[br]underflow[br]30, 2.81475e+14, -0[br]underflow[br]30, 5.6295e+14, -0[br]underflow[br]30, 1.1259e+15, -0[br]underflow[br]30, 2.2518e+15, -0[br]underflow[br]30, 4.5036e+15, -0[br]underflow[br]30, 9.0072e+15, -0[br]underflow[br]30, 1.80144e+16, -0[br]underflow[br]30, 3.60288e+16, -0[br]underflow[br]30, 7.20576e+16, -0[br]underflow[br]30, 1.44115e+17, -0[br]underflow[br]30, 2.8823e+17, -0[br]underflow[br]30, 5.76461e+17, -0[br]underflow[br]30, 1.15292e+18, -0[br]underflow[br]30, 2.30584e+18, -0[br]underflow[br]30, 4.61169e+18, -0[br]underflow[br]30, 9.22337e+18, -0[br]underflow[br]30, 1.84467e+19, -0[br]underflow[br]30, 3.68935e+19, -0[br]underflow[br]30, 7.3787e+19, -0[br]underflow[br]30, 1.47574e+20, -0[br]underflow[br]30, 2.95148e+20, -0[br]underflow[br]30, 5.90296e+20, -0[br]underflow[br]30, 1.18059e+21, -0[br]underflow[br]30, 2.36118e+21, -0[br]underflow[br]30, 4.72237e+21, -0[br]underflow[br]30, 9.44473e+21, -0[br]underflow[br]30, 1.88895e+22, -0[br]underflow[br]30, 3.77789e+22, -0[br]underflow[br]30, 7.55579e+22, -0[br]underflow[br]30, 1.51116e+23, -0[br]underflow[br]30, 3.02231e+23, -0[br]underflow[br]30, 6.04463e+23, -0[br]underflow[br]30, 1.20893e+24, -0[br]underflow[br]30, 2.41785e+24, -0[br]underflow[br]30, 4.8357e+24, -0[br]underflow[br]30, 9.67141e+24, -0[br]underflow[br]30, 1.93428e+25, -0[br]underflow[br]30, 3.86856e+25, -0[br]underflow[br]30, 7.73713e+25, -0[br]underflow[br]30, 1.54743e+26, -0[br]underflow[br]30, 3.09485e+26, -0[br]underflow[br]30, 6.1897e+26, -0[br]underflow[br]30, 1.23794e+27, -0[br]underflow[br]30, 2.47588e+27, -0[br]underflow[br]30, 4.95176e+27, -0[br]underflow[br]30, 9.90352e+27, -0[br]underflow[br]30, 1.9807e+28, -0[br]underflow[br]30, 3.96141e+28, -0[br]underflow[br]30, 7.92282e+28, -0[br]underflow[br]30, 1.58456e+29, -0[br]underflow[br]30, 3.16913e+29, -0[br]underflow[br]30, 6.33825e+29, -0[br]underflow[br]30, 1.26765e+30, -0[br]
]
[template all_errors[]
[errors_Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_JN_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_double_legendre_p_associated__GSL_2_1_Associated_Legendre_Polynomials_Small_Values]
[errors_GNU_C_version_7_1_0_linux_long_double_legendre_p_associated___cmath__Associated_Legendre_Polynomials_Small_Values]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data_large_values_]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_In_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I1_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I0_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I1_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I0_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_JN_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_ibetac_inv_Rmath_3_2_3_Inverse_incomplete_beta]
[errors_GNU_C_version_7_1_0_linux_double_ibeta_inv_Rmath_3_2_3_Inverse_incomplete_beta]
[errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_large_parameters]
[errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_large_parameters]
[errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_medium_parameters]
[errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_medium_parameters]
[errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters]
[errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters]
[errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T]
[errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T]
[errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_Large_orders_and_other_bug_cases]
[errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_negative_arguments]
[errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_negative_arguments]
[errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_arguments]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data_large_values_]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Random_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Random_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_In_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I1_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I0_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data_large_values_]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Random_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_In_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I1_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I0_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I1_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I0_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data_large_values_]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_JN_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data_large_values_]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_JN_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Random_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Random_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data_large_values_]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Random_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data_large_values_]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_Kn_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data_large_values_]
[errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Random_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data_large_values_]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Yn_Mathworld_Data_Integer_Version_]
[errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Small_Values]
[errors_GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Random_data]
[errors_GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Random_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Large_Random_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Random_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei]
[errors_GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Large_and_Diverse_Values]
[errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]
[errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]
[errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]
[errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]
[errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]
[errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]
[errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]
[errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_Large_orders_and_other_bug_cases]
[errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_negative_arguments]
[errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_negative_arguments]
[errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_arguments]
]
[/
Copyright 2015 John Maddock and Paul A. Bristow.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt).
]
|