Release 3.0.0
Performance
- add banded implementation of LCS / Indel. This improves the runtime from
O((|s1|/64) * |s2|)
toO((score_cutoff/64) * |s2|)
Changed
- changed many types in the interface from int64_t to size_t, since they can't be negative.
Fixed
- fix incorrect transposition calculation in simd implementation of Jaro similarity
- use posix_memalign on android