Skip to content

Commit 07063cd

Browse files
committed
Merge branch 'develop'
2 parents d2b0e32 + 9a8a774 commit 07063cd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+283
-104
lines changed

.github/workflows/timbl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
matrix:
3333
os: [ubuntu-latest, macos-latest]
34-
compiler: [g++-12, clang++ -std=c++17]
34+
compiler: [g++ -std=c++17, clang++ -std=c++17]
3535

3636
steps:
3737

NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
6.11
12
6.10 2024-12-16
23
[Ko van der Sloot]
34
* C++17 is required

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
TiMBL: Tilburg Memory Based Learner
77
===========================================
88

9-
TiMBL 6.4 (c) CLS/ILK/CLiPS 1998 - 2024
9+
TiMBL 6.4 (c) CLS/ILK/CLiPS 1998 - 2025
1010
Centre for Language Studies, Radboud University Nijmegen
1111
Induction of Linguistic Knowledge Research Group, Tilburg University and
1212
Centre for Dutch Language and Speech, University of Antwerp

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"@type": "SoftwareSourceCode",
88
"identifier": "timbl",
99
"name": "TiMBL",
10-
"version": "6.10",
10+
"version": "6.11",
1111
"description": "TiMBL is an open source software package implementing several memory-based learning algorithms, among which IB1-IG, an implementation of k-nearest neighbor classification with feature weighting suitable for symbolic feature spaces, and IGTree, a decision-tree approximation of IB1-IG. All implemented algorithms have in common that they store some representation of the training set explicitly in memory. During testing, new cases are classified by extrapolation from the most similar stored cases.",
1212
"license": "https://spdx.org/licenses/GPL-3.0",
1313
"url": "https://languagemachines.github.io/timbl",

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.69])
5-
AC_INIT([timbl],[6.10],[lamasoftware@science.ru.nl]) #also adapt in codemeta.json!
5+
AC_INIT([timbl],[6.11],[lamasoftware@science.ru.nl]) #also adapt in codemeta.json!
66
AM_INIT_AUTOMAKE
77
AC_CONFIG_SRCDIR([.])
88
AC_CONFIG_MACRO_DIR([m4])

include/timbl/BestArray.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 1998 - 2024
2+
Copyright (c) 1998 - 2025
33
ILK - Tilburg University
44
CLST - Radboud University
55
CLiPS - University of Antwerp

include/timbl/Choppers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef TIMBL_CHOPPERS_H
22
#define TIMBL_CHOPPERS_H
33
/*
4-
Copyright (c) 1998 - 2024
4+
Copyright (c) 1998 - 2025
55
ILK - Tilburg University
66
CLST - Radboud University
77
CLiPS - University of Antwerp

include/timbl/Common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 1998 - 2024
2+
Copyright (c) 1998 - 2025
33
ILK - Tilburg University
44
CLST - Radboud University
55
CLiPS - University of Antwerp

include/timbl/Features.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 1998 - 2024
2+
Copyright (c) 1998 - 2025
33
ILK - Tilburg University
44
CLST - Radboud University
55
CLiPS - University of Antwerp

include/timbl/GetOptClass.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 1998 - 2024
2+
Copyright (c) 1998 - 2025
33
ILK - Tilburg University
44
CLST - Radboud University
55
CLiPS - University of Antwerp
@@ -92,6 +92,7 @@ namespace Timbl {
9292
bool do_sloppy_loo;
9393
bool do_silly;
9494
bool do_diversify;
95+
bool do_prune;
9596
std::vector<MetricType>metricsArray;
9697
std::ostream *parent_socket_os;
9798
std::string inPath;

0 commit comments

Comments
 (0)