-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
62 lines (41 loc) · 1.69 KB
/
ChangeLog
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
2024-07-02 Michael Herstine <[email protected]>
Cut release 0.2.2
Prep the branch for merge.
- Add additional test cases for Berghel & Roach
- Update NEWS
- Update ChangeLog
2024-07-02 Michael Herstine <[email protected]>
Fix issue #5.
Berghel's & Roach's implementation assumes that the source string
is shorter than or equal to the target in length. This patch will
enforce this, both by:
- asserting this condition in `berghel_roach()`, and
- changing `read_corpus` to always sort the two strings
by length before returning them
2024-07-01 Michael Herstine <[email protected]>
Start a CI workflow
Add a test data generation program
Fix broken link in the README
Tidy-up the project.
This patch will fix a few typos, add test data and add a signoff
script.
2021-07-18 Michael Herstine <[email protected]>
Fix issue #2.
Change the conditional in function `f` in the implementation of
Berghel & Roach to be sure that any idexes into the strings are
legit.
2021-03-19 Michael Herstine <[email protected]>
Clean-up-- remove the use of std::vector & variable-length arrays. Do the two-dimensional indexing manually.
2020-06-15 Michael Herstine <[email protected]>
Pre-release clean-up.
Final clean-up:
1. removed use of vector from Berghel-Roach
2. added a new test case-- tables from the original Damerau paper
Continued source code clean-up; mostly removing various TODO items. Ukkonen implementation now respects HAVE_C_VARARRAYS.
Cleanup prior to first release.
1. breaking up the test suite
2. authored README
3. added GPLv3
4. misc project files (NEWS, AUTHORS, &c)
2020-06-14 Michael Herstine <[email protected]>
initial commit