1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106
|
2022-11-28 rpalsa
* configure.ac: Package version update to 7.2.3. Library version
updated.
* NEWS: Updated release notes for CPL 7.2.3
* README: Package version update to 7.2.3
* cplcore/cpl_init.c: cpl_init(): remove CFITSIO version check
altogether.
2022-11-25 rpalsa
* cplcore/cpl_init.c: cpl_init(): Fix CFITSIO version check, needs
to be robust against rounding errors.
2022-11-17 llundin
* cplcore/tests/cpl_vector-test.c:
cpl_vector_fit_gaussian_test_2(): Update unit test to reflect
that the test call to cpl_vector_fit_gaussian() is
ill-conditioned and may fail on some but not all platforms
(PIPE-10284)
2022-10-10 rpalsa
* cplcore/cpl_column.c, cplcore/cpl_property.c: Reformatted source
code.
* cplcore/cpl_table.c: cpl_table_set_column_format(): Fix typo in
doxygen documentation.
2022-10-06 llundin
* cplcore/cpl_property_dicb.c: cpl_property_set_sortkey_dicb():
Refactor size to not count the termination byte
* cplcore/cpl_fits_card.c: cpl_fits_get_value(): Fix comment typo.
cpl_fits_key_free_unique(), cpl_fits_key_reset_unique(): Fix
(internal) doxygen typo
2022-10-05 llundin
* cplcore/cpl_fits_card.c: cpl_fits_set_key(),
cpl_fits_key_is_comment(): Handle also non-standard keys (with
leading blanks)
2022-09-16 llundin
* NEWS: 7.2.3: Update for cpl_polynomial_fit() (PIPE-10289)
* cplcore/cpl_polynomial.c: cpl_polynomial_fit(): Avoid read-only
mindeg buffer overflow (PIPE-10289)
2022-09-14 llundin
* NEWS: 7.2.3: New section started
* cplcore/cpl_vector.c, cplcore/tests/cpl_vector-test.c:
cpl_vector_fit_gaussian(): Return CPL error code correctly on
failed covariance computation, add unit test (PIPE-10284)
* cplcore/cpl_imagelist_io.c: cpl_imagelist_load(): Document
explicitly also the supported CPL_TYPE_UNSPECIFIED
2022-09-12 llundin
* cplcore/cpl_imagelist_io.c: cpl_imagelist_empty(): Avoid read of
deallocated memory (PIPE-10272)
2022-07-18 llundin
* cplcore/cpl_mask.c: cpl_mask_duplicate(): Refactor to avoid long
line and maybe avoid leakNoVarFunctionCall from Cppcheck
2022-07-15 llundin
* cplcore/cpl_polynomial.c: cpl_polynomial_fit_1d(): Remove
commented out definition (from this commit r266016)
2022-07-14 llundin
* cpldrs/tests/cpl_fit-test.c:
cpl_fit_imagelist_polynomial_window_test(): Reinstate lower
tolerance on 32-bit machines
* configure.ac, cplcore/cpl_tools.h, cpldrs/tests/cpl_fit-test.c:
AC_TYPE_LONG_DOUBLE: rm as obsolete. AC_TYPE_LONG_DOUBLE_WIDER:
Add and use for proper tolerance choice in
cpl_fit_imagelist_polynomial_window_test()
2022-07-07 llundin
* cpldrs/tests/cpl_fit-test.c:
cpl_fit_imagelist_polynomial_window_test(): Raise floating-point
tolerances for clang-14 on Mac M1
2022-07-05 llundin
* cplcore/tests/cpl_polynomial-test.c: cpl_polynomial_test_7(),
cpl_polynomial_test_3(): Slightly raise floating-point tolerances
for clang-14 on Mac M1
2022-07-01 rpalsa
* acinclude.m4: CPL_ENABLE_THREADS: don't add -fopenmp to LDFLAGS
just add it to CFLAGS. Move update of CFLAGS before searching for
the omp libraries.
* m4/eso.m4: Updated to the latest version.
2022-06-24 rpalsa
* cplcore/cpl_propertylist.c, cplcore/tests/cpl_image_io-test.c,
cplcore/tests/cpl_imagelist_io-test.c,
cplcore/tests/cpl_propertylist-test.c: Reformatted using
clang-format
2022-06-23 llundin
* cplcore/cpl_fits_card.c: Improve line breaks introduced by
clang-format
2022-06-22 llundin
* cplcore/cpl_fits_card.c: cpl_fits_get_value(): Cast length to
avoid gcc-warning (PIPE-10126)
2022-06-21 llundin
* cplcore/cpl_image_basic.c: cpl_image_fft(): Added see
cpl_fft_image() to doxygen
2022-06-01 llundin
* cplcore/cpl_property_dicb.c: cpl_property_set_sortkey_dicb():
Ensure placement of RADESYS card in header as for RADECSYS
(PIPE-9613)
* cplcore/cpl_fits_card.c, cplcore/cpl_fits_card.h,
cplcore/cpl_propertylist.c: _cpl_propertylist_to_fitsfile(),
cpl_fits_key_reset_unique(): Limit uniqueness check to keys with
same DICB sortkey, refactor slightly for clarity (PIPE-8349)
2022-05-19 llundin
* cplcore/cpl_property.c: cpl_property_set_name_cx(),
cpl_property_set_comment_cx(), cpl_property_set_string_cx(),
cpl_property_set_sortkey(): Fix doxygen of various, internal void
functions
2022-05-17 llundin
* cplcore/cpl_fits_card.c, cplcore/tests/cpl_propertylist-test.c:
cpl_fits_get_number(): Review & refactor code similar to that
affected by (PIPE-10046), improve doxygen and add unit tests
2022-05-12 llundin
* cplcore/cpl_image_io.c, cplcore/cpl_imagelist_io.c,
cplcore/tests/cpl_image_io-test.c,
cplcore/tests/cpl_imagelist_io-test.c:
cpl_image/list_load/_window(): Fix inconsistent/incorrect
documentation of CPL error codes (and add some relevant unit
tests) (PIPE-10102)
* cpldrs/cpl_detector.c: cpl_flux_get_bias_window(): Fix doxygen
copy-paste error (PIPE-10088). static cpl_flux_get_window():
Improve doxygen, add missing internal
2022-04-29 rpalsa
* configure.ac: Package version updated to 7.2.2. Library version
updated and obsolete macros replaced.
* NEWS: Updated release notes for CPL 7.2.2
* README: Update package version, set to 7.2.2.
* cplcore/cpl_property.c: Run clang-format on source file.
2022-04-19 llundin
* cplcore/cpl_property.c: cpl_property_get/set_bool/int/etc():
Avoid cast of pointer type (by using union)
* cplcore/tests/cpl_polynomial-test.c:
cpl_polynomial_fit_test_3d(): Fix buffer-overflow found by
AddressSanitizer
* NEWS: 7.2.2: Started with (PIPE-10046) and (PIPE-10015)
* cplcore/cpl_fits_card.c: cpl_fits_set_value_(): Increase card
buffer size by 1 to ensure space for NULL-termination in case of
an (integer) conversion error (PIPE-10046)
* cpldrs/cpl_geom_img.c: cpl_geom_img_offset_combine(): Update
doxygen to reflect API-cleanup (PIPE-10015) (DFS08575)
2022-03-24 rpalsa
* configure.ac: Update package version to 7.2.2a.
* cplcore/cpl_init.c: cpl_init(): Fix version comparison to be
consistent with build time checks and the version encoding of
cfitsio itself.
* m4/cpl.m4: CPL_CHECK_CFITSIO(): Propagate also the cfitsio major
and minor version number to config.h. Needed for consistent
version checking when the library is initialized.
2022-02-28 rpalsa
* ChangeLog: ChangeLog updated for the CPL 7.2.1 release
2022-02-24 llundin
* cpldrs/cpl_geom_img.c: cpl_geom_img_offset_fine(): Add doxygen
regarding correl length (PIPE-9975)
* cpldrs/cpl_geom_img.c, cpldrs/tests/cpl_geom_img-test.c:
cpl_geom_img_offset_fine(): Add missing size check on correl
input w. unit tests (PIPE-9975)
2022-02-23 rpalsa
* configure.ac: Package version updated, set to 7.2.1. Library
version updated.
* README: Package version updated, set to 7.2.1
* NEWS: Added release notes for CPL 7.2.1
* cpldrs/cpl_fft.h, cpldrs/cpl_wlcalib.h,
cpldrs/cpl_wlcalib_impl.h: Add missing
CPL_BEGIN_DECLS/CPL_END_DECLS to use correct C linkage when used
with C++ compilers.
* cpldfs/cpl_dfs.c: Reformatted using clang-format
* cplui/cpl_frameset.c: cpl_frameset_insert(): Fix typo in doxygen
documentation.
2022-02-23 llundin
* cpldfs/cpl_dfs.c: cpl_dfs_setup_product_header(): Fix incorrect
string use for parameter value (PIPE-9953)
2022-02-14 rpalsa
* ChangeLog: ChangeLog updated for the CPL 7.2 release
* README.DEV: Add required extra LaTeX packages.
* configure.ac: Package version updated, set to 7.2
2022-01-24 rpalsa
* admin/doxygen.am: doxygen-am: add dependency on the generated
Doxyfile. install-doxygen-generic: in case doxygen generates
subdirectories, install them. uninstall-doxygen: in case
subdirectories are created during the installation remove them.
* Doxyfile.in: Require amsmath LaTeX package and MathJAX
extensions.
2021-12-19 rpalsa
* configure.ac: Package version set to 7.2b
* README: Package versions update, set to 7.2
* NEWS: Added initial release notes for CPL 7.2
2021-12-03 rpalsa
* ., cpldfs/cpl_dfs.c: Import changes from the trunk (revision
r268729)
* ., .clang-format, README.DEV, README.SVN, cplcore/cpl_array.c,
cplcore/cpl_array.h, cplcore/cpl_array_impl.h,
cplcore/cpl_bivector.c, cplcore/cpl_bivector.h,
cplcore/cpl_cfitsio.c, cplcore/cpl_cfitsio.h,
cplcore/cpl_column.c, cplcore/cpl_column.h,
cplcore/cpl_column_body.h, cplcore/cpl_error.c,
cplcore/cpl_error.h, cplcore/cpl_error_impl.h,
cplcore/cpl_errorstate.c, cplcore/cpl_errorstate.h,
cplcore/cpl_filter.h, cplcore/cpl_filter_median.c,
cplcore/cpl_fits.c, cplcore/cpl_fits.h, cplcore/cpl_fits_card.c,
cplcore/cpl_fits_card.h, cplcore/cpl_image.h,
cplcore/cpl_image_basic.c, cplcore/cpl_image_basic.h,
cplcore/cpl_image_basic_body.h, cplcore/cpl_image_basic_impl.h,
cplcore/cpl_image_bpm.c, cplcore/cpl_image_bpm.h,
cplcore/cpl_image_bpm_body.h, cplcore/cpl_image_bpm_impl.h,
cplcore/cpl_image_defs.h, cplcore/cpl_image_fft.c,
cplcore/cpl_image_fft_impl.h, cplcore/cpl_image_filter.c,
cplcore/cpl_image_filter.h, cplcore/cpl_image_filter_body.h,
cplcore/cpl_image_filter_impl.h, cplcore/cpl_image_gen.c,
cplcore/cpl_image_gen.h, cplcore/cpl_image_gen_body.h,
cplcore/cpl_image_io.c, cplcore/cpl_image_io.h,
cplcore/cpl_image_io_body.h, cplcore/cpl_image_io_impl.h,
cplcore/cpl_image_iqe.c, cplcore/cpl_image_iqe.h,
cplcore/cpl_image_resample.c, cplcore/cpl_image_resample.h,
cplcore/cpl_image_resample_body.h, cplcore/cpl_image_stats.c,
cplcore/cpl_image_stats.h, cplcore/cpl_image_stats_body.h,
cplcore/cpl_imagelist.h, cplcore/cpl_imagelist_basic.c,
cplcore/cpl_imagelist_basic.h,
cplcore/cpl_imagelist_basic_body.h, cplcore/cpl_imagelist_defs.h,
cplcore/cpl_imagelist_io.c, cplcore/cpl_imagelist_io.h,
cplcore/cpl_init.c, cplcore/cpl_init.h, cplcore/cpl_io.h,
cplcore/cpl_io_fits.c, cplcore/cpl_io_fits.h,
cplcore/cpl_macros.h, cplcore/cpl_mask.c, cplcore/cpl_mask.h,
cplcore/cpl_mask_binary.h, cplcore/cpl_mask_body.h,
cplcore/cpl_mask_defs.h, cplcore/cpl_mask_impl.h,
cplcore/cpl_math_const.h, cplcore/cpl_matrix.c,
cplcore/cpl_matrix.h, cplcore/cpl_matrix_impl.h,
cplcore/cpl_memory.c, cplcore/cpl_memory.h, cplcore/cpl_mpfit.c,
cplcore/cpl_mpfit.h, cplcore/cpl_msg.c, cplcore/cpl_msg.h,
cplcore/cpl_plot.c, cplcore/cpl_plot.h, cplcore/cpl_polynomial.c,
cplcore/cpl_polynomial.h, cplcore/cpl_polynomial_impl.h,
cplcore/cpl_property.c, cplcore/cpl_property.h,
cplcore/cpl_property_dicb.c, cplcore/cpl_property_dicb.h,
cplcore/cpl_property_impl.h, cplcore/cpl_propertylist.c,
cplcore/cpl_propertylist.h, cplcore/cpl_propertylist_impl.h,
cplcore/cpl_stats.c, cplcore/cpl_stats.h,
cplcore/cpl_stats_body.h, cplcore/cpl_stats_defs.h,
cplcore/cpl_stats_impl.h, cplcore/cpl_table.c,
cplcore/cpl_table.h, cplcore/cpl_test.c, cplcore/cpl_test.h,
cplcore/cpl_tools.c, cplcore/cpl_tools.h,
cplcore/cpl_tools_body.h, cplcore/cpl_type.c, cplcore/cpl_type.h,
cplcore/cpl_vector.c, cplcore/cpl_vector.h,
cplcore/cpl_vector_fit_impl.h, cplcore/cpl_vector_impl.h,
cplcore/cpl_version.c, cplcore/cpl_xmemory.c,
cplcore/cpl_xmemory.h, cplcore/tests/cpl_array-test.c,
cplcore/tests/cpl_bivector-test.c,
cplcore/tests/cpl_error-test.c,
cplcore/tests/cpl_errorstate-test.c,
cplcore/tests/cpl_filter-test.c, cplcore/tests/cpl_filter_body.h,
cplcore/tests/cpl_fits-test.c,
cplcore/tests/cpl_image_basic-test.c,
cplcore/tests/cpl_image_bpm-test.c,
cplcore/tests/cpl_image_filter-test.c,
cplcore/tests/cpl_image_gen-test.c,
cplcore/tests/cpl_image_io-test.c,
cplcore/tests/cpl_image_iqe-test.c,
cplcore/tests/cpl_image_resample-test.c,
cplcore/tests/cpl_imagelist_basic-test.c,
cplcore/tests/cpl_imagelist_io-test.c,
cplcore/tests/cpl_io_fits-test.c, cplcore/tests/cpl_mask-test.c,
cplcore/tests/cpl_math-test.c, cplcore/tests/cpl_matrix-test.c,
cplcore/tests/cpl_median-test.c, cplcore/tests/cpl_memory-test.c,
cplcore/tests/cpl_msg-test.c, cplcore/tests/cpl_plot-test.c,
cplcore/tests/cpl_polynomial-test.c,
cplcore/tests/cpl_property-test.c,
cplcore/tests/cpl_propertylist-test.c,
cplcore/tests/cpl_stats-test.c, cplcore/tests/cpl_table-test.c,
cplcore/tests/cpl_test-test.c,
cplcore/tests/cpl_test_init-test.c,
cplcore/tests/cpl_tools-test.c, cplcore/tests/cpl_type-test.c,
cplcore/tests/cpl_vector-test.c, cpldfs/cpl_dfs.c,
cpldfs/cpl_dfs.h, cpldfs/cpl_multiframe.c,
cpldfs/cpl_multiframe.h, cpldfs/md5.c, cpldfs/md5.h,
cpldfs/tests/cpl_dfs-test.c, cpldrs/cpl_apertures.c,
cpldrs/cpl_apertures.h, cpldrs/cpl_apertures_img.h,
cpldrs/cpl_detector.c, cpldrs/cpl_detector.h,
cpldrs/cpl_detector_body.h, cpldrs/cpl_fft.c, cpldrs/cpl_fft.h,
cpldrs/cpl_fft_body.h, cpldrs/cpl_fit.c, cpldrs/cpl_fit.h,
cpldrs/cpl_fit_body.h, cpldrs/cpl_geom_img.c,
cpldrs/cpl_geom_img.h, cpldrs/cpl_geom_img_body.h,
cpldrs/cpl_photom.c, cpldrs/cpl_photom.h,
cpldrs/cpl_phys_const.h, cpldrs/cpl_ppm.c, cpldrs/cpl_ppm.h,
cpldrs/cpl_wcs.c, cpldrs/cpl_wcs.h, cpldrs/cpl_wlcalib.c,
cpldrs/cpl_wlcalib.h, cpldrs/cpl_wlcalib_impl.h,
cpldrs/tests/cpl_apertures-test.c,
cpldrs/tests/cpl_detector-test.c, cpldrs/tests/cpl_fft-test.c,
cpldrs/tests/cpl_fit-test.c, cpldrs/tests/cpl_geom_img-test.c,
cpldrs/tests/cpl_photom-test.c, cpldrs/tests/cpl_ppm-test.c,
cpldrs/tests/cpl_wcs-test.c, cpldrs/tests/cpl_wlcalib-test.c,
cpljava/cpl_gasgano.c, cpljava/org_eso_cpl_jni_CPLControl.h,
cpljava/org_eso_cpl_jni_JNIParameterImp.h,
cpljava/org_eso_cpl_jni_JNIRecipe.h,
cpljava/org_eso_cpl_jni_LibraryLoader.h,
cpljava/org_eso_cpl_jni_PluginLibrary.h,
cpljava/tests/cpl_gasgano-test.c, cplui/cpl_frame.c,
cplui/cpl_frame.h, cplui/cpl_framedata.c, cplui/cpl_framedata.h,
cplui/cpl_frameset.c, cplui/cpl_frameset.h,
cplui/cpl_frameset_io.c, cplui/cpl_frameset_io.h,
cplui/cpl_parameter.c, cplui/cpl_parameter.h,
cplui/cpl_parameterlist.c, cplui/cpl_parameterlist.h,
cplui/cpl_plugin.c, cplui/cpl_plugin.h, cplui/cpl_pluginlist.c,
cplui/cpl_pluginlist.h, cplui/cpl_recipe.h,
cplui/cpl_recipeconfig.c, cplui/cpl_recipeconfig.h,
cplui/cpl_recipedefine.c, cplui/cpl_recipedefine.h,
cplui/tests/cpl_frame-test.c, cplui/tests/cpl_framedata-test.c,
cplui/tests/cpl_frameset-test.c,
cplui/tests/cpl_frameset_io-test.c,
cplui/tests/cpl_parameter-test.c,
cplui/tests/cpl_parameterlist-test.c,
cplui/tests/cpl_plugin-test.c, cplui/tests/cpl_pluginlist-test.c,
cplui/tests/cpl_recipeconfig-test.c,
cplui/tests/cpl_recipedefine-test.c: Import changes from the
trunk (revisions r268705,r268706,r268708,r268709): introduce
clang-format as standard formatting tool.
2021-11-29 rpalsa
* ., Makefile.am, cpl.h, cplcore/Makefile.am, cplcore/cpl_array.c,
cplcore/cpl_array.h, cplcore/cpl_array_impl.h,
cplcore/cpl_bivector.c, cplcore/cpl_bivector.h,
cplcore/cpl_cfitsio.c, cplcore/cpl_cfitsio.h,
cplcore/cpl_column.c, cplcore/cpl_column.h,
cplcore/cpl_column_body.h, cplcore/cpl_error.c,
cplcore/cpl_error.h, cplcore/cpl_error_impl.h,
cplcore/cpl_errorstate.c, cplcore/cpl_errorstate.h,
cplcore/cpl_filter.h, cplcore/cpl_filter_median.c,
cplcore/cpl_fits.c, cplcore/cpl_fits.h, cplcore/cpl_fits_card.c,
cplcore/cpl_fits_card.h, cplcore/cpl_func.h.top,
cplcore/cpl_image.h, cplcore/cpl_image_basic.c,
cplcore/cpl_image_basic.h, cplcore/cpl_image_basic_body.h,
cplcore/cpl_image_basic_impl.h, cplcore/cpl_image_bpm.c,
cplcore/cpl_image_bpm.h, cplcore/cpl_image_bpm_body.h,
cplcore/cpl_image_bpm_impl.h, cplcore/cpl_image_defs.h,
cplcore/cpl_image_fft.c, cplcore/cpl_image_fft_impl.h,
cplcore/cpl_image_filter.c, cplcore/cpl_image_filter.h,
cplcore/cpl_image_filter_body.h, cplcore/cpl_image_filter_impl.h,
cplcore/cpl_image_gen.c, cplcore/cpl_image_gen.h,
cplcore/cpl_image_gen_body.h, cplcore/cpl_image_io.c,
cplcore/cpl_image_io.h, cplcore/cpl_image_io_body.h,
cplcore/cpl_image_io_impl.h, cplcore/cpl_image_iqe.c,
cplcore/cpl_image_iqe.h, cplcore/cpl_image_resample.c,
cplcore/cpl_image_resample.h, cplcore/cpl_image_resample_body.h,
cplcore/cpl_image_stats.c, cplcore/cpl_image_stats.h,
cplcore/cpl_image_stats_body.h, cplcore/cpl_imagelist.h,
cplcore/cpl_imagelist_basic.c, cplcore/cpl_imagelist_basic.h,
cplcore/cpl_imagelist_basic_body.h, cplcore/cpl_imagelist_defs.h,
cplcore/cpl_imagelist_io.c, cplcore/cpl_imagelist_io.h,
cplcore/cpl_init.c, cplcore/cpl_init.h, cplcore/cpl_io.h,
cplcore/cpl_io_fits.c, cplcore/cpl_io_fits.h,
cplcore/cpl_macros.h, cplcore/cpl_mask.c, cplcore/cpl_mask.h,
cplcore/cpl_mask_binary.h, cplcore/cpl_mask_body.h,
cplcore/cpl_mask_defs.h, cplcore/cpl_mask_impl.h,
cplcore/cpl_math_const.h, cplcore/cpl_matrix.c,
cplcore/cpl_matrix.h, cplcore/cpl_matrix_impl.h,
cplcore/cpl_memory.c, cplcore/cpl_memory.h,
cplcore/cpl_memory_impl.h, cplcore/cpl_msg.c, cplcore/cpl_msg.h,
cplcore/cpl_plot.c, cplcore/cpl_plot.h, cplcore/cpl_polynomial.c,
cplcore/cpl_polynomial.h, cplcore/cpl_polynomial_impl.h,
cplcore/cpl_property.c, cplcore/cpl_property.h,
cplcore/cpl_property_dicb.c, cplcore/cpl_property_dicb.h,
cplcore/cpl_property_impl.h, cplcore/cpl_propertylist.c,
cplcore/cpl_propertylist.h, cplcore/cpl_propertylist_impl.h,
cplcore/cpl_stats.c, cplcore/cpl_stats.h,
cplcore/cpl_stats_body.h, cplcore/cpl_stats_defs.h,
cplcore/cpl_stats_impl.h, cplcore/cpl_table.c,
cplcore/cpl_table.h, cplcore/cpl_test.c, cplcore/cpl_test.h,
cplcore/cpl_tools.c, cplcore/cpl_tools.h,
cplcore/cpl_tools_body.h, cplcore/cpl_type.c, cplcore/cpl_type.h,
cplcore/cpl_type_impl.h, cplcore/cpl_vector.c,
cplcore/cpl_vector.h, cplcore/cpl_vector_fit_impl.h,
cplcore/cpl_vector_impl.h, cplcore/cpl_version.c,
cplcore/cpl_version.h.top, cplcore/cpl_xmemory.c,
cplcore/cpl_xmemory.h, cplcore/tests/Makefile.am,
cplcore/tests/cpl_array-test.c,
cplcore/tests/cpl_bivector-test.c,
cplcore/tests/cpl_error-test.c,
cplcore/tests/cpl_errorstate-test.c,
cplcore/tests/cpl_filter-test.c, cplcore/tests/cpl_filter_body.h,
cplcore/tests/cpl_fits-test.c,
cplcore/tests/cpl_image_basic-test.c,
cplcore/tests/cpl_image_bpm-test.c,
cplcore/tests/cpl_image_filter-test.c,
cplcore/tests/cpl_image_gen-test.c,
cplcore/tests/cpl_image_io-test.c,
cplcore/tests/cpl_image_iqe-test.c,
cplcore/tests/cpl_image_resample-test.c,
cplcore/tests/cpl_imagelist_basic-test.c,
cplcore/tests/cpl_imagelist_io-test.c,
cplcore/tests/cpl_io_fits-test.c, cplcore/tests/cpl_mask-test.c,
cplcore/tests/cpl_math-test.c, cplcore/tests/cpl_matrix-test.c,
cplcore/tests/cpl_median-test.c, cplcore/tests/cpl_memory-test.c,
cplcore/tests/cpl_msg-test.c, cplcore/tests/cpl_plot-test.c,
cplcore/tests/cpl_polynomial-test.c,
cplcore/tests/cpl_property-test.c,
cplcore/tests/cpl_propertylist-test.c,
cplcore/tests/cpl_stats-test.c, cplcore/tests/cpl_table-test.c,
cplcore/tests/cpl_test-test.c,
cplcore/tests/cpl_test_init-test.c,
cplcore/tests/cpl_tools-test.c, cplcore/tests/cpl_type-test.c,
cplcore/tests/cpl_vector-test.c, cpldfs/Makefile.am,
cpldfs/cpl_dfs.c, cpldfs/cpl_dfs.h, cpldfs/cpl_multiframe.c,
cpldfs/cpl_multiframe.h, cpldfs/md5.c, cpldfs/md5.h,
cpldfs/tests/Makefile.am, cpldfs/tests/cpl_dfs-test.c,
cpldrs/Makefile.am, cpldrs/cpl_apertures.c,
cpldrs/cpl_apertures.h, cpldrs/cpl_apertures_img.h,
cpldrs/cpl_detector.c, cpldrs/cpl_detector.h,
cpldrs/cpl_detector_body.h, cpldrs/cpl_fft.c, cpldrs/cpl_fft.h,
cpldrs/cpl_fft_body.h, cpldrs/cpl_fit.c, cpldrs/cpl_fit.h,
cpldrs/cpl_fit_body.h, cpldrs/cpl_geom_img.c,
cpldrs/cpl_geom_img.h, cpldrs/cpl_geom_img_body.h,
cpldrs/cpl_photom.c, cpldrs/cpl_photom.h,
cpldrs/cpl_phys_const.h, cpldrs/cpl_ppm.c, cpldrs/cpl_wcs.c,
cpldrs/cpl_wcs.h, cpldrs/cpl_wlcalib.c, cpldrs/cpl_wlcalib.h,
cpldrs/cpl_wlcalib_impl.h, cpldrs/tests/Makefile.am,
cpldrs/tests/cpl_apertures-test.c,
cpldrs/tests/cpl_detector-test.c, cpldrs/tests/cpl_fft-test.c,
cpldrs/tests/cpl_fit-test.c, cpldrs/tests/cpl_geom_img-test.c,
cpldrs/tests/cpl_photom-test.c, cpldrs/tests/cpl_ppm-test.c,
cpldrs/tests/cpl_wcs-test.c, cpldrs/tests/cpl_wlcalib-test.c,
cpljava/Makefile.am, cpljava/cpl_gasgano.c,
cpljava/tests/Makefile.am, cpljava/tests/cpl_gasgano-test.c,
cplui/Makefile.am, cplui/cpl_frame.c, cplui/cpl_frame.h,
cplui/cpl_frame_impl.h, cplui/cpl_framedata.c,
cplui/cpl_framedata.h, cplui/cpl_frameset.c,
cplui/cpl_frameset.h, cplui/cpl_frameset_io.c,
cplui/cpl_frameset_io.h, cplui/cpl_parameter.c,
cplui/cpl_parameter.h, cplui/cpl_parameterlist.c,
cplui/cpl_parameterlist.h, cplui/cpl_plugin.c,
cplui/cpl_plugin.h, cplui/cpl_plugininfo.h,
cplui/cpl_pluginlist.c, cplui/cpl_pluginlist.h,
cplui/cpl_recipe.h, cplui/cpl_recipeconfig.c,
cplui/cpl_recipeconfig.h, cplui/cpl_recipedefine.c,
cplui/cpl_recipedefine.h, cplui/tests/Makefile.am,
cplui/tests/cpl_frame-test.c, cplui/tests/cpl_framedata-test.c,
cplui/tests/cpl_frameset-test.c,
cplui/tests/cpl_frameset_io-test.c,
cplui/tests/cpl_parameter-test.c,
cplui/tests/cpl_parameterlist-test.c,
cplui/tests/cpl_plugin-test.c, cplui/tests/cpl_pluginlist-test.c,
cplui/tests/cpl_recipeconfig-test.c,
cplui/tests/cpl_recipedefine-test.c, templates/Makefile.am.tmpl,
templates/source.c.tmpl, templates/source.h.tmpl: Import changes
from the trunk (revision r268497): Copyright updated
2021-11-03 rpalsa
* ., ChangeLog, acinclude.m4: Import changes from the trunk
(revisions r268026,r268027)
* ., cplcore/cpl_polynomial.c, cplcore/cpl_polynomial.h,
cplcore/cpl_polynomial_impl.h,
cplcore/tests/cpl_polynomial-test.c, cpldrs/cpl_fit.c,
cpldrs/cpl_wlcalib.c, m4: Import changes from the trunk (revision
r268016): improvements to cpl_polynomial
* cpldrs/tests/cpl_ppm-test.c: Fix incorrect call to abs().
Argument is a floating point number.
* configure.ac: Package version set to 7.2a
* .: Create CPL 7.2 release branch.
2021-11-03 rpalsa
* NEWS: Release notes updated for the CPL 7.1.5 release.
* configure.ac: Package version updated. Set to 7.1.5b
* README: Package version updated for the CPL 7.1.5 release.
* cplcore/tests/cpl_matrix-test.c: cpl_matrix_fill_test(): Fixed
compiler warning on possible truncation when calling labs().
* cplcore/cpl_matrix.c: cpl_matrix_extract_diagonal(): Fixed
compiler warning on possible truncation when calling labs(): call
llabs() instead.
2021-10-26 llundin
* cplcore/cpl_vector_fit_impl.h: cpl_fit_lvmq_(): Fix memory leak
on error (PIPE-9810)
2021-09-21 rpalsa
* cpldrs/cpl_ppm.c: Fix empty API reference documentation
generatated by doxygen.
2021-08-10 rpalsa
* cplui/cpl_frameset.c: cpl_frameset_labelise(): Fixed typo in
debug message.
2021-07-21 rpalsa
* cpldfs/cpl_dfs.c: cpl_dfs_setup_product_header(): Added HDRVER to
the list of forbidden keywords for products. Requested by DICB
(PIPE-9686).
2021-07-12 rpalsa
* cpldfs/cpl_multiframe.c: _cpl_dicb_primary_ranking: Added support
for keyword RADESYS, while keeping RADECSYS for backwards
compatibility.
* cpldfs/cpl_dfs.c: cpl_dfs_setup_product_header(): Implement
support for FITS keyword RADESYS following the DICB policy. If
RADECSYS is used it is translated to RADESYS. If the finished
product header still contains RADECSYS depends on the caller
provided target property list. If it is present a warning message
it printed.
* cplcore/cpl_init.c: cpl_get_description(): Remove FLOP counting
message. It appears to be confusing to the casual user and
enabling/disabling it should rather be handled by a configure
option at build time.
* Doxyfile.in: Fix the manual title. Avoid duplicate word "Manual"
in the generated output.
2021-06-01 rpalsa
* Doxyfile.in: Enable search box and PDF hyperlinks for the doxygen
reference manual.
2021-05-12 llundin
* cplcore/cpl_io_fits.c, cplcore/cpl_io_fits.h,
cplcore/tests/cpl_io_fits-test.c: cpl_io_get_max_open(): Added
(internally). cpl_io_fits_test_all(): Added, guarded by
cpl_io_fits_is_enabled(). cpl_io_fits_test_many(): Limit to one
plus max open files. (PIPE-8824)
2021-05-11 llundin
* cplcore/tests/cpl_io_fits-test.c: cpl_io_fits_test_many(),
cpl_io_fits_test_fulldisk_table(): Fix incorrect bitwise operator
- without breaking CPL_IO_MODE=1
2021-05-11 rpalsa
* configure.ac: Package version updated, set to 7.1.5a.
* ., cplcore/cpl_image_iqe.c, cplcore/cpl_table.c,
cplcore/tests/cpl_table-test.c: Import changes from the trunk
(revisions r264247, r264249, r264250, r264253:r264255, r264298)
2021-05-11 llundin
* cplcore/tests/cpl_io_fits-test.c: cpl_io_fits_test_many(),
cpl_io_fits_test_fulldisk_table(): Fix incorrect bitwise operator
(found by gcc-warning)
* cplcore/tests/cpl_io_fits-test.c: Fix incorrect bitwise operator
(found by gcc-warning)
* cplcore/cpl_image_basic.c: cpl_image_move(): Remove no longer
needed variable (PIPE-9543)
2021-05-10 llundin
* cplcore/tests/cpl_image_basic-test.c,
cplcore/tests/cpl_mask-test.c: cpl_image_move(), cpl_mask_move():
Add unit tests also w. valid input (PIPE-9543)
2021-05-10 rpalsa
* ChangeLog: Remove duplicate entries from the ChangeLog.
2021-05-10 llundin
* cplcore/cpl_image_basic.c, cplcore/cpl_mask.c,
cplcore/tests/cpl_image_basic-test.c,
cplcore/tests/cpl_mask-test.c: cpl_image_move(), cpl_mask_move():
Improve input validation and doxygen (PIPE-9543)
2021-05-07 rpalsa
* cplcore/cpl_filter.h: _cpl_filter_mode_: More fixes of the
doxygen documentation rendering.
* configure.ac: Package version updated, set to 7.1.4.
2021-05-05 rpalsa
* m4/cpl.m4: CPL_CHECK_CFITSIO(): the macro also depends on
pkg-config, therefore make sure ESO_CHECK_PKGCONFIG was called
before.
2021-04-21 rpalsa
* cplcore/cpl_filter.h: Fixed rendering issues of doxygen
documentation caused by @verbatim/@endverbatim blocks.
* cplcore/cpl_polynomial.c: Remove unterminated @verbatim which
causes a doxygen warning. Remove @verbatim/@endverbatim
environment from non-doxygen documentation.
* Doxyfile.in: Updated to use SVG instead of PNG output for
formulas (requires pdf2svg or inkscape to be present). Disable
USE_MATHJAX as default for local builds, and use pdflatex as
default for generating latex output.
* README.SVN: Updated required doxygen version to 1.8.20 and added
dependency on pdf2svg.
2021-04-20 llundin
* cplcore/cpl_mask.c, cplcore/tests/cpl_mask-test.c:
cpl_mask_count_window_test(): Added.
cpl_mask_count_window_test(): Fix out-of-bounds access
(PIPE-9501)
2021-04-16 rpalsa
* .: Property svn:externals updated: point libcext to revision
r256630.
* NEWS: Updated for the CPL 7.1.4 release.
* README: Updated for the CPL 7.1.4 release.
* NEWS: Initial update for the CPL 7.1.4 release.
* ChangeLog: ChangeLog updated for the release of CPL 7.1.4
2021-04-13 rpalsa
* cplcore/cpl_array.h, cplcore/cpl_array_impl.h,
cplcore/cpl_column.h, cplcore/cpl_image_io.h,
cplcore/cpl_property.h, cplcore/cpl_propertylist.h,
cplcore/cpl_table.h, cplcore/cpl_test.h: Remove conditional
relying on the definition of _Complex_I in public header files.
Support for complex number arithmetic is by requiring at least a
C99 compiler to build and use the library. cpl_column.h,
cpl_array.h: Work around an issue if the headers are used by a
C++ compiler. Inclusion of these headers breaks building C++ code
because they unnecessarily include the C99 header complex.h.
Strictly speaking including complex.h in the CPL public API
headers is not needed and should be removed, however this may
break client code. The workaround prevents issues in existing
client code. A final fix for this issue is left for a later
release of the library (PIPE-9014).
* ., m4/cpl.m4: Import changes from the trunk (revision r254001).
2021-01-22 llundin
* cpldrs/cpl_geom_img.c, cpldrs/cpl_geom_img.h:
cpl_geom_img_offset_saa(): Improve doxygen (PIPE-9379)
2020-10-27 rpalsa
* Doxyfile.in: USE_MATHJAX: Enable use of MathJax for rendering
formulas. On a trial basis for now.
* cplcore/cpl_error.h: _cpl_error_code enumeration: Fixed outdated
comment for value CPL_ERROR_UNSPECIFIED.
2020-10-13 cgarcia
* .: Block revision 258528 from being merged into the 7.1 branch
2020-10-08 llundin
* cplcore/cpl_vector.c: cpl_vector_fit_gaussian(): Fix always true
conditionals (PIPE-8110)
2020-09-24 llundin
* cplcore/tests/cpl_io_fits-test.c: Import from trunk r256424
(PIPE-8824)
2020-09-10 llundin
* cplcore/cpl_image_bpm.c: Revert cpl_image_reject_(): bpm creation
is thread-critical (PIPE-9236)
2020-09-09 llundin
* cplcore/cpl_image_bpm.c: cpl_image_reject_(): bpm creation is
thread-critical (PIPE-9236)
2020-07-31 rpalsa
* m4/eso.m4: Updated to the latest version.
2020-07-30 rpalsa
* m4/cpl.m4: Include the needed header files when checking for
library availability, so that the tests work with strict compiler
settings.
2020-07-20 rpalsa
* m4/cpl.m4: Replaced deprecated macro call AC_HELP_STRING by
AS_HELP_STRING.
2020-07-13 rpalsa
* cplcore/cpl_matrix.c: cpl_matrix_product_normal(): Fixed
formatting of doxygen comment block.
2020-05-14 rpalsa
* configure.ac: Package version updated, set to 7.1.3.
* ChangeLog: ChangeLog updated for the release of CPL 7.1.3
2020-05-06 llundin
* README: 7.1.2 -> 7.1.3, wcslib: 4.16 -> 4.24
2020-05-05 llundin
* NEWS, acinclude.m4, configure.ac, cpljava/Makefile.am,
cpljava/org_eso_cpl_jni_CPLControl.h,
cpljava/org_eso_cpl_jni_JNIParameterImp.h,
cpljava/org_eso_cpl_jni_JNIRecipe.h,
cpljava/org_eso_cpl_jni_LibraryLoader.h,
cpljava/org_eso_cpl_jni_PluginLibrary.h: Import from trunk the
changes needed for PIPE-8671 - and update NEWS
* NEWS, configure.ac: 7.1.3: New version, updated NEWS
2020-02-21 llundin
* cplcore/tests/cpl_io_fits-test.c: cpl_io_fits_test_many(): Add
diag msg (PIPE-8824), reduce var scope
2020-01-28 llundin
* cpldrs/cpl_wcs.c: cpl_wcs_get_crval() et al: rm duplicated NULL
check
2020-01-13 llundin
* cplcore/cpl_propertylist.c: _cpl_propertylist_to_fitsfile(): Fix
comment typo
2019-12-19 llundin
* cplcore/tests/cpl_io_fits-test.c: Reduce default number of HDUs
by a factor 6 (PIPE-8824)
2019-12-16 llundin
* cplcore/tests/cpl_io_fits-test.c: Delete generated test FITS data
(PIPE-8824)
2019-10-02 llundin
* cplcore/tests/cpl_propertylist-test.c: Test also conversion of
+/- inf in FITS card
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_local(): Add unit tests w. NaN-value
2019-08-09 rpalsa
* m4/cpl.m4: CPL_CHECK_CFITSIO(), CPL_CHECK_WCS(),
CPL_CHECK_LIBS(): Undefine LIBS (reset to empty) for tests which
only require the headers.
2019-07-25 llundin
* cplcore/cpl_image_io.c: cpl_image_get_(): Fix doxygen internal
(PIPE-8593)
2019-07-12 llundin
* ChangeLog: ChangeLog updated for CPL 7.1.2.
2019-07-11 llundin
* README: 7.1.1 -> 7.1.2
* NEWS: 7.1.2: Add changes, improve description
2019-07-08 llundin
* cplcore/cpl_vector_fit_impl.h: Copy comment improvements from
head
2019-07-03 llundin
* cplcore/cpl_polynomial.c: Fix typo in (internal) doxygen
* cplcore/cpl_propertylist.c: _cpl_propertylist_to_fitsfile():
Change non-unique message from info to warning (PIPE-8552)
2019-05-29 rpalsa
* acinclude.m4: CPL_PATH_JAVA(): Don't leave JAVAH unset if no java
was found.
2019-05-10 llundin
* cplcore/cpl_propertylist.c: _cpl_propertylist_fill_from_fits():
Improve support of blank FITS card (PIPE-8450)
2019-05-09 llundin
* NEWS, configure.ac: 7.1.2: New vision, updated NEWS
* cplcore/cpl_propertylist.c: _cpl_propertylist_fill_from_fits():
Fix bug in handling of a blank FITS card (PIPE-8450_
2019-04-29 llundin
* cplcore/cpl_propertylist.c,
cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_fill_from_fits_locale(),
cpl_propertylist_to_fitsfile_locale(): Guard uselocale() from
unavailable POSIX locale (PIPE-7540)
2019-04-11 llundin
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_local(): Call freelocale()
2019-04-09 llundin
* cplcore/cpl_propertylist.c:
cpl_propertylist_fill_from_fits_locale(),
cpl_propertylist_to_fitsfile_locale(): Deallocate locale
(PIPE-7540)
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_local(): Fix comment typo
2019-04-05 llundin
* cplcore/tests/cpl_propertylist-test.c: Locale: improve msg
2019-04-04 llundin
* cplcore/cpl_propertylist.c,
cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_to_fitsfile_locale(): Added, static.
cpl_fits_get_value(): Update pjparsed also on invalid character.
_cpl_propertylist_fill_from_fits(): Improve error message.
cpl_propertylist_test_local(): Call also w. non-POSIX locale
2019-04-03 llundin
* cplcore/cpl_propertylist.c: _cpl_propertylist_fill_from_fits():
Called only once now, so inline
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_numeric_type(): Merge in changes from trunk
* cplcore/cpl_propertylist.c:
cpl_propertylist_fill_from_fits_locale(): Added static, to
encapsulate the locale setting (PIPE-7540)
* cplcore/cpl_propertylist.c: _cpl_propertylist_fill_from_fits():
Set locale only when needed (PIPE-7540)
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_local(): Revert to default testing for now
* cplcore/tests/cpl_propertylist-test.c: HAVE_LOCALE_H,
HAVE_XLOCALE_H: check both, unit tests (bis)
* cplcore/cpl_propertylist.c: HAVE_LOCALE_H, HAVE_XLOCALE_H: check
both
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_local(): Add locale messaging (PIPE-7540)
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_local(): Call also with non-POSIX locale
(PIPE-7540)
* configure.ac, cplcore/cpl_propertylist.c:
_cpl_propertylist_fill_from_fits(): Use correct include for
uselocale() (PIPE-7540)
* cplcore/cpl_propertylist.c: _cpl_propertylist_fill_from_fits():
Temporarily set locale (LC_NUMERIC) to POSIX (PIPE-7540)
2019-04-03 rpalsa
* configure.ac: In call to CPL_CONFIG_CFITSIO(): Adjust version
number to match the updated CPL_CONFIG_CFITSIO macro. The version
number comparison is done by comparing strings, i.e. a trailing 0
will make the test fail.
2019-04-02 rpalsa
* m4/cpl.m4: CPL_CHECK_CFITSIO(): Replace the runtime test for the
CFITSIO version so that a correct setup of the library search
path is no longer required. CPL_CHECK_LIBS(): Make the macro safe
against multiple expansion by initializing the variables
cpl_with_cpl, cpl_with_cpl_includes and cpl_with_cpl_libs on
entry.
2019-03-28 llundin
* cplcore/cpl_propertylist.c: cpl_propertylist_get_long_long():
Type cxllong replaces cxlong (PIPE-8363)
2019-03-25 llundin
* cplcore/cpl_property.c: cpl_property_set_sort_dicb(): Copy fix +
improvements from trunk, no effect on FITS products
* cplcore/cpl_propertylist.c:
cpl_propertylist_copy_property_regexp(): Copy also comment
(PIPE-8349)
2019-02-18 rpalsa
* configure.ac: Package version updated to 7.1.1. Library version
updated, revision set to 1.
* cplcore/cpl_table.c: cpl_table_get_column_mean_complex(): remove
non-printable characters from the doxygen documentation.
* NEWS: Fixed titel formatting for CPL 7.1.1
* .: Property svn:externals updated: pointing libcext to revision
r236337
2019-02-15 rpalsa
* m4/eso.m4: Updated to the latest version.
2019-02-11 llundin
* cplcore/cpl_imagelist_io.c: cpl_imagelist_save(): Improve
CPL_IO_APPEND doxygen
2019-02-07 llundin
* configure.ac: Package version updated to 7.1.1b3
* cplcore/cpl_propertylist.c: cpl_propertylist_load_name_(): Fix
doxygen typo. cpl_property_find_type(): Update doxygen
2019-02-06 llundin
* cplcore/tests/cpl_propertylist-test.c: cpl_fits_get_number():
Detect malformed D-exponent - unit tests
* cplcore/cpl_propertylist.c: cpl_fits_get_number(): Detect
malformed D-exponent
2019-02-05 llundin
* cplcore/cpl_propertylist.c,
cplcore/tests/cpl_propertylist-test.c: cpl_fits_get_value(): Fix
memory error on FORTRAN-formatted float with maximum length key,
w. unit test
2019-02-04 llundin
* configure.ac: Package version updated to 7.1.1b2
2019-02-01 llundin
* cplcore/cpl_propertylist.c: cpl_fits_get_key(): Add comment
2019-01-31 llundin
* cplcore/cpl_propertylist.c: cpl_fits_get_key(): Support empty
FITS commentary card truncated by CFITSIO (PIPE-8157).
_cpl_propertylist_fill_from_fits(): Fix empty COMMENT card
regression (triggered by SWARP), w. unit test (PIPE-8157) (bis)
* cplcore/cpl_propertylist.c,
cplcore/tests/cpl_propertylist-test.c: cpl_fits_get_key():
Support empty FITS commentary card truncated by CFITSIO
(PIPE-8157). _cpl_propertylist_fill_from_fits(): Fix empty
COMMENT card regression (triggered by SWARP), w. unit test
(PIPE-8157)
2019-01-30 llundin
* cplcore/cpl_property.c: rm CPL_DIAG_PRAGMA_PUSH_IGN() for
-Wcast-qual, no longer needed due to r234963 (bis)
2019-01-29 llundin
* cplcore/cpl_propertylist.c: rm CPL_DIAG_PRAGMA_PUSH_IGN() for
-Wcast-qual, no longer needed due to r234963
2019-01-28 llundin
* NEWS: cpl_image_extract(): Improve NEWS
* cplcore/cpl_image_basic.c: cpl_image_extract(): Improve doxygen
2019-01-25 llundin
* cplcore/cpl_property.c: cpl_property_get_size(): Doxygen usage
example w. cpl_property_get_string()
2019-01-22 llundin
* cplcore/cpl_polynomial.c: Doxygen typo
* cplcore/cpl_propertylist.c, cplcore/tests/cpl_polynomial-test.c:
Fix gcc-warning from deliberate switch fall through (and one
variable shadowing)
* cplcore/cpl_tools.h: Prepare for fixing gcc-warning from
deliberate switch fall through
* cplcore/cpl_property.c: Fix Cppcheck warnings
* cplcore/cpl_propertylist.c: Fix Cppcheck warnings
* cplcore/cpl_cfitsio.c: Rearrange
CPL_DIAG_PRAGMA_PUSH_IGN(),CPL_DIAG_PRAGMA_POP to avoid gcc
warning
* cpldfs/cpl_dfs.c: cpl_dfs_update_product_header_(): Suppress
const correctness warning from CFITSIO
* cpldrs/cpl_fit.c: cpl_fit_image_gaussian(): Fix variable
shadowing
2019-01-21 llundin
* cpldfs/cpl_dfs.c: Fix constant string w. length gcc 8.1 warnings
regarding discarded const modifier (bis)
* cplcore/cpl_property.c, cplcore/cpl_property_impl.h,
cplcore/cpl_propertylist.c, cplcore/cpl_propertylist_impl.h,
cpldfs/cpl_dfs.c: Fix constant string w. length gcc 8.1 warnings
regarding discarded const modifier
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_local(): Avoid variable shadowing (warning
from gcc 8.1)
2019-01-18 llundin
* configure.ac: Package version updated to 7.1.1b1
2019-01-17 llundin
* NEWS: cpl_polynomial_fit(): Use Horner-scheme also for
multivariate input
* NEWS: 7.1.1: cpl_fit_lvmq() is primary function for improved
fitting
2019-01-10 llundin
* configure.ac: Package version updated to 7.1.1a1
* NEWS: 7.1.1: Update with bug fixes (bis)
2019-01-09 llundin
* cplcore/cpl_propertylist.c: Merged in changes from trunk
(r234419)
2019-01-08 llundin
* cplcore/cpl_propertylist.c,
cplcore/tests/cpl_propertylist-test.c: cpl_fits_get_value():
Reinterpret FITS std. 4.4.2.4, COMMENT/HISTORY is commentary even
with value indicator
* cplcore/cpl_propertylist.c: cpl_fits_key_is_unique(): Refine
declaration, use CPL_FITS_IS_UNIQUE_TWO()
* cplcore/tests/cpl_propertylist-test.c: Reenable
cpl_propertylist_test_local()
2018-12-13 llundin
* cplcore/tests/cpl_propertylist-test.c: cpl_fits_get_value():
Reinterpret FITS std. 4.2.1 1 (i.e. a string of spaces is empty),
adapt unit test (PIPE-8157) (bis)
* cplcore/cpl_property.c, cplcore/tests/cpl_property-test.c:
cpl_property_set_string_cx(): Avoid redundant strlen(), extend
unit testing
* cplcore/cpl_property.c, cplcore/cpl_property_impl.h,
cplcore/cpl_propertylist.c: _cpl_propertylist_to_fitsfile(): New,
internal cpl_property_get_size_() replaces redundant
cpl_property_get_size_string(). cpl_fits_key_is_unique(): Improve
doxygen
* cplcore/tests/cpl_propertylist-test.c: cpl_property_eq(): Raise
floating point tolerance
2018-12-12 llundin
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_compare(): Added, static.
cpl_propertylist_test_file(): Warn on non-unique cards
* cplcore/cpl_propertylist.c,
cplcore/tests/cpl_propertylist-test.c: cpl_fits_get_value():
Reinterpret FITS std. 4.2.1 1 (i.e. a string of spaces is empty),
adapt unit test (PIPE-8157)
* cplcore/cpl_test.c: cpl_test_get_description(): Add msg for
SIZEOF_SIZE_T
2018-12-11 llundin
* cplcore/cpl_propertylist.c: cpl_fits_key_is_unique(): Improve
doxygen
* configure.ac: Package version updated to 7.1.1a (Interface is
totally unchanged from previous release)
* NEWS: 7.1.1: Update with bug fixes
* cplcore/tests/cpl_propertylist-test.c:
cpl_propertylist_test_file(): Disable normal tests when testing
via CLI
* cplcore/cpl_propertylist.c: _cpl_propertylist_to_fitsfile():
Non-unique warning only in debug mode
2018-12-10 llundin
* cplcore/tests/cpl_propertylist-test.c: cpl_property_eq(): Added,
static. cpl_propertylist_test_file(): Test when valid FITS
* cplcore/cpl_property.c, cplcore/cpl_property_impl.h,
cplcore/cpl_propertylist.c, cplcore/tests/cpl_property-test.c,
cplcore/tests/cpl_propertylist-test.c: cpl_property_dump():
Added, internal. cpl_property_get_size_name(): Return name
length, not size. cpl_property_get_size_string(),
cpl_property_get_size_comment(), cpl_property_get_string_(),
cpl_property_get_comment_(): Added, internal.
cpl_fits_get_number(): Improve doxygen.
_cpl_propertylist_to_fitsfile(): Call fits_write_key*() not
fits_update*() when possible (PIPE-8167)
* cpldfs/cpl_dfs.c: Avoid key array duplicateion
2018-12-07 llundin
* ., NEWS, configure.ac, cplcore/Makefile.am, cplcore/cpl_array.c,
cplcore/cpl_array_impl.h, cplcore/cpl_column.c,
cplcore/cpl_column.h, cplcore/cpl_image_basic.c,
cplcore/cpl_image_bpm.c, cplcore/cpl_image_bpm_impl.h,
cplcore/cpl_image_io.c, cplcore/cpl_image_io_impl.h,
cplcore/cpl_image_resample.c, cplcore/cpl_image_resample_body.h,
cplcore/cpl_imagelist_io.c, cplcore/cpl_mask.c,
cplcore/cpl_mask.h, cplcore/cpl_mask_impl.h,
cplcore/cpl_matrix.c, cplcore/cpl_matrix_impl.h,
cplcore/cpl_memory.c, cplcore/cpl_polynomial.c,
cplcore/cpl_polynomial.h, cplcore/cpl_polynomial_impl.h,
cplcore/cpl_property.c, cplcore/cpl_property_impl.h,
cplcore/cpl_propertylist.c, cplcore/cpl_propertylist_impl.h,
cplcore/cpl_test.c, cplcore/cpl_test.h, cplcore/cpl_tools.c,
cplcore/cpl_tools.h, cplcore/cpl_vector.c,
cplcore/cpl_vector_fit_impl.h, cplcore/cpl_vector_impl.h,
cplcore/cpl_xmemory.c, cplcore/tests/cpl_fits-test.c,
cplcore/tests/cpl_image_bpm-test.c,
cplcore/tests/cpl_image_io-test.c,
cplcore/tests/cpl_matrix-test.c, cplcore/tests/cpl_memory-test.c,
cplcore/tests/cpl_polynomial-test.c,
cplcore/tests/cpl_property-test.c,
cplcore/tests/cpl_propertylist-test.c,
cplcore/tests/cpl_stats-test.c, cplcore/tests/cpl_vector-test.c,
cpldfs/cpl_dfs.c, cpldfs/tests/cpl_dfs-test.c,
cpldrs/cpl_apertures.c, cpldrs/cpl_fit.c, cpldrs/cpl_ppm.c,
cpldrs/cpl_ppm.h, cpldrs/cpl_wcs.c,
cpldrs/tests/cpl_apertures-test.c, cpldrs/tests/cpl_fit-test.c,
cpldrs/tests/cpl_ppm-test.c, m4/cpl.m4: Import changes from the
trunk (revisions r221985:r233522)
* README: Fix typos
2018-08-22 aszostak
* ., cplcore/tests/Makefile.am, cpldfs/tests/Makefile.am,
cpldrs/tests/Makefile.am: Merging fixes for missing libcext
dependency for unit tests from trunk.
2018-03-08 rpalsa
* README: Try to get the OS X naming scheme correct.
* README: Fix macOS section heading in the table of contents.
* README: Updated macOS section.
2018-03-05 rpalsa
* cplcore/cpl_image_basic.c: cpl_image_or_mask(),
cpl_image_or_mask_unary(): Add internal directive to doxygen
documentation.
2018-01-29 rpalsa
* ChangeLog: ChangeLog updated for CPL 7.1 final.
2018-01-25 rpalsa
* configure.ac: Package version updated.
* ., cplcore/cpl_filter.h: Import changes from the trunk (revision
r215448).
2018-01-19 rpalsa
* NEWS: CPL 7.1 section updated.
* Doxyfile.in: Searchengine disabled again, since it apparently
does not find functions where the return type is given on a
separate line. This may be misleading.
* cplcore/cpl_matrix.c: cpl_matrix_solve_svd(): Documentation
added.
* README.CVS, README.SVN: Renamed to README.SVN
* README.CVS: Updated for CPL 7.1b release.
* configure.ac: Package version updated to 7.1b
* ChangeLog, README: Updated for the CPL 7.1b release.
2018-01-18 rpalsa
* ., NEWS, cplcore/cpl_vector.c: Import changes from the trunk
(revisions r214913,r214919).
2018-01-11 rpalsa
* ., cplcore/cpl_mask.c, cplcore/cpl_xmemory.c,
cplcore/tests/cpl_mask-test.c: Import changes from the trunk
(revisions r214281:r214415).
2017-12-06 rpalsa
* cplcore/cpl_init.c: Added pre-processor tests: CPL now won't
build with CFITSIO versions older than 3.350. cpl_init(): CFITSIO
version tests restructured. Rely on the linker to use only
compatible versions. An error message is issued if the rumtime
version of CFITSIO is less than what was requiested through
configure at build time. All tests related to versions older that
3.350 were removed. (PIPE-7401)
* configure.ac: Package version updated. Require at least CFITSIO
3.350.
* m4/cpl.m4: CPL_CHECK_CFITSIO(): Define header symbol
CPL_CFITSIO_VERSION.
* cplcore/cpl_table.c, cpljava/cpl_gasgano.c: Fixed compiler
warnings on possible use of uninitialized variables.
2017-11-21 rpalsa
* ChangeLog: ChangeLog: Updated for the CPL 7.1a release.
* .: Property svn:externals updated.
* configure.ac: Package version changed to 7.1a.
* ChangeLog: ChangeLog updated.
* NEWS, README: Initial update for the CPL 7.1 release.
2017-11-20 rpalsa
* ., cplcore/cpl_propertylist.c: Import changes from the trunk
(revision r211623).
2017-10-25 rpalsa
* cplui/cpl_parameter.c, cplui/tests/cpl_parameter-test.c:
_cpl_parameter_init(): Set error code if any kind of invalid
parameter (initialization) data is passed to the function.
cpl_parameter_new_value(), cpl_parameter_new_range()
cpl_parameter_new_enum(): List of error codes updated in the
documentation. (PIPE-6758)
2017-10-24 rpalsa
* cplui/cpl_frameset.c: cpl_framset_iterator_get_const(): Fix the
documentation of the return value. Use version of the non-const
counterpart. (PIPE-7285)
* cplui/cpl_recipeconfig.c: cpl_recipeconfig_is_required(): Fis
description of the return value (PIPE-7286)
2017-10-23 rpalsa
* ., cplcore/Makefile.am, cplcore/cpl_column.c,
cplcore/cpl_filter_median.c, cplcore/cpl_image_basic.c,
cplcore/cpl_image_basic_body.h, cplcore/cpl_image_fft.c,
cplcore/cpl_image_fft_impl.h, cplcore/cpl_image_io.c,
cplcore/cpl_image_io.h, cplcore/cpl_image_iqe.c,
cplcore/cpl_imagelist.h, cplcore/cpl_imagelist_io.c,
cplcore/cpl_io_fits.c, cplcore/cpl_io_fits.h, cplcore/cpl_mask.c,
cplcore/cpl_matrix.c, cplcore/cpl_msg.c,
cplcore/cpl_polynomial.c, cplcore/cpl_polynomial.h,
cplcore/cpl_propertylist.c, cplcore/cpl_stats_body.h,
cplcore/cpl_table.c, cplcore/cpl_test.c, cplcore/cpl_tools.c,
cplcore/cpl_tools.h, cplcore/cpl_tools_body.h,
cplcore/cpl_vector.c, cplcore/cpl_vector.h,
cplcore/tests/Makefile.am, cplcore/tests/cpl_image_filter-test.c,
cplcore/tests/cpl_imagelist_io-test.c,
cplcore/tests/cpl_io_fits-test.c, cplcore/tests/cpl_mask-test.c,
cplcore/tests/cpl_math-test.c, cplcore/tests/cpl_matrix-test.c,
cplcore/tests/cpl_median-test.c, cplcore/tests/cpl_msg-test.c,
cplcore/tests/cpl_plot-test.c,
cplcore/tests/cpl_polynomial-test.c,
cplcore/tests/cpl_property-test.c,
cplcore/tests/cpl_table-test.c, cplcore/tests/cpl_vector-test.c,
cpldfs/cpl_dfs.c, cpldfs/cpl_multiframe.c,
cpldrs/cpl_apertures.c, cpldrs/cpl_fft.c, cpldrs/cpl_fft_body.h,
cpldrs/cpl_fit.c, cpldrs/cpl_fit_body.h, cpldrs/cpl_wcs.c,
cplui/cpl_frame.c, cplui/cpl_framedata.c, cplui/cpl_frameset.c,
cplui/cpl_parameterlist.c, cplui/cpl_plugin.c,
cplui/cpl_pluginlist.c, cplui/cpl_recipeconfig.c: Import changes
from the trunk (revision r197629:r210748).
2017-10-10 rpalsa
* .: Point property svn:external for libcext to revision r210064.
2017-08-11 rpalsa
* cplcore/cpl_matrix.c: _cpl_matrix_decomp_sv_jacobi(): Add
declaration, and declare it as static.
2017-07-12 rpalsa
* ., cplui/cpl_parameter.c, cplui/tests/cpl_parameter-test.c:
Import fixes from the CPL 7.0 release branch. (revisions
r205039,r205040)
* ., m4/eso.m4: Import changes from the CPL 7.0 release branch
again. (revisions r196619:r200463)
* cplcore/cpl_matrix.c, cplcore/cpl_matrix.h:
cpl_matrix_solve_svd(): Added.
* ., cplcore/cpl_matrix.c, cplcore/cpl_matrix.h, m4/eso.m4: Revert
errorneous commit (r205041)
* ., cplcore/cpl_matrix.c, cplcore/cpl_matrix.h, m4/eso.m4: Import
changes from the CPL 7.0 release branch (revisions
r196619:r200463)
* .: Create CPL 7.1 release branch.
2017-02-09 rpalsa
* Package and library version updated.
2017-02-08 rpalsa
* Updated copyright entry in the file header. Remove VCS keyword
entries.
2017-02-07 rpalsa
* Import changes from the trunk (revisions r195891:r196375)
* Import changes from the trunk (revision r195888)
* Import changes from the trunk (revisions r191768:r195887)
* Import changes from the trunk (revision r191628)
* Import changes from the trunk (revisions r189694:r191580)
2017-02-06 rpalsa
* Update property mergeinfo.
* Import changes from the trunk (revision r185817)
* Import changes from the trunk (revisions r186032:r187261)
* Update property mergeinfo.
2017-01-27 rpalsa
* CPL_CHECK_CFITSIO(): Remove zlib dependency from the list of
libraries used for the tests.
* Fix indentation.
2017-01-24 rpalsa
* Macro refactoring: CPL_CHECK_CEXT(), CPL_CHECK_CFITSIO(),
CPL_CHECK_FFTW(), CPL_CHECK_LIBS(), and CPL_CHECK_WCS(): Allow
for checking dependencies independent of the library type
(static, shared). Initial version.
2017-01-16 rpalsa
* Relax required libtool version.
* Replace hardcoded shared library extension in the library
checking macros by the one determined by libtool.
* Use the new macro syntax to initialize libtool and libltdl, and
require libtool version 2.4.2.
2016-12-21 rpalsa
* _cpl_matrix_decomp_sv_jacobi(), cpl_matrix_solve_svd(): Added.
Initial implementation of an SVD based linear system solver.
2016-11-04 rpalsa
* cpl_msg_out(), _cpl_timestamp_iso8601(): Moved explicit tzset()
calls to cpl_msg_init()
* cpl_table_compare_structure(): Fix memory leak if tables do not
have the same structure (PIPE-6776)
* getTimeISO8601(): Renamed to _cpl_timestamp_iso8601() to be in
line with the naming scheme for internal functions.
cpl_msg_out(), _cpl_timestamp_iso8601(): Replace calls to
localtime() by calls to the reentrant version, localtime_r()
(requires _POSIX_C_SOURCE).
2016-06-14 rpalsa
* Integrate changes from the trunk (revisions r187327:r187524)
* Block revision r187261 from being merged back into the CPL 7.0
release branch.
2016-06-06 rpalsa
* Remove obsolete purify support.
* Remove redundant quotes in macro calls.
2016-05-13 rpalsa
* Change SEARCHENGINE setting to enabled.
2016-02-12 rpalsa
* ChangeLog updated.
2016-02-05 rpalsa
* Revert commit r182587. Note that the way these tests are coded
cause a compiler warning on OSX!
* Fix compiler warning: Replace logical or by bitwise or.
2016-02-04 rpalsa
* configure.ac: Update package version.
* cplcore/cpl_table.c: Fix parameter name in doxygen comments.
* cplcore/tests/cpl_array-test.c: Integrate fixes from the trunk
(revisions r181961:r182351).
2016-02-03 llundin
* cplcore/tests/cpl_array-test.c:
cpl_array_test_power_complex_one(): Raise float-tol for Mac OSX
* cplcore/cpl_image_basic.c: cpl_m_from_int64: added, w. fix for
clang (PIPE-6401) (bis)
* cplcore/cpl_mask.c, cplcore/cpl_mask_binary.h: cpl_m_from_int64:
added, w. fix for clang (PIPE-6401)
* cplcore/cpl_mask.c: Copy SSE2 header inclusion from
cpl_image_basic (PIPE-6401)
2016-02-02 rpalsa
* ChangeLog: ChangeLog updated.
* configure.ac: Package version updated.
2016-02-02 llundin
* cplcore/cpl_column.c, cplcore/cpl_column_body.h:
cpl_column_pow_*(): Use const assignments, reduce var scope
* NEWS: Updated with tickets closed by Lars (PIPE-6211),
(PIPE-6205), (PIPE-6075), (PIPE-4745), (PIPE-4716), (PIPE-4505)
* cplcore/cpl_table.c, cplcore/tests/cpl_table-test.c: Apply change
to trunk:
cpl_table_fill_invalid_{int,long,long_long,float,float_complex,double,double_complex}():
Update doxygen to reflect actual handling of array elements
(PIPE-4505)
2016-01-28 llundin
* cplcore/cpl_column_body.h: Apply patch from HEAD (PIPE-4716):
cpl_column_pow_*(): Fix incorrect cast causing integer base with
non-integer power to fail
2016-01-19 rpalsa
* cplcore/cpl_test.c: Integrate fixes from the trunk
(revision 181606)
* cplui/cpl_parameter.c: Module documentation: Try to be more
precise on how parameter constructors have to be called.
* NEWS: More updates for CPL 7.0.
2016-01-15 rpalsa
* configure.ac: Package version updated.
* cplcore/cpl_image_basic.c, cplcore/cpl_mask_binary.h,
cplcore/tests/cpl_image_filter-test.c,
cplcore/tests/cpl_polynomial-test.c: Integrate changes from the
trunk (revision 181547)
2016-01-11 rpalsa
* cplcore/cpl_table.c, cpldrs/cpl_wcs.h: Revert inclusion of
RADECSYS in regular expressions (PIPE-6019).
* cplcore/cpl_column_body.h: Add conditional to silence Doxygen
warning related to the ADDTYPE macro.
2015-12-17 rpalsa
* NEWS: Preparations for 7.0 release.
* README: Preparations for 7.0 release.
* ChangeLog: Changelog updated.
2015-12-16 rpalsa
* configure.ac: Package version updated.
* Creating CPL 7.0 release branch.
* Put back deprecated function declarations. They will be removed
finally with the next major version.
* Replace AM_PROG_CC_C_O with AC_PROG_CC_C_O
* cpl_table_find_column_const(): Avoid compiler warning on pointer
initialization.
2015-12-15 rpalsa
* Update library version.
* Remove deprecated functions from the API (TBC).
* Add test for checking cpl_parameter_new_enum(),
cpl_parameter_new_range() when asking for an invalid value type.
* cpl_parameter_new_enum(), cpl_parameter_new_range(): Do not
create a parameter from an empty enumeration list, or for invalid
value types (PIPE-5469, PIPE-5470).
_cpl_parameter_init(): Improve error message if a enumeration or
range parameter was created with an invalid value type.
* cpl_propertylist_from_fits(): Force WCS keywords to become a
double property, since the FITS standard explicitly defines them
as floating-point.
* ERASE_WCS_REGEXP: add RADECSYS to symbol definition (PIPE-6019)
2015-12-11 llundin
* Add some comments regarding gcc const-correctness warnings for
CFITSIO calls
* cpl_table_find_column(), cpl_table_find_column_(),
cpl_table_find_column_type_(): Fix const-correctness issue (and
add correct const variants) (PIPE-4480)
* cpl_table_find_column_(): Improve error message
* cpl_table_fill_invalid_*(): Add unit-tests to reflect current,
expected behaviour (PIPE-4505)
* cpl_column_fill_invalid_int((): Reduce variable scope, declare
variables as const, only one return-on-no-error, size_t for array
index in loop. cpl_column_fill_invalid_float),
cpl_column_fill_invalid_float_complex(),
cpl_column_fill_invalid_double(),
cpl_column_fill_invalid_double_complex(): return CPL_ERROR_NONE
on success
2015-12-07 rpalsa
* CPL_WCS_REGEXP: Added RADECSYS to the list. (PIPE-6019)
2015-12-07 llundin
* cpl_array_power_complex(): Add non-trivial unit-tests (PIPE-6205)
* cpl_array_power_complex(): Draft added w. limited unit-testing
(PIPE-6205)
2015-11-27 llundin
* cpl_image_filter_test_1d(): Doxygen
* cpl_image_filter_test_1d(): Added to demonstrate a 1D-call
2015-10-28 llundin
* cpl_array_new_complex_from_arrays(): Added w. unit tests
(PIPE-6211)
* cpl_column_new_complex_from_arrays(): Fix nullcount check, update
doxygen (PIPE-6211)
2015-10-21 llundin
* cpl_array_test_set_string(): Improve coverage
* cpl_array_set_string(): Fix incorrect CPL error return code on
error (PIPE-4745)
* cpl_array_set_string(): Fix incorrect CPL error return code on
error (PIPE-4745)
2015-10-15 llundin
* cpl_column_new_complex_from_arrays(): Draft added as internal
(PIPE-6211)
2015-10-12 llundin
* cpl_{array,column}_cast(): const correctness (PIPE-6236)
2015-09-30 llundin
* cpl_array_get_data_{int,long,long_long,cplsize,float,double,float_complex,double_complex,string}():
Fix gcc-warning cast discards const qualifier
* perl -pli -e 's/\b0x0\b/NULL/g'
* cpl_array_extract_real(), cpl_array_extract_imag(): Redeclare
backwards compatibly as const (PIPE-6210)
2015-09-23 llundin
* CPL_DIAG_PRAGMA_PUSH_IGN(-Wswitch): Suppress -Wswitch due to
cpl_type enum bitwise or
* cpl_column_get_data_{int,long,long_long,cplsize,float,double,float_complex,double_complex}_const():
Fix gcc-warning cast discards const qualifier
* cpl_column_get_data_string(): Fix gcc-warning cast discards const
qualifier
* cpl_column_get_data_array(): Fix gcc-warning cast discards const
qualifier
* cpl_column_get_array(), cpl_column_get_array_const(): Fix
gcc-warning cast discards const qualifier
* cpl_column_get_array(): Fix gcc-warning cast discards const
qualifier
* cpl_error_set_(...) replaces
cpl_error_set("cpl_column_func_name",...) etc
* cpl_column_extract_real(), cpl_column_extract_imag(): Redeclare
backwards compatibly as const (PIPE-6210)
* cpl_error_set_(...) replaces cpl_error_set(fid,...) etc
* cpl_column_get_size_(), cpl_column_get_type_(): Replaces
_cpl_column_get_size(), _cpl_column_get_type() (PIPE-6212)
* cpl_column_base_type_invalid_(): Replaces
_cpl_column_base_type_invalid() (PIPE-6212)
* cpl_set_error_check_(): replaces _cpl_set_error_check()
(PIPE-6212)
* cpl_get_error_check_(): replaces _cpl_get_error_check()
(PIPE-6212)
* perl -pli -e 's/\b0x0\b/NULL/g'
2015-09-14 llundin
* cpl_column_pow_*(): Work around false positive Coverity warning
2015-09-04 llundin
* cpl_image_filter_test(), cpl_image_filter_test_5320(): Raise
tolerance (due to Jenkins failure on SL5.3)
2015-09-03 llundin
* cpl_column_power(), cpl_table_power(), cpl_array_power(): Update
doxygen (PIPE-4716)
* cpl_array-test.c: Added (bis)
* cpl_array_test_power(): A couple more complex tests (without
csqrt/f())
* cpl_array_test_power_complex(): Fix test on non-complex error
* Add a couple of complex tests
* cpl_column_pow_float/double_complex(): Use errno approach as for
cpl_column_pow_float/double()
* cpl_column_pow_*(): flop count fix
* cpl_column_pow_long/long_long/cplsize(): PIPE-4716
* cpl_column_pow_int(): PIPE-4716
* cpl_column_power(): Prep for casting/rounding w. ELEM_CAST
* cpl_column_pow_double(): Fix PIPE-4716
* cpl_column_body.h: Added for cpl_column_power() (PIPE-4716)
* AC_CHECK_FUNCS(): Add cbrtf (PIPE-4716)
* cpl_array_new(): Improve error message on unsupported type
* cpl_array_test_power_complex(): Added. cpl_array_test_power():
Coverage complete, except for PIPE-4716
* cpl_array_test_power_valid(), cpl_array_test_power_invalid():
Added
* cpl_array_test_power(): Test powers of zero
* cpl_type_get_sizeof(), cpl_type_get_name(): Support CPL_TYPE_SIZE
(PIPE-6172)
* cpl_column_set(): Support complex column types, propagate error
and set proper error on unsupported type
* cpl_column_count_invalid(): Update doxygen.
cpl_column_pow_float(): Draft implementation modified from
cpl_image_power() (PIPE-4716)
* cpl_array_test_power(): Basic error checks
* cpl_array-test.c: Added
2015-08-13 rpalsa
* Integrate fixes from the CPL 6.6 release branch (revision 176604)
2015-07-22 rpalsa
* Integrate updates from the CPL 6.6 release branch (revision
175694)
2015-07-20 rpalsa
* m4/cpl.m4: CPL_CHECK_WCS(): Also add extra wcslib directory
component to path taken from WCSDIR.
* cpldrs/cpl_fft.c: cpl_fft_image_(): Add suggested parentheses.
* m4/cpl.m4: CPL_CHECK_CFITSIO(), CPL_CHECK_WCS(),
CPL_CHECK_FFTW(): Remove locally created file conftest.out after
tests are finished.
* m4/cpl.m4: CPL_CHECK_WCS(): Add extra wcslib directory component
to path given by with-wcs option.
* m4/cpl.m4: CPL_CHECK_WCS(): Remove extra wcslib directory
component.
* ChangeLog: Updated for release 6.6.1
* Update libcext externals revision
2015-06-26 rpalsa
* Update libcext externals revision
* cplcore/cpl_table.c: cpl_table_dump(): Use correct accessor when
getting values from a CPL_TYPE_LONG_LONG columns.
cpl_table_extract_selected(): Add missing cases for
CPL_TYPE_LONG_LONG, and complex columns.
_cpl_table_write_column(): Fix incorrect bitwise and replaced
with logical and (PIPE-5824). _cpl_table_write_column_array():
Fix and document possible null pointer dereference (PIPE-5823).
2015-05-22 rpalsa
* cplcore/cpl_column.c: cpl_column_set_<type>(): Fix wrong error
code return in case the argument checks fail.
2015-05-07 rpalsa
* cplcore/cpl_table.c: _cpl_table_save_legacy(): Fix possible
buffer overrun. cpl_table_overload_window(): Add (redundant)
error check after calling cpl_io_fits_open_diskfile().
* cplcore/cpl_mpfit.c: _cpl_mp_fdjac2(): Fix wrong type in call of
sizeof.
2015-04-27 rpalsa
* libltdl, m4: Updated svn:ignore
2015-03-06 rpalsa
* configure.ac: Update package and library for 6.6.1
* cplcore/cpl_table.c: cpl_table_save(): Add CPL_IO_APPEND mode
related documentation.
* Doxyfile.in: Updated. Set COMPACT_LATEX to NO in order to use
documentclass book instead of article.
2015-03-04 rpalsa
* configure.ac: Package version updated.
* Update libcext externals revision.
2015-03-03 rpalsa
* cpldfs/cpl_multiframe.c, cplui/cpl_frameset.c: Reference
documentation updated.
* cplcore/tests/cpl_table-test.c: cpl_table-test.c: Revert
unintended commit.
* cplcore/tests/cpl_table-test.c: Update libcext externals
revision.
* BUGS, ChangeLog, ChangeLog-0, ChangeLog-1, Makefile.am, README:
Updated for release of CPL 6.6.
* cplcore/cpl_propertylist.c: _cpl_propertylist_fill_from_fits():
Fix string value trimming in the case the value is an empty
string.
* cpldfs/cpl_multiframe.c: _cpl_fits_format_card(),
_cpl_fits_parse_keyname(): Adapted to changed names of cx_string
member functions.
2015-03-03 llundin
* NEWS: News: PIPE-5254
* NEWS: News: PIPE-5498
2015-03-02 llundin
* NEWS: News: PIPE-5650
2015-02-20 rpalsa
* cplcore/tests/cpl_table-test.c: Fix comment: Remove part of
CPL_IO_APPEND test disclaimer.
* cplcore/cpl_table.c: _cpl_table_save_append(),
_cpl_table_write_column_array(): Fixes applied to null value
handling after testing.
2015-02-18 rpalsa
* NEWS: Initial update for release of CPL 6.6
2015-02-17 rpalsa
* cplcore/tests/cpl_table-test.c: Add simple CPL_IO_APPEND test
case, and comment out the previous one expecting an unsupported
mode error.
* cplcore/cpl_table.c: _cpl_table_save_append(),
_cpl_table_write_column_array(): Fixing string array column
issues found during initial debugging.
2015-02-16 rpalsa
* m4/cpl.m4: Restore previous file name extension used for
searching for libraries.
2015-02-13 rpalsa
* configure.ac: Package version updated.
* m4/cpl.m4: Change file name extension for searched libraries from
.a to .so
* cplcore/cpl_table.c, cplcore/tests/cpl_table-test.c: Implemented
CPL_IO_APPEND I/O mode for tables.
2015-02-07 rpalsa
* cplcore/cpl_propertylist.c:
cpl_propertylist_copy_property_regexp(): Update documentation.
2015-02-06 rpalsa
* cpldfs/cpl_multiframe.c: Removed string utilities local
implementation. Moved to libcext.
* Update libcext external revision.
* configure.ac: Fixed library version.
2015-01-28 rpalsa
* cplcore/cpl_image_iqe.c, cplcore/cpl_mpfit.c,
cplcore/cpl_mpfit.h: Consistently add cpl prefix to functions,
for namespace protection (PIPE-5551).
2015-01-02 cgarcia
* configure.ac: New branch for CPL 6.6
2014-12-18 llundin
* cpl_imagelist_median_collapse(): Apply patch from JTaylor
(PIPE-5384)
2014-12-16 llundin
* Make sure to include complex.h in time
* Make sure to include complex.h in time
* cpl_image_get_data_<type>*(): Improve error message on type
mismatch
* cpl_image_hypot(): Update bad pixel map (PIPE-5650)
* cpl_mask_{and,or,xor}_(): Shortcut when called with identical
buffers (PIPE-5649)
* cpl_fft_aligned(): omp critical (in still inactive code)
* cpl_mask_{and,or,xor}(): Optimize a call with same mask twice
2014-12-11 llundin
* Undo previous commit (not faster): For each transform create two
plans, FFTW_DESTROY_INPUT and FFTW_PRESERVE_INPUT
* For each transform create two plans, FFTW_DESTROY_INPUT and
FFTW_PRESERVE_INPUT
* Align c2r code with r2c. Improve comments
* cpl_fft_aligned(): Reminder to use fftw_alignment_of() once we
have 3.3.4
* ce doxygen + comments
2014-12-06 rpalsa
* Integrate changes from CPL 6.5 release branch (revision
166757:167280)
2014-12-02 aszostak
* Changing behaviour of cpl_test_assert to use exit() rather than
just return. (PIPE-4664)
This also fixes a large number of cppcheck errors and double
logging from pipeline unit tests, when using cpl_test_assert in
sub-routines.
2014-11-26 aszostak
* Adding code to prevent core dumps in the cpl_test_init-test code
where they are expected, due to calling abort().
Also fixing exit code when the test must be skipped.
2014-10-31 llundin
* cpl_tools_get_median_*(): Avoid signed integer overflow by
generally improving the precision (see cpl_tools_get_mean())
(PIPE-5472)
2014-10-30 llundin
* 6.4: cpl_gaussian_eval_2d() added
2014-10-24 aszostak
* Adding regression test to find uninitialised memory errors in
combination with valgrind for cpl_image_divide_create().
(PIPE-5498)
2014-10-22 llundin
* cpl_image_divide_create(): Assign zero when dividing with zero
(PIPE-5498)
2014-10-02 llundin
* rm redundant inclusion of complex.h
* Fix inclusion of complex.h (see PIPE-5452) (bis)
* Fix inclusion of complex.h (see PIPE-5452)
2014-10-01 rpalsa
* Integrate changes from CPL-6_5-BRANCH (revision 165945).
* Integrate changes from CPL-6_5-BRANCH (revisions 163168:165731).
2014-09-05 llundin
* cpl_imagelist_collapse_median_create(): Apply patch from JTaylor
to improve L1 cache access pattern (PIPE-5384)
* cpl_image_new_from_accepted(): Apply performance-patch from
JTaylor (PIPE-5382)
2014-07-22 llundin
* cpl_stats_new_from_image_window(): Ensure expression reuse in
variancesum (PIPE-5337)
* cpl_tools_get_variancesum*(): Ensure expression reuse (PIPE-5337)
2014-07-11 llundin
* cpl_dfs_save_propertylist(), cpl_dfs_save_imagelist(): Fix typo
2014-07-10 llundin
* cpl_matrix_solve_normal(): fix unit test failure on mips64el
(free memory) (PIPE-5283)
2014-07-03 llundin
* cpl_matrix_solve_normal(): Improve comment on previous commit
2014-07-02 llundin
* cpl_matrix_solve_normal(): (Probably) fix unit test failure on
mips64el (PIPE-5283)
2014-06-27 rpalsa
* Integrate fixes from CPL 6.4 branch (revisions 159799:161872)
2014-06-26 aszostak
* Fixing compiler warnings (PIPE-4739).
2014-06-25 aszostak
* Adding unit test to check median calculation (PIPE-4739).
2014-06-06 llundin
* getTimeISO8601(): Preserve errno from before call to strftime()
(PIPE-5254)
* CPL_MAX(), CPL_MIN(): Add extra, redundant parentheses to avoid
static-checker warnings from e.g. cppcheck (PIPE-5252)
2014-06-03 llundin
* cpl_filter_median_even(): Binary and replaces modulo
* cpl_filter_median_even(): Use memcpy()
* cpl_image_filter(), cpl_image_filter_mask(): In-place filtering
is not supported (PIPE-5198)
* cpl_image_filter_mask(): Use mean of two central values for
even-sized median - draft (PIPE-5198)
2014-05-22 rpalsa
* Integrate change 161532 from CPL 6.4 release branch.
2014-04-30 cgarcia
* Remove *dump.txt files when cleaning
* Remove *.log files when cleaning
2014-04-22 rpalsa
* Integrate fixes from CPL 6.4 branch (revision 159839)
2014-04-17 rpalsa
* Integrate fixes from CPL 6.4 branch (revision 155879)
* Block revisions 159771 from being merged into the trunk
* Integrate fixes from CPL 6.4 branch (revisions 158101:r159770)
* Block revisions 157515 from being merged into the trunk
* Integrate fixes from CPL 6.4 branch (revisions 157026:157503)
* Block revisions 157037 from being merged into the trunk
* Integrate fixes from CPL 6.4 branch (revisions 156915:156944)
* Integrate fixes from CPL 6.4 branch (revisions 156164:156906)
* Integrate fixes from CPL 6.4 branch (revision 156163)
* Block revisions 156164 from being merged into the trunk
* Integrate fixes from CPL 6.4 branch (revisions 156128:156146)
* Block revisions 155775 from being merged into the trunk
* Block revisions 155269 from being merged into the trunk
* Block revisions 155254 from being merged into the trunk
* Block revisions 155246 from being merged into the trunk
* Block revisions 154781 and 154782 from being merged into the
trunk
* Block revision 154779 from being merged into the trunk
2014-04-02 llundin
* cpl_wcs_test_5115(): Added for PIPE-5115
2014-04-01 llundin
* cpl_mask_filter(): Support CPL_BORDER_NOP also with
CPL_FILTER_OPENING/CLOSING. Fix doxygen typos
* Break long lines
2014-03-17 llundin
* cpl_fft_aligned(): Update doxygen
2014-02-17 llundin
* cpl_table_get_column_unit(): Fix error propagation on NULL return
(PIPE-4996)
2014-02-13 llundin
* cpl_dfs_setup_product_header(): Do not copy CHECKSUM and DATASUM
(PIPE-4980)
2014-01-24 cgarcia
* svn ci -m "Block revision r156036 from being merged back into the
source"
2014-01-24 rpalsa
* Integrate fixes from CPL 6.4 release branch.
2014-01-24 llundin
* cpl_photom_fill_blackbody(): rm cpl_func, cpl_ensure_code() in
loop. Header clean-up
2014-01-24 cgarcia
* changed complex to _Complex in headers
2014-01-24 llundin
* Use C99 functions log1p(), expm1() (patch from JTaylor using a
patched version of coccinelle)
2014-01-20 rpalsa
* Integrate fixes from CPL 6.4 release branch.
* Block revision 155874 from being merged into the trunk.
* Block revision 155871 from being merged into the trunk.
* Integrate fixes from CPL 6.4 release branch.
2014-01-13 llundin
* cpl_polynomial_add(), cpl_polynomial_subtract(),
cpl_polynomial_multiply_scalar(): cpl_polynomial_delete_coeff()
replaces cpl_polynomial_set_coeff()
2013-12-17 rpalsa
* Integrate fixes from CPL 6.4 release branch.
2013-12-16 llundin
* CPL_MIN()/CPL_MAX(): Drop __typeof__ (PIPE-4787) (bis)
* CPL_MIN()/CPL_MAX(): Drop __typeof__ (PIPE-4787)
2013-12-16 rpalsa
* Integrate changes from CPL 6.4 release branch.
2013-12-16 llundin
* cpl_image_fill_window(): Added
* cpl_image_fill_window(): Added (PIPE-4842)
* cpl_polynomial_fit(): Improve doxygen
2013-12-13 llundin
* CPL_MIN()/CPL_MAX(): Drop __typeof__ (PIPE-4787)
2013-12-12 llundin
* cpl_gaussian_eval_2d(): New name, improved error handling and
doxygen
* cpl_gaussian_fit_image_eval(): Added
* cpl_apertures_extract_mask(): Fix doxygen typo
2013-12-09 llundin
* doxygen typo
2013-12-05 cgarcia
* Added CPL_BEGIN_DECLS and CPL_END_DECLS
2013-12-05 llundin
* CPL 6.4: note news already in 6.3
2013-12-03 llundin
* cpl_errorstate_dump(), cpl_errorstate_dump_one(): Improve doxygen
of NULL-dumper
2013-12-02 llundin
* cpl_errorstate_dump(): With a NULL-iterator do not report on
CPL_ERROR_LOST_HISTORY (PIPE-4838)
* cpl_fit_lvmq_(): Avoid infite loop on recovery from CPL error
(PIPE-4837)
* cpl_fit_lvmq_(): Recover correctly from CPL error (PIPE-4837)
* Start: What's new in CPL 6.4
* Copy edit
* cpl_image_fft(): Improve doxygen (power-of-two sized image)
* cpl_image_bpm_reject_value_test(): Added
2013-11-27 llundin
* cpl_flux_get_noise_ring(): Handle error from
cpl_image_get_stdev_window(), doxygen, const correctness.
cpl_flux_get_noise_window(): Doxygen, const correctness
2013-11-22 llundin
* cpl_polynomial_fit_1d(): rm old, invalid assert() (PIPE-4829)
2013-11-21 rpalsa
* cpl_table_get_column_name(): Marked as deprecated (PIPE-4474)
* cpl_column_delete_but_arrays(), cpl_column_delete_but_strings():
Fix potential dereferencing of a NULL pointer (PIPE-4663).
* cpl_parameterlist_find_context_const(): Apply patch to fix
potential segmentation fault (PIPE-4661)
Test case added.
2013-11-21 llundin
* cpl_matrix_extract_{row,column}(): Apply patch from Artur to
avoid NULL-dereference (PIPE-4793)
* cpl_matrix_extract_{row,column}(): Add unit tests on error
(PIPE-4793)
* Fix comment
* Revert use of memmove() back to memcpy() as in the original code.
Use restrict + CPL_ATTR_NONNULL
* MD5Final(): Fix strict-aliasing violation (PIPE-3854)
* cpl_image_get_interpolated(): intptr_t replaces cpl_size for
efficiency on32-bit
* CPL_MIN(), CPL_MAX(): __typeof__ replaces typeof (which also
works with --std=c99) (PIPE-4787)
2013-11-21 rpalsa
* Fix potential buffer overflow in cpl_msg (PIPE-4658)
2013-11-21 llundin
* CPL_MIN(), CPL_MAX(): Use __GNUC__ instead of AC_C_TYPEOF since
the conditional compilation is also needed by the CPL-based
application (JIRA PIPE-4787)
2013-11-20 rpalsa
* Nuke unwanted directory from revision control, finally.
* Remove property svn:ignore from untracked directory
2013-11-20 llundin
* + CPL_INTERNAL
* CPL_MIN(), CPL_MAX(): Added using typeof (JIRA PIPE-4787)
2013-11-18 llundin
* cpl_polynomial_fit_2d(): rm unneeded cast
* Suppress -Wcast-qual from cpl_*_wrap(). Uncomment assert()
* Suppress -Wcast-qual from cpl_*_wrap()
* Use const on cast for _mm_load*_p{s,d}()
* Suppress -Wcast-qual
* CPL_DIAG_PRAGMA_PUSH_IGN(), CPL_DIAG_PRAGMA_PUSH_ERR(),
CPL_DIAG_PRAGMA_POP, CPL_STRINGIFY(): Export
* CPL_FITSIO_READ_PIX_E, CPL_FITSIO_CREATE_IMG_E,
CPL_FITSIO_WRITE_PIX_E: Internal, for error msg
* cpl_fits_read_pixll(), cpl_fits_read_pix(),
cpl_fits_create_imgll(), cpl_fits_create_img(),
cpl_fits_write_pixll(), cpl_fits_write_pix(): Added to limit
CFITSIO const-correctness warning to one module
* cpl_mask_load_(): Move const-correctness warning to cpl_cfitsio
module
* Internal cpl_cfitsio module added
2013-11-12 llundin
* do_bench: Added for cpl_image_bitwise_test()
* Ensure SSE2 and register size match
* cpl_mask_{and,or,xor}_scalar): Use all 64-bits of mask, support
odd number of words. cpl_image_{and,or,xor}_scalar(): Pass 64-bit
scalar. cpl_image_bitwise_test(): Test odd number of pixels
* cpl_mask_xor_scalar(): Pass 64-bit scalar also on 32-bit systems
2013-11-06 llundin
* cpl_image_bitwise_test(): Test output
* cpl_image_{and,or,xor}{,_scalar}(), cpl_image_not(): Add const
modifier to internal cast
* cpl_image_not(): Added
* cpl_image_bitwise_test(): Test error handling (and,or,xor)
2013-11-05 llundin
* cpl_mask_{andor,xor}_scalar(): Fix cast to word-size (bis)
* cpl_mask_{andor,xor}_scalar(): Fix cast to word-size
* cpl_image_{and,or,xor}{,_scalar}(), cpl_bitmask: Added
(PIPE-4576)
* cpl_bitmask: typedef uint64_t. cpl_mask_{and,or,xor}_scalar():
Replaces cpl_mask_{and,or,xor}_int(), uses cpl_bitmask
* cpl_mask_{and,or,xor}_int(): Added, replaces cpl_mask_not_()
* cpl_mask_not_(): Added. cpl_mask_not(): Call cpl_mask_not_()
* cpl_mask_{and,or,xor}{,_}(): Added
* cpl_mask_binary.h: Define internal bit-wise functions
* cpl_mask_and(): Working prototype using SSE2 (coded as in
cpl_image_basic)
2013-11-04 llundin
* Added libcext as an external
2013-10-22 rpalsa
* Updated to the latest version.
2013-10-22 llundin
* cpl_image_add(0 etc: Set CPL_ERROR_INCOMPATIBLE_INPUT on
incompatible input. cpl_image_add_create() etc: Expand on error
msgs
* cpl_image_add() etc: Expand on error message
2013-10-21 llundin
* cpl_dfs_setup_product_header(): Handle missing filename in frame
(PIPE-4778)
2013-10-16 llundin
* cpl_fits_find_extension(): Avoid reading uninitialized array
(possible e.g. in case of CFITSIO bug?), reported by coverity
2013-10-14 llundin
* cpl_image_set_bpm(): Added. cpl_image_unset_bpm(): Wraps around
cpl_image_set_bpm()
* cpl_mask_count_window(): Unroll twice to halve multiplication and
shifting
* cpl_mask_count_bench(): Added. cpl_mask_count_window(): Added
benchmarking comment
* cpl_error_ensure(): CPL errors are unlikely
* cpl_mask_count_window(): Use multiplication to count one word at
a time (using idea from JTaylor)
2013-10-09 llundin
* cpl_imagelist_collapse_median_create(): Fix incorrect handling of
bad pixels (PIPE-4753)
2013-10-08 llundin
* cpl_fft_image_test_correlate(): auto-correlate
2013-10-07 llundin
* cpl_fft_image_test_correlate(): Use cpl_fft_imagelist() +
CPL_FFT_NOSCALE. Copy-edit doxygen
* cpl_fft_image_test_correlate(): Added
2013-09-05 llundin
* cpl_matrix_product_normal(): Added w. export pending review
(PIPE-4697). cpl_matrix_product(): ce
* cpl_matrix_product(): Reduce block-size from 64 to 48 so blocks
fit on smaller caches (Raise base on unit test)
2013-09-03 llundin
* cpl_matrix_product(): Reduce block-size from 64 to 48 so blocks
fit on smaller caches
2013-09-02 llundin
* cpl_matrix_product_create(): Apply blocking-patch from JTaylor
2013-08-28 llundin
* Additional tests with ARCFILE + EQUINOX
2013-08-28 rpalsa
* Frame set iterators put back into place.
* Use AM_CPPFLAGS for all flags set within the Makefile, instead of
CPPFLAGS. CPPFLAGS has been removed.
2013-08-26 rpalsa
* cpl_table_save(): Add long long to int conversion for nval array
when dealing with integer column data.
2013-07-25 llundin
* cpl_image_hypot_test(): Added (PIPE-4478)
2013-07-24 llundin
* cpl_image_hypot_*(): Explicit cast of hypot/f
* cpl_image_hypot(): Added (PIPE-4478)
2013-07-22 llundin
* MD5Final(): Fix the widely noticed sizeof bug in the "In case
it's sensitive" memset(). (PIPE-4656)
2013-07-11 llundin
* cpl_image_power(): Fix typo (PIPE-4578). cpl_image_power_test():
Strengthen test a bit
* cpl_image_power_test(): Test w. negative powers.
cpl_image_power(): Handle powers -1/2 and -1/3 with sqrt() and
cbrt() (PIPE-4578)
* cpl_test_imagelist_abs_macro(): Correct type of variable
"failures"
2013-07-04 llundin
* cpl_test_get_walltime(): Prefer clock_gettime() w. nanosecond
resolution over gettimeofday()
2013-06-26 llundin
* cpl_image_save(): Add doxygen regarding NAXIS=3
2013-06-20 llundin
* cpl_image_reject_value(): Add missing @ingroup
2013-06-19 llundin
* cpl_vector_sort(): revert rev. 1.167 due to performance
2013-05-31 llundin
* cpl_fits_set_mode(): fix doxygen typo
2013-05-28 llundin
* cpl_tools_get_median_*(): Improve doxygen
2013-05-27 llundin
* cpl_tools_get_0th_*(): Added as static. cpl_tools_get_median_*():
Use cpl_tools_get_0th_*() (PIPE-4541).
cpl_tools_quickselection_*(), cpl_tools_get_kth_(): Copy edit
doxygen
2013-05-21 rpalsa
* _cpl_propertylist_to_fitsfile(): Merge in changes from CPL 6
branch: Remove cast from keyword names as recent cfitsio uses the
proper prototype. This is not yet true for the comment argument
when the minimum required cfitsio version is used.
2013-05-13 rpalsa
* Call macro AC_CONFIG_MACRO_DIR() to properly configure the m4
macros directory.
* EXTRA_DIST: Added cpl.css
2013-05-10 llundin
* Reformat long lines
2013-05-08 cgarcia
* Avoid cpl_size overflow (PIPE-4404)
2013-04-29 llundin
* Undo previois edit (fails on (some) 32-bit systems)
2013-04-26 llundin
* Avoid cpl_func. Include cpl_array_impl.h first to verify
self-consistency
* cpl_array_set_column(): Fix const-correctness issue and update
doxygen
* Fix warnings caused by unneeded cast for cpl_strdup +
cpl_array_duplicate. Avoid cpl_func. Include cpl_column.h first
to verify self-consistency
* cpl_wcs_fitsstr2plist(): CFITSIO cast no longer needed
* cpl_init(): rm unneeded cast
* cpl_dfs_find_md5sum(): Update doxygen.
cpl_dfs_update_product_header_(): CFITSIO cast no longer needed
* cpl_mask_dump_window(): Fix overflow optimization warning.
cpl_mask_load_(): Comment on CFITSIO warning, explicit cast
* cpl_error_test_ensure(): rm unreachable code
* SIZEOF_SIZE_T replaces sizeof(cpl_size)
* cpl_imagelist_save_compression_bench(): Doxygen typos
* Use CPL_SIZE_FORMAT (bis)
* cpl_test_init_macro(): strrchr() replaces deprecated rindex().
cpl_test_array_abs_macro(), cpl_test_image_abs_macro(),
cpl_test_image_rel_macro(), cpl_test_imagelist_abs_macro(): On
failure do not use dump when messaging is off
2013-04-23 llundin
* Unit tests of cpl_table_fill_invalid_int() for PIPE-4505
* Verify success of calls to cpl_table_{set,fill}*()
* Verify success of cpl_table_save() calls
2013-04-16 llundin
* cpl_imagelist_save_compression_bench(): openmp reduction on tsum
* cpl_image_divide(): Avoid unnecessary mask creation (PIPE-4481,
DFS07441)
* cpl_image_divide(): Keep any bpm also in case no zero-division
occurs (PIPE-4481)
2013-04-12 llundin
* Comment regarding warning due to missing CFITSIO const modifiers
* cpl_image_save_(): Fix const-warning
2013-04-11 llundin
* cpl_table_find_column_, cpl_table_find_column_type(): rm unneeded
error code params
2013-04-10 llundin
* cpl_table_find_column_(), cpl_table_find_column_type(): Add
static and use to avoid code duplication
* cpl_table_find_column(), cpl_table_append_column(), strmatch():
The functions assume non-NULL input, so declare them with
CPL_ATTR_NONNULL
2013-04-09 llundin
* Update comments regarding CFITSIO-cast that discards const
modifiers
* cpl_table_{get,set}*(): Follow suggestion from Ralf to simplify
error message on NULL pointer input (PIPE-4473)
2013-04-08 llundin
* cpl_fit_imagelist_polynomial_window_test(): Test both a
high-order overdetermined system and a maximum-order
non-overdetermined system. Allow failure of the latter on 32-bit
systems
* cpl_table_get_column_name(): Fix compiler warning, Use
@deprecated instead of @note (see PIPE-4474)
* cpl_table_{get,set}*(): Add details to CPL error message
(PIPE-4473) (bis)
* cpl_table_{get,set}*(): Add details to CPL error message
(PIPE-4473)
* Fix memory error in previous test
2013-04-04 llundin
* Add tests
* cpl_test_image_rel_macro(): Improve message
* cpl_test_image_rel(): Added w. unit test (PIPE-4467)
* Update FSF address
2013-04-03 llundin
* cpl_image_get(), cpl_image_get_complex(): Inline BPM calls
(PIPE-4469), fix doxygen, support all pixel types in complex
function
2013-03-25 cgarcia
* Updated address of FSF
* Changed address of FSF
* Updated FSF address
* Updated the FSF address
2013-03-20 llundin
* Fix unused-var warning on absent FFTW
2013-03-14 llundin
* cpl_tools_get_mean_*(), cpl_tools_get_variancesum_*(),
cpl_tools_quickselection_*(), cpl_tools_sort_*(): Use size_t for
indexing (PIPE-4403)
2013-03-13 llundin
* CPL_ATTR_REALLOC(): rm __attribute__ malloc (PIPE-4422)
2013-03-01 llundin
* cpl_error_set_message(): Call cpl_error_set_message_one_macro()
when variadic macros are unavailable (PIPE-3851) (DFS11646)
* cpl_image_load_(): assert nx == naxes[0] for non-windowed read
* cpl_image_load_(): Use fits_read_img() when possible (PIPE-4406)
(bis: support also pnum > 0)
* cpl_image_load_(): Use fits_read_img() when possible (PIPE-4406)
2013-02-28 llundin
* cpl_tools_quickselection(): Use size_t instead of cpl_size
(thanks to JTaylor for patch) (PIPE-4403) (bis)
* cpl_tools_quickselection(): Use size_t instead of cpl_size
(thanks to JTaylor for patch) (PIPE-4403)
2013-02-26 cgarcia
* Use sqrt(DBL_EPSILON) as the criteria to check whether two chi_sq
are the same
* Make more robust comparison of the chi square to avoid precission
issues.
Fixes PIPE-3580.
2013-02-26 llundin
* cpl_image_complex_mult(), cpl_image_complex_mult_d(): Added
comments from JTaylor
2013-02-25 rpalsa
* Package and library version updated.
* Package version updated.
* Put back check for threadprivate pragma, which was lost when
updating to the new version from autoconf.
* Restore previous version of install-doxygen-generic. The
dependency is already in place if maintainer-mode is enabled,
which is required for building the documentation.
2013-02-22 llundin
* CPL_FILTER_LINEAR et al: improve doxygen
* cpl_image_save_(): Explicitly disallow compression that is not
supported by CFITSIO
2013-02-22 rpalsa
* Dependency added to target install-doxygen-generic
2013-02-21 cgarcia
* Removed an old documentation sentence
* Fixed doxygen documentation.
2013-02-21 llundin
* cpl_image_save_compression_test(): Test both flat and random
image
* cpl_image_save_compression_test(): Include Julians explanation
for the CFTISIO-compression failures
2013-02-21 rpalsa
* More 6.3 features added.
* Updated for 6.3
2013-02-21 llundin
* cpl_image_save_compression_test(): Disable tests after failure
and NULL-image
2013-02-20 llundin
* cpl_image_save_(): CPL_INTERNAL
2013-02-20 rpalsa
* Use doxygen targets for creating API docs.
* Retire html.am and replace it with doxygen.am to avoid name clash
warnings. API docs are now created by 'make doxygen'.
* Updated.
* Replace call to CHECK_PURIFY by ESO_PROG_PURIFY which follows the
naming scheme for autotools macros.
* Synchronized with libcext. Modernized version, not screwing up
the configure output.
* Replace conditional PURIFY with USE_PURIFY. Reserve the name
PURIFY for use as environment variable.
* Synchronize html target rules with libcext.
* CPL_OPENMP(): Take out symbol _AC_CC, which is not supported by
our prehistoric test machine installations.
2013-02-20 llundin
* cpl_test_memory_is_empty(): Fix invalid definition and deprecate
(PIPE-4382 opened by ASzostak)
2013-02-19 rpalsa
* Package version updated.
* Replaced with latest version from autoconf 1.13, to avoid
autoconf warnings about missing AC_LANG_SOURCE calls.
* CPL_CHECK_CFITSIO(): Simplified, hopefully.
* Remove unused symbols "all_includes" and "all_ldflags".
In calls to AC_COMPILE_IFELSE, AC_LINK_IFELSE and AC_RUN_IFELSE:
Encapsulate source code in AC_LANG_PROGRAM or AC_LANG_SOURCE, and
make sure it is properly quoted.
* Remove an empty line.
* Replace deprecated symbol INCLUDES with AM_CPPFLAGS. Do not use
CPPFLAGS or LDFLAGS since they are reserved for the user, but use
AM_CPPFLAGS and AM_LDFLAGS instead.
2013-02-15 rpalsa
* Package version updated.
* Define macros CPL_INTERNAL and CPL_EXPORT.
* Replace CX_GNUC_INTERNAL with CPL_INTERNAL
2013-02-14 llundin
* cpl_image_save(): Make sure to create HDU with NAXIS2, disallow
CPL_IO_APPEND
2013-02-13 rpalsa
* Package version updated.
2013-02-12 llundin
* cpl_image_save_(): Added. cpl_image_save(): Support CPL_IO_APPEND
(via cpl_image_save_())
2013-02-12 rpalsa
* cpl_propertylist_save(): Use simplified check of IO flags.
2013-02-12 llundin
* CPL_IO_MAX: Redefine to be useful.
cpl_{image,imagelist,mask}_save(): Use CPL_IO_MAX.
cpl_vector_save(): Simplify mode check
2013-02-11 rpalsa
* cpl_propertylist_save(): Apply patch for redefinition of
CPL_IO_MAX.
2013-02-11 llundin
* cpl_test_eq_error() w. CPL_ERROR_NONE replaces cpl_test_zero().
Use cpl_test_fits() + cpl_fits_count_extensions()
* cpl_mask_save(): Update doxygen on compression
* cpl_imagelist_save(): Disallow CPL_IO_APPEND w. compression
(using fits_is_compressed_image())
* cpl_mask_save(): DFS11066 add possibility to compress fits data
(Working Draft) (PIPE-3616)
* cpl_{vector,mask}_save(): Disallow compression
* cpl_imagelist_save(): Clean-up error handling for CPL_IO_APPEND
mode
2013-02-11 rpalsa
* cpl_frameset_get_position(), cpl_frameset_get_position_const():
Fixed index of by one when doing the validity checkin the given
index.
* Added test for cpl_parameter_duplicate().
* cpl_parameter_duplicate(): Function added.
2013-02-11 llundin
* cpl_imagelist_save_compression_test(): CPL_IO_APPEND tests
* cpl_imagelist_save(): Move CPL_IO_COMPRESSION_LOSSY code to
proper place
* cpl_imagelist_save_compression_test(): Added. Header + ifdef
clean-up
* rm unneeded remove(). header clean-up. remove() after testing.
static
2013-02-08 llundin
* cpl_imagelist_save(): DFS11066 add possibility to compress fits
data (Working Draft) (PIPE-3616)
* cpl_image_save(): Enable + test lossy compression w. ifdef
CPL_IO_COMPRESSION_LOSSY
* cpl_image_save(): DFS11066 add possibility to compress fits data
(Working Draft) (PIPE-3616)
2013-02-08 rpalsa
* cpl_msg_stop(): Close message streams only if they differ from
the system's standard streams.
2013-02-05 llundin
* cpl_vector_sum(): Added w. unit-tests (PIPE-4353)
2013-02-04 llundin
* cpl_vector_sum(): Added w. unit-tests (PIPE-4353)
2013-02-01 rpalsa
* CPL_PATH_JAVA(): Rename variable cpl_notfound to
cpl_java_notfound, to fix problem with incomplete error messages.
2013-01-30 rpalsa
* Apply patch to only handle messages from the master thread.
Workaround to avoid crashing Gasgano.
* Add call to AC_SYS_LARGEFILE
* CPL_CHECK_CFITSIO(): Remove large file support related
preprocessor flags. Rely on AC_SYS_LARGEFILE instead.
2013-01-29 rpalsa
* Ignore file test-driver
* Ignore default build directory BUILD. Subdirectories build,
debug, etc. are note ignored any longer.
2013-01-28 cgarcia
* Added threadid api
2013-01-25 rpalsa
* Replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS.
* Updated to the latest version.
* More tests of 64bit integer columns added.
2013-01-24 cgarcia
* Removed comma at end of enum to avoid compiler warning
2013-01-24 rpalsa
* Frameset iterators: Temporarily disabled for 6.3a1 release.
2013-01-23 rpalsa
* cpl_frameset_get_first(),cpl_frameset_get_first_const(),cpl_frameset_get_next(),cpl_frameset_get_next_const():
Deprecation temporarily reverted.
Frameset iterators: Temporarily disabled for 6.3a1 release.
* First few tests of 64bit integer columns added.
* Add support for 64bit integer columns.
* Package version updated.
2013-01-21 llundin
* cpl_imagelist_cast(): Added w. unit tests (PIPE-3830) (bis:
forgot one const modifier)
2013-01-17 rpalsa
* Typo fixed in doxygen documentation.
2013-01-17 llundin
* cpl_imagelist_cast(): Added w. unit tests (PIPE-3830)
2013-01-16 llundin
* iqefit(): Fix copy-paste error (PIPE-4335) w. unit test
2013-01-15 rpalsa
* cpl_frameset_iterator_advance(): Set iterator to the end of the
frame set if it would go beyonfd the frame set boundaries.
cpl_frameset_iterator_get(), cpl_frameset_iterator_get_const():
Return NULL if the iterator points to the end of the frame set.
2013-01-14 rpalsa
* cpl_frameset_iterator_get_position(),
cpl_frameset_iterator_get_position_const(): Removed and added
again as
cpl_frameset_get_position() and
cpl_frameset_get_position_const(), taking a frame set instead of
an iterator.
2013-01-10 rpalsa
* Add function cpl_frameset_join() and cpl_frameset_sort().
The functions cpl_frameset_get_first(),
cpl_frameset_get_first_const(), cpl_frameset_get_next(),
cpl_frameset_get_next_const() are deprecated and scheduled for
removal.
Add iterator support for frame sets.
* Add type definition for frame comparison functions.
* Style sheet converted to a addon version for use with
HTML_EXTRA_STYLESHEET.
Use style sheet when generating the html documentation.
Redefine the @error directive to use the same formatting as the
standard doxygen exceptions section.
2013-01-07 llundin
* cpl_wcs_test_propertylist(): Added
* cpl_wcs_new_from_propertylist(): Improve doxygen
* Allow for test of NAXIS == 0
* cpl_wcs_new_from_propertylist(): Relax handling of NAXIS == 0
back to previous
2012-12-21 rpalsa
* Put back the required, new versions of the third-party libraries.
2012-12-20 rpalsa
* Temporary revert to previous 3rd party libraries until the test
environment has been upgraded.
2012-12-19 rpalsa
* Package and library version updated.
Required third-party library versions updated.
2012-12-18 llundin
* cpl_wcs_new_from_propertylist(): Handle NAXIS == 0, avoid
repeated calls to cpl_sprintf()
2012-12-17 cgarcia
* Checks whether the OpenMP implementation supports #pragma omp
threadprivate directive.
2012-12-17 llundin
* cpl_image_filter_test(): Raise tol on new cross-tesing, rv
previous
* cpl_image_filter_test(): Raise tol on new cross-tesing
2012-12-14 llundin
* cpl_wcs_new_from_propertylist(): Use string literal for format to
avoid strncpy(), Use cpl_sprintf() to avoid snprintf(), reduce
var scope
* Version 6.3 started
* CPL_FILTER_LINEAR et al: improve doxygen
2012-12-14 cgarcia
* Add an API to deactivate/activate the thread id display in the
messages.
By default the terminal messages have the thread id display off.
2012-12-14 llundin
* cpl_image_filter_test(): More cross-testing
* cpl_image_filter_test(): Prep for comparison of
cpl_image_filter_mask() / cpl_image_filter(). ce
2012-12-13 cgarcia
* Fixed documentation of cpl_imagelist_set: a cpl_image can be
deallocated by the client if cpl_imagelist_unset is called first.
Fixes DFS12445.
2012-12-13 rpalsa
* cpl_frameset_get_frame_const(): Add CPL_ERROR_ILLEGAL_INPUT to
the table of possible error states.
* cpl_parameter_new_enum(), cpl_parameter_new_range(),
cpl_parameter_new_value(): add va_end() calls to error branches.
* Add test to check parameter lookup in case of invalid parameter
tags.
2012-12-13 llundin
* Improve doxygen of filter modes
* cpl_image_filter_mask(): Doxygen ce
2012-12-13 rpalsa
* cpl_parameterlist_find_tag_const(): Fix potential NULL pointer
exception
2012-12-13 llundin
* cpl_image_filter(): Support Scaling filters
CPL_FILTER_LINEAR_SCALE, CPL_FILTER_MORPHO_SCALE (DFS12363)
* cpl_image_flip_{double,float,int}(): Added static.
cpl_image_turn(), cpl_image_flip(): Simplify using
cpl_image_flip_*() and improve documentation
2012-12-12 llundin
* cpl_vector_fill_alpha_kernel(): Improve doxumentation, avoid
implicit cast. cpl_vector_fill_kernel_profile(): Avoid implicit
cast, division by zero on length-1 profile. ce
* cpl_vector_fill_alpha_kernel(): Multiply with sinc(x) (DFS12443)
2012-12-10 llundin
* cpl_io_fits_open_diskfile(): Fix comment typo
* cpl_image_reject_value(): Draft implementation
2012-12-07 llundin
* cpl_image_reject_value(): Stub (DFS12257)
2012-12-05 llundin
* cpl_imagelist_collapse_median_create(): Use temporary vairable
imself and cast explicitly
2012-12-04 llundin
* cpl_image_filter_mask(): rm (as yet) unused code (found by
aszostak using coverity)
* cpl_mask_filter(): Disable as yet unused code for CPL_BORDER_CROP
(found by aszostak using coverity)
* Use EVP_DigestUpdate() etc from OpenSSL when available
* CPL_CHECK_FFTW(): Fix copy-paste error in comment
2012-11-28 llundin
* cpl_image_filter_mask(), cpl_filter_median_slow_*(): Support
CPL_FILTER_MEDIAN + CPL_BORDER_CROP w. bad pixels (DFS12426)
(bis)
* cpl_image_filter_mask(), cpl_filter_median_slow_*(): Support
CPL_FILTER_MEDIAN + CPL_BORDER_CROP w. bad pixels (DFS12426)
2012-11-19 llundin
* cpl_vector_fill_polynomial_fit_residual(): Improve doxygen (on
request from Peter Weilbacher)
2012-11-16 llundin
* Use CPL_SIZE_FORMAT
* Use CPL_SIZE_FORMAT
2012-11-15 llundin
* cpl_xmemory_init_alloc(), cpl_xmemory_resize(): Use %zu format
for size_t
* cpl_xmemory_malloc_count(), cpl_xmemory_calloc_count(),
cpl_xmemory_realloc_count(), cpl_xmemory_realloc(),
cpl_xmemory_status(): Use %zu format for size_t
* sizeof(size_t) replaces sizeof(int)
* cpl_table_dump_structure(): Fix llvm format %d warnings
2012-11-14 llundin
* cpl_ppm_match_points(): Use CPL_PPM_DEBUG for conditional
compilation of debug statements, avoid unused assignments
* Fix llvm format %d warnings
2012-11-09 rpalsa
* Package and library version updated.
* Added fixes for cpl_propertylist module.
2012-11-09 llundin
* cpl_image_multiply(): SSE2/3
* Update for 6.2
2012-11-08 llundin
* CPL_FILTER_LINEAR, CPL_FILTER_MORPHO: Improve the doxygen
regarding normalisation (DFS12360)
2012-11-07 llundin
* cpl_image_get_fwhm(): Fix bug on smoothing, add unit tests
(DFS12346)
2012-11-05 rpalsa
* Obsolete macro call AM_C_PROTOTYPES removed.
* struc _cpl_recipe_: Doxygen link fixed in documentation
2012-10-31 llundin
* cpl_test_init_macro(): Support log file on source file with
multiple-character extension and drop any directory from log
filename - using slightly modified patch and unit test code from
aszostak
2012-10-30 llundin
* cpl_test_init_macro(): Roll back to 1.116 due to failure of make
distcheck for visirp
2012-10-30 rpalsa
* CPL_SET_PATH(): Fixed incomplete expansion of configdir.
2012-10-29 llundin
* cpl_flux_get_noise_window(): Document rand() usage (DFS12296)
* cpl_test_init_macro(): Handle log file from source without
extension in a dir with a dot
* cpl_msg_set_log_level(): cpl_error_set_message_() replaces
cpl_error_set_() on failed fopen()
* cpl_test_init_macro(): Support log file on source file with
multiple-character extension
2012-10-26 rpalsa
* Remove some more macros that doxygen cannot handle by defining
them as empty.
2012-10-12 rpalsa
* Comments form the team incorporated
2012-10-10 llundin
* cpl_io_fits_reuse_fptr(): Extend critical section, since it is
cheap and just to be sure
2012-10-09 rpalsa
* Mostly rewritten.
2012-10-08 llundin
* cpl_image_multiply(): Use sse[23] also on double complex w. unit
tests
2012-10-01 llundin
* CPL_MATH_STD_MAD: Added w. doxygen
2012-09-13 llundin
* cpl_image_multiply(): Use new, static
cpl_image_multiply_fcomplex_sse_() (DFS11748)
2012-09-07 llundin
* main(): Use ifdef for constant initialization
* Initialize and comment spurious counter
* cpl_test_abs() replaces cpl_test_eq() for floating point tests
* cpl_vector_load(): Comment about unreachable code
* cpl_tools_get_cputime(): rm (causes clang warning).
cpl_msg_progress(): cpl_test_get_cputime() replaces
cpl_tools_get_cputime()
* cpl_matrix_dump(): Fix format width error (DFS12112)
2012-09-05 llundin
* rm unreachable break statement (as reported by clang after
successful compilation)
* perl -pli -e 's/(\*t\wp) ([\+\-\*\/])= (\*fc[df]p)\b/$1 = $1 $2
$3/ || s/\*(t\wp)\+\+ ([\+\-\*\/])=
\*(fc[df]p)\+\+/$1\[to_length\] = $1\[to_length\] $2
$3\[to_length\]/ and s#\s*$# /* Support clang */#'
cplcore/cpl_column.c (DFS12106)
* rm unreachable break statement
* *cpl_column_unwrap(): rm unused call to cpl_column_get_type(),
reduce variable declaration scope
2012-08-29 llundin
* CPL_WCS_REGEXP: Added (DFS12095)
2012-08-27 llundin
* Add cpl_vector_get_median unit test for 4 elements case: Rewrite
using cpl_test_rel()
* Fix doxygen intro (DFS12092)
* cpl_test_get_failed(): Improve doxygen code example
2012-08-23 cgarcia
* Fixed documentation
* Fixed DFS12809 in the compuation of median for even number of
elements.
* Add cpl_vector_get_median unit test for 4 elements case.
2012-08-23 llundin
* cpl_test_get_tested(), cpl_test_get_failed(): Added w. uni tests
2012-08-17 rpalsa
* cpl_test_property_dump(): Support for CPL_TYPE_LONG_LONG
properties added.
* _cpl_propertylist_insert(): Add missing support for
CPL_TYPE_LONG_LONG properties.
* cpl_dfs_paf_dump(): support for CPL_TYPE_LONG_LONG properties
added.
* System wide installation prefix changed to standard location.
2012-08-07 llundin
* cpl_fits_count_extensions(): Use proper CPL error codes
2012-07-31 llundin
* cpl_image_get_mad_window(): Improve doxygen on MAD as stdev
estimator
* cpl_polynomial_fit(): Fix implicit cast warning
2012-07-30 llundin
* CPL_STATS_MAD, cpl_stats_get_mad(), cpl_image_get_mad(),
cpl_image_get_mad_window(): Added w. unit tests
* cpl_stats_get_median_dev(), cpl_image_get_median_dev_window(),
cpl_image_get_median_dev() and CPL_STATS_MEDIAN_DEV: Improve
doxygen (DFS12008)
* cpl_fits_set_mode(): CPL_FITS_RESTART_CACHING + external access
documented
* cpl_io_fits_close_file(): Simplify logic
* cpl_dfs_update_product_header_(), cpl_is_fits(): Guard
fits_movabs_hdu() with CPL_IO_FITS_REWIND
* cpl_io_fits_open_diskfile(): fits_movabs_hdu() guarded by
CPL_IO_FITS_REWIND. cpl_io_fits_close_file(): Drop flushing of
r/o, flush w/o clearbuf
* Use cpl_fits_set_mode(CPL_FITS_RESTART_CACHING) on dirty CPL FITS
cache
2012-06-20 llundin
* cpl_polynomial_fit(): if + cpl_error_set_message_() replaces
cpl_ensure_code() (fix variable in error msg)
* cpl_polynomial_fit(): if + cpl_error_set_message_() replaces
cpl_ensure_code() (except for NULL-check)
* cpl_polynomial_fit(): if + cpl_error_set_message_() replaces
cpl_ensure_code() (mostly)
2012-06-18 llundin
* cpl_image_power_create(): cpl_image_power replaces
cpl_image_exponent in doxygen (DFS11887)
2012-06-15 llundin
* cpl_fit_image_gaussian(): Reduce scopy, improve types of
sigma-1st-guess code
* cpl_fit_image_gaussian(): Check bpm of error map, if present
(DFS11883)
2012-06-13 llundin
* cpl_imagelist_collapse_minmax_create(): Support bad pixel maps
(DFS11856) (bis)
* cpl_fit_image_gaussian_test_local(): Always active
* @addtogroup cpl_image
* bigauss(): Simplify error cases
* cpl_fit_lvmq_(): Bail out on NaN from get_chisq() (DFS11865)
* bigauss(), bigauss_derivative(): Return 0 on error, use errno
(DFS11865). cpl_fit_image_gaussian(): Avoid image duplication,
const sizes, rm dead code
2012-06-12 llundin
* cpl_fit_image_gaussian_test_local(): Added
* cpl_imagelist_collapse_minmax_create(): Support bad pixel maps
(DFS11856)
* cpl_image_multiply_fcomplex_sse_(): Disable per default
(DFS11748) (bis)
* cpl_imagelist_collapse_median_create_tests(): Fix incorrect error
code check
2012-06-11 llundin
* cpl_imagelist_collapse_median_create(): Take into account any
input BPM
* cpl_image_multiply_fcomplex_sse_(): Disable per default
(DFS11748)
* Avoid NULL-derefence on failed test (found by cppcheck)
2012-06-04 llundin
* cpl_image_multiply(): Use new version of
cpl_image_multiply_fcomplex_sse_() (DFS11748)
2012-05-29 llundin
* cpl_table_and_selected(): Fix clang warning
(-Wparentheses-equality)
2012-05-25 llundin
* default_log_message_handler(): Use parameter ptr to avoid
compiler warning
2012-05-24 llundin
* cpl_table_test_rest(): Initialize prior to _power tests
* cpl_test_abs_complex_macro(): Fix wrong imaginary part in message
(DFS11796)
2012-05-23 llundin
* cpl_table_test_20: Move test code here from
cpl_table_test_main(). Add checks on null-flag to all relevant,
existing tests
* cpl_table_test_21(), cpl_table_test_22(): Add checks on null-flag
to all relevant, existing tests
* Add checks on CPL error (none) and null-flag to existing tests
* cpl_table_test_21(), cpl_table_test_22(): Move test code here
from cpl_table_test_main()
* cpl_table_test_main(), cpl_table_test_rest(): Split tests. Allow
compilation (but not testing...) with complex functions undefined
2012-05-22 llundin
* rm unused header files. Create test-files within name-space.
Always run large-file test code (default on small size). rm some
dead code, unused vars. Revive some dead code. cpl_test_fits() on
created files. Move some tests to separate functions. Avoid
//-comments. Activate cpl_table_dump on debug+info
2012-05-21 llundin
* cpl_fit_image_gaussian_tests(): Call check_gauss_success() only
on success or with info/debug-level
2012-05-21 rpalsa
* Package and library version updated.
* API documentation issue fixed.
2012-05-21 llundin
* Work around doxygen attribute-bug, rm unused CPL-includes, mv CPL
class defines
* Doxygen group cpl_image replaces obsolete cpl_image_filter
* CPL_POLYNOMIAL_CMP: mv to define section (no doxygen)
* Improve doxygen title
2012-05-11 llundin
* setCplMessaging(): Propagate error (DFS11603) (Use
cpl_error_set_where(), rm cpl_error_impl.h)
* Raise tol on C2C transform
* cpl_fft_image(): Update doxygen (cpl_fft_imagelist())
* cpl_fft_imagelist_test_image(): Added
* cpl_io_fits_end(): const error, stringify
* cpl_fits_set_mode(): CPL_FITS_RESTART_CACHING does not reallocate
the fitslist
* cpl_dfs_update_product_header(): Use cpl_io_fits_close_tid(), not
cpl_io_fits_close()
* cpl_io_fits_unset_tid(): Replaces cpl_io_fits_close_one(), can
close for all threads
* cpl_fits_mode_test(): Limit testing when CPL_IO_FITS_MAX_OPEN ==
0 (bis)
* cpl_fits_mode_test(): Limit testing when CPL_IO_FITS_MAX_OPEN ==
0
* cpl_fist_set_mode(): Support CPL_FITS_RESTART_CACHING |
CPL_FITS_ONE
* cpl_io_fits_close_one(): Added. cpl_io_fits_free(): Use
cpl_error_set_fits() on error. cpl_io_fits_close(): Doxygen
* cpl_io_fits_unset_one(): renamed from cpl_io_fits_unset_oldest(),
simplify
* setCplMessaging(): Propagate error (DFS11603) (include
cpl_error_impl.h)
2012-05-10 llundin
* Header clean-up. cpl_fits_mode_test(): Added
* cpl_fits_set_mode(): Disallow zero input
* cpl_fits_set_mode(): Note on concurrency
* cpl_io_fits_init(), cpl_io_fits_end(): OpenMP critical replaces
single. cpl_nfitsfiles: Use atomic directive (DFS11744)
* cpl_fft_image_(): is_last replaces iexec/nexec
2012-05-10 rpalsa
* Package and library version updated.
2012-05-10 llundin
* rm math.h: No math done in this wrapper module
* cpl_fft_image_(): Set FFTW rigor level here to avoid code
duplication and allow non-FFTW-build, declare w. non-NULL
attribute. cpl_fft_aligned(): Build only w. FFTW.
cpl_fft_image_{float,double}(): Declare w. non-NULL attribute
2012-05-09 llundin
* Raise tol for in-place C2C
* cpl_fft_image_(): Avoid memcpy() on aligned image buffer
(backward C2C, all modes done)
* cpl_fft_image_(): Avoid memcpy() on aligned image buffer (forward
C2C only)
* cpl_fft_image_(): Avoid memcpy() on aligned image buffer (R2C +
C2R only)
* DFS11736, 11737
* cpl_plot_columns(), cpl_plot_vectors(): NULL-options not
supported (DFS11737)
* cpl_fft_image_(): Always use in+out temp-buffers
* Raise tol on in-place, CPL_FFT_FIND_MEASURE replaces
CPL_FFT_FIND_PATIENT
* cpl_fft_image_{float,double}(): rv fix flops in r.1.14
* CPL_TYPE_COMPLEX: Fix doxygen bug (DFS11736)
* cpl_fft_image{,list}(): Call cpl_fft_image_ w. NULL plan for no
plan-reuse, improve comments
* cpl_fft_image_{float,double}(): rm dead assignment
* CPL_FFT_FIND_MEASURE, CPL_FFT_FIND_PATIENT,
CPL_FFT_FIND_EXHAUSTIVE: Added w. unit test
2012-05-08 llundin
* cpl_fft_image_{float,double}(): Try FFTW_WISDOM_ONLY prior to
FFTW_ESTIMATE
* cpl_io_fits_find_fptr(): Pass stat struct or NULL instead of
boolean + sometimes undefined stat members (scan-build report)
* cpl_fft_image_test_one(): Benchmarks, messaging, tols, openmp
* cpl_fft_image_{float,double}(): Fix flops, doxygen
* Use cpl_tools_add_flops()
* cpl_fft_image_test_one(): Raise tol for in-place forward fft -
float
2012-05-07 llundin
* cpl_fft_imagelist(): Support (sub-optimally) a mix of shared and
non-shared planes
* cpl_fft_image_(), cpl_fft_imagelist(): Reuse plan + buffer
* cpl_fft_image_{float,double}(): pplan, pbuf
* cpl_fft_image_test_one(): Call with 1 and several planes
* cpl_fft_image_test_one(): Test via cpl_test_imagelist_abs()
2012-05-04 llundin
* cpl_fft_image_test_one(): cpl_fft_imagelist() replaces
cpl_fft_image()
* Raise tol for in-place forward fft
2012-05-03 llundin
* cpl_image_move(): Support complex pixels (DFS11723)
* cpl_image_power(): cbrt() cannot fail (DFS11722)
* Check for cbrt() (DFS11722)
* cpl_image_power(): Handle special case of 1/3 with cbrt()
(DFS11722)
* cpl_fft_image(): Doxument in-place support
* New tests: 1D + in-place
2012-05-02 llundin
* Several news for 6.1
* cpl_error_set_message_one(): replaces cpl_error_set_one_message()
* cpl_io_fits_test_many(): Test opening of too many files
* cpl_io_fits_init(): Fix debug-message, void declaration.
cpl_io_fits_find_fptr(): Fix long lines, debug-messages
* cpl_fits_set_mode(), cpl_fits_get_mode(): Added. cpl_init():
cpl_fits_set_mode() replaces cpl_io_fits*(). cpl_io_fits_init():
Redeclare to boolean
* cpl_io_fits_free(): Fix incorrect nonnull __attribute__
* Support build w. CPL_IO_FITS_MAX_OPEN = 0
* CPL_IO_FITS_MAX_OPEN: Limit to NMAXFILES, set to zero in absence
of stat(). cpl_io_fits_reuse_fptr(): Added.
cpl_io_fits_unset_fptr(): Always unset. cpl_io_fits_find_fptr():
Caller calls stat(). cpl_io_fits_open_diskfile(): Avoid unset +
set in case of read-reuse of writer. cpl_maxfitsfiles: rm
2012-04-30 llundin
* cpl_io_fits_unset_fptr(): Guard against IO-mode off, notid
replaces mtid. cpl_io_fits_find_fptr(): tid, notid replaces mtid,
no IO-mode guard
* cpl_io_fits_unset_fptr(): Match writer read-reuse without unset
* cpl_fitsfile_t.writing: Protect against repeated reader reuse of
writer
* cpl_io_fits_create_file(): Comment ce
* cpl_nfitsfiles: Count open files, avoid race-condition
* cpl_io_fits_set(): rm mtid parameter. cpl_io_fits_find_fptr():
Use cpl_nfitsfiles only for msgs. cpl_fitsfile_t.tid: rm negative
values
* #include <assert.h>
2012-04-27 llundin
* cpl_io_fits_unset_oldest(), cpl_io_fits_free(): Added with unit
test
* cx_list replaces C-array
2012-04-26 llundin
* CPL_IO_FITS_MAX_OPEN: Limit default to NMAXFILES of CFITSIO
* Debugging per default disabled
* Disable doxygen. cpl_io_fits_close_file(): rm optional ffchdu()
call
* Work around doxygen limitation (DFS10280)
* cpl_imagelist_empty(): Fix doxygen typo
2012-04-18 rpalsa
* Quick fix for system services getting disabled by -std=c99. To be
reviewed!
* cpl_table_dump(): type corrected in declaration of row,
field_size and label_len.
* cpl_array_dump(): type corrected in declaration of field_size and
label_len.
2012-04-05 llundin
* cpl_error_set_wcs(), cpl_error_set_regex(), cpl_error_set_fits():
Use doxygen @internal (DFS11648)
* cpl_error_set_message(): Improve doxygen (DFS11646). Use
@hideinitializer for several macros.
cpl_error_set_message_one_macro(): Added (DFS11646).
cpl_error_set_message_macro_(): nonnull attribute
* CPL_IO_MODE: Update doxygen, comments
* Reuse READWRITE for reading from r. 1.47.
cpl_io_fits_open_diskfile(): Break long lines, improve comments.
cpl_io_fits_find_fptr(): Break long lines.
cpl_io_fits_unset_fptr(): Improve comments, doxygen
* cpl_mask_save(): Improve comment
* Need to close FITS file due to non CPL access (DFS11019)
* cpl_io_fits_close(): Replaces cpl_io_fits_close_all()
* cpl_dfs_update_product_header_(), cpl_is_fits(): Call
fits_movabs_hdu(1) (DFS11019)
* cpl_vector_load(): Improve doxygen, fits_movabs_hdu(1)
* _load/_save: Improve comments
2012-04-04 llundin
* cpl_imagelist_unwrap(): Export instead of static
* cpl_apertures_extract_mask(): Added (DFS11638).
cpl_apertures_extract_sigma(): Wrap around
cpl_apertures_extract_mask()
* cpl_apertures_new_from_image(): Handle complex input (DFS11639)
* cpl_stats_new_from_image_window(): Use size_t to fix performance
problem (DFS11249), rm redundant check on input window
* rv previous commit
* Draft: Reuse READWRITE for reading, breaks cpl_dfs-test due to
wrong md5sum
* Unique content in all HDUs
* cpl_io_fits_unset_fptr(): Match r/o to be unset for any thread
id. cpl_io_fits_find_fptr(): Boolean param for matching tid.
Various doxygen/comments improvements
2012-04-03 llundin
* rv previous change to cpl_io_fits_close_file(), improve its
comments
* cpl_init(): Update doxygen for CPL_IO_MODE (DFS11019)
* const correctness, CPL_ATTR_NONNULL, comments
* cpl_io_fits_find_fptr(), cpl_io_fits_unset_fptr(): Rewrite to
simplify, support mix of read/write
* "ESO QC MYCHAR" replaces "QC MYCHAR", cpl_io_fits_close_all()
prior to remove()
* reduce scope of i
2012-04-02 llundin
* Test with multiple files
* Activate cpl_io_fits-test (DFS11019)
* cpl_io_fits_find_fptr(): writer boolean.
cpl_io_fits_unset_fptr(): replaces cpl_io_fits_remove_fptr()
* Improved debugging
* cpl_io_fits_close_file(): rv dropped flush of read-only files in
previous commit
2012-03-30 llundin
* Support create-append-read
* Add re-creation test, verify, also FITS header
* Improved debugging messages
* cpl_io_fits_remove_fptr(): Define tid also w/o OpenMP
2012-03-29 llundin
* Add multi-threaded read test
* cpl_io_fits_close_all(): Used by cpl_dfs_update_product_header(),
rm non-static and use single directive
2012-03-28 llundin
* rv to r1.32 w. single array, use thead-id + written boolean, some
threaded testing
* Clean-up of previous edit. Needs to support non-concurrent
multi-threaded writing
* include config.h
* setCplMessaging(): Propagate error (DFS11603)
* cpl_column_set_depth(), cpl_column_insert_segment(): return
cpl_error_set_where(fid) replaces return cpl_error_set_code()
(DFS11603)
* cpl_flux_get_noise_window(), cpl_plot_*(): Fix inccorect CPL
error propagation (DFS11603)
2012-03-27 llundin
* Use both a thread-private and a thread-shared state for each open
file. Draft: No multi-threaded testing yet
2012-03-26 llundin
* typo in comment
2012-03-22 llundin
* cpl_fft_image_test_one(): Raise tol for R2C test (report from Ole
Streicher)
2012-03-21 llundin
* Raise tol for cpl_image_fft() based on report from Ole Streicher
2012-03-20 rpalsa
* Fix documentation for type code CPL_TYPE_LONG_LONG.
2012-03-19 llundin
* @internal added to new static functions
* cpl_init(): Document CPL_IO_MODE
* cpl_fft_image_test_one(): Raise tol for R2C test (bis)
2012-03-19 rpalsa
* Removed "Alpha Release" from section title.
* cpl_wcs_platesol(): Documentation updated. Added description of
the expected layout of the input maxtrices.
2012-03-19 llundin
* cpl_image_dump_window(): rv size_t due to format string
2012-03-16 llundin
* cpl_image_{add,subtract,multiply,divide}_scalar(): Explicit cast
outside of loop
* Compute loop iterations explicitly to help vectorization
* Index with size_t (DFS11249)
* Index with size_t (DFS11249), reduce var-scope
* cpl_image_wrap_(): Internal, non-static.
cpl_image_labelise_mask_create(): malloc() replaces calloc(),
avoid call on no data
* Index with size_t (DFS11249)
* cpl_fft_image_test_one(): Raise tol for R2C test
* cpl_image_power(): Apply handling of sqrt() correctly (DFS3222)
* cpl_image_multiply_fcomplex_sse3_(): Fix missing return, size_t
replaces int, explicit cast, attribute non-null, doxygen
2012-03-15 llundin
* cpl_mask_threshold_image(): Support bpm in image input (DFS11530)
* cpl_apertures_extract_sigma(): Improve doxygen
2012-03-14 rpalsa
* Package version updated.
2012-03-13 llundin
* cpl_error_set_() replaces cpl_error_set()
2012-03-13 rpalsa
* cpl_propertylist_get_long(), cpl_propertylist_get_long_long(),
cpl_propertylist_get_double(),
cpl_propertylist_get_double_complex(): Documentation updated.
2012-03-13 llundin
* cpl_image_fill_re_im(): Test in-place
* cpl_image{,list}_{add,subtract,multiply,divide}{,_create}():
Support a complex and a non-complex operand (DFS11524)
* cpl_test_image_abs_macro(): Support complex + non-complex image
* cpl_image_fill_re_im(), cpl_image_fill_abs_arg(): Replace
cpl_image_fill_real(), cpl_image_fill_imag(),
cpl_image_fill_mod(), cpl_image_fill_phase()
2012-03-12 llundin
* cpl_image_fill_real(),cpl_image_fill_imag(),cpl_image_fill_mod(),cpl_image_fill_phase():
Added. cpl_image_conjugate(): Optimize (DFS11249)
* cpl_image_conjugate(): Update doxygen
* cpl_image_conjugate(): Added w. unit tests (DFS10983)
* cpl_fft_image_test(): Only w. FFTW installed (DFS11516)
* rv changes for DFS3510
* Clean-up of header includes
* rv changes for DFS3510
* (cpl_fft_image(): Improve check on mode
* cpl_fft_image_test_one(): Only w. FFTW installed (DFS11516)
* cpl_fft_image_test_one(): Raise tol for C2C / R2C comparison
(3rd)
* cpl_fft_image_test_one(): Raise tol for C2C / R2C comparison
(bis)
* cpl_fft_image_test_one(): Raise tol for C2C / R2C comparison
* cpl_fft_image(): Do not use FFTW_PRESERVE_INPUT for in-place C2C
* cpl_fft_image(): Fix direction bug in C2C, avoid temporary buffer
in backward C2C
* cpl_fft_image(), cpl_fft_imagelist(): Update doxygen (support
half sized r2c/c2r images)
* cpl_fft_image_test_one(): Add tests on inverse transform
* cpl_fft_image(): Support CPL_FFT_NOSCALE
* cpl_fft_image(): Fix scaling for half-sized images
* cpl_test_image_abs_macro(): Support complex images
2012-03-09 llundin
* cpl_fft_image_test_one(): More tests
* cpl_fft_image(): Fix size for backward half-size
* cpl_fft_image(): Experimental half-size r2c/c2r w. unit tests
2012-03-09 rpalsa
* cpl_error cpl_image_multiply_fcomplex_sse3_(): Typo fixed in
comment.
* Package version updated.
2012-03-09 llundin
* Changes to previous patch: cpl_image_multiply_fcomplex_sse3_() at
the top replaces _cpl_image_multiply_fcomplex_sse3(), /* */
comment replaces // comment
* cpl_image_multiply(): Apply patch from DFS11500
2012-03-09 rpalsa
* Updated to the latest version
* Restore CFLAGS so that 32bit libraries can be build on 64bit
systems.
Remove cfitsio link dependency -lz, this means that a cfitsio
build from the original tar-file is required.
Checks for cfitsio, wcs and fftw now check always for the static
library version. This solves LD_LIBRARY_PATH issues, until a
better solution is found.
2012-03-09 llundin
* cpl_image_dump_window(): Dump in order of storage. Improve
doxygen
* cpl_image_{subtract,multiply,divide}_scalar(): Finish doxygen
change of previous edit
* cpl_apertures_extract_sigma(): Document the mask-filtering
(DFS11489)
* cpl_apertures_extract_sigma(): rv previous edit (DFS11489)
2012-03-08 llundin
* cpl_end(): Call both fftw_cleanup() and fftwf_cleanup()
* cpl_fft_image_{double,float}(): Reduce number of critical
sections to one pre and one post plan execution
* cpl_fft_image(): Inactive, draft support of compact R2C/C2R
* cpl_apertures_extract_sigma(): Drop unexpected filtering
(DFS11489)
2012-03-07 llundin
* cpl_fft_image(): Improve error message
* cpl_fft_image(): refactor
* cpl_fft_image(): Repack double-data in r2c/c2r
* cpl_fft_image(): Repack float-data in r2c/c2r
* cpl_fft_image(): Support complex-to-complex transforms
* cpl_image_{add,subtract,multiply,divide}_scalar(): Support
complex images (DFS11498)
2012-03-06 llundin
* cpl_fft_image(): fftw_malloc() replaces cpl_image_duplicate() for
(float) temp array
* cpl_fft_image(): fftw_malloc() replaces cpl_image_duplicate() for
(double) temp array
* cpl_test_init_macro(): Warn on failed setting of log-file
(DFS11493)
* NULL replaces 0x0. cpl_msg_init(), cpl_msg_set_log_level():
cpl_msg_set_log_name(): cpl_func replaces fid. cpl_msg_out(): Fix
doxygen typo. cpl_msg_set_log_name(): Create explicit error
messages (DFS11493)
* CPL_MAX_LOGFILE_NAME: Increase default to 72 from 52.
CPL_MAX_MSG_LENGTH, CPL_MAX_FUNCTION_NAME, CPL_MAX_DOMAIN_NAME,
CPL_MAX_LOGFILE_NAME: Allow compile time change
* cpl_msg_out(): Drop anything after new-line (DFS11492)
* Clean-up include, doxygen
2012-03-05 llundin
* cpl_fits_find_extension(): Support extensions without EXTNAME
card (DFS11488)
2012-03-02 cgarcia
* Fix documentation typo
* Use prefixes llp for long long pointers and sz for cpl_size
prefixes in many functions.
Fix a cpl_size pointer in cpl_column_multiply.
2012-03-02 rpalsa
* Package version updated.
2012-03-01 cgarcia
* Use the proper sz pointer for cpl_size type in function
cpl_column_dump
2012-02-28 rpalsa
* CPL_CHECK_FFTW(): Ignore suffix which is possibly appended to the
version number.
2012-02-27 rpalsa
* Support for long, long long and cpl_size arrays added.
* CPL type enumeration: Fixed typo in the documentation.
* Added argument to macros checking for libraries, to allow setting
the minimum required version from configure.
CPL_CHECK_WCS(), CPL_CHECK_FFTW(): Fix version checks and library
search path.
2012-02-16 llundin
* cpl_matrix_set_size(): Preserve elements when reducing number of
rows without changing col size
* cpl_matrix_set_size(): Fix inefficient behaviour (DFS3510)
2012-02-15 llundin
* cpl_stats_new_from_image_window(): Document 32-bit round-off and
raise 32-bit tolerance
* Raise tol on cpl_image_fft() for 32-bit
* cpl_image_power_*(): cpl_tools_ipow() replaces pow() for integer
power
* cpl_fit_image_gaussian(): Improve doxygen on covariance matrix
* Avoid double free on gauss-fit-failure, increase tol on succes
(for 32-bit builds)
2012-02-14 llundin
* rm unused header files. iqebgv(): rm dead assignments
* Initialize phys_cov to NULL prior to testing
cpl_fit_image_gaussian()
* cpl_fit_image_gaussian(): Improve doxygen on phys_cov
* cpl_dfs_paf_dump(): Handle CPL_TYPE_CHAR and linefeed in comments
(DFS11380)
* cpl_matrix_is_identity(): rm dead assignment
2012-02-07 llundin
* cpl_bivector_interpolate_linear(): Avoid (false) uninit warning
* "< 1 +" replaces <= (DFS11249)
* cpl_vector_save(): Indentation. cpl_vector_correlate(),
cpl_vector_gen_lowpass_kernel(): "< 1 +" replaces <= (DFS11249).
cpl_tools_sinc(), cpl_vector_exponential(): Use 0.0 for fp zero
* cpl_wlcalib_fill_line_spectrum_model(): "< 1 +" replaces <=
(DFS11249)
* cpl_mask_dump(): "< 1 +" replaces <= (DFS11249)
2012-02-06 llundin
* cpl_error_set_message_(): replaces
cpl_error_set_message{,_macro}()
* cpl_error_set_message_(): replaces cpl_error_set_message().
cpl_error_set_(): Replaces cpl_error_set().
cpl_error_set_where_(): Replaces cpl_error_set_where()
* cpl_error_set_message_(), cpl_error_set_where_(),
cpl_error_set_(): Replaces cpl_error_set_message_macro(),
cpl_error_set_where(), cpl_error_set().
cpl_table_extract_column(): rm unused variable, reduce var-scope.
cpl_table_set_column_depth(): rm unused variable
2012-02-03 llundin
* assert() replaces cx_assert()
* cpl_io_fits_set(): Drop unused support for full table, redeclare
to void
2012-02-02 llundin
* cpl_wlcalib_find_best_1d(): Fix uninit warnings
* cpl_image_get_interpolated_test(): Raise tol on confidence
2012-01-31 llundin
* Read different extensions via different paths (to test I/O
optimization). Also fix indentation
* cpl_io_fits_open_diskfile(): Include handle pointer in debug msg
2012-01-30 llundin
* cpl_io_fits_remove_fptr(): replaces less descriptive name
cpl_io_fits_find_fptr(). Indenting
2012-01-26 llundin
* Remove diagnostic pragmas for now
2012-01-26 rpalsa
* Package version updated.
2012-01-24 llundin
* cpl_mask_load_(): Try pragma GCC diagnostic ignored "-Wcast-qual"
due to CFITSIO API
* cpl_fft_image(): Require images to be square (pending DFS10988)
2012-01-23 llundin
* cpl_stats_new_from_image_window(): Use size_t in check of bad
pixel map (bis)
2012-01-20 llundin
* cpl_filter_linear_slow(), cpl_filter_morpho_slow(): Separate
loops for bpm==NULL case. Reduce scope of bpmj
* cpl_stats_new_from_image_window(): Use size_t in check of bad
pixel map
2012-01-20 rpalsa
* CPL_CHECK_CFITSIO(): Add -lz to LIBCFITSIO_STATIC
CPL_CHECK_LIBS(): Add missing $LDFLAGS to CPL_LDFLAGS when
linking configure tests
2012-01-20 llundin
* cpl_filter_median_slow(), cpl_filter_stdev_slow(): Separate loops
for bpm==NULL case
2012-01-20 rpalsa
* CPL_CHECK_CFITSIO(): revert cfitsio runtime path fix
2012-01-20 llundin
* Line break. Change loop variables to unsigned, "< 1 +" replaces
<= (DFS11249)
* cpl_filter_average_slow(): Revert previous edits removal of inner
if-statement, reduce scope
* cpl_mask_dump(): Adapt format to cpl_size. cpl_mask_filter():
Change loop variables to unsigned, "< 1 +" replaces <= (DFS11249)
* cpl_filter_average_slow(): Change loop variables to unsigned
(DFS11249)
* "< 1 +" replaces <= (part of DFS11249)
2012-01-19 rpalsa
* CPL_CHECK_CFITSIO(): Do not use cfitsio runtime path for
configure tests, since they do not use libtool.
2012-01-17 rpalsa
* CPL_CHECK_CEXT(): Can no called with arguments specifying header
and library search paths.
CPL_CHECK_LIBS(): Don't require CPL_CHECK_CEXT,
CPL_CHECK_CFITSIO. Call CPL_CHECK_CEXT explicitly.
2012-01-16 rpalsa
* CPL_CHECK_CFITSIO(): Add cfitsio runtime path to CFITSIO_LDFLAGS
2012-01-13 rpalsa
* API changes in cplui added.
2012-01-12 rpalsa
* Updated to the latest version
2012-01-11 llundin
* cpl_fit_image_gaussian(): Do not reset error when failure is
unavoidable
* check_gauss_success(): Fix memory-leak on failure, remove space,
use explicit double const
* cpl_msg_info() replaces cpl_msg_warning() from previous edit
2012-01-11 rpalsa
* Package and library version updated.
* Container size and index type changed from int to cpl_size.
2012-01-11 llundin
* Clean-up branching for tests of large vectors
2012-01-10 llundin
* Work around CPL_SIZE_BITS=32
* cpl_init(): Use env CPL_IO_MODE to enable the I/O optimization.
cpl_io_fits_is_enabled(): Added. cpl_io_fits_init(): Redeclare to
boolean
* Raise tol to pass last two tests on current 32-bit test machines
(DFS11193)
2012-01-09 llundin
* Revert tolerance on 64-bit, raise tol to pass tests on current
32-bit test machines (DFS11193)
* Raise tol on float precision fit due to failure on 32-bit
(DFS11193)
* Raise tol on double precision fit due to failure on 32-bit
2011-12-23 rpalsa
* Remove compiler flag std=c99 again from the defaults, as it
applies also to the C library restricting its interface
(discarding POSIX compliant interfaces).
2011-12-22 rpalsa
* Add compiler flag std=c99 to the default flags.
* Synchronized with libcext version.
* cpl_propertylist_copy_property(): Bug fixed. When the target list
contains the sought for property, get the source property from
the source list, not from the target one.
2011-12-22 llundin
* CPL_IO_FITS_MAX_OPEN: Default to 0
* Revert attempt to use mtime
* cpl_io_fits_find_fptr(): memcmp() replaces memcpy()
2011-12-21 llundin
* Oops, nested comment
* Rely on mtime to know if a sub-process modified the file
* Call cpl_io_fits_end() to ensure no pointers are in use. Fix
const warning, add msg
2011-12-20 llundin
* cpl_apertures_new_from_image(): Fail on negative label, clean-up
const modifier, avoid unneeded image duplication
* CPL_ERROR_ACCESS_OUT_OF_RANGE replaces CPL_ERROR_ILLEGAL_INPUT
for out of bounds index. Improve doxygen, add more unit tests
* cpl_image_reject_from_mask(): CPL_ERROR_INCOMPATIBLE_INPUT
replaces CPL_ERROR_ILLEGAL_INPUT
* self replaces in for object to process
* cpl_apertures_get_maxpos_x(), cpl_apertures_get_maxpos_y(),
cpl_apertures_get_minpos_x(), cpl_apertures_get_minpos_y(): Added
(DFS10971)
* cpl_apertures_get_pos_x(), cpl_apertures_get_pos_y(): Added,
replaces now deprecated
cpl_apertures_get_max_x(),cpl_apertures_get_max_y() (DFS10971)
* cpl_apertures_get_maxpos_x(), cpl_apertures_get_maxpos_y(),
cpl_apertures_get_minpos_x(), cpl_apertures_get_minpos_y(): Added
(DFS10971)
2011-12-19 rpalsa
* Added CPL_TYPE_SIZE to type enum.
Changed definition of cpl_size from cxint64 to long long
(including format and min/max macros)
* Call to AC_HEADER_TIOCGWINSZ added.
* Inclusion of ioctl.h centralized. Added check on
GWINSZ_IN_SYS_IOCTL.
cpl_msg_set_log_level(), cpl_tools_get_cputime(): break added in
default clause.
* Add header include of cpl_type.h to get format macros together
with the message functions.
2011-12-19 llundin
* cpl_fft_mode replaces unsigned
* cpl_io_fits: Use and test stat()
* CPL_DFS_FITSFILE replaces filename
* cpl_get_description(): Append CPL_IO_FITS_MAX_OPEN
2011-12-16 llundin
* cpl_wlcalib_fill_line_spectrum_model(): Fix format warnings due
to cpl_size
* cpl_io_fits_open_diskfile(), fits_close_file(): Wrap around their
CFITSIO counterpart (DFS11019)
* cpl_test_end(): var rename, errno fix. Rearrange header files
* cpl_dfs_update_product_header_(): Added.
cpl_dfs_update_product_header(): Use
cpl_dfs_update_product_header_()
* cpl_io_fits_close_all(): Export (to CPL)
* cpl_image_get_interpolated_test(): Added
* cpl_image_extract_subsample_test(): Added
2011-12-15 llundin
* cpl_image_get_interpolated(): Prefer temp space from stack
(suggestion from JTaylor)
2011-12-14 llundin
* cpl_polynomial_multiply_scalar(): Added
2011-12-13 llundin
* cpl_matrix_test_banded(): Added
* Simplify flush-check
* Reenable copying, move cpl_test_nonnull()
* cpl_fits_flush_file(): Patched fits_flush_file() to properly
flush files. cpl_io_fits_close_file(): Use cpl_fits_flush_file().
CPL_IO_FITS_MAX_OPEN: Support 0-value
2011-12-12 llundin
* cpl_test_eq_error() replaces cpl_test_zero(), Check CPL error
before pointer, fix warning
* cpl_io_fits_resize(): Added. cpl_io_fits_set(): Use
cpl_io_fits_resize() to avoid forced closed of any file
* cpl_fitsfiles: Allocate
* CPL_IO_FITS_MAX_OPEN default to 1024. Add some more debug
messages
* cpl_io_fits_set(), cpl_io_fits_find_fptr(): Ignore CFITSIO
filename meta-character. cpl_io_fits_create_file(): Avoid
incorrect and inefficient work-around for CFITSIO filename
meta-character
* Avoid system(cp) while working possible CFITSIO bug
2011-12-09 llundin
* Support multiple (or no) open files via an array, disable
debug-messages per default, disable doxygen (I think)
* cpl_dfs_product_tests(): Support test with many extensions
* cpl_wlcalib_test_one(): cpl_wlcalib_find_best_1d(): Do not
evaluate non-physical anchor points, avoid useless vxc-fills
* cpl_io_fits_find_fptr(), cpl_io_fits_find_name(),
cpl_io_fits_set(): rm static variable from API
* cpl_io_fits_set(): Access self->fptr only inside critical.
cpl_io_fits_find_fptr(): Support NULL-name.
cpl_io_fits_close_all(): Critical access via
cpl_io_fits_find_fptr()
* cpl_io_fits_open_diskfile(): Avoid redundant call to
cpl_io_fits_find_fptr()
* cpl_io_fits_open_diskfile(): rm cpl_io_fits_close_one().
cpl_io_fits_close_all(): Renamed from cpl_io_fits_close_one()
* cpl_io_fits_create_file(): rm cpl_io_fits_close_one()
* cpl_io_fits_find_fptr(), cpl_io_fits_find_name(): Improve names.
cpl_io_fits_find_fptr(): Add unset param
* cpl_io_fits_set(): rm pname, piomode
* cpl_io_fits_set(): return true, when file to be closed
* cpl_io_fits_find_name(): return iomode
2011-12-08 llundin
* rm cpl_error_set_fits() from CFITSIO wrappers.
cpl_io_fits_close_one(): CFITSIO style error.
cpl_io_fits_find_fptr(): Added
* cpl_io_fits_set(), cpl_io_fits_find(): Added w. critical
sections. Drop thread-private storage. FIXME: still need to
cpl_io_fits_close_one()
2011-12-07 llundin
* cpl_wlcalib_find_best_1d(): Do not evaluate non-physical anchor
points, avoid useless vxc-fills
* cpl_wlcalib_find_best_1d(): Use cpl_vector_rewrap()
* cpl_vector_rewrap(): Added internally
* cpl_vector_find(): DFS11130
* cpl_vector_find(): Fail on non-sorted data
* cpl_wlcalib_fill_line_spectrum_model(): Detect non-increasing
wavelengths
2011-12-06 llundin
* cpl_wlcalib_fill_line_spectrum_model(): Increment ulines
* cpl_wlcalib_test_one(): Comments
* cpl_wlcalib_test_one(): 2nd refining search
* slitmodel replaces linemodel, catalog replaces lines
* cpl_wlcalib_find_best_1d(): vxc wraps around xcorrs, when
non-NULL
* cpl_wlcalib_find_best_1d(): xcorrs stores all XC values
2011-12-05 llundin
* cpl_wlcalib_test_one(): Tighten bounds on
cpl_test_polynomial_abs()
* cpl_wlcalib_fill_line_spectrum_model(): Use
cpl_polynomial_solve_1d_() for monotony check, add degree to
error msg. Guard debugging w. CPL_WLCALIB_DEBUG
* cpl_polynomial_solve_1d_(): bpos replaces pdx
* cpl_polynomial_solve_1d_(): Added w. pdx
* cpl_wlcalib_test_one(): Correct cost count check after vxc-guard
fix
* Improve doxygen, add flops
* cpl_fft_image(): Add omp critical sections for each FFTW-call,
except the execute-ones
* cpl_wlcalib_test_one(): Reduce search range on shifted poly
* cpl_wlcalib_find_best_1d(): Doxygen typo
* cpl_wlcalib_find_best_1d(): Guard vxc access on failure, improve
doxygen
* cpl_wlcalib_find_best_1d(): Extend model spectrum by 2*hsize and
tighten unit tests
* cpl_wlcalib_find_best_1d(): Draft version of hsize support
* cpl_wlcalib_fill_line_spectrum(): Improve doxygen
2011-12-02 llundin
* cpl_wlcalib_find_best_1d(), cpl_wlcalib_fill_*line_spectrum*():
CPL_ERROR_INVALID_TYPE for non-1D-poly
* Improve doxygen
* cpl_wlcalib_test_one(): Add lines, reduce nsamples, plot on info
* cpl_wlcalib_test_one(): Verify costs
* cpl_wlcalib_test_one(): Non-monotone failure
* cpl_wlcalib_test_one(): Two more tests
2011-12-01 llundin
* cpl_wlcalib_fill_line_spectrum_model(): Use erftmp
* cpl_wlcalib_test_one(): Time the search
* cpl_wlcalib_find_best_1d(): cpl_polynomial_fit_1d() replaces
cpl_polynomial_fit()
* rm xtrunc from linemodel struct
* cpl_wlcalib_fill_*line_spectrum*(): Redeclare model to void and
move it up
* cpl_wlcalib_test_one(): Test XC
* cpl_wlcalib_test_one(): Raise fast-tol for valgrind
* cpl_wlcalib_test_one(): Reduce degree, add more tests of
cpl_wlcalib_find_best_1d()
* cpl_wlcalib_find_best_1d(): Fix degree error
* More tests
* cpl_wlcalib_find_best_1d(): Units of wl_search
* cpl_polynomial_add(), cpl_polynomial_subtract(): Added
* cpl_wlcalib_test_one(): Test fillers
* _logline(): Improve doxygen
* rm redundant include
* Added some unit tests
* cpl_wlcalib_find_best_1d(): cpl_size replaces int, rename
variables, preserve 1st errors on failure
* cpl_wlcalib_find_best_1d(): Added
* cpl_wlcalib_fill_logline_spectrum(),
cpl_wlcalib_fill_line_spectrum_fast(),
cpl_wlcalib_fill_logline_spectrum_fast(): Define
* Threshold replaces xtrunc
* Export minimal set of functions
* Obsolete
2011-11-30 llundin
* cpl_wlcalib_fill_line_spectrum(): Define
* cpl_wlcalib_fill_line_spectrum_model(), cpl_erf_antideriv():
Defined
* Fix filler-declarations
* cpl_errorstate_dump_one_{warning,info,debug}(): Copied from
IRPLIB
* Module w. linemodel object
2011-11-29 llundin
* More testing of Nearest neighbor resampling
* cpl_geom_img_offset_saa(): 2.0 replaces CPL_KERNEL_DEF_WIDTH
* Nearest neighbor resampling (DFS08665)
2011-11-25 llundin
* More tests, smaller default size
* cpl_io_fits_seek: rm
* cpl_io_fits_create_file(): Added, closes all
* Draft solution for DFS11019
2011-11-23 llundin
* cpl_image_load_(), cpl_mask_load_(): fits_movabs_hdu() replaces
fits_movrel_hdu()
* filter_median_bf(),test_cpl_image_filter(): Fix memory leaks
2011-11-22 llundin
* cpl_image_flip(), cpl_mask_flip(): Avoid duplication on square
input
* cpl_image_flip_turn_test(): Added
* cpl_mask_flip_turn_test(): Verify result
* cpl_mask_flip_turn_test(): Test cpl_mask_flip() on square and
rectangular masks
2011-11-21 rpalsa
* cpl_table_erase_invalid(), cpl_table_erase_invalid_rows():
documentation clarified.
2011-11-18 llundin
* cpl_image_dump_structure(), cpl_image_dump_window(): Use
CPL_SIZE_FORMAT (DFS10984)
* cpl_image_dump_*(): Check also return value
2011-11-17 llundin
* cpl_mask_extract(): Fix wrong row extraction w. unit test
(DFS10977)
* cpl_test_nonnull() replaces cpl_test() of assignment
2011-11-15 llundin
* cpl_geom_img_offset_combine(): Input imagelist is now const
(DFS08575)
2011-11-02 rpalsa
* cpl_property_get_long(), cpl_property_get_long_long(), etc: Added
type promotion in case the accessed property has a smaller rank
than the target type.
* Include cpl_propertylist_impl.h moved to the end of the list
* CPL_FITS_BADKEYS_PRIM: Removed EXTNAME, EXTVER and EXTLEVEL
* cpl_type_get_sizeof(): Parentheses added
2011-10-28 llundin
* clp_*_flip(): doxygen typo
2011-10-18 llundin
* cpl_matrix_decomp_lu(): Support perm-array with initial invalid
elements
* cpl_matrix_fill_diagonal(): Generalize to non-main-diagonals
* cpl_mask_threshold_image(): New function
2011-10-12 llundin
* cpl_vector_extract(): Add several unit-tests
2011-10-11 llundin
* cpl_mask_threshold_image(): Explicitly document lo == hi case
2011-10-06 rpalsa
* CPL_CHECK_CFITSIO(): Use static libcfitsio for tests to avoid
runtime environment dependencies.
2011-10-06 llundin
* cpl_ppm_match_positions(): Improve doxygen grammar
2011-09-27 llundin
* cpl_test_init_macro(): abort() replaces exit() to be in line with
cpl_xmemory functions
2011-09-15 llundin
* Doxygen univariate (1D) replaces univariate
2011-09-13 cgarcia
* Adding comment regarding the dependency of functions fill_chess
and median_1.
2011-08-19 llundin
* cpl_recipe_define(): Fix doxygen typo
2011-08-18 llundin
* cpl_image_filter_fill_chess(): replaces duplicated static
fill_chess()
* cpl_tools_get_kth(): Avoid duplication
* Standardize multi-type support of median filtering
* cpl_xmemory_status(): With _OPENMP peak allocation is approximate
2011-08-17 cgarcia
* Added new float arrays tests cases for the cpl_tools_get_median
function.
Update the test cases to the new median algorithm.
* Added functions fill_chess and fill_row copied from
cplcore/cpl_filter_median.c.
Brute force function now also uses the chess-like pattern
filling, like the function we want to test against.
Unused function bf_get_median_upper has been removed.
* Added PIXEL_MAX, PIXEL_MIN #define's needed by the functions
fill_chess and fill_row defined in cpl_filter_body.h
* Change in documentation reflects the change in the median
algorithm (mean of central values for even number of elements)
* Change the implementation of the median, to use the mean of
central values for even number of elements. Also the quickselect
function has been modified, to implement the new median
algorithm.
* Added option in cpl_tools_quickselect to specify the value around
which the selection should be performed.
* Change in documentation reflects the change in the median
algorithm (mean of central values for even number of elements)
* Added warning to reflect the duplication of code in
tests/cpl_filter_body.h
* Documentation of CPL_BORDER_FILTER reflects the change in the
median algorithm (mean of central values for even number of
elements)
2011-08-17 llundin
* cpl_xmemory_count(): drop for performance reasons (revert to rev.
1.32)
* cpl_imagelist_empty(): Export
2011-08-12 llundin
* cpl_imagelist_empty(): Export
2011-08-11 llundin
* cpl_mask_threshold_image(). cpl_mask_threshold_image_create():
Wrap around cpl_mask_threshold_image()
* cpl_matrix_decomp_lu(), cpl_matrix_solve_lu(): Note on API change
(typo)
* cpl_matrix_decomp_lu(), cpl_matrix_solve_lu(): Note on API change
2011-08-10 cgarcia
* Added benchmark test for get_median function,
since eventually, the performance of get_median and
quickselect won't be the same.
2011-08-08 llundin
* cpl_geom_img_offset_saa(): Use uint32_t to test bpm, do not test
RSC to avoid NaN
* cpl_geom_img_offset_saa_one(): Test that
cpl_geom_img_offset_saa() with rejections average the correct
numbers
* cpl_geom_img_offset_saa(): Avoid interpolation on integer shifts
(DFS10561)
* 5.92cvs
2011-08-05 cgarcia
* Added median test cases for number of elements equal 10 and 11.
2011-08-05 llundin
* cplsize replaces long in function names for cpl_size data
2011-08-02 rpalsa
* CPL_CHECK_CFITSIO(): Require cfitsio 3.270 or newer
* printf format %d replaced by %CPL_SIZE_FORMAT where appropriate.
* cpl_ppm_match_points(): Integer type arguments promoted to
cpl_size
* Package and library version updated.
* CPL_CHECK_CFITSIO(): Fix typo in cpl_cfitsio_libdirs. Instead of
checking $CFITSIODIR/lib32 it checked $CFITSIODIR/lib twice
CPL_CHECK_LIBS(): Use all cplcore dependencies for runtime tests.
2011-08-02 llundin
* cpl_test_get_description_b(), cpl_test_init_macro(): Break long
lines
* cpl_fft_image(): Fix unreachable statement warning
* cpl_fits_find_extension(): rm cast work-around for CFITSIO < 3.18
* For Include + LD flags place 3rd party components last, with
optional ones at the very end
* cpl_image_exponential(), cpl_image_logarithm(),
cpl_image_power(): Count flops
2011-08-01 llundin
* cpl_image_logarithm(): Support bad pixels (DFS10528)
* cpl_image_exponential(): Support bad pixels (DFS10528)
* cpl_image_power(): Support bad pixels (DFS10528)
* cpl_column_pow_int(), cpl_column_pow_float(),
cpl_column_pow_float_complex(), cpl_column_pow_double(),
cpl_column_pow_double_complex(): Fix exponent == -1 bug
(DFS10451)
* 6.0 (Development Snapshot)
* cpl_error_set_(...) replaces cpl_error_set(cpl_func, ...)
* cpl_dfs_save_propertylist(), cpl_dfs_save_imagelist(),
cpl_dfs_save_table(): Fix doxygen-bug (applist now mandatory)
(DFS10545)
* Ralf replaces Carlo and Yves
2011-07-29 llundin
* cpl_matrix_decomp_lu(), cpl_matrix_solve_lu(): Use cpl_array for
permutation
* Fix cpl_size cast warnings + long lines
* Fix cpl_size cast warnings
* Redeclare int to cpl_size
* Fix (cpl_size) cast warnigns
* Fix cast warnings
* Redeclare int* to cpl_size* for calls cpl_polynomial_*()
* cpl_fit_imagelist_polynomial_one(): Redeclare degree/kk from int
to cpl_size for calls to
cpl_polynomial_fit_1d()/cpl_polynomial_get_coeff()
* find_transform(): Redeclare degree(s) from int to cpl_size for
calls to cpl_polynomial_fit()
* Fix implicit cast warnings
* Fix cpl_flops cast warnings
* Fix format + (double) cast warnings
* cpl_polynomial_shift_double(): Non-static, mv to
cpl_polynomial_impl.h
* cpl_imagelist_collapse_sigclip_create(): Fix cpl_size warning
* cpl_vector_load(): Fix cpl_size warning
* cpl_test_matrix_abs_macro(), cpl_test_imagelist_abs_macro(): fix
cpl_size warnings
* Fix cpl_size implicit warnings (double+int), fix cpl_size format
warnings
* cpl_test_macro(), cpl_test_eq_macro(): fix cpl_size warnings
* cpl_polynomial_shift_double(): mv to cpl_polynomial and make
static. Fix cast size_t warnings
* Draft version of cpl_size usage (no valgrind warnings, passes
unit-tests)
2011-07-28 llundin
* cpl_wcs_platesol(), cpl_wcs_convert(): Use cpl_size for
cpl_matrix+cpl_array() sizes
* cpl_image_fft(): Proper handling of limited image size support
(bis)
2011-07-27 llundin
* Use cpl_size
* cpl_fit_imagelist_polynomial{,_window}(): Use cpl_size
2011-07-26 llundin
* cpl_image_fft(): Proper handling of limited image size support
* cpl_image_iqe(): Improve limited size support in cpl_iqe()
* cpl_matrix_decomp_lu(), cpl_matrix_get_minpos(),
cpl_matrix_get_maxpos(): Use cpl_size
* Use cpl_size except for int* functions
* Avoid implicit cast to size_t
* cpl_fit_image_gaussian(): Redeclare int parms to cpl_size
* cpl_fit_lvmq_(): Explicit cast of cpl_size to size_t
* Fix formatting. cpl_fit_imagelist_polynomial(),
cpl_fit_imagelist_polynomial_window(): Use CPL_ATTR_ALLOC
* cpl_fit_image_gaussian(): Fix cpl_size* warning
2011-07-21 llundin
* Fix header inclusion error, indent
* Fix cpl_size warnings, support calls w. pre-existing error, fix
indentation, avoid direct image-struct access, reduce header
inclusion
* Fix cast/cpl_size warnings
* Use cpl_size
* Fix cpl_size * warning
* cpl_flux_get_noise_window(), cpl_flux_get_bias_window(): Simplify
error propagation
* Avoid cast of cpl_size to int
* Use cpl_size
* rm redundant header-files, indenting
* rm space in front of ;
* cpl_plot_columns(),cpL_plot_bivectors(): Use cpl_size
* cpl_mask_load*(): Use cpl_size also for plane and extension
* cpl_fits_count_extensions(),cpl_fits_find_extension(): Use
cpl_size
* Use cpl_size
* cpl_load image(list): Use cpl_size also for plane and extension
* Use cpl_size
2011-07-20 llundin
* Use cpl_size
* Use cpl_size
* Use cpl_size
* Use cpl_size - also for relevant object tests
* Use cpl_size
* Use cpl_size
* Use cpl_size
2011-07-19 llundin
* cpl_tools_shift_window(): Use cpl_size. cast cpl_size <=> size_t
* cpl_image_io uses cpl_size
* rm space before ;
* Fix -Wconversion
* Use cpl_size for cpl_mask+cpl_vector
* cpl_plot_vector(), cpl_plot_mask(): Use cpl_size
* use cpl_size
* cpl_test_init_macro(): sizeof(cpl_size)
2011-07-08 llundin
* CFITSIO support for I/O of largest possible buffers
* rm space preceeding ;
* cpl_mask_save(), cpl_mask_load_(), cpl_mask_load_one(): Use
CPL_FITSIO_TYPE etc
* mv macros for "CFITSIO support for I/O of largest possible
buffers" to cpl_tool.sh
* cpl_imagelist_collapse_sigclip_create(): Merge changes from 5.3
branch (DFS08476)
2011-07-04 llundin
* cpl_imagelist_collapse_sigclip_create(): Use different CPL error
codes for different types of errors (instead of just
CPL_ERROR_ILLEGAL_INPUT) (bis)
* cpl_imagelist_collapse_sigclip_create(): Use different CPL error
codes for different types of errors (instead of just
CPL_ERROR_ILLEGAL_INPUT)
2011-07-01 llundin
* Merge in changes in cpl-5_3_0-BRANCH
* Merge in changes in cpl-5_3_0-BRANCH (mostly DFS10427)
* Merge in changes in cpl-5_3_0-BRANCH (mostly DFS10416 + doxygen
typos)
* Merge in changes in cpl-5_3_0-BRANCH (mostly DFS10232)
* Merge changes from cpl-5_3_0-BRANCH (cpl_vector_count_distinct())
* Merge changes from 5.3 branch (cpl_tools_get_mean)
2011-05-13 llundin
* Merge in changes from 5.3 branch (cpl_test_* changes)
2011-05-11 llundin
* Merge in changes from 5.3 branch (DFS10280)
2011-04-20 llundin
* Merge in changes from 5.3 branch: Add cpl_polynomial_impl.h with
declaration of cpl_polynomial_fit_1d()
* Merge changes from 5.3 branch (include cpl_error_impl.h)
* Merge changes from 5.3 branch (fix gcc 4.6 warnings)
* cpl_fit_imagelist_polynomial{,_window}(): Handle complex input
(DFS10232)
* cpl_fit_imagelist_polynomial_tests(): various clean-up, prep for
test of new bug
* cpl_fit_imagelist_polynomial_tests(): various clean-up
* cpl_fit_imagelist_polynomial_window(): Fix minor doxygen issues,
improve comments and variable names, use cpl_error_set_where_().
cpl_fit_imagelist_polynomial(): improve variable names, use
cpl_error_set_where_()
2011-04-19 llundin
* bigauss(), bigauss_derivative(): Declare with CPL_ATTR_NONNULL,
add internal const modifiers. bigauss_derivative(): Avoid
division by zero, use single point of return
* cpl_apertures_get_fwhm(): Move to cpl_apertures.h and deprecate
together with cpl_apertures_img.h
2011-04-18 llundin
* Merge changes from 5.3 branch (fix gcc 4.6 warnings)
* Merge change from 5.3 branch: cpl_msg_progress(),
cpl_tools_get_cputime(): Fix gcc 4.6 warnings
2011-04-15 llundin
* Merge in changes from 5.3 branch
2011-04-15 cizzo
* Add omp.h including... since not just pragmas are used.
2011-04-13 cizzo
* Thread safe version
* Thread safe varsion
2011-04-13 llundin
* Merge in changes from 5.3 branch (bis)
* Merge in changes from 5.3 branch
* Merge in changes from 5.3 branch (cpl_error_set_where_() + return
replaces cpl_ensure(0,...), fixes clang warning)
2011-04-12 cizzo
* Fix wrong association of cpl_size definition and used format (it
caused compiler warnings and a segfault in the test modules for
cpl_test and cpl_vector)
* Added backward compatibility with cplsize = int
2011-04-12 llundin
* Merge in changes from 5.3 branch (DFS10210)
* cpl_test_get_description_[ab](): Added.
cpl_test_get_description(): Redeclare to alloc, add FFTW version
* cpl_test_get_description(): Added size of cpl_size
* CPL_SIZE_BITS: Support an alternative definition of cpl_size, to
int (as per CPL meeting 2011-03-24)
* Merge in changes from 5.3 branch
2011-04-08 llundin
* Merge in changes from 5.3 branch (DFS09012)
2011-04-06 llundin
* Merge in changes from 5.3 branch (DFS10192)
2011-04-05 rpalsa
* cpl_propertylist_dump(): Empty character constant fixed.
* cpl_propertylist_dump(): Variable definitions changed to match
the changed return type of cpl_property_get_size().
* Adapt to changed return type of of cpl_property_get_size()
2011-04-05 llundin
* Merge in changes from 5.3 branch (Fix gcc 4.6 warnings)
2011-04-04 rpalsa
* CPL_CHECK_CFITSIO(): Improved check on available cfitsio version.
Set minimum required version to 3.260.
2011-04-01 cizzo
* Add unit tests about extended functionality of
cpl_table_and_selected() and cpl_table_or_selected(), now
supporting also string columns
* cpl_table_and_selected() and cpl_table_or_selected() now support
comparison between string columns
2011-04-01 llundin
* Merge in changes from 5.3 branch for DFS09020
* cpl_tools_get_bpp(): Merge in changes from 5.3 branch (DFS09020)
* Merge in changes from 5.3 branch (DFS09020, DFS09331)
* revert previous edit
* cpl_*_save*(): cpl_type replaces cpl_type_bpp (DFS09020)
2011-03-28 rpalsa
* cpl_property_get_size(): Interface updated to match prototype.
2011-03-25 cizzo
* Fix doc to cpl_ppm_match_points(), using non-deprecated
cpl_polynomial_fit() in the code example (DFS09113)
2011-03-18 rpalsa
* Package version updated.
* Preliminary support for 8-byte integer (long long) properties.
2011-03-03 cizzo
* Compatible with cpl_size being 64bit integers
2011-03-03 llundin
* cpl_error_set_message_( replaces cpl_error_set_message(cpl_func,
* cpl_vector_save(): Support largest length possible w. unit test
(default inactive)
* cpl_vector_load(): Support loading of long vectors
2011-03-02 llundin
* cpl_size replaces int where neeeded for cpl_vector
* cpl_apertures_extract{,_window}(): Use cpl_size for
cpl_vector-related variables
2011-03-02 cizzo
* Use LONGLONG cfitsio calls where appropriate in cpl_table_save()
and cpl_table_load()
* typedef cpl_size to 64 bits signed int (based on cx lib)
2011-03-02 llundin
* cpl_xmemory_count(): Name the critical section (DFS10059)
* cpl_vector_fit_gaussian_test_one(): Replaces inactive code to
test fix of DFS06126. cpl_vector_{corr,stdev}_bench(): Use
CPL_SIZE_FORMAT
2011-03-02 cizzo
* Switch to cpl_size type the appropriate integers.
* Fix wrong allocation of nb array in cpl_table_save(), and invalid
return in case of error in cpl_table_get_column_depth()
2011-03-01 llundin
* CPL_SIZE_FORMAT replaces int for cpl_vector
2011-03-01 rpalsa
* CPL_CHECK_CFITSIO(): Distributers may have changed the cfitsio
build system to provide proper shared library dependencies. An
extra test has been added to catch this case.
* CPL_CONFIG_CFITSIO(): Use cpl_cv_cfitsio_is_thread_safe instead
of cpl_cv_cfitsio_requires_pthread to check whether cfitsio
supports threads.
2011-03-01 llundin
* cpl_tools_permute_*(): Complete change to cpl_size
* cpl_apertures_extract{,_window}(): Use cpl_size for
cpl_vector-related variables
2011-03-01 cizzo
* Change relevant ints to cpl_size type, and make use of the proper
format strings when printing values of type cpl_size
2011-03-01 llundin
* CPL_SIZE_FORMAT replaces d for cpl_bivector_get_size()
* cpl_vector_ensure_distinct(): Redeclare to use cpl_size,
cpl_error_set_message_() replaces cpl_error_set_message_macro().
cpl_fits_add_properties(): cpl_error_set_where_() replaces
cpl_error_set_where(). Move system #include down in .c to expose
any missing includes in .h.
* cpl_vector_get_noise(), cpl_vector_get_fwhm()" cpl_size replaces
int (DRAFT)
* CPL_SIZE_FORMAT replaces ld w. long-cast. cpl_vector_load(): rm
redundant cast of long nx
* @defgroup cpl_type replaces cpl_types. rm redundant and out-dated
doxygen of type codes. Add doxygen of cpl_size and
CPL_SIZE_FORMAT
2011-02-28 llundin
* cpl_size replaces int where neeeded - DRAFT, use only w. cpl_size
defined to int
2011-02-28 cizzo
* Make the cpl_size typedef public
2011-02-25 llundin
* Move static type-specific declarations
2011-02-25 cizzo
* Add protoypes for supporting cpl_size (long) type
* Switch to cpl_size type
* Min required changes for a permutation vector of type cpl_size
2011-02-24 llundin
* cpl_fit_image_gaussian_tests(): Redeclared to take a supported
pixel type; Call it with all 3 of them. Also test the returned
error code
2011-02-23 llundin
* cpl_matrix_shift(): Use memmove() to reduce copying (for all
shifts). cpl_matrix_get_determinant(): rm assert(), improve error
message
2011-02-22 rpalsa
* Added again.
* Correct the library version.
Call CPL_CONFIG_CFITSIO instead of CPL_CHECK_CFITSIO.
* CPL_CHECK_CFITSIO(): Save the result of the libpthread dependency
check to a cache variable.
* CPL_CONFIG_CFITSIO(): Added. It relies on CPL_CHECK_CFITSIO, but
requires cfitsio to be thread-safe if building CPL with
thread-support was requested.
2011-02-21 rpalsa
* Entries reordered.
2011-02-21 cizzo
* CPL_OPENMP(): Remove call to _AC_CC. Supported only by newer
autotools.
* Obsolete.
* Fix typo: configure libcext subdirectory if building with a
packaged libcext source tree.
* CPL_CONFIG_CEXT(): Add proper compiler flags in case of building
with a packaged libcext.
2011-02-21 rpalsa
* Build system updated in preparation for multi-threaded
environments.
* _cpl_propertylist_to_fitsfile(): Bug fixed affecting the
representation of a character property in the FITS header.
Changed back to a single character string from its numerical
equivalent.
2011-02-21 llundin
* 5.3.1cvs -> 5.3.2cvs
2011-02-18 llundin
* 5.3.0 -> 5.3.1cvs
* 5.3.0b1 -> 5.3.0
2011-02-17 llundin
* cpl_matrix_shift(): Use memmove() to reduce copying (so far for
simple shifts)
2011-02-15 llundin
* cpl_wcs_new_from_propertylist(): Test absence of WCS input w.
non-empty input
* cpl_wcs_new_from_propertylist(): Make sure to set a CPL error
code in absence of WCS input. cpl_wcs_is_table(): Replaces
cpl_wcs_get_istab(), fix return values on error and do not
compile (per default)
* On 05/02/2011 07:43, Jim Lewis wrote:
> Hi Klaus,
>
> Here is a new version of the cpl_wcs module. This includes
cpl_wcs.c, cpl_wcs.h and cpl_wcs-test.c. Have a look and tell me
what you think...
>
> cheers, Jim
* cpl_fit_image_gaussian(): Use cpl_image_count_rejected().
cpl_fit_imagelist_polynomial_window(): rm useless assert()s,
cpl_image_wrap() replaces cpl_image_new()
2011-02-14 cizzo
* In cpl_fit_image_gaussian() avoid casting to float when input
images are different from float, and prevent handling of complex
types, and different types for data and error images
* Test against complex types and type mismatch between data and
error images in cpl_fits_image_gaussian()
2011-02-11 llundin
* cpl_fit_imagelist_polynomial_window(): Fix const warnings.
bigauss(): CPL_MATH_2PI replaces 2 * CPL_MATH_PI.
cpl_fit_image_gaussian(): Reduce scope of fitting variables,
CPL_MATH_2PI replaces 2 * CPL_MATH_PI, CPL_MATH_PI_2 replaces
CPL_MATH_PI / 2, avoid sqrt() call on error, compute covariance
via cpl_matrix_product_bilinear(), fix comment typo
* cpl_matrix_shift(): Preserve pointer to elements and improve unit
tests
2011-02-11 cizzo
* Use expected error, and not computed error, for comparing
expected and computed values. Better doc on the uncertainty
implied by a 3-sigma level comparison
2011-02-11 llundin
* static cpl_matrix_set_size_(): Added.
cpl_matrix_product(),cpl_matrix_product_transpose(),cpl_matrix_product_bilinear():
Use cpl_matrix_set_size_(). Also: cpl_error_set\w*_() replaces
ditto w. cpl_func
2011-02-10 llundin
* check_gauss_success(): Verify that the covariance is SPD. Also:
CPL_MATH_DEG_RAD replaces 180 / CPL_MATH_PI and CPL_MATH_2PI
replaces 2 * CPL_MATH_PI
2011-02-10 cizzo
* Fix check in check_gauss_success(), using error, not value itself
as error.
2011-02-10 llundin
* cpl_matrix_product_bilinear(): Added with unit test. Also: Avoid
overflow in calls to cpl_tools_add_flops()
* cpl_test_matrix_abs(): Added w. unit-tests
* cpl_matrix_product{,_transpose}(): Fix segfault on resize
(DFS10005). Also: Add @internal to all non-exported functions
2011-02-09 llundin
* cpl_fit_lvmq_(): Replaces _cpl_fit_lvmq(). cpl_fit_lvmq():
Simplify error propagation. cpl_fit_image_gaussian(): Do not
reset pre-existing error, set CPL_ERROR_SINGULAR_MATRIX when
returning that, deallocate own_cov on error also when covariance
is NULL, propagate error, cpl_error_set\w*_() replaces ditto w.
cpl_func (DFS10002)
* cpl_fit_image_gaussian(): Fix segfault on non-NULL im_err and
NULL red_chisq (DFS10001)
* cpl_fit_image_gaussian(): Fix memory leak (DFS10000)
2011-01-28 llundin
* 5.3.0b1 -> 5.3.0cvs
* 5.3.0cvs -> 5.3.0b1
* Updated
2011-01-28 cizzo
* Prevent compiler warnings from cpl_table_save()
2011-01-26 llundin
* cpl_error_set_wcs_macro(): Support empty string instead of
function name
* cpl_error_set_fits_macro(): Support empty string instead of
function name
2011-01-26 cizzo
* Fix incorrect error message in cpl_table_save()
2011-01-25 cizzo
* Add new test for columns of arrays of strings (commented)
* Add support for arrays of strings in cpl_table_save() too, not
just cpl_table_load(). Fix wrong number of arrayof string
elements read in cpl_table_load()
2011-01-25 llundin
* cpl_dfs_extract_printable(): Guard from CFITSIO v. 3.26 and
improve comments
* cpl_error_set_fits_macro(): Drop cast, fits_get_errstatus() is
already void
2011-01-24 cgarcia
* Substitute imaginary by img_imag and real by img_real in the
complex operations (Fix DFS09015)
2011-01-24 llundin
* cpl_dfs_extract_printable(): Extract a string valid for a FITS
header. cpl_dfs_setup_product_header(): Pass parameters comments
through cpl_dfs_extract_printable() (DFS09935) w. unit-test
2011-01-21 llundin
* return cpl_error_set_{,where_}() replaces harder-to-read
cpl_ensure_code(0, ...)
2011-01-21 cizzo
* Correct call to cpl_ensure_code() in
cpl_dfs_setup_product_header()
2011-01-21 llundin
* cpl_image_load_one(): naxes must have space for 3 elements
(DFS09929)
2011-01-21 kbanse
* add #ifdef _OPENMP
2011-01-17 kbanse
* local static vars not o.k. - so use threadprivate directive for
OMP
2011-01-14 kbanse
* remove global static variables
2011-01-14 cizzo
* Ensure that after each comparison test no error is set
2011-01-13 cizzo
* Safer math in cpl_column_pow_float_complex() and
cpl_column_pow_double_complex()
2011-01-13 llundin
* 5.3.0a3 -> 5.3.0cvs
* 5.3.0cvs -> 5.3.0a3
* cpl_flux_get_window(): rm nonnull attribute (DFS09871)
2011-01-12 llundin
* 5.3.0a2 -> 5.3.0cvs
* 5.3.0cvs -> 5.3.0a2
* filter_median_1(), filter_median(): rm dead code (for support for
different pixel types in input and output). filter_median():
const modifiers added to local declarations
2011-01-12 cizzo
* Guard complex declarations
* Extra test about assignment of complex elements in tables
2011-01-11 llundin
* attribute warn_unused_result only supported from gcc 3.4.
CPL_ATTR_REALLOC: Warn on unused result also for gcc 3.4 to 4.2 +
malloc attribute for gcc 3.0 to 3.3
* NULL-input tests. cpl_plugin_dump(): Test added
* cpl_plugin_get_version_string(), cpl_plugin_get_type_string():
Use CPL_ATTR_ALLOC
* cpl_plugin_set_synopsis(), cpl_plugin_set_description(): Fix
NULL-value doxygen-bug (DFS09864).
cpl_plugin_get_version_string(), cpl_plugin_get_type_string():
cpl_sprintf() replaces strlen()+strcpy()/sprintf().
cpl_error_set*_() replaces cpl_error_set*() + _id.
cpl_plugin_set_*(): cx_strdup() replaces
strlen()+strcpy()/sprintf()
2011-01-10 llundin
* LDFLAGS = $(CFITSIO_LDFLAGS) added (for CFITSIO)
* cpl_flux_get_window(): Fix guard on nonnull attribute
2011-01-05 llundin
* cpl_propertylist_update_string(), cpl_propertylist_set_string(),
cpl_propertylist_insert_string(),
cpl_propertylist_insert_after_string(),
cpl_propertylist_prepend_string(): Handle NULL value, unit tests
added (DFS09860)
2011-01-04 llundin
* cpl_test_abs_complex() replaces cpl_test_abs() w. creal+cimag
* cpl_test_abs_complex() tests
2011-01-04 cizzo
* Added tests regarding the support of complex types
* Fix wrong logic in cpl_column_pow_xxx_complex()
* Added macro cpl_test_abs_complex()
* Better doc to cpl_table_logarithm_column()
2011-01-03 llundin
* cpl_recipedefine_{create,exec,destroy}(): Improve error message.
cpl_recipedefine_create_is_ok(): Make sure to propagate any
fill-error
* cpl_error_set_message_() replaces cpl_error_set_message()
* cpl_recipedefine_create_is_ok(): redeclare to take cpl_error_code
instead of int
* cpl_xmemory_resize(): Fix (gcc 4.5) const warnings
2011-01-03 cizzo
* Correct writing of complex numbers to FITS, in cpl_table_save()
2011-01-03 llundin
* Do not fail on missing perl
2011-01-03 cizzo
* Fix wrong memory handling with complex types in cpl_table_save()
* Fix wrong type check in cpl_column_fill_double_complex()
|