File: ChangeLog

package info (click to toggle)
timbl 6.5-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 2,820 kB
  • sloc: cpp: 17,050; sh: 4,269; ansic: 420; makefile: 55
file content (4873 lines) | stat: -rw-r--r-- 207,340 bytes parent folder | download | duplicates (2)
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
2020-03-20  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/StringOps.cxx: small code refactoring

2020-03-15  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/IGExperiment.cxx, src/Instance.cxx, src/LOOExperiment.cxx,
	src/Metrics.cxx, src/Statistics.cxx, src/StringOps.cxx,
	src/TRIBLExperiments.cxx, src/Testers.cxx, src/neighborSet.cxx,
	src/simpletest.cxx: and more {} added

2020-03-15  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx: another round of code layout improvements

2020-03-14  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Choppers.cxx, src/GetOptClass.cxx, src/IBprocs.cxx,
	src/IBtree.cxx, src/IGExperiment.cxx, src/Instance.cxx,
	src/LOOExperiment.cxx, src/Statistics.cxx, src/neighborSet.cxx: more
	code formatting

2020-03-14  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/GetOptClass.cxx, src/IBprocs.cxx, src/IBtree.cxx: code layout
	cleanup

2020-03-14  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/BestArray.cxx, src/CVExperiment.cxx, src/Choppers.cxx,
	src/Common.cxx, src/IBprocs.cxx, src/IBtree.cxx, src/Instance.cxx,
	src/MBLClass.cxx, src/Metrics.cxx, src/Statistics.cxx,
	src/TimblAPI.cxx, src/TimblExperiment.cxx: code reformatting

2020-03-13  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: re-enable scan-built test for linux/clang
	configuration

2020-03-12  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/GetOptClass.cxx: some code formatting (adding {} in
	if-then-else statements)

2020-03-12  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/GetOptClass.cxx: adapted to change in TiCC::CommandLine

2020-03-12  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/GetOptClass.cxx: added a fix for
	https://github.com/LanguageMachines/timbl/issues/11

2020-03-11  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac, src/GetOptClass.cxx: adapted to changes in
	TiCC::CommandLine

2020-01-10  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* m4/ax_boost_base.m4, m4/ax_boost_regex.m4: removed unneeded files

2019-12-27  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* README.md, include/timbl/BestArray.h, include/timbl/Choppers.h,
	include/timbl/Common.h, include/timbl/GetOptClass.h,
	include/timbl/IBtree.h, include/timbl/Instance.h,
	include/timbl/MBLClass.h, include/timbl/Matrices.h,
	include/timbl/Metrics.h, include/timbl/MsgClass.h,
	include/timbl/Options.h, include/timbl/Statistics.h,
	include/timbl/StringOps.h, include/timbl/Testers.h,
	include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	include/timbl/Types.h, include/timbl/neighborSet.h,
	src/BestArray.cxx, src/CVExperiment.cxx, src/Choppers.cxx,
	src/Common.cxx, src/GetOptClass.cxx, src/IBprocs.cxx,
	src/IBtree.cxx, src/IGExperiment.cxx, src/Instance.cxx,
	src/LOOExperiment.cxx, src/MBLClass.cxx, src/Metrics.cxx,
	src/MsgClass.cxx, src/Statistics.cxx, src/StringOps.cxx,
	src/TRIBLExperiments.cxx, src/Testers.cxx, src/Timbl.cxx,
	src/TimblAPI.cxx, src/TimblExperiment.cxx, src/Types.cxx,
	src/neighborSet.cxx, src/simpletest.cxx: enter 2020

2019-12-10  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/IBtree.h, src/IBtree.cxx: really fix the problem
	signaled by scan-build and inproperly fixed in the previous commit

2019-12-10  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/IBtree.cxx: added safeguard for scan-build

2019-12-10  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/simpletest.cxx: satisfy cppcheck

2019-12-07  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/TimblExperiment.cxx: removed unneeded test for always true
	value

2019-11-07  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx: added comment...

2019-10-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* codemeta.json, configure.ac: bumped version after release

2019-10-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* codemeta.json: hmm version number in codemeta.json was outdated

2019-10-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* NEWS: added NEWS about release

2019-09-26  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/TimblExperiment.h, src/TimblExperiment.cxx: avoid
	NPE

2019-09-26  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/TimblExperiment.cxx: forgot to add the confidence to the JSON

2019-09-23  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx, src/TRIBLExperiments.cxx: small refactoring

2019-09-23  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/TimblExperiment.h, src/TimblExperiment.cxx: added a
	first-class JSON citizen in timbl

2019-09-19  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/MBLClass.h, src/MBLClass.cxx,
	src/TimblExperiment.cxx: added code to store errors in a JSON struct
	when running a JSON server

2019-09-06  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/LOOExperiment.cxx, src/TimblExperiment.cxx: use new function

2019-09-06  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	src/IGExperiment.cxx, src/TRIBLExperiments.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx: add confidence calculation as 1-st class
	citizen

2019-09-02  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/BestArray.cxx, src/TimblExperiment.cxx: improving on the JSON

2019-09-02  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/MBLClass.h, include/timbl/TimblExperiment.h,
	src/MBLClass.cxx, src/TimblExperiment.cxx: added more json producing
	methods

2019-09-02  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/BestArray.h, include/timbl/TimblExperiment.h,
	src/BestArray.cxx, src/TimblExperiment.cxx: start adding support for
	JSON output

2019-09-02  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Timbl.cxx: typo's in usage()

2019-08-18  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac: cleanup

2019-08-18  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac: updated dependency

2019-08-16  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml, src/IBtree.cxx: revert last change, and disable Clang
	scanner for now

2019-08-16  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/IBtree.cxx: mabe this satisfies the Clang checker

2019-08-16  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml, configure.ac: removing boost dependency

2019-01-15  Maarten van Gompel <proycon@anaproy.nl>

	* : commit dcc70f844a4488cb5f97670626b3aa9c2e5639ae Author: Maarten
	van Gompel <proycon@anaproy.nl> Date:   Tue Jan 15 23:39:07 2019
	+0100

2018-12-18  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* README.md, include/timbl/BestArray.h, include/timbl/Choppers.h,
	include/timbl/Common.h, include/timbl/GetOptClass.h,
	include/timbl/IBtree.h, include/timbl/Instance.h,
	include/timbl/MBLClass.h, include/timbl/Matrices.h,
	include/timbl/Metrics.h, include/timbl/MsgClass.h,
	include/timbl/Options.h, include/timbl/Statistics.h,
	include/timbl/StringOps.h, include/timbl/Testers.h,
	include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	include/timbl/Types.h, include/timbl/neighborSet.h,
	src/BestArray.cxx, src/CVExperiment.cxx, src/Choppers.cxx,
	src/Common.cxx, src/GetOptClass.cxx, src/IBprocs.cxx,
	src/IBtree.cxx, src/IGExperiment.cxx, src/Instance.cxx,
	src/LOOExperiment.cxx, src/MBLClass.cxx, src/Metrics.cxx,
	src/MsgClass.cxx, src/Statistics.cxx, src/StringOps.cxx,
	src/TRIBLExperiments.cxx, src/Testers.cxx, src/Timbl.cxx,
	src/TimblAPI.cxx, src/TimblExperiment.cxx, src/Types.cxx,
	src/neighborSet.cxx, src/simpletest.cxx: enter 2019

2018-12-04  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: changed repository path

2018-11-29  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: OK, with thrusty, we need to disable openMP again for
	clang. what a mess

2018-11-29  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: back tot travis:trusty, until we understand what
	fails wilt boost and clang

2018-11-28  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* m4/ax_boost_base.m4, m4/ax_boost_regex.m4: OK add our version.
	Quite desperate now

2018-11-28  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac: change library inclusing order

2018-11-28  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: edit travis.yml to trigger rebuild

2018-11-28  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/IBtree.cxx: attemp to silence static-checker

2018-11-28  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: use OpenMP on travis with Clang too

2018-11-28  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac: add Boost dependency (for 5 months...)

2018-11-28  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: build on travis:xenial now

2018-11-28  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* NEWS: wrong date in NEWS :{

2018-11-28  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac: Bumped version after release 6.4.13

2018-11-28  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* NEWS: NEWS about release

2018-11-19  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Statistics.cxx, src/Timbl.cxx: fix 'catching polymorphic type
	by value' warnings

2018-06-04  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx: renamend variable to a more useful name

2018-06-04  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx: removed debug line

2018-06-04  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx, src/Timbl.cxx: updated and fixed --limit code

2018-06-03  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Timbl.cxx: typo in usage()

2018-06-03  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx: remove debug output lines

2018-06-03  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx, src/Timbl.cxx, src/TimblExperiment.cxx: fixing
	--limit

2018-06-03  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/MBLClass.h, include/timbl/TimblAPI.h,
	src/MBLClass.cxx, src/Timbl.cxx, src/TimblAPI.cxx: --limit now
	works, except for CV. (testing still needed)

2018-06-03  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx, src/Timbl.cxx: working on --limit option

2018-05-29  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: avoid building non-master branch

2018-05-29  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/MBLClass.h, include/timbl/TimblAPI.h,
	src/MBLClass.cxx, src/Timbl.cxx, src/TimblAPI.cxx: save not-working
	work

2018-05-16  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac: bumped version after release

2018-05-16  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* NEWS, configure.ac: get ready for release 6.4.12

2018-05-15  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Timbl.cxx: Timbl: updated usage(). Info on -G 2 option was
	wrong.

2018-04-18  Maarten van Gompel <proycon@anaproy.nl>

	* Makefile.am, codemeta.json: Added codemeta.json metadata

2018-04-11  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx: peephole optimisation

2018-03-22  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Timbl.cxx: clearer error message

2018-03-22  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/IBtree.cxx, src/TimblExperiment.cxx: added code to please
	cppcheck and scan-build

2018-03-22  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/IBprocs.cxx: added a warning about not simply replacing
	sscanf...

2018-03-22  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: added cppcheck and scan-build to .travis.yml

2018-02-07  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: updated build on travis

2018-01-30  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac: updated configure.ac

2018-01-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* docs/texfiles/Timbl_6.4_Manual.tex, docs/texfiles/fullname.bst,
	docs/texfiles/ilk.bib: Small edits in the .text files. Added more
	missing files. added the PDF (meh)

2018-01-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* docs/texfiles/fspace.eps, docs/texfiles/pos-neg.eps,
	docs/texfiles/roc-auc.eps: added missing files

2018-01-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac: keep working on 6.5

2018-01-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* NEWS, configure.ac: prepare for bug fix release

2018-01-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx: small code improvement

2018-01-08  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* AUTHORS: honour Giovanni Cassani

2018-01-03  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* : commit 9d824fec859ffb33dad1f7684bcc5204146fe69d Author: Ko van
	der Sloot <K.vanderSloot@let.ru.nl> Date:   Wed Jan 3 15:03:09 2018
	+0100

2018-01-03  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: typo in .yml file

2018-01-03  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* m4/ac_osx_pkg.m4: added m4 file

2018-01-03  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml, configure.ac: updated configure.ac. added OSX build
	to .travis.yml

2018-01-02  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* Makefile.am, README.md, include/timbl/BestArray.h,
	include/timbl/Choppers.h, include/timbl/Common.h,
	include/timbl/GetOptClass.h, include/timbl/IBtree.h,
	include/timbl/Instance.h, include/timbl/MBLClass.h,
	include/timbl/Matrices.h, include/timbl/Metrics.h,
	include/timbl/MsgClass.h, include/timbl/Options.h,
	include/timbl/Statistics.h, include/timbl/StringOps.h,
	include/timbl/Testers.h, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, include/timbl/Types.h,
	include/timbl/neighborSet.h, src/BestArray.cxx,
	src/CVExperiment.cxx, src/Choppers.cxx, src/Common.cxx,
	src/GetOptClass.cxx, src/IBprocs.cxx, src/IBtree.cxx,
	src/IGExperiment.cxx, src/Instance.cxx, src/LOOExperiment.cxx,
	src/MBLClass.cxx, src/Metrics.cxx, src/MsgClass.cxx,
	src/Statistics.cxx, src/StringOps.cxx, src/TRIBLExperiments.cxx,
	src/Testers.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx, src/Types.cxx, src/neighborSet.cxx,
	src/simpletest.cxx: 2018 has come

2018-01-02  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* Makefile.am, README.md, include/timbl/BestArray.h,
	include/timbl/Choppers.h, include/timbl/Common.h,
	include/timbl/GetOptClass.h, include/timbl/IBtree.h,
	include/timbl/Instance.h, include/timbl/MBLClass.h,
	include/timbl/Matrices.h, include/timbl/Metrics.h,
	include/timbl/MsgClass.h, include/timbl/Options.h,
	include/timbl/Statistics.h, include/timbl/StringOps.h,
	include/timbl/Testers.h, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, include/timbl/Types.h,
	include/timbl/neighborSet.h, src/BestArray.cxx,
	src/CVExperiment.cxx, src/Choppers.cxx, src/Common.cxx,
	src/GetOptClass.cxx, src/IBprocs.cxx, src/IBtree.cxx,
	src/IGExperiment.cxx, src/Instance.cxx, src/LOOExperiment.cxx,
	src/MBLClass.cxx, src/Metrics.cxx, src/MsgClass.cxx,
	src/Statistics.cxx, src/StringOps.cxx, src/TRIBLExperiments.cxx,
	src/Testers.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx, src/Types.cxx, src/neighborSet.cxx,
	src/simpletest.cxx: 2018 is here today :)

2017-12-27  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx: some comment added. made more clear that
	Similarity testing is special

2017-12-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx, src/Testers.cxx: important fix

2017-12-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* : commit 68592184bd1b40bf363888eda11c5d8cd2837935 Author: Ko van
	der Sloot <K.vanderSloot@let.ru.nl> Date:   Thu Dec 7 15:50:29 2017
	+0100

2017-11-14  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/Metrics.h, include/timbl/Testers.h,
	src/Metrics.cxx, src/Testers.cxx, src/TimblExperiment.cxx: attempt
	to fix serious problems in cosine metric

2017-11-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac: bumped version after release

2017-11-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* NEWS: NEWS about release

2017-11-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: removed outcommented lines

2017-11-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Choppers.cxx, src/Types.cxx: fixed typos in messages

2017-11-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* docs/timbl.1: fixed a type in man page

2017-10-26  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/IBtree.h, src/IBtree.cxx: another small speedup by
	replacing map ==> unordered_map

2017-10-26  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/Instance.h: very small speed update. use an
	unordered_map

2017-10-17  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Testers.cxx: refined debug possibilities

2017-09-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Choppers.cxx: refactoring

2017-09-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Makefile.am: update automake defaults

2017-09-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/Options.h: added fallthrough comment, gcc7 likes
	that

2017-09-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Makefile.am: set AM_CXX flags

2017-09-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac: modernized and cleaned up

2017-09-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* bootstrap.sh: removed 'ln -s'

2017-09-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* README: added README (avoiding 'ln -s' in bootstrap.sh)

2017-08-22  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/StringOps.h, src/Choppers.cxx, src/StringOps.cxx: 
	allow for spaces in TABBED input

2017-07-19  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: typo :{

2017-07-19  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: adde openmp stuff for clang

2017-07-19  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: attempt to symplify .yml file. Added dependencies too

2017-05-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: fixing

2017-05-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: added Travis notices

2017-04-04  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac: bumped version after release

2017-04-04  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Makefile.am: bumped library minor version. Some functions
	(which shouldn't be used anyway) are removed from the API.

2017-04-04  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* NEWS: get ready for release

2017-02-27  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	src/TimblAPI.cxx, src/TimblExperiment.cxx: some cleanup of unused
	fuctions

2017-02-27  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/IBtree.cxx, src/MBLClass.cxx: removed an unused function and
	an unused variable

2017-02-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml: just to be sure use $COMPILER for make checkk too

2017-02-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml, src/Makefile.am: modernize travis build

2017-01-25  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/TimblExperiment.cxx: added {} brackets for clarity

2017-01-19  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/Choppers.h, include/timbl/Common.h,
	include/timbl/GetOptClass.h, include/timbl/IBtree.h,
	include/timbl/Instance.h, include/timbl/MBLClass.h,
	include/timbl/Metrics.h, include/timbl/Options.h,
	include/timbl/Statistics.h, include/timbl/Testers.h,
	include/timbl/TimblExperiment.h, include/timbl/neighborSet.h,
	src/IBtree.cxx, src/Instance.cxx, src/MBLClass.cxx, src/Testers.cxx: 
	numerous refactoring steps

2017-01-19  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .travis.yml, src/TimblExperiment.cxx: reverted last change and
	force Travis to a decent GCC version

2017-01-19  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/TimblExperiment.cxx: fix: c++0x doesn't support
	std::string::pop_back()

2017-01-19  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/TimblExperiment.cxx: more refactoring. using Timer::now().
	Fixed an error with -e option too!

2017-01-19  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/GetOptClass.cxx, src/IBprocs.cxx, src/IBtree.cxx,
	src/Instance.cxx, src/MBLClass.cxx, src/Metrics.cxx,
	src/Testers.cxx, src/Timbl.cxx, src/TimblExperiment.cxx: refactoring
	based on CPPCHECK

2017-01-17  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* demos/api_test5.cxx, src/IGExperiment.cxx, src/Timbl.cxx: small
	fixes after static code checking

2017-01-17  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/Common.h: omit warnings

2016-12-21  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Timbl.cxx: enterd 2017 here too

2016-12-20  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* README.md, include/timbl/BestArray.h, include/timbl/Choppers.h,
	include/timbl/Common.h, include/timbl/GetOptClass.h,
	include/timbl/IBtree.h, include/timbl/Instance.h,
	include/timbl/MBLClass.h, include/timbl/Matrices.h,
	include/timbl/Metrics.h, include/timbl/MsgClass.h,
	include/timbl/Options.h, include/timbl/Statistics.h,
	include/timbl/StringOps.h, include/timbl/Testers.h,
	include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	include/timbl/Types.h, include/timbl/neighborSet.h,
	src/BestArray.cxx, src/CVExperiment.cxx, src/Choppers.cxx,
	src/Common.cxx, src/GetOptClass.cxx, src/IBprocs.cxx,
	src/IGExperiment.cxx, src/Instance.cxx, src/LOOExperiment.cxx,
	src/MBLClass.cxx, src/Metrics.cxx, src/MsgClass.cxx,
	src/Statistics.cxx, src/StringOps.cxx, src/TRIBLExperiments.cxx,
	src/Testers.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx, src/Types.cxx, src/neighborSet.cxx,
	src/simpletest.cxx: bump year

2016-12-05  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* docs/texfiles/distanceweight-ided.eps,
	docs/texfiles/fullname.sty, docs/texfiles/mble-method.eps: added
	missing files

2016-11-07  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* docs/texfiles/Timbl_6.3_API.tex,
	docs/texfiles/Timbl_6.3_Manual.tex,
	docs/texfiles/Timbl_6.4_Manual.tex: added TeX documention

2016-11-06  Maarten van Gompel <proycon@anaproy.nl>

	* README.md: updated year in copyright

2016-11-06  Maarten van Gompel <proycon@anaproy.nl>

	* README.md: [readme] Highlight Timbl->timbl change (relates to
	issue #2)

2016-11-06  Maarten van Gompel <proycon@anaproy.nl>

	* README.md: mention documentation

2016-11-06  Maarten van Gompel <proycon@anaproy.nl>

	* README.md: removed mention of INSTALL file (it does not exist)

2016-07-11  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac: bumped version after release

2016-07-11  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* NEWS: We've got NEWS

2016-06-20  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Timbl.cxx, src/TimblExperiment.cxx: oke, honour --help as well

2016-06-20  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Timbl.cxx, src/TimblExperiment.cxx: now also honour --version
	option

2016-06-17  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Timbl.cxx: fixing exit codes. A failure shouldn't return 0

2016-06-07  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Testers.cxx: oesp

2016-06-07  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Testers.cxx: smal change

2016-06-07  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/BestArray.cxx, src/GetOptClass.cxx, src/IGExperiment.cxx,
	src/Instance.cxx, src/LOOExperiment.cxx, src/MBLClass.cxx,
	src/Metrics.cxx, src/Statistics.cxx, src/TRIBLExperiments.cxx,
	src/Testers.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx, src/neighborSet.cxx: more refactoring. use
	of TiCC namespace is made explicit now generally

2016-06-07  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/IBprocs.cxx, src/IBtree.cxx, src/Instance.cxx: more
	refactoring en cleanup

2016-06-07  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/TimblExperiment.h, src/CVExperiment.cxx,
	src/LOOExperiment.cxx: some cleanup. removed unneeded dependencies

2016-06-07  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Choppers.cxx: more refactoring

2016-06-07  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Choppers.cxx: refactoring: use more from the 'standard' TiCC::
	functions, and made that explicit.  (avoid using namespace TiCC)

2016-06-02  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/TimblExperiment.h, src/CVExperiment.cxx: simplified
	CV experiment code

2016-06-02  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/StringOps.h, src/CVExperiment.cxx,
	src/StringOps.cxx, src/Timbl.cxx: replaced two identical functions
	by one

2016-02-23  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Choppers.cxx: fixed a problem with sparse format and
	out-of-range indices

2016-02-22  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/BestArray.h, include/timbl/IBtree.h,
	include/timbl/Instance.h, include/timbl/Testers.h,
	include/timbl/TimblExperiment.h, src/IBtree.cxx, src/Instance.cxx,
	src/Makefile.am: working on Quality Of Implementation

2016-02-17  Maarten van Gompel <proycon@anaproy.nl>

	* README => README.md, bootstrap.sh: converted readme to markdown
	and added badges

2016-02-08  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* docs/timbl.1, src/Timbl.cxx: inform the user about de default -B
	value

2016-01-18  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac: bumped version after Release

2016-01-14  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* NEWS: We've got NEWS for you

2016-01-14  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* Makefile.am: transition to GIT

2016-01-04  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* configure.ac, include/timbl/BestArray.h,
	include/timbl/Choppers.h, include/timbl/Common.h,
	include/timbl/GetOptClass.h, include/timbl/IBtree.h,
	include/timbl/Instance.h, include/timbl/MBLClass.h,
	include/timbl/Matrices.h, include/timbl/Metrics.h,
	include/timbl/MsgClass.h, include/timbl/Options.h,
	include/timbl/Statistics.h, include/timbl/StringOps.h,
	include/timbl/Testers.h, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, include/timbl/Types.h,
	include/timbl/neighborSet.h, src/BestArray.cxx,
	src/CVExperiment.cxx, src/Choppers.cxx, src/Common.cxx,
	src/GetOptClass.cxx, src/IBprocs.cxx, src/IBtree.cxx,
	src/IGExperiment.cxx, src/Instance.cxx, src/LOOExperiment.cxx,
	src/MBLClass.cxx, src/Metrics.cxx, src/MsgClass.cxx,
	src/Statistics.cxx, src/StringOps.cxx, src/TRIBLExperiments.cxx,
	src/Testers.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx, src/Types.cxx, src/neighborSet.cxx,
	src/simpletest.cxx: Enter 2016 Updated copyright notice

2015-12-10  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/CVExperiment.cxx, src/Choppers.cxx, src/Common.cxx,
	src/IBtree.cxx, src/IGExperiment.cxx, src/LOOExperiment.cxx,
	src/Metrics.cxx, src/MsgClass.cxx, src/TRIBLExperiments.cxx,
	src/Testers.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx, src/Types.cxx, src/neighborSet.cxx: cleanup
	old SVN id's

2015-12-10  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* include/timbl/BestArray.h, include/timbl/Choppers.h,
	include/timbl/Common.h, include/timbl/GetOptClass.h,
	include/timbl/IBtree.h, include/timbl/Instance.h,
	include/timbl/MBLClass.h, include/timbl/Matrices.h,
	include/timbl/Metrics.h, include/timbl/MsgClass.h,
	include/timbl/Options.h, include/timbl/Statistics.h,
	include/timbl/StringOps.h, include/timbl/Testers.h,
	include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	include/timbl/Types.h, include/timbl/neighborSet.h,
	src/BestArray.cxx, src/GetOptClass.cxx, src/IBprocs.cxx,
	src/Instance.cxx, src/StringOps.cxx: refactored.  Less inter
	dependencies

2015-12-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/BestArray.cxx: modernizing

2015-12-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Statistics.cxx: modernized

2015-12-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Choppers.cxx: use more generic solutions (from ticcutils
	mainly)

2015-12-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/Metrics.cxx: some cleanup here too

2015-12-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/GetOptClass.cxx: more informative warnings

2015-12-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/GetOptClass.cxx: seome cleanup and such

2015-12-09  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx: more modernizing

2015-12-08  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/MBLClass.cxx: starting some modernizing

2015-11-25  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* .gitignore: new file

2015-11-25  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/TimblExperiment.cxx: re-enabled -V option

2015-11-24  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* README: changed mail address

2015-11-24  Maarten van Gompel <proycon@anaproy.nl>

	* README: update

2015-11-24  Maarten van Gompel <proycon@anaproy.nl>

	* README: Gcc version update, (Mbt recommends 4.8 so I figured it
	applies to timbl too nowadays, rather than 4.1)

2015-11-24  Maarten van Gompel <proycon@anaproy.nl>

	* README: platform update

2015-11-24  Maarten van Gompel <proycon@anaproy.nl>

	* : commit 4fbb5d279da5204077c02ac2e1e23df2d7f0d285 Author: Maarten
	van Gompel <proycon@anaproy.nl> Date:   Tue Nov 24 10:58:08 2015
	+0100

2015-11-23  Ko van der Sloot <K.vanderSloot@let.ru.nl>

	* src/TimblExperiment.cxx: oesp. intruduced a bug during refactoring

2015-11-05  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: fix commandline parsing git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18818
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-11-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/CommandLine.h, include/timbl/GetOptClass.h,
	include/timbl/Makefile.am, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, src/CVExperiment.cxx,
	src/CommandLine.cxx, src/GetOptClass.cxx, src/IGExperiment.cxx,
	src/LOOExperiment.cxx, src/Makefile.am, src/TRIBLExperiments.cxx,
	src/Timbl.cxx, src/TimblAPI.cxx, src/TimblExperiment.cxx: major
	shock. removed CommandLine stuff and use libticcutils now.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18811
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-11-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx: started to use the more generic
	TiCC::CL_options insted of TimblOptions.  Not doen yet, but save a
	fully functional version :) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18808
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-11-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: stil problems with gcc5 and output of 0 in
	scientific notation git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18807
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-11-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, src/Instance.cxx: removed unneeded
	dependency. save recompilation time git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18800
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-11-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Matrices.h, src/Instance.cxx: fix for gcc5.
	otherwise 0.0 is printed as 0x0.p+0 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18799
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-10-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* .travis.yml: attempted fix git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18709
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-10-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* .travis.yml: my second yml git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18705
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-10-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* m4/openmp.m4: no longer needed git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18685
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-10-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/Makefile.am: removed git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18683
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-10-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* timbl.pc.in: oesp git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18681
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-10-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/Makefile.am: hmm, seems to be needed for (some?) clang
	implementations git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18680
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-10-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: better test for OpenMP support git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18678
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-09-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblAPI.h: props git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18636
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-09-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* TODO: remember this! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18597
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-03-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/Makefile.am, src/Makefile.am: fall back to c++0x git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18261
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-02-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Types.h, src/CVExperiment.cxx,
	src/IGExperiment.cxx, src/MBLClass.cxx, src/Timbl.cxx,
	src/TimblExperiment.cxx, src/Types.cxx: start modernizing git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18062
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-02-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/Makefile.am, src/Makefile.am: c++11 aware git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18036
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-02-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/IBtree.h, src/LOOExperiment.cxx: IBtree.h: - removed unused variable.  - added depth() menber function.  LOOExperiment.cxx: -  check for 1 -line inputfile (Fatal Error) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@18029
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-01-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/api_test1.cxx, demos/api_test2.cxx, demos/api_test3.cxx,
	demos/api_test4.cxx, demos/api_test5.cxx, demos/api_test6.cxx,
	demos/classify.cxx, demos/tse.cxx: 2015 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@17981
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-01-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/BestArray.cxx, src/CVExperiment.cxx, src/Choppers.cxx,
	src/CommandLine.cxx, src/Common.cxx, src/GetOptClass.cxx,
	src/IBprocs.cxx, src/IBtree.cxx, src/IGExperiment.cxx,
	src/Instance.cxx, src/LOOExperiment.cxx, src/MBLClass.cxx,
	src/Metrics.cxx, src/MsgClass.cxx, src/Statistics.cxx,
	src/StringOps.cxx, src/TRIBLExperiments.cxx, src/Testers.cxx,
	src/Timbl.cxx, src/TimblAPI.cxx, src/TimblExperiment.cxx,
	src/Types.cxx, src/neighborSet.cxx, src/simpletest.cxx: 2015 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@17980
	12f355fe-0486-481a-ad91-c297ab22b4e3

2015-01-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/BestArray.h, include/timbl/Choppers.h,
	include/timbl/CommandLine.h, include/timbl/Common.h,
	include/timbl/GetOptClass.h, include/timbl/IBtree.h,
	include/timbl/Instance.h, include/timbl/MBLClass.h,
	include/timbl/Matrices.h, include/timbl/Metrics.h,
	include/timbl/MsgClass.h, include/timbl/Options.h,
	include/timbl/Statistics.h, include/timbl/StringOps.h,
	include/timbl/Testers.h, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, include/timbl/Types.h,
	include/timbl/neighborSet.h: 2015 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@17979
	12f355fe-0486-481a-ad91-c297ab22b4e3

2014-12-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/timbl.1: fixed hyphens according to
	/usr/share/doc/groff-base/README.Debian git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@17906
	12f355fe-0486-481a-ad91-c297ab22b4e3

2014-10-20  mvgompel <mvgompel@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: macro fix git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@17742
	12f355fe-0486-481a-ad91-c297ab22b4e3

2014-10-19  mvgompel <mvgompel@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: favour g++ over c++ git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@17733
	12f355fe-0486-481a-ad91-c297ab22b4e3

2014-10-19  mvgompel <mvgompel@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: c++ instead of g++ for more generic compilation git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@17731
	12f355fe-0486-481a-ad91-c297ab22b4e3

2014-10-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* AUTHORS: added Maarten git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@17719
	12f355fe-0486-481a-ad91-c297ab22b4e3

2014-09-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, configure.ac: bumping git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@17697
	12f355fe-0486-481a-ad91-c297ab22b4e3

2014-09-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS: updated NEWS git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@17677
	12f355fe-0486-481a-ad91-c297ab22b4e3

2014-08-26  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblAPI.h, src/GetOptClass.cxx, src/TimblAPI.cxx: 
	added possibility to init the API with the new TiCC::CL_options
	class.  a smal step in refactoring the getoptclass git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@17567
	12f355fe-0486-481a-ad91-c297ab22b4e3

2014-08-26  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/GetOptClass.h, src/GetOptClass.cxx: removed slack git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@17566
	12f355fe-0486-481a-ad91-c297ab22b4e3

2014-06-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS: NEWS! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@17327
	12f355fe-0486-481a-ad91-c297ab22b4e3

2014-04-30  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* Makefile.am: fixed 'make dist' git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@17169
	12f355fe-0486-481a-ad91-c297ab22b4e3

2014-01-06  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/api_test1.cxx, demos/api_test2.cxx, demos/api_test3.cxx,
	demos/api_test4.cxx, demos/api_test5.cxx, demos/api_test6.cxx,
	demos/classify.cxx, demos/tse.cxx, include/timbl/BestArray.h,
	include/timbl/Choppers.h, include/timbl/CommandLine.h,
	include/timbl/Common.h, include/timbl/GetOptClass.h,
	include/timbl/IBtree.h, include/timbl/Instance.h,
	include/timbl/MBLClass.h, include/timbl/Matrices.h,
	include/timbl/Metrics.h, include/timbl/MsgClass.h,
	include/timbl/Options.h, include/timbl/Statistics.h,
	include/timbl/StringOps.h, include/timbl/Testers.h,
	include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	include/timbl/Types.h, include/timbl/neighborSet.h,
	src/BestArray.cxx, src/CVExperiment.cxx, src/Choppers.cxx,
	src/CommandLine.cxx, src/Common.cxx, src/GetOptClass.cxx,
	src/IBprocs.cxx, src/IBtree.cxx, src/IGExperiment.cxx,
	src/Instance.cxx, src/LOOExperiment.cxx, src/MBLClass.cxx,
	src/Metrics.cxx, src/MsgClass.cxx, src/Statistics.cxx,
	src/StringOps.cxx, src/TRIBLExperiments.cxx, src/Testers.cxx,
	src/Timbl.cxx, src/TimblAPI.cxx, src/TimblExperiment.cxx,
	src/Types.cxx, src/neighborSet.cxx, src/simpletest.cxx: Happy
	Newyear! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@16820
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-11-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IBtree.cxx: fix 4.9 warning git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@16667
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-10-22  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* bootstrap.sh: added autoconf-archive test git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@16641
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-10-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/GetOptClass.cxx: moved
	include to  better location git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@16636
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-10-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* bootstrap => bootstrap.sh, configure.ac: modernized git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@16622
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-10-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* AUTHORS: credits git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@16578
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-10-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: add missing include git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@16577
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-10-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: fix stupid bug which affected timblserver
	only git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@16553
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-08-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: hmm. trust te external user to delete external
	provided stuff git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@16430
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-07-31  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: Typo in usage() git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@16405
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-04-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Common.h, include/timbl/TimblAPI.h, src/Common.cxx,
	src/Timbl.cxx, src/TimblAPI.cxx: a bit of cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15974
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-04-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Statistics.cxx: removed unused variable git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15933
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-04-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: bump version after release git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15930
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-04-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Makefile.am: increment current library version git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15921
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-04-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, include/timbl/XMLtools.h, src/XMLtools.cxx: cleanup some
	NEWS git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15899
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-04-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, src/IBtree.cxx: needs latest and greatest ticcutils git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15879
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-04-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/BestArray.cxx, src/MBLClass.cxx, src/TimblExperiment.cxx: 
	adapted to improvements in XMLtools git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15868
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-04-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/BestArray.h, include/timbl/IBtree.h,
	include/timbl/Makefile.am, include/timbl/TimblExperiment.h,
	src/BestArray.cxx, src/IBtree.cxx, src/Makefile.am,
	src/TimblExperiment.cxx: include XMLtools from ticcutils now git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15865
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-04-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Common.h, src/Common.cxx, src/IGExperiment.cxx,
	src/TimblExperiment.cxx: moved generic Timer stuff to ticcutils git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15854
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-03-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Options.h, include/timbl/Types.h,
	src/BestArray.cxx, src/CVExperiment.cxx, src/Choppers.cxx,
	src/GetOptClass.cxx, src/IBprocs.cxx, src/IBtree.cxx,
	src/IGExperiment.cxx, src/Instance.cxx, src/LOOExperiment.cxx,
	src/MBLClass.cxx, src/Metrics.cxx, src/TRIBLExperiments.cxx,
	src/Testers.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx, src/neighborSet.cxx: adapted to new
	ticcutils git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15828
	12f355fe-0486-481a-ad91-c297ab22b4e3

2013-01-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/api_test1.cxx, demos/api_test2.cxx, demos/api_test3.cxx,
	demos/api_test4.cxx, demos/api_test5.cxx, demos/api_test6.cxx,
	demos/classify.cxx, demos/tse.cxx, include/timbl/BestArray.h,
	include/timbl/Choppers.h, include/timbl/CommandLine.h,
	include/timbl/Common.h, include/timbl/GetOptClass.h,
	include/timbl/IBtree.h, include/timbl/Instance.h,
	include/timbl/MBLClass.h, include/timbl/Matrices.h,
	include/timbl/Metrics.h, include/timbl/MsgClass.h,
	include/timbl/Options.h, include/timbl/Statistics.h,
	include/timbl/StringOps.h, include/timbl/Testers.h,
	include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	include/timbl/Types.h, include/timbl/XMLtools.h,
	include/timbl/neighborSet.h, src/BestArray.cxx,
	src/CVExperiment.cxx, src/Choppers.cxx, src/CommandLine.cxx,
	src/Common.cxx, src/GetOptClass.cxx, src/IBprocs.cxx,
	src/IBtree.cxx, src/IGExperiment.cxx, src/Instance.cxx,
	src/LOOExperiment.cxx, src/MBLClass.cxx, src/Metrics.cxx,
	src/MsgClass.cxx, src/Statistics.cxx, src/StringOps.cxx,
	src/TRIBLExperiments.cxx, src/Testers.cxx, src/Timbl.cxx,
	src/TimblAPI.cxx, src/TimblExperiment.cxx, src/Types.cxx,
	src/XMLtools.cxx, src/neighborSet.cxx, src/simpletest.cxx: Bump year git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15565
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-11-05  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* m4/acx_pthread.m4: not needed here git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15410
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-11-05  mvgompel <mvgompel@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblAPI.cxx: revert git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15404
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-11-05  mvgompel <mvgompel@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblAPI.h, src/TimblAPI.cxx: added GetAccuracy() to
	TimblAPI git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15403
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-11-05  mvgompel <mvgompel@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblAPI.cxx: treat leave-one-out similar to CV in
	TimblAPI::Test git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15402
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-10-30  mvgompel <mvgompel@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* bootstrap: bootstrap fix (matched failed on automake 1.11.6 with
	Ubuntu 12.10) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15360
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-10-22  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Choppers.cxx: fixex Tabbed format (i hope) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15305
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-10-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: bumped version after release git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15288
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-10-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, src/Statistics.cxx: 'solved' the micro fscore problem. Now
	we follow the manual. Still some dispute though.  get ready for
	release.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15285
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-10-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, configure.ac: needs modern ticcutils! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15271
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-10-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/IBtree.h, include/timbl/Instance.h,
	include/timbl/MBLClass.h, include/timbl/Makefile.am,
	include/timbl/TimblAPI.h, include/timbl/Tree.h,
	include/timbl/Trie.h, src/BestArray.cxx, src/CVExperiment.cxx,
	src/GetOptClass.cxx, src/IBprocs.cxx, src/IBtree.cxx,
	src/IGExperiment.cxx, src/Instance.cxx, src/LOOExperiment.cxx,
	src/MBLClass.cxx, src/Makefile.am, src/Metrics.cxx,
	src/Statistics.cxx, src/TRIBLExperiments.cxx, src/Testers.cxx,
	src/TimblAPI.cxx, src/TimblExperiment.cxx, src/Tree.cxx,
	src/neighborSet.cxx: use StringHash from ticcutils now git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15266
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-10-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/BestArray.h, include/timbl/Choppers.h,
	include/timbl/CommandLine.h, include/timbl/Common.h,
	include/timbl/GetOptClass.h, include/timbl/IBtree.h,
	include/timbl/Instance.h, include/timbl/MBLClass.h,
	include/timbl/Matrices.h, include/timbl/Metrics.h,
	include/timbl/MsgClass.h, include/timbl/Options.h,
	include/timbl/Statistics.h, include/timbl/StringOps.h,
	include/timbl/Testers.h, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, include/timbl/Tree.h,
	include/timbl/Trie.h, include/timbl/Types.h,
	include/timbl/XMLtools.h, include/timbl/neighborSet.h: appended al
	guards with TIMBL_ to avoid clashes git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15264
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-10-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Choppers.cxx: attempt to fix Tabbed problems git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15241
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-09-27  mvgompel <mvgompel@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Choppers.cxx: fixing the fix git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15232
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-09-27  mvgompel <mvgompel@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Choppers.cxx: fix git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15231
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-09-27  mvgompel <mvgompel@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Choppers.h, include/timbl/Types.h,
	src/Choppers.cxx, src/MBLClass.cxx, src/Timbl.cxx,
	src/TimblExperiment.cxx, src/Types.cxx: Added Tabbed inputformat git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15229
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-08-13  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: name changed git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15109
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-08-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/StringOps.h, src/GetOptClass.cxx, src/StringOps.cxx: 
	move to TiCC utils git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15092
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-08-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/tse.cxx, include/timbl/Options.h,
	include/timbl/StringOps.h, src/Choppers.cxx, src/GetOptClass.cxx,
	src/MBLClass.cxx, src/StringOps.cxx, src/TimblExperiment.cxx: moving
	toward ticcutils git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15085
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-08-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/StringOps.cxx: use TiCC utility! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15079
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-08-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, include/timbl/Options.h, include/timbl/StringOps.h,
	include/timbl/TimblAPI.h, include/timbl/Types.h, src/BestArray.cxx,
	src/CVExperiment.cxx, src/Choppers.cxx, src/GetOptClass.cxx,
	src/IBprocs.cxx, src/IBtree.cxx, src/IGExperiment.cxx,
	src/Instance.cxx, src/LOOExperiment.cxx, src/MBLClass.cxx,
	src/Metrics.cxx, src/Statistics.cxx, src/StringOps.cxx,
	src/TRIBLExperiments.cxx, src/Testers.cxx, src/Timbl.cxx,
	src/TimblAPI.cxx, src/TimblExperiment.cxx, src/Types.cxx,
	src/neighborSet.cxx: moved stuff to ticcutils git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15076
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-08-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/LogBuffer.h, include/timbl/LogStream.h,
	src/LogStream.cxx: cleaned git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15050
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-08-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Makefile.am, src/Makefile.am: moved Logging stuff to
	separate module: ticcutils add it to the requirements.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@15046
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-07-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/LogStream.cxx: added debug line git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14973
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-07-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/timbl.1: updated man page git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14971
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-07-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, include/timbl/Trie.h, src/Tree.cxx: added omp directives to
	ensure thread safety git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14944
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-04-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, include/timbl/StringOps.h,
	src/IBtree.cxx, src/Instance.cxx, src/StringOps.cxx: removed
	encoding stuff. libxml2 already does that for us git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14652
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-04-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: when fixing stuff, please fix it all! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14649
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-04-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: when reading a distibution, freq can very big! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14648
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-04-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: ok, the fix in output of distributions still was
	incorrect.  fiexe now? git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14647
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-04-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: some cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14646
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-04-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: made it compile on old GCC git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14645
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-04-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, src/IBtree.cxx, src/Instance.cxx,
	src/MBLClass.cxx: attempt to speed-up occurence learning git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14644
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-04-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, src/Instance.cxx: attempt to fix integer
	overflows git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14643
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-04-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: avoid writing , , when a frequency == 0 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14642
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-04-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: added usage() for --occurrences git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14623
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-04-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, include/timbl/Choppers.h, include/timbl/GetOptClass.h,
	include/timbl/Instance.h, include/timbl/MBLClass.h,
	src/Choppers.cxx, src/CommandLine.cxx, src/GetOptClass.cxx,
	src/IBtree.cxx, src/Instance.cxx, src/MBLClass.cxx,
	src/TimblExperiment.cxx: added an --occurrences option
	(EXPERIMENTAL) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14622
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-03-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/LogStream.cxx: make debugging more easy git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@14390
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-01-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, timbl.pc.in: attempt to clean up configuration git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13941
	12f355fe-0486-481a-ad91-c297ab22b4e3

2012-01-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* README, demos/api_test1.cxx, demos/api_test2.cxx,
	demos/api_test3.cxx, demos/api_test4.cxx, demos/api_test5.cxx,
	demos/api_test6.cxx, demos/classify.cxx, demos/tse.cxx,
	include/timbl/BestArray.h, include/timbl/Choppers.h,
	include/timbl/CommandLine.h, include/timbl/Common.h,
	include/timbl/GetOptClass.h, include/timbl/IBtree.h,
	include/timbl/Instance.h, include/timbl/LogBuffer.h,
	include/timbl/LogStream.h, include/timbl/MBLClass.h,
	include/timbl/Matrices.h, include/timbl/Metrics.h,
	include/timbl/MsgClass.h, include/timbl/Options.h,
	include/timbl/Statistics.h, include/timbl/StringOps.h,
	include/timbl/Testers.h, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, include/timbl/Tree.h,
	include/timbl/Trie.h, include/timbl/Types.h,
	include/timbl/XMLtools.h, include/timbl/neighborSet.h,
	src/BestArray.cxx, src/CVExperiment.cxx, src/Choppers.cxx,
	src/CommandLine.cxx, src/Common.cxx, src/GetOptClass.cxx,
	src/IBprocs.cxx, src/IBtree.cxx, src/IGExperiment.cxx,
	src/Instance.cxx, src/LOOExperiment.cxx, src/LogStream.cxx,
	src/MBLClass.cxx, src/Metrics.cxx, src/MsgClass.cxx,
	src/Statistics.cxx, src/StringOps.cxx, src/TRIBLExperiments.cxx,
	src/Testers.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx, src/Tree.cxx, src/Types.cxx,
	src/XMLtools.cxx, src/neighborSet.cxx, src/simpletest.cxx: 2011 ==>
	2012 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13846
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-12-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: bumped version after Release git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13747
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-12-20  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/IBtree.h: argl, another typo git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13734
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-12-20  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, docs/timbl.1, include/timbl/LogBuffer.h,
	include/timbl/LogStream.h, src/IBtree.cxx, src/LogStream.cxx,
	src/TRIBLExperiments.cxx, src/Testers.cxx, src/Timbl.cxx,
	src/TimblExperiment.cxx: treshold ==> threshold git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13733
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-12-20  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, src/Instance.cxx, src/TimblExperiment.cxx: get ready for
	release: - Some final cleanup - NEWS updated git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13727
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-12-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/LogBuffer.h, include/timbl/LogStream.h,
	src/LogBuffer.cxx, src/LogStream.cxx, src/Makefile.am: Major
	cleanup. There was a lot of dead code.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13696
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-12-13  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, include/timbl/LogBuffer.h, src/LogBuffer.cxx,
	src/LogStream.cxx: fixed a small and anoying problem in
	LogBuffer/LogStream ATTENTION!!!!! ALL Dependencies have to be recompiled! especialy
	TimblServer and MbtServer! ATTENTION!!!!! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13691
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-12-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: try to be smarter git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13624
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-12-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx, src/MBLClass.cxx, src/TimblExperiment.cxx: 
	weeding out some old stuff to speed-up clones.  more can be done, I
	think.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13622
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-10-31  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, src/neighborSet.cxx: fixed bug89 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13492
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-10-27  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/BestArray.h, src/BestArray.cxx: removed unused
	function git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13480
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-10-25  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS: NEWS git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13456
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-10-25  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblAPI.h, src/Common.cxx: made it "-pedantic
	proof" again.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13454
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-09-22  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, src/Instance.cxx: (again) fixed bug 43. Now according to the last insights git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13267
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-09-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* timbl.pc.in: attempt to stop: dpkg-shlibdeps: warning: dependency
	 on libxml2.so.2 could be avoided if "debian/timbl/usr/bin/timbl"
	 were not uselessly linked against it (they use none of its
	symbols).  for libgomp the situation is unclear to me git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13236
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-09-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/simpletest.cxx: removed unneeded include git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13235
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-09-13  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Makefile.am, src/simpletest.cxx: added a test.  'make check'
	and 'make distcheck' now work git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13150
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-09-12  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, docs/timbl.1, src/GetOptClass.cxx, src/Timbl.cxx: changed
	option -Tn to --Treeorder=n git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13135
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-08-31  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/timbl.1, include/timbl/TimblExperiment.h,
	include/timbl/Types.h, src/GetOptClass.cxx, src/LOOExperiment.cxx,
	src/Timbl.cxx, src/TimblExperiment.cxx, src/Types.cxx: add a
	confidence field to the output file. Only when -G applies.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13052
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-08-31  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* m4/acx_pthread.m4: make sure to use the same compiler as specified
	in configure.ac git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13048
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-08-31  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: Bumped version after Release git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@13039
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-08-25  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* AUTHORS, NEWS: stil not released git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@12971
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-08-25  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblAPI.h: avaid multiple definition of
	`Timbl::VersionName()' errors git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@12970
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-08-24  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Common.h, include/timbl/TimblAPI.h, src/Common.cxx,
	src/Timbl.cxx, src/TimblAPI.cxx: attempt to fix dependency of
	TimblAPI on config.h git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@12969
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-08-24  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS: get ready for release git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@12961
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-08-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: fixed Randomized Tie resolution, and then
	unfixed. Depends on reopened bug43 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@12865
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-08-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: make this Warning an Error.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@12857
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-08-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/XMLtools.cxx: smarter serialization git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@12843
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-08-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, include/timbl/TimblExperiment.h, src/TimblExperiment.cxx: 
	Expand is enabled for TRIBL and TRIBL2 too, why not.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@12767
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-06-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS: NEWS! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@10522
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-06-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/classify.cxx, src/IGExperiment.cxx, src/LOOExperiment.cxx,
	src/TimblExperiment.cxx: fixed problem with "+vS" option. It was
	ingnored on several occasions git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@10513
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-05-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/timbl.1: updated man page git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@9987
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-05-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, src/Timbl.cxx: modified usage() updated NEWS git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@9986
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-05-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, include/timbl/Types.h,
	src/Instance.cxx, src/TimblExperiment.cxx, src/Types.cxx: added a
	logarithmic Probability normalisation option.  First take the
	logarithm of all weights, then normalize.  This smoothens the peaks git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@9981
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-05-12  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, include/timbl/Instance.h, src/Instance.cxx:  added a Confidence( class ) function git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@9894
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-05-12  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, src/TimblExperiment.cxx: don't try to normalize missing
	distributions git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@9879
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-04-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: Lift the ban on singleton warnings for Sparse
	and SparseBinary.  Maybe a bit verbose voor large N git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@9746
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-04-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, include/timbl/TimblAPI.h, src/TimblAPI.cxx: - added Version() and VersionName() functions - updated NEWS git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@9315
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-29  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: Bumped version after Releas props set git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@9208
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/dimin.script: 1 forgotten git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@9082
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/api_test1.cxx, demos/api_test2.cxx, demos/api_test3.cxx,
	demos/api_test4.cxx, demos/api_test5.cxx, demos/api_test6.cxx,
	demos/classify.cxx, demos/tse.cxx, include/timbl/BestArray.h,
	include/timbl/Choppers.h, include/timbl/CommandLine.h,
	include/timbl/Common.h, include/timbl/GetOptClass.h,
	include/timbl/IBtree.h, include/timbl/Instance.h,
	include/timbl/LogBuffer.h, include/timbl/LogStream.h,
	include/timbl/MBLClass.h, include/timbl/Matrices.h,
	include/timbl/Metrics.h, include/timbl/MsgClass.h,
	include/timbl/Options.h, include/timbl/Statistics.h,
	include/timbl/StringOps.h, include/timbl/Testers.h,
	include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	include/timbl/Tree.h, include/timbl/Trie.h, include/timbl/Types.h,
	include/timbl/XMLtools.h, include/timbl/neighborSet.h,
	src/BestArray.cxx, src/CVExperiment.cxx, src/Choppers.cxx,
	src/CommandLine.cxx, src/Common.cxx, src/GetOptClass.cxx,
	src/IBprocs.cxx, src/IBtree.cxx, src/IGExperiment.cxx,
	src/Instance.cxx, src/LOOExperiment.cxx, src/LogBuffer.cxx,
	src/LogStream.cxx, src/MBLClass.cxx, src/Metrics.cxx,
	src/MsgClass.cxx, src/Statistics.cxx, src/StringOps.cxx,
	src/TRIBLExperiments.cxx, src/Testers.cxx, src/Timbl.cxx,
	src/TimblAPI.cxx, src/TimblExperiment.cxx, src/Tree.cxx,
	src/Types.cxx, src/XMLtools.cxx, src/neighborSet.cxx: CliPS ==>
	CLiPS git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@9072
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/BestArray.h, include/timbl/Choppers.h,
	include/timbl/CommandLine.h, include/timbl/Common.h,
	include/timbl/GetOptClass.h, include/timbl/IBtree.h,
	include/timbl/Instance.h, include/timbl/LogBuffer.h,
	include/timbl/LogStream.h, include/timbl/MBLClass.h,
	include/timbl/Matrices.h, include/timbl/Metrics.h,
	include/timbl/MsgClass.h, include/timbl/Options.h,
	include/timbl/Statistics.h, include/timbl/StringOps.h,
	include/timbl/Testers.h, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, include/timbl/Tree.h,
	include/timbl/Trie.h, include/timbl/Types.h,
	include/timbl/XMLtools.h, include/timbl/neighborSet.h: CNTS ==>
	CliPS git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@9070
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* README, demos/api_test1.cxx, demos/api_test2.cxx,
	demos/api_test3.cxx, demos/api_test4.cxx, demos/api_test5.cxx,
	demos/api_test6.cxx, demos/classify.cxx, demos/tse.cxx,
	include/timbl/BestArray.h, include/timbl/Choppers.h,
	include/timbl/CommandLine.h, include/timbl/Common.h,
	include/timbl/GetOptClass.h, include/timbl/IBtree.h,
	include/timbl/Instance.h, include/timbl/LogBuffer.h,
	include/timbl/LogStream.h, include/timbl/MBLClass.h,
	include/timbl/Matrices.h, include/timbl/Metrics.h,
	include/timbl/MsgClass.h, include/timbl/Options.h,
	include/timbl/Statistics.h, include/timbl/StringOps.h,
	include/timbl/Testers.h, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, include/timbl/Tree.h,
	include/timbl/Trie.h, include/timbl/Types.h,
	include/timbl/XMLtools.h, include/timbl/neighborSet.h,
	src/BestArray.cxx, src/CVExperiment.cxx, src/Choppers.cxx,
	src/CommandLine.cxx, src/Common.cxx, src/GetOptClass.cxx,
	src/IBprocs.cxx, src/IBtree.cxx, src/IGExperiment.cxx,
	src/Instance.cxx, src/LOOExperiment.cxx, src/LogBuffer.cxx,
	src/LogStream.cxx, src/MBLClass.cxx, src/Metrics.cxx,
	src/MsgClass.cxx, src/Statistics.cxx, src/StringOps.cxx,
	src/TRIBLExperiments.cxx, src/Testers.cxx, src/Timbl.cxx,
	src/TimblAPI.cxx, src/TimblExperiment.cxx, src/Tree.cxx,
	src/Types.cxx, src/XMLtools.cxx, src/neighborSet.cxx: A lot more
	decapping, in usage() and copyright parts git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@9069
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/Makefile.am, docs/{Timbl.1 => timbl.1}: decapped 'man' page
	too git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8993
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* timblserver.pc.in: removed unwanted file git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8990
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, configure.ac, demos/Makefile.am, src/Makefile.am,
	timbl.pc.in: Started decapping the Timbl family.  Bumped version to
	6.4.0 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8989
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, src/Choppers.cxx, src/Instance.cxx: now
	we survive -pedeantic git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8874
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: nog beter git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8855
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: fixed expanding. I hope… git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8854
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: fixed IB2 expaned problem small fixes to
	stop the compiler from wining git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8851
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS: more News git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8774
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/MBLClass.cxx, src/Timbl.cxx: 
	cleaner errors git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8771
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/CVExperiment.cxx,
	src/Timbl.cxx, src/TimblExperiment.cxx: Added the possibility to
	expand instancebases using the Timbl command.  Just do something
	like: Timbl -f inputfile -i treefile -I newtreefile this wil append
	the instances from 'inputfile' to the instancebase 'treefile' and
	creates a new instancebase file 'newtreefile' git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8770
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblAPI.h, src/TimblAPI.cxx: added a function to
	the API git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8769
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/Timbl.1: up'date'etd git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8741
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/Timbl.1: updated man page git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8740
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblAPI.h, src/Timbl.cxx: updated usage git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8739
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS: added news git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8738
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: solution for bug58 Refuse to read an instancebase
	without a testfile git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8724
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/CVExperiment.cxx,
	src/IGExperiment.cxx, src/TimblExperiment.cxx: attempt to fix bug61 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8717
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/TimblExperiment.cxx: for now,
	we use the original --clones implementation.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8710
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/TimblExperiment.cxx: next
	OpenMp attempt git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8675
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-03-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: another OpenMP attempt git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8654
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* acinclude.m4, configure.ac: deleted unneeded file cleanup in
	configure.ac (not quite sure…) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8607
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, timbl.pc.in: sort of fixed openmp stuff in timbl.pc git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8606
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* m4/openmp.m4: needed! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8374
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: hmm, lets bump git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8373
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, include/timbl/GetOptClass.h,
	include/timbl/TimblExperiment.h, src/GetOptClass.cxx,
	src/IBtree.cxx, src/IGExperiment.cxx, src/LOOExperiment.cxx,
	src/TRIBLExperiments.cxx, src/TimblExperiment.cxx: added
	multithreaded testing (still experimental) Use --clones=<n> to to
	experiment git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8372
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, src/MBLClass.cxx: made better MT
	resistant git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8363
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Statistics.h: headet too! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8361
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Statistics.cxx: added some usefull functions for
	multithreading support git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8360
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-15  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: throwing strings is not very clean git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8330
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: hmm. an experiment was commit. Revert! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8290
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: typo git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8282
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: humiliating this bug is git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8281
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: This hardly ever went wrong, but why not be sure
	to catch problems> git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8278
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: oeps. when copying all, please copy all git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8277
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* : props set git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8193
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/api_test1.cxx, demos/api_test2.cxx, demos/api_test3.cxx,
	demos/api_test4.cxx, demos/api_test5.cxx, demos/api_test6.cxx,
	demos/classify.cxx, demos/tse.cxx, src/Timbl.cxx: more 2011 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8178
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-02-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* README, include/timbl/BestArray.h, include/timbl/Choppers.h,
	include/timbl/CommandLine.h, include/timbl/Common.h,
	include/timbl/GetOptClass.h, include/timbl/IBtree.h,
	include/timbl/Instance.h, include/timbl/LogBuffer.h,
	include/timbl/LogStream.h, include/timbl/MBLClass.h,
	include/timbl/Matrices.h, include/timbl/Metrics.h,
	include/timbl/MsgClass.h, include/timbl/Options.h,
	include/timbl/Statistics.h, include/timbl/StringOps.h,
	include/timbl/Testers.h, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, include/timbl/Tree.h,
	include/timbl/Trie.h, include/timbl/Types.h,
	include/timbl/XMLtools.h, include/timbl/neighborSet.h,
	src/BestArray.cxx, src/CVExperiment.cxx, src/Choppers.cxx,
	src/CommandLine.cxx, src/Common.cxx, src/GetOptClass.cxx,
	src/IBprocs.cxx, src/IBtree.cxx, src/IGExperiment.cxx,
	src/Instance.cxx, src/LOOExperiment.cxx, src/LogBuffer.cxx,
	src/LogStream.cxx, src/MBLClass.cxx, src/Metrics.cxx,
	src/MsgClass.cxx, src/Statistics.cxx, src/StringOps.cxx,
	src/TRIBLExperiments.cxx, src/Testers.cxx, src/Timbl.cxx,
	src/TimblAPI.cxx, src/TimblExperiment.cxx, src/Tree.cxx,
	src/Types.cxx, src/XMLtools.cxx, src/neighborSet.cxx: 2011 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@8176
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-25  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx, src/Timbl.cxx: hmm, toch maar iets anders
	organiseren ivm backward compatibility git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7995
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-25  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, include/timbl/TimblAPI.h,
	src/Timbl.cxx, src/TimblAPI.cxx: added isValid() to API. Does same
	as Valid() but without printing messages git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7994
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-25  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx, src/Timbl.cxx: bail out on weighting problem git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7992
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-25  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: put a lower limit to the number of NN.  Timbl
	would run out of memory, for 'unreasonable' values git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7986
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-13  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: bump version after release git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7800
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-06  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS: Updated the News git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7722
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-05  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* ChangeLog, Makefile.am: ChangeLog no longer in SVN git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7708
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-05  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: Attempt to give a more helpfull errormessage
	ehen -mD breaks git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7697
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Metrics.h, src/Metrics.cxx: reverted last bugfix.
	Some refactoring too, to avoid needless compilations git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7689
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: better formatting of fatal errors git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7685
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Metrics.h: fix bug47 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7684
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Testers.cxx: some more debugging lines git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7683
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: fixed bug 45 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7671
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/BestArray.cxx: send better info to the user git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7663
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/LOOExperiment.cxx, src/TRIBLExperiments.cxx,
	src/TimblExperiment.cxx: use refactored Chopper output. Now we can
	add Exact matches git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7652
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, src/MBLClass.cxx: refactored chopper
	output git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7651
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Choppers.h, src/Choppers.cxx: cleaner solution git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7650
	12f355fe-0486-481a-ad91-c297ab22b4e3

2011-01-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h: const correctness git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7648
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TRIBLExperiments.cxx, src/TimblExperiment.cxx: fixing the fix git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7575
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TRIBLExperiments.cxx, src/TimblExperiment.cxx: fixed bug44
	also for (not yet detected problems with ) TRIBL too.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7574
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* AUTHORS: added contributor git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7573
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: fix for bug44 testing in progress.  In
	some corner cases, output is changed a bit...  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7554
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: moved BestArray initialization to
	TimblExperiment.cxx git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7553
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/BestArray.h, src/BestArray.cxx: added output
	operator git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7551
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/Timbl.1: added missing option git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7392
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: fix bug43: testing with -R can never lead to a
	tie git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7391
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-12  joostvb <joostvb@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* m4/pkg.m4: this file does not belong in svn git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7315
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-12  joostvb <joostvb@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* debian/NEWS.Debian, debian/README.devel, debian/TODO,
	debian/changelog, debian/compat, debian/control, debian/copyright,
	debian/rules, debian/stamp-autotools-files, m4/pkg.m4: debian
	packaging now maintained at

	svn+ssh://svn.debian.org/svn/debian-science/packages/timbl/trunk/debiangit-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7314
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* debian/README.devel: some additions git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7235
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: bumped version after release git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7234
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* debian/NEWS.Debian: version naming fixed git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7215
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* debian/changelog: Building packages git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7207
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* debian/NEWS.Debian: release 6.3.1 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7192
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-06  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/IndexClass.h, include/timbl/Makefile.am,
	include/timbl/XMLtools.h, src/XMLtools.cxx: IndexClass was not used
	added Copyright messages git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7151
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-06  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/StringOps.h, src/StringOps.cxx: added usefull
	debugging function some reformatting git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7148
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: fixed problem with replacing g++ by gcc on mac git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7083
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-12-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* m4/acx_pthread.m4: make Mac happy (i hope) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7074
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-30  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: fixed bug42 testing in progresss git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7065
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-24  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/Timbl.1: another omission git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7012
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-24  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/Timbl.1: added Jensen-Shannon divergence.  small layout fixes git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7011
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-24  antalb <antalb@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/Timbl.1: updated TiMBL man page without actually checking
	nroff syntax git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@7009
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-18  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: grumbl. pthreads are everywhere git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6935
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/Timbl.man: deleted al pdf's HAH git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6916
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* ChangeLog, include/timbl/LogBuffer.h, include/timbl/LogStream.h,
	src/LogBuffer.cxx, src/LogStream.cxx: re-instated LogStream stuff git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6900
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* ChangeLog, NEWS, include/timbl/Makefile.am, src/Makefile.am: 
	updated NEWS LogStreams are back in from TimblServer git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6899
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/Makefile.am, docs/Timbl.1: now we provide a man page git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6895
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* .cvsignore, demos/.cvsignore, docs/.cvsignore,
	include/.cvsignore, src/.cvsignore: old stuff removed git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6891
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/GetOptClass.h, include/timbl/MBLClass.h,
	include/timbl/Makefile.am, include/timbl/NewIBtree.h,
	include/timbl/TimblExperiment.h, src/GetOptClass.cxx,
	src/IBprocs.cxx, src/IGExperiment.cxx, src/MBLClass.cxx,
	src/Makefile.am, src/NewIBtree.cxx, src/TRIBLExperiments.cxx,
	src/TimblExperiment.cxx: removed NewIBTree and --speedtraining from
	the trunk git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6889
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* TODO: todo git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6823
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, src/Instance.cxx: added output method git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6720
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: some rewriting.
	should make extensions simpler git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6719
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: some cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6713
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-11-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: more generic git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6712
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Types.h: added convenient output hack git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6696
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: arggh git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6693
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: hmpff. -s was verbokt git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6692
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-27  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: be as clear as possible when someone (ab)uses
	the manyfold timbl options git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6685
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-26  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/CommandLine.h, include/timbl/TimblAPI.h,
	src/CommandLine.cxx, src/GetOptClass.cxx, src/Timbl.cxx,
	src/TimblAPI.cxx: attempt to simplify command line parsing.
	should'nt we switch to some standard tool? git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6680
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-25  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: oesp git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6616
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-25  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: test2 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6614
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/NewIBtree.cxx: fix TRIBL problems (slow) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6559
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: some fixes and
	polishing git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6556
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: support NewIB stuff git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6555
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IBtree.cxx: some debug lines added git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6554
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: this seems to fix a (numb) memory leak in Dimbl git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6524
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IGExperiment.cxx: cleaner again git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6518
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: insightfull git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6516
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/GetOptClass.cxx,
	src/IGExperiment.cxx, src/Instance.cxx, src/NewIBtree.cxx,
	src/TimblExperiment.cxx: make the compiler more happy git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6515
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/IGExperiment.cxx,
	src/TimblExperiment.cxx: more cleanup and such git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6514
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-13  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, include/timbl/TimblExperiment.h,
	src/IGExperiment.cxx, src/Instance.cxx, src/MBLClass.cxx,
	src/TimblExperiment.cxx: more cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6502
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-13  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/IGExperiment.cxx,
	src/TimblExperiment.cxx: cleaning up git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6501
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-12  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/IGExperiment.cxx,
	src/TimblExperiment.cxx: even faster training testing is a problem
	still git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6479
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-12  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h: cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6472
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-12  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IGExperiment.cxx: again fixed the case where number of
	Features==1 (rather weird) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6471
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-12  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IGExperiment.cxx: hit the same stone again git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6469
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-12  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/NewIBtree.cxx: fix yesterdays fix git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6466
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: some polishing git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6460
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: display tree information after reading a
	tree back in.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6459
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: - fixed a problem with exemplar weights.  - slight speedup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6455
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-06  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx, src/IGExperiment.cxx,
	src/TimblExperiment.cxx: fixed a server problem server also seems to
	work with NewIBtree now git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6402
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-06  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: avoid trouble git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6392
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-05  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/IBprocs.cxx, src/NewIBtree.cxx: 
	added branching info to NewIBtree.  on the fly fixed it for the old
	version git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6363
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-05  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: fixed leaf detection git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6357
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-10-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/IBprocs.cxx, src/NewIBtree.cxx,
	src/TimblExperiment.cxx: store an retrieve of NewIBTree works now.
	testing in progress… git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6351
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IGExperiment.cxx: spurious output git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6191
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/NewIBtree.cxx: fixed exemplaar weging git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6190
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: IB2 also done git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6189
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IBprocs.cxx, src/TimblExperiment.cxx: CrossValidate works also
	with NewIB now git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6188
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/MBLClass.cxx, src/NewIBtree.cxx,
	src/TRIBLExperiments.cxx: TRIBL2 works now also (slow?) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6184
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/NewIBtree.cxx: TRIBL works now, it seems git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6182
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: fixed output git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6181
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: TRIBL doesn't crash
	with --speedtrain=yes.  A small step...  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6169
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Makefile.am, include/timbl/NewIBtree.h,
	src/NewIBtree.cxx, src/TRIBLExperiments.cxx: so we are doomed totaly
	now DO NOT USE --speedtrain git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6165
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IBprocs.cxx: and tihs, arghhh git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6164
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, src/MBLClass.cxx, src/Makefile.am: and
	this git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6163
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: arghh.  this too. (WARNING ! --speedtrain
	is børken!) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6162
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h: needs rollback too git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6161
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IGExperiment.cxx: roll back a few versions. does this fix it? git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6160
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: gettin nearer to the
	finish git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6127
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-15  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: added more stuff to
	emulate the old IB trees git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6119
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: added first attempts
	for test function.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6116
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/NewIBtree.cxx: improved matching git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6067
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: excat matching works
	now git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6066
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/NewIBtree.h, src/NewIBtree.cxx: started work on New
	IB trees.  a lot to do....  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6065
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: changed usage() git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@6052
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx:  ____     ___     ___ ___      __ /\_ ,`\  / __`\ /' __` __`\  /'_
	`\ \/_/  /_/\ \L\ \/\ \/\ \/\ \/\ \L\ \   /\____\ \____/\ \_\ \_\ \_\ \____ \   \/____/\/___/  \/_/\/_/\/_/\/___L\ \                                /\____/                                \_/__/ git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5953
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-09-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IBtree.cxx: clumsy attempt to do some less recursion git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5945
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-31  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/IndexClass.h, include/timbl/Makefile.am,
	include/timbl/TimblExperiment.h, src/IGExperiment.cxx,
	src/TimblExperiment.cxx: experimenting with faster --speedtraining
	(memory hog!) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5914
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx, src/TimblExperiment.cxx: hmm, Don't do
	speedtraining as default git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5796
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/GetOptClass.cxx,
	src/IBtree.cxx, src/IGExperiment.cxx, src/TimblExperiment.cxx: some
	more code cleaning.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5795
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IBtree.cxx, src/TimblExperiment.cxx: more refactoring going on git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5719
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/Testers.cxx,
	src/TimblExperiment.cxx: more cleanup and such git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5713
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: hmpf git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5707
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IGExperiment.cxx: cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5706
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IBtree.cxx: Error not FatalError git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5705
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/IGExperiment.cxx,
	src/TimblExperiment.cxx: cleanup training mess a bit.  maybe I will
	understand it myself some say.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5690
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/IBtree.h, src/IBtree.cxx, src/IGExperiment.cxx,
	src/TimblExperiment.cxx: made debugging code for IBtree configurable
	at compiletime (#define IBSTATS) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5675
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/IBtree.h, include/timbl/Types.h, src/IBtree.cxx,
	src/IGExperiment.cxx, src/TimblExperiment.cxx: added some debugging
	lines. Will spoil your u git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5673
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, include/timbl/TimblExperiment.h,
	src/IGExperiment.cxx, src/Instance.cxx, src/TimblExperiment.cxx: 
	attamp to polisch --speedtraining git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5670
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/GetOptClass.h, include/timbl/TimblExperiment.h,
	src/GetOptClass.cxx, src/IGExperiment.cxx, src/TimblExperiment.cxx: 
	added an --speedtrain option This speeds up training (often a lot)
	but consumes more memory  (from 5 upto 30 %) Work in progress git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5669
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, include/timbl/TimblExperiment.h,
	src/IGExperiment.cxx, src/Instance.cxx, src/TimblExperiment.cxx: 
	added experimental code for faster training. uses more memory.
	TESTING TESTING git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5666
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/IBtree.cxx,
	src/IGExperiment.cxx, src/TimblExperiment.cxx: fixed problem with
	one-feature input.  still trying to make training faster git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5626
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/IBtree.h, src/IBtree.cxx: slightly faster. more
	thinking needed git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5623
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-08-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/IBtree.cxx,
	src/IGExperiment.cxx, src/TimblExperiment.cxx: attempt to further
	speed-up IB1 learning git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5620
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-07-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/IBtree.h, include/timbl/MBLClass.h,
	include/timbl/TimblExperiment.h, src/GetOptClass.cxx,
	src/IBprocs.cxx, src/IBtree.cxx, src/IGExperiment.cxx,
	src/MBLClass.cxx, src/TimblExperiment.cxx: Implemented alternative
	aproach for IB1 learning. (inspired by IGtree learning) Seems te be
	faster git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5560
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-07-27  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/IGExperiment.cxx,
	src/TimblExperiment.cxx: code reshuffling in preparation of an
	attempt to speed up IB1 learning.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5541
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-07-27  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IGExperiment.cxx, src/TimblExperiment.cxx: added some more
	timing messages, to monitor preparation and learning git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5534
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-07-27  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Common.h, src/Common.cxx: added toString() method to
	Timer class git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5533
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-07-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Testers.h, src/Testers.cxx: simplify git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5481
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-07-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Metrics.h, src/Instance.cxx, src/Metrics.cxx,
	src/Testers.cxx: attempt to better sort out metrics and testers.
	hairy...  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5480
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-07-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Testers.cxx: removed strange useless code git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5465
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-07-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: compile before checking in! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5423
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-07-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: some more hackery for SD weighting git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5422
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-07-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, include/timbl/TimblAPI.h,
	include/timbl/Types.h, src/Instance.cxx, src/MBLClass.cxx,
	src/Timbl.cxx, src/TimblAPI.cxx, src/Types.cxx: Added SD weighting
	(-wSD or -w5). Work in progress....  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5408
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-07-13  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Metrics.h, include/timbl/Testers.h,
	include/timbl/Types.h, src/GetOptClass.cxx, src/Metrics.cxx,
	src/Testers.cxx, src/Types.cxx: arghhhh git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5406
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-07-13  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Metrics.h, include/timbl/Testers.h,
	include/timbl/Types.h, src/GetOptClass.cxx, src/Metrics.cxx,
	src/Testers.cxx, src/Types.cxx: better english git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5404
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-07-13  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Testers.h, src/MBLClass.cxx, src/Testers.cxx: added
	-mE option: Euclidic distance for Numeric Features git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5402
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-07-13  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Metrics.h, include/timbl/Types.h,
	src/GetOptClass.cxx, src/Metrics.cxx, src/Types.cxx: implemented
	REAL Jeffreys Divergence Renamed old version to Jensen-Shannon git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@5399
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-06-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, docs/Timbl.man, m4/acx_pthread.m4, m4/ax_openmp.m4: 
	bumped version after release.  removed unneeded m4 macros man is
	still in progress...  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@4920
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-06-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* : removed here git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@4852
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-06-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/Makefile.am: TimblServer manual belongs to the TimblServer
	Package! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@4850
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-06-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/Makefile.am: added TimblServer Manual and updatet version
	number git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@4849
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-05-31  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* debian/changelog, docs/Timbl.man: first attempt for a Timbl `man'
	page git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@4825
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-05-31  antalb <antalb@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* : added PDF versions of 6.3 documentation git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@4823
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-04-06  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Common.cxx, src/MBLClass.cxx, src/TimblExperiment.cxx: fixed
	verbosity. I hope removed unused function git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@4276
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-03-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* : propset git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@4127
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-03-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: nor more mips git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@4123
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-03-22  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* README: adapted readme git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@4093
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-03-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: performed some cleaning git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3987
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-03-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* Makefile.am, configure.ac, init/.cvsignore, init/Makefile.am,
	init/timbl.in: init is unneeded and unwanted git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3982
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-03-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* debian/NEWS.Debian, debian/README.devel, debian/TODO,
	debian/changelog, debian/compat, debian/control, debian/copyright,
	debian/rules, debian/stamp-autotools-files: give Timbl it's own
	debian build dir git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3981
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-03-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* AUTHORS: credits git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3958
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-03-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* timbl.pc.in: added dependency git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3832
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-26  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: added code to fix problem with pre 4.0
	g++ compilers git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3808
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-24  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: unneeded include git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3796
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-24  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/FdStream.h, include/timbl/MBLClass.h,
	include/timbl/Makefile.am, src/FdStream.cxx, src/MBLClass.cxx,
	src/Makefile.am: moved FdStream stuff to TimblServer git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3794
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-24  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Common.h, include/timbl/GetOptClass.h,
	include/timbl/TimblAPI.h, src/Common.cxx, src/FdStream.cxx: some
	include file reshuffling git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3792
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* Makefile.am, configure.ac, demos/Makefile.am,
	demos/sockettestClient.cxx, demos/sockettestServer.cxx,
	include/timbl/LogBuffer.h, include/timbl/LogStream.h,
	include/timbl/Makefile.am, include/timbl/ServerBase.h,
	include/timbl/SocketBasics.h, include/timbl/TimblServerAPI.h,
	src/LogBuffer.cxx, src/LogStream.cxx, src/Makefile.am,
	src/ServerBase.cxx, src/SocketBasics.cxx, src/TimblClient.cxx,
	src/TimblServer.cxx, src/TimblServerAPI.cxx: weeded all socket
	stuff. is all moved to TimblServer git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3781
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-15  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: bumped version. trying to build a new release soon git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3735
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-15  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblServer.cxx: missing space git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3734
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-15  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, src/ServerBase.cxx: added an implementation of
	'daemon' for systems without it (Solaris, MacOSX) added a test for
	'daemon' in configure.ac git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3733
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-15  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerBase.cxx: de keuze was een lekje of een crash bij
	program termination.  Later nog eens uitzoeken.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3732
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblClient.cxx: changed confusing message git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3708
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: removed confusing \n git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3707
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: warn when pre-read metrics are under siege git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3706
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerBase.cxx: i think this is wise git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3705
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: forbid clients to change the preset metrics git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3704
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: uninit value! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3699
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, src/IBprocs.cxx, src/Instance.cxx,
	src/TimblExperiment.cxx: Metric matrices that have been read, are
	never deleted or replaced.  No feedback to the user yet git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3694
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/LOOExperiment.cxx: removed bogus lines (LOO en IB2 are
	incompatible) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3693
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerBase.cxx: oesp git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3691
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerBase.cxx: plumbed the last important leak git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3684
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerBase.cxx: an other leak git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3674
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerBase.cxx, src/SocketBasics.cxx: plumbed a leak better
	signal handling. (still not satisfying) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3673
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerBase.cxx: fix leak git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3671
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerBase.cxx: add some verbosity git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3666
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: added comment git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3665
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: improved usage() git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3658
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblServer.cxx: softExit also for Server git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3654
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: bail out more sophisticated git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3653
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-02-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: meer kritisch op tegenstrijdige opties git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3625
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-27  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/GetOptClass.h, include/timbl/ServerBase.h,
	src/GetOptClass.cxx, src/ServerBase.cxx, src/TimblServer.cxx: added
	--daemonize option for the server handle som signals Changed some
	Info messages from GetOpt into Errors git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3596
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-26  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: attempt to fix server bug git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3586
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-25  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Matrices.h, src/Instance.cxx: copy user proviede
	matrices to server children git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3577
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-25  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerBase.cxx: debug was used uninitialized git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3576
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-25  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: - raised maximum allowed number of neigbors - clip factor wasn't copied to server childs git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3575
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-18  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* bootstrap: cleanup. We need automake 1.10 which is called automake git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3524
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-18  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* Makefile.am: ok, Lenny DOES support it, but you must install
	automake y git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3523
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-18  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* Makefile.am: aclocal --install doesnt work on lenny ;{ git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3522
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-18  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* m4/acx_pthread.m4, m4/pkg.m4: add two macro's to the package.
	aclocal --install doesn't work in lenny :{ git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3521
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-18  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: for now, we build all for pthreads git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3520
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-18  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/api_test1.cxx, demos/api_test2.cxx, demos/api_test3.cxx,
	demos/api_test4.cxx, demos/api_test5.cxx, demos/api_test6.cxx,
	demos/classify.cxx, demos/sockettestClient.cxx,
	demos/sockettestServer.cxx, demos/tse.cxx,
	include/timbl/BestArray.h, include/timbl/Choppers.h,
	include/timbl/CommandLine.h, include/timbl/Common.h,
	include/timbl/FdStream.h, include/timbl/GetOptClass.h,
	include/timbl/IBtree.h, include/timbl/Instance.h,
	include/timbl/LogBuffer.h, include/timbl/LogStream.h,
	include/timbl/MBLClass.h, include/timbl/Matrices.h,
	include/timbl/Metrics.h, include/timbl/MsgClass.h,
	include/timbl/Options.h, include/timbl/ServerBase.h,
	include/timbl/SocketBasics.h, include/timbl/Statistics.h,
	include/timbl/StringOps.h, include/timbl/Testers.h,
	include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	include/timbl/TimblServerAPI.h, include/timbl/Tree.h,
	include/timbl/Trie.h, include/timbl/Types.h,
	include/timbl/neighborSet.h, src/BestArray.cxx,
	src/CVExperiment.cxx, src/Choppers.cxx, src/CommandLine.cxx,
	src/Common.cxx, src/FdStream.cxx, src/GetOptClass.cxx,
	src/IBprocs.cxx, src/IBtree.cxx, src/IGExperiment.cxx,
	src/Instance.cxx, src/LOOExperiment.cxx, src/LogBuffer.cxx,
	src/LogStream.cxx, src/MBLClass.cxx, src/Metrics.cxx,
	src/MsgClass.cxx, src/ServerBase.cxx, src/SocketBasics.cxx,
	src/Statistics.cxx, src/StringOps.cxx, src/TRIBLExperiments.cxx,
	src/Testers.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblClient.cxx, src/TimblExperiment.cxx, src/TimblServer.cxx,
	src/TimblServerAPI.cxx, src/Tree.cxx, src/Types.cxx,
	src/neighborSet.cxx: more socket exorcism Bumped year. It's 2010 now git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3517
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-13  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, include/timbl/ServerBase.h,
	src/IGExperiment.cxx, src/ServerBase.cxx, src/TimblExperiment.cxx: 
	and more steps...  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3510
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-13  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/GetOptClass.h, include/timbl/MBLClass.h,
	include/timbl/ServerBase.h, include/timbl/TimblExperiment.h,
	src/GetOptClass.cxx, src/ServerBase.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx, src/TimblServerAPI.cxx: and more server
	cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3508
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-12  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, include/timbl/Makefile.am,
	include/timbl/ServerBase.h, include/timbl/TimblExperiment.h,
	src/Instance.cxx, src/MBLClass.cxx, src/ServerBase.cxx,
	src/TimblExperiment.cxx: more server activity git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3505
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-12  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/ServerBase.h, include/timbl/ServerProcs.h,
	src/Makefile.am, src/ServerBase.cxx, src/ServerProcs.cxx,
	src/TimblClient.cxx: more server cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3499
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-12  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* : properties git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3498
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, include/timbl/ServerBase.h,
	include/timbl/TimblExperiment.h, src/CVExperiment.cxx,
	src/GetOptClass.cxx, src/IBprocs.cxx, src/IGExperiment.cxx,
	src/LOOExperiment.cxx, src/MBLClass.cxx, src/ServerProcs.cxx,
	src/TRIBLExperiments.cxx, src/TimblAPI.cxx, src/TimblExperiment.cxx: 
	next step in separating server stuff git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3490
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx: tekst gelijk aan oudere versies, om
	verwarring te voorkomen.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3488
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-05  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* Makefile.am, configure.ac, include/timbl/GetOptClass.h,
	include/timbl/TimblExperiment.h, src/GetOptClass.cxx,
	src/Makefile.am, src/ServerProcs.cxx, src/Timbl.cxx,
	src/TimblAPI.cxx, src/TimblExperiment.cxx, src/TimblServerAPI.cxx: 
	started weeding Server stuff from all places.  This will break all
	current Mbt, Dimbl and Tadpole builds! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3468
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-05  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Makefile.am: typo git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3466
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-05  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/GetOptClass.h, include/timbl/ServerBase.h,
	include/timbl/TimblServerAPI.h, src/ServerBase.cxx,
	src/ServerProcs.cxx, src/TimblServer.cxx, src/TimblServerAPI.cxx: 
	ok, nu werkt TimblServer echt git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3464
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/ServerBase.h, src/Makefile.am, src/ServerBase.cxx,
	src/ServerProcs.cxx, src/TimblServer.cxx: TimblServer now works.
	Please don't try this at home! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3453
	12f355fe-0486-481a-ad91-c297ab22b4e3

2010-01-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, include/timbl/Makefile.am,
	include/timbl/ServerBase.h, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, include/timbl/TimblServerAPI.h,
	src/Makefile.am, src/ServerBase.cxx, src/TimblServer.cxx,
	src/TimblServerAPI.cxx: first attempt to separate the servermode of
	Timbl in a separate TimblServer program.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3451
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-12-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h: identation git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3432
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-12-22  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* AUTHORS: Another contributor git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3407
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-12-22  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: fixed syntax errors (which bugged FreeBSD) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3406
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-12-22  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/sockettestServer.cxx: fixed pointer problem om 64 bits
	systems git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3405
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-12-15  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, include/timbl/TimblAPI.h, src/TimblAPI.cxx: Aded two
	functions to the API.  Bumped version git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3363
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-12-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: oesp git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3347
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-12-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* AUTHORS: contributor erbij git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3345
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-12-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: Avoid negative info_gains git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3344
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-12-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* ChangeLog: changed git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3328
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-12-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, configure.ac: argh. forgotten to commit git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3326
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-30  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, include/timbl/TimblAPI.h, src/TimblAPI.cxx: added a
	function to the API, bumped version therefore git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3305
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-17  joostvb <joostvb@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, configure.ac: change to strict increasing version numbering
	scheme git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3244
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: bump version for RC1 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3243
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx: better logging in the server git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3241
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/ServerProcs.h, src/ServerProcs.cxx, src/Timbl.cxx,
	src/TimblClient.cxx: Added base parameter to the Client git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3232
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	src/ServerProcs.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx: Multiple TCP servers on one socket work now git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3227
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/SocketBasics.cxx: Make it work for Cygwin (and other braindead
	systems without GETADDRRINFO) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3222
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	src/ServerProcs.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx: next step to multiple base server git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3184
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx: on our way to multiple Timbl on 1 socket git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3183
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, src/MBLClass.cxx, src/ServerProcs.cxx,
	src/TimblExperiment.cxx: clearer again git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3182
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/GetOptClass.h, include/timbl/MBLClass.h,
	src/GetOptClass.cxx, src/MBLClass.cxx, src/TimblExperiment.cxx: 
	blijven poetsen git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3174
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, include/timbl/TimblExperiment.h,
	src/MBLClass.cxx, src/ServerProcs.cxx, src/TimblExperiment.cxx: 
	start cleaning up socket mess git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3173
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* m4/Makefile.am: package pkg.m4 too git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3152
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-04  antalb <antalb@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* README: updated the README to 6.2 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3145
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* : last minute edit git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3127
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: typo git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3121
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-11-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* ChangeLog, configure.ac, src/Timbl.cxx: Modified intro text
	manuals are up-to-date now version bumped to 6.2 (again) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3118
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-27  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: another pointer problem fixed that made Dimpl go
	wild git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3111
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-26  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/sockettestServer.cxx, src/FdStream.cxx: added dependencies
	to make GCC 4.4 happy git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3106
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-26  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: fix Dimpl crashed. side-effects unclear! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3105
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-21  joostvb <joostvb@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, configure.ac: prepare for next (snapshot) release git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3101
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-21  joostvb <joostvb@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* ChangeLog, docs/Makefile.am: add missing document. now can build
	from svn.  (ran joostvb@bruhat:~/svn/svn.ilk.uvt.nl/TimblManual%
	pdflatex Timbl_6.2_API.tex) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3099
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-21  joostvb <joostvb@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS: record changes git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3098
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-21  joostvb <joostvb@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* ChangeLog, NEWS, configure.ac: list releases as published on
	http://ilk.uvt.nl/packages/beta/ git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3097
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-20  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: should stop Dimpl from crashing git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3086
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-20  antalb <antalb@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* : New version of manual git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3083
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-20  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: added extra PKG_CONFIG check (redundant?) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3074
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-20  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* : added documentation. (beta state) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3073
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: should make Mac happy git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3070
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: fix output git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3068
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblAPI.cxx: hmmm. hope this helps.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3067
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: moved setting of weights to teh 'run once'
	part git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3066
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/api_test1.cxx: changed example git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3065
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: avoid deleting the outputfile when we
	don't realy start a new test git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3063
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: changed 'usage()' git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3062
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* docs/Makefile.am: get ready to pack 6.2 docs git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3061
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: naming was a bit optimistic. back to RC1 now git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3060
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx: small improvement git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3051
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx, src/ServerProcs.cxx, src/TimblExperiment.cxx: 
	finally fixed memory problem with sockets? git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3049
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-13  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx, src/TRIBLExperiments.cxx: fixed two memory leaks git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3041
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-05  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, src/MBLClass.cxx, src/ServerProcs.cxx: ai vergeten
	in te checken git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3025
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-05  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: attempt to fix memory leaks git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3020
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-10-05  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/FdStream.h, include/timbl/XMLtools.h,
	src/Instance.cxx, src/MBLClass.cxx, src/Metrics.cxx,
	src/ServerProcs.cxx, src/Testers.cxx, src/XMLtools.cxx: fixed DC and
	L, i hope XML output via HTTP worsk now for lots of bytes also git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@3018
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-30  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, src/Instance.cxx, src/MBLClass.cxx: 
	temporraraly fixed a crash. But now the server leaks ;[ git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2994
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-30  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, include/timbl/MBLClass.h,
	include/timbl/TimblExperiment.h, src/Instance.cxx,
	src/MBLClass.cxx, src/ServerProcs.cxx, src/Testers.cxx,
	src/TimblExperiment.cxx: fixed a problem with serverclients ignoring
	metric Settings.  stiil a bit uncertain about some aspects. shiver git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2993
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-29  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, src/MBLClass.cxx,
	src/ServerProcs.cxx, src/TimblAPI.cxx, src/TimblExperiment.cxx: 
	added sowm set and show options to the HTTP server multiple
	classifications in one GET are possible git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2986
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/XMLtools.h, src/XMLtools.cxx: new files git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2981
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, include/timbl/BestArray.h, include/timbl/IBtree.h,
	include/timbl/MBLClass.h, include/timbl/Makefile.am,
	include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	src/BestArray.cxx, src/IBtree.cxx, src/Makefile.am,
	src/ServerProcs.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx: XML output is now created using libxml2.  A
	small wrapper is added to accomplish this git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2980
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-22  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx: stopped server from crashing git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2967
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-22  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Common.h, include/timbl/FdStream.h,
	include/timbl/Makefile.am, include/timbl/TimblExperiment.h,
	src/Common.cxx, src/FdStream.cxx, src/MBLClass.cxx,
	src/Makefile.am, src/ServerProcs.cxx, src/SocketBasics.cxx: added
	stream interface for sockets git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2966
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-22  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx: more sensible results from httpServer now git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2963
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-22  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: added -mDC to usage git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2962
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Testers.cxx: some more debug lines added git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2959
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx: oesp git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2958
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	src/ServerProcs.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx: cleanup and some renaming git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2956
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx: fixed errors on OSX (i hope) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2955
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/BestArray.h, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, src/BestArray.cxx,
	src/ServerProcs.cxx, src/TimblAPI.cxx, src/TimblExperiment.cxx: 
	added 'houtje touwtje' XML output git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2953
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/ServerProcs.cxx,
	src/SocketBasics.cxx, src/Timbl.cxx, src/TimblExperiment.cxx: added
	VERY EXPERIMENTAL code for a HTTP service that can handle multiple
	experiments on one socket git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2951
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/GetOptClass.h, src/GetOptClass.cxx: new
	'serverconfig' option added git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2950
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-16  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblAPI.h, src/TimblAPI.cxx: new features for the
	API git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2949
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx: better yet git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2941
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx, src/SocketBasics.cxx: hackin hacking git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2940
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx: use our Timer class now added rudimentary
	HTTP support to the sever git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2939
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Common.h, src/Common.cxx: added methods to Timer
	class git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2938
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: argh. Uninitialized var git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2934
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-10  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/SocketBasics.cxx: typo git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2933
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* Makefile.am, configure.ac, demos/Makefile.am, m4/Makefile.am,
	m4/ax_openmp.m4: made sockettest compilation dependend on OpenMP git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2927
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/sockettestServer.cxx, src/SocketBasics.cxx: better message git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2921
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/sockettestClient.cxx, demos/sockettestServer.cxx,
	include/timbl/SocketBasics.h, src/SocketBasics.cxx: added
	non-blocking writes and adapted tests git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2918
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/sockettestClient.cxx, demos/sockettestServer.cxx: better
	tests, also for nonBlockin sockets git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2915
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/SocketBasics.h, src/SocketBasics.cxx: fix
	nonBlocking mode and read git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2914
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/Makefile.am, demos/sockettestClient.cxx,
	demos/sockettestServer.cxx: added test programs for socket
	interface.  TODO: works only with openMP so make building
	conditional git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2912
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/SocketBasics.cxx: bug fix git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2911
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/SocketBasics.h: refactored; solves a bug, but don't
	know why git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2910
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* Makefile.am: 'make distcheck' works for me git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2905
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-05  joostvb <joostvb@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* ChangeLog, NEWS, configure.ac: prepare next svn snapshot, fix typo
	in version numbers in NEWS git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2895
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-05  joostvb <joostvb@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* Makefile.am: do not install ChangeLog: it interferes bad with
	Debian packaging git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2894
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-05  joostvb <joostvb@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* Makefile.am: tags git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2893
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* ChangeLog, configure.ac: ship it! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2883
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* NEWS, include/timbl/SocketBasics.h, src/SocketBasics.cxx: added
	non-blocking sockets; not tested yet (!) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2882
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx: close std files only when a logfile is
	specified.  So the daemon stays connected to the terminal! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2879
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-09-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2872
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-31  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* ChangeLog, NEWS: NEWS en properties git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2849
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-31  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* bootstrap: m4 dir is created when needed git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2847
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-31  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* : delete this please git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2846
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-18  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Common.cxx: leave endl to the caller! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2816
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-18  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IGExperiment.cxx, src/TRIBLExperiments.cxx: honour SILENT
	again. Refactoring isn't easy git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2813
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-18  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: not all good ideas are brilliant git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2812
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-17  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: oesp git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2809
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-11  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/LOOExperiment.cxx: it's not only hard, but also confusing.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2806
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-11  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/LOOExperiment.cxx, src/TimblExperiment.cxx: small refactoring.
	it's hard ;{ git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2804
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-10  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/IGExperiment.cxx: hmm. we
	don't want to see metric ino for IG tree git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2803
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-10  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/CVExperiment.cxx,
	src/IGExperiment.cxx, src/LOOExperiment.cxx,
	src/TRIBLExperiments.cxx, src/TimblExperiment.cxx: refactoring:
	working towards more stream-like tests git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2802
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-10  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IBprocs.cxx, src/IGExperiment.cxx, src/TRIBLExperiments.cxx,
	src/TimblExperiment.cxx: fixed typo at 5 places git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2801
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-05  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/CVExperiment.cxx,
	src/LOOExperiment.cxx, src/TimblAPI.cxx, src/TimblExperiment.cxx: 
	started refactoring to make a stream interface more easy to do git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2799
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-05  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	src/TimblAPI.cxx, src/TimblExperiment.cxx: renamed
	matchedAtTerminal() to matchedAtLeaf() git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2798
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-05  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/LOOExperiment.cxx, src/MBLClass.cxx, src/TimblExperiment.cxx: 
	removed nonfunctional "-" filenames git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2796
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-05  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblAPI.cxx: layout git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2793
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-05  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/IBtree.h, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, src/IBtree.cxx,
	src/IGExperiment.cxx, src/TRIBLExperiments.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx: +vmd works now for all algorithms Added two
	methods to the API to get the result available: match_depth() to
	return the depth, and matchedAtTerminal() to see if it matched at a
	terminal node git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2792
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-04  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/CommandLine.cxx: more clear now git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2789
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-04  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* init/timbl.in: --logfile and --pidfile also here git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2787
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-08-04  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/CommandLine.cxx, src/GetOptClass.cxx: 'long' commandline
	options need 2 hyphens now.  so --silly=yes, --sloppy=true and so
	on.  also values are better checked now.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2784
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-22  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: one line to much git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2761
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-22  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: another small step for a man git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2760
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-22  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, include/timbl/TimblExperiment.h,
	src/CVExperiment.cxx, src/MBLClass.cxx, src/TimblExperiment.cxx: 
	refactor some stuff git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2759
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-20  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IGExperiment.cxx: outcommented timers git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2753
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-20  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/StringOps.cxx: fixed error for empty strings git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2749
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-14  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Common.h, src/Common.cxx, src/IGExperiment.cxx: 
	Timer seems a usefull thingy. So add it to Commons.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2744
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-14  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IBtree.cxx: Bail out if we don't get what we want.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2743
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-14  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/IBtree.cxx,
	src/IGExperiment.cxx: simple attempt to speed up git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2742
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-09  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: i hope this fixes the problems with not using
	Value Matrices git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2738
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-09  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: o noes. It is really broken :{ git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2729
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-09  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: o no.  stored matrices were ignored! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2728
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-08  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IGExperiment.cxx: added extra timing code in IG tree building.
	if you don't want to see it, don't update ;) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2727
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-08  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: oesp git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2726
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-07  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Matrices.h, src/Instance.cxx, src/Timbl.cxx: nog wat
	gehak. Featurewaarden kunnen ook ',' bevatten namelijk git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2723
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-07  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: - write matrices even without a testfile - typo git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2722
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-06  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: enabled storing and retrieving ValueMatrices using
	-matrixout=<name> and -matrixin=name git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2721
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-06  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, src/Instance.cxx, src/MBLClass.cxx,
	src/TimblExperiment.cxx: writing and reading ValueMatrices seems to
	work now.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2720
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-06  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: two typos git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2719
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-02  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IGExperiment.cxx: yet another numb change to test 'ci' mailing git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2705
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-02  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/CVExperiment.cxx: new attempt to see if 'ci' forces mail git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2704
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-07-01  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IGExperiment.cxx: changhe to test mailing list git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2703
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-30  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, include/timbl/MBLClass.h,
	include/timbl/Matrices.h, include/timbl/TimblExperiment.h,
	src/Instance.cxx, src/MBLClass.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx: started implementing write/read of VD
	matrices. Not quite done yet git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2702
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-30  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/.cvsignore, include/timbl/GetOptClass.h,
	include/timbl/MBLClass.h, include/timbl/SocketBasics.h,
	src/CVExperiment.cxx, src/GetOptClass.cxx, src/IBprocs.cxx,
	src/IGExperiment.cxx, src/LOOExperiment.cxx, src/ServerProcs.cxx,
	src/SocketBasics.cxx, src/TRIBLExperiments.cxx, src/TimblAPI.cxx,
	src/TimblClient.cxx, src/TimblExperiment.cxx: Sockets in own
	namespace git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2700
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-30  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/config.h: doesn't belong in SVN git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2699
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-29  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx: oesp git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2698
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-29  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/CVExperiment.cxx, src/IBprocs.cxx, src/LOOExperiment.cxx: 
	fixed ./configure --enable-server=no git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2697
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-29  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/SocketBasics.h, src/ServerProcs.cxx,
	src/SocketBasics.cxx: i think it works now for both with and withoy
	GETADDRINFO git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2696
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-24  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/GetOptClass.h, include/timbl/MBLClass.h,
	include/timbl/SocketBasics.h, include/timbl/TimblExperiment.h,
	src/GetOptClass.cxx, src/MBLClass.cxx, src/ServerProcs.cxx,
	src/SocketBasics.cxx, src/Testers.cxx, src/TimblExperiment.cxx: on
	our way to a more OO socket handling. Not done for old (non
	getaddrinfo kind) unix variants git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2695
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-24  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Metrics.cxx: fixed dice (bug 29) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2694
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-23  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Metrics.cxx: other dice calculation. still fails on unigrams git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2691
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-22  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: revert to sane version number git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2687
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-22  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, include/timbl/Makefile.am: ship needed header file
	with tarball git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2686
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-16  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblAPI.h, src/Timbl.cxx, src/TimblAPI.cxx: start
	to add new function to API for storing/retrieving ValueDifference
	Matrices git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2666
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-15  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Metrics.cxx: numb refactoring git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2664
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-15  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: fixed memory leak git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2663
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-10  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Metrics.cxx: shorter git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2652
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-10  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Metrics.cxx: fix dixe metric for short words git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2651
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-10  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: forgotten case git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2650
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-10  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: attempt to streamline metric setting git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2648
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-10  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: better text git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2647
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-10  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: signal problem more expressive git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2646
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-09  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: getting ready for release git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2640
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-08  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Testers.h, src/Testers.cxx: small step git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2639
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-08  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, include/timbl/Testers.h,
	src/Instance.cxx, src/MBLClass.cxx, src/Testers.cxx: phew. leaner
	and meaner git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2638
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-08  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Metrics.h: hmm, some more slack git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2637
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-08  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, include/timbl/Metrics.h,
	include/timbl/Testers.h, src/IBprocs.cxx, src/Instance.cxx,
	src/MBLClass.cxx, src/Metrics.cxx, src/Testers.cxx,
	src/TimblExperiment.cxx: more metric and testing reshuffling git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2636
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-02  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Testers.h, src/Metrics.cxx, src/Testers.cxx: next
	small step git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2632
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-02  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, include/timbl/Metrics.h,
	include/timbl/Testers.h, src/Instance.cxx, src/Testers.cxx: some
	renaming git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2631
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-02  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/BestArray.h, include/timbl/Instance.h,
	include/timbl/TimblExperiment.h, src/GetOptClass.cxx,
	src/IBprocs.cxx, src/IGExperiment.cxx, src/MBLClass.cxx,
	src/Testers.cxx: some cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2629
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-02  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Metrics.h, include/timbl/Testers.h,
	src/GetOptClass.cxx, src/IBprocs.cxx, src/Instance.cxx,
	src/MBLClass.cxx, src/Makefile.am, src/Metrics.cxx,
	src/Testers.cxx, src/TimblExperiment.cxx: split up Metrics and
	Testers git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2628
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-06-02  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: removed IB2_HACK stuff. The new
	implementation is accepted (by me) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2627
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-27  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Options.h, src/MBLClass.cxx: fixed some cornercases git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2623
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-27  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: ai. -silly and -sloppy were nog handled
	correctly. Changed interface.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2622
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-27  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/api_test1.cxx: modified test, to get some results.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2621
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-27  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblAPI.cxx: formatting git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2620
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-27  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* demos/api_test1.cxx, include/timbl/Instance.h,
	src/GetOptClass.cxx, src/IGExperiment.cxx, src/Instance.cxx,
	src/MBLClass.cxx, src/TimblExperiment.cxx: cleanup Metric stuff git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2619
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-26  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: attempt to fix the last leaks git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2616
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-26  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, include/timbl/Options.h,
	include/timbl/Types.h, src/GetOptClass.cxx, src/MBLClass.cxx,
	src/Testers.cxx, src/TimblExperiment.cxx, src/Types.cxx: removed
	DefaultOption stuff. metric options are handled more clearly now.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2615
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-26  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h: added sanityCheck() to
	IGExperiment. could be usefull for others too git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2614
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-26  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IGExperiment.cxx: moved common code to one function.  some
	more errors lead to a stop now, instead of changing parameters and
	resuming git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2613
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-25  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, include/timbl/Testers.h,
	src/IBprocs.cxx, src/MBLClass.cxx, src/Testers.cxx,
	src/TimblExperiment.cxx: cleaning up Metrics stuff.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2604
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-25  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Testers.h: hmpf git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2603
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-25  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Testers.h: make gcc4.1 happy git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2602
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-19  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx, src/Testers.cxx: better git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2599
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-19  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: removed assertion git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2598
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-19  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: fixed bug 25 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2597
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-19  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: oesp git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2595
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-19  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/GetOptClass.h, include/timbl/IBtree.h,
	include/timbl/Instance.h, include/timbl/MBLClass.h,
	include/timbl/Testers.h, src/GetOptClass.cxx, src/IBtree.cxx,
	src/Instance.cxx, src/MBLClass.cxx, src/Testers.cxx,
	src/TimblExperiment.cxx: a lot of Metrics cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2594
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-05-13  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, include/timbl/MBLClass.h,
	include/timbl/Testers.h, src/GetOptClass.cxx, src/IGExperiment.cxx,
	src/Instance.cxx, src/MBLClass.cxx, src/Testers.cxx,
	src/TimblExperiment.cxx: first step in factoring out Metrics.  A lot
	to do! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2592
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-04-14  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx: now we make sure that logfile and pidfile
	(when used) are ABSOLUTE filenames git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2581
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-04-07  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* ChangeLog, include/timbl/Instance.h, include/timbl/Testers.h,
	include/timbl/Types.h, src/GetOptClass.cxx, src/Instance.cxx,
	src/Testers.cxx, src/Types.cxx: first attempt to implement dice
	metric git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2577
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-04-06  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: removed confusing NS warning for undocumented -Z
	option git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2572
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-04-06  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: added Server stuff to usage git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2571
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-03-16  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/CommandLine.h, src/CommandLine.cxx: fixed output off
	CommandLine (used for debugging mainly) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2542
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-03-10  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: hmm. that didn't work out. To many old libtools
	around.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2531
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-03-10  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: attempt to improve libtool usage git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2530
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-03-10  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Statistics.cxx: fixed FScore and AUC calculations git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2525
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-03-04  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/IBtree.h, src/IBtree.cxx, src/MBLClass.cxx,
	src/TRIBLExperiments.cxx, src/TimblExperiment.cxx: - at last fixed a wll known memory leak - deleting an instancebase is done non-recursive at the top level,
	in an attempt to fix exhaustive cache usage git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2523
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-03-02  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: attempt to fix bug 21 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2521
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-03-02  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	src/CVExperiment.cxx, src/Timbl.cxx, src/TimblAPI.cxx,
	src/TimblExperiment.cxx: fixed the problem that -w <filename> and -u
	<filename> were ignored for CV testing git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2518
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-03-02  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: bumped version, because we add stuff to the API git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2517
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-02-18  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: don't show estimate if we passed that
	line git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2496
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-02-18  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: made 'configurable' IB2 hack git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2495
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-02-18  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: reverted IB2 attempt to be smart. Keeping
	fixes counting, though git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2494
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-02-17  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: train with a threshold git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2493
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-02-17  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx, src/TimblExperiment.cxx: try to speed up IB2 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2492
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-02-17  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: fixed problem with counting of IB2
	additions git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2491
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-02-16  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: this is it, i hope git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2490
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-02-16  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/TimblExperiment.cxx: and
	again improved git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2489
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-02-16  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/TimblExperiment.h, src/TimblExperiment.cxx: next
	attempt for better IB2 logging git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2488
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-02-16  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, src/TimblExperiment.cxx: More fixes for
	IB2 progress logging git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2487
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-02-16  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: clumsy attemp to fic IB2 git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2484
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-02-16  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblAPI.cxx: return something useless when failing.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2483
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-02-16  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, src/IGExperiment.cxx: fixed bug 17 (enhancement)
	bumped to 6.1.6-beta git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2482
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-02-09  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: bumoed version git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2474
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-01-26  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* Makefile.am, bootstrap: attempt to fix m4 stuff git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2465
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-01-21  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* Makefile.am, configure.ac: Moderner git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2458
	12f355fe-0486-481a-ad91-c297ab22b4e3

2009-01-07  (no author) <(no author)@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, demos/api_test1.cxx, demos/api_test2.cxx,
	demos/api_test3.cxx, demos/api_test4.cxx, demos/api_test5.cxx,
	demos/api_test6.cxx, demos/classify.cxx, demos/tse.cxx,
	include/timbl/BestArray.h, include/timbl/Choppers.h,
	include/timbl/CommandLine.h, include/timbl/Common.h,
	include/timbl/GetOptClass.h, include/timbl/IBtree.h,
	include/timbl/Instance.h, include/timbl/LogBuffer.h,
	include/timbl/LogStream.h, include/timbl/MBLClass.h,
	include/timbl/Matrices.h, include/timbl/MsgClass.h,
	include/timbl/Options.h, include/timbl/ServerProcs.h,
	include/timbl/SocketBasics.h, include/timbl/Statistics.h,
	include/timbl/StringOps.h, include/timbl/Testers.h,
	include/timbl/TimblAPI.h, include/timbl/TimblExperiment.h,
	include/timbl/Tree.h, include/timbl/Trie.h, include/timbl/Types.h,
	include/timbl/neighborSet.h, src/BestArray.cxx,
	src/CVExperiment.cxx, src/Choppers.cxx, src/CommandLine.cxx,
	src/Common.cxx, src/GetOptClass.cxx, src/IBprocs.cxx,
	src/IBtree.cxx, src/IGExperiment.cxx, src/Instance.cxx,
	src/LOOExperiment.cxx, src/LogBuffer.cxx, src/LogStream.cxx,
	src/MBLClass.cxx, src/MsgClass.cxx, src/ServerProcs.cxx,
	src/SocketBasics.cxx, src/Statistics.cxx, src/StringOps.cxx,
	src/TRIBLExperiments.cxx, src/Testers.cxx, src/Timbl.cxx,
	src/TimblAPI.cxx, src/TimblClient.cxx, src/TimblExperiment.cxx,
	src/Tree.cxx, src/Types.cxx, src/neighborSet.cxx: Bumped year git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2431
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-12-02  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Instance.cxx: removed deadly line git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2398
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-11-26  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/TimblExperiment.cxx: the -vS option is used for Test() also git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2388
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-11-18  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Makefile.am: oesp git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2366
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-11-12  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Metrics.h, src/Makefile.am, src/Metrics.cxx: removed
	dead end git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2361
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-11-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx, src/Instance.cxx, src/MBLClass.cxx,
	src/Testers.cxx: small changed to make life easier, I hope git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2360
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-11-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Testers.h: aded GPL stuff git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2359
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-11-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Types.h: added GPL stuff git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2358
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-11-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Makefile.am: compile new Metrics class git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2357
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-11-04  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Metrics.h, src/Metrics.cxx: start to seperate
	Metrics also (no used yet) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2356
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-11-03  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, include/timbl/MBLClass.h,
	src/Instance.cxx, src/Testers.cxx, src/TimblExperiment.cxx: more
	cleanup in metric handling git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2354
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-29  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, include/timbl/TimblExperiment.h,
	include/timbl/neighborSet.h, src/LOOExperiment.cxx,
	src/TRIBLExperiments.cxx, src/TimblExperiment.cxx,
	src/neighborSet.cxx: cleanup in decay stuff git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2351
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-29  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, include/timbl/Testers.h,
	src/GetOptClass.cxx, src/MBLClass.cxx, src/Testers.cxx,
	src/TimblExperiment.cxx: cleaned up metric stuff a bit git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2350
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IBtree.cxx: changed statsTree output git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2338
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Choppers.h, include/timbl/MBLClass.h,
	src/Choppers.cxx, src/MBLClass.cxx: more cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2337
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Choppers.h, src/Choppers.cxx, src/MBLClass.cxx: more
	cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2336
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Choppers.h, src/Choppers.cxx, src/MBLClass.cxx: 
	changed Choppers git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2335
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-28  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, src/Instance.cxx, src/MBLClass.cxx: 
	cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2334
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-27  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Timbl.cxx: removed debug lien git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2333
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* AUTHORS: an extra contrubutor git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2324
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-21  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/IBtree.cxx: changed output of -IL option git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2323
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-20  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, src/ServerProcs.cxx: try to fix daemon() stuff on
	IRIX.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2322
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/IBtree.h, include/timbl/TimblAPI.h,
	include/timbl/TimblExperiment.h, src/IBtree.cxx, src/Timbl.cxx,
	src/TimblAPI.cxx, src/TimblExperiment.cxx: added experimental code
	for a different tree output git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2320
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-07  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/GetOptClass.cxx: bug? git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2319
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, src/MBLClass.cxx: more banning of
	C-style arrays git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2318
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, include/timbl/Testers.h,
	src/IBprocs.cxx, src/IGExperiment.cxx, src/MBLClass.cxx,
	src/TRIBLExperiments.cxx, src/Testers.cxx, src/TimblExperiment.cxx: 
	again eliminated a C array git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2317
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: numb change git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2315
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/GetOptClass.h, src/GetOptClass.cxx: more refactoring git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2314
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-10-01  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/ServerProcs.cxx: added informational message git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2312
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-09-30  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Choppers.h: small improvement again git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2311
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-09-30  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Choppers.h, src/Choppers.cxx: small refactoring git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2310
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-09-30  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Choppers.h, src/Choppers.cxx, src/MBLClass.cxx: 
	cleaned Chopper class git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2309
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-09-29  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Choppers.h, src/Choppers.cxx, src/MBLClass.cxx: 
	cleaned up Choppers git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2308
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-09-23  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx, src/TimblExperiment.cxx: cleaner git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2304
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-09-22  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx, src/TimblExperiment.cxx: fixed pronblem with
	Chopppers, but not very neat. PLEASE reconsider! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2299
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-09-22  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Choppers.h, src/Choppers.cxx, src/Makefile.am: moved
	Chopper code to separate .cxx file git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2298
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-09-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/BestArray.h, include/timbl/Instance.h,
	src/Instance.cxx: ValueDistribution::size() renamed to totalSize()
	Added new size() function to return the size.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2297
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-09-17  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Choppers.h, include/timbl/MBLClass.h,
	src/Instance.cxx, src/MBLClass.cxx, src/TimblExperiment.cxx: attempt
	to make the choppers smarter.  not done yest git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2296
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-09-15  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: small clarification git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2294
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-09-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/Testers.cxx: small change git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2289
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-09-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Testers.h, src/MBLClass.cxx, src/Testers.cxx: more
	cleanup git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2288
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-09-09  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/IBtree.h, include/timbl/MBLClass.h,
	include/timbl/Testers.h, src/IBtree.cxx, src/MBLClass.cxx,
	src/Testers.cxx: code reshuffling and simplification git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2287
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-09-08  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, include/timbl/Testers.h,
	src/MBLClass.cxx, src/Makefile.am, src/Testers.cxx: made separate
	Testers.cxx ans started to demangle testing stuff git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2286
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-08-20  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: fixed a problem git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2282
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-08-20  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/MBLClass.h, src/MBLClass.cxx,
	src/TimblExperiment.cxx: major code reshuffling. Not ready yet.  git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2281
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-08-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: incremented maximum value for PROGRESS git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2280
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-08-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/StringOps.cxx: hmm. CodeToStr should accept free '\' as well git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2276
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-08-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/StringOps.cxx: fixed last fix git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2275
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-08-19  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/StringOps.cxx: fixed problem with iterator running of at end git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2273
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-08-18  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* include/timbl/Instance.h, src/IBtree.cxx, src/Instance.cxx: small
	code inprovements git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2271
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-08-12  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac: fixed configuration.  Now you can set CXXFLAGS at
	configuretime to override the defaults git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2265
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-08-11  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* configure.ac, src/Common.cxx, src/Instance.cxx, src/MBLClass.cxx: 
	satisfy icpc's -Wcheck compiler option. (-Wall is unwise) git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2261
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-08-06  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* src/MBLClass.cxx: countFeatures may not be declared inline! git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2258
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-07-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* ChangeLog: modified after reinstall git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2247
	12f355fe-0486-481a-ad91-c297ab22b4e3

2008-07-14  sloot <sloot@12f355fe-0486-481a-ad91-c297ab22b4e3>

	* moved git-svn-id: https://ilk.uvt.nl/svn/trunk/sources/Timbl6@2229
	12f355fe-0486-481a-ad91-c297ab22b4e3