Skip to content

Releases: UM-Applied-Algorithms-Lab/AWRY

Version 0.3.1

14 Jan 21:21
d81a4e4

Choose a tag to compare

Version 0.3.1

What's new?

  • Multiple methods on the SearchRange struct are now exposed publicly, allowing for easier development outside the traditional count() and locate() functions.

Version 0.3.0

14 Jan 21:01
78e83b8

Choose a tag to compare

Version 0.3.0

What's new?

*add the initial_search_range() to allow users to start a new SearchRange from scratch.

Version 0.2.2.1

14 Jan 18:56
e7d5abd

Choose a tag to compare

Version 0.2.2.1

What's new?

  • The suffix array compression ratio now allows values above 255, allowing for heavily compressed suffix arrays when locate() is unlikely or never called
  • Included a bug fix the suffix array generation library that fixes an issue where failure to write to disk would not trigger an error.

Version 0.2.1

10 Jan 23:41
0752671

Choose a tag to compare

Version 0.2.1

What's new?

  • Performance improvements were made to the SIMD implementations at the heart of the tool.
  • Fixed an error where the library wasn't ending search early for queries that would return no matches. Longer queries should be much faster now.

Version 0.2.0

09 Jan 23:20
ad5ae99

Choose a tag to compare

Version 0.2.0

What's new?

  • Improved performance by allowing more code to be unsafe on the back end
  • Changed interfaces to take &strs and iterators to &strs instead of Strings
  • updated to most recent version of Sufr suffix array generation library, which should improve index creation times
  • Moved to use &Paths instead of Strings for file paths
  • Added Memsize trait to most types

Version 0.1.3

16 Dec 21:30
0b773e9

Choose a tag to compare

Version 0.1.3

This version updates to use the most recent version of the Sufr library, this shouldn't change the library otherwise.

Version 0.1.2

13 Dec 23:26
f4dee53

Choose a tag to compare

Version 0.1.2

Bug Fixes

*Fixed a bug where the fm index files were being written and read incorrectly.

Version 0.1.1

12 Dec 22:31
78a17b0

Choose a tag to compare

Version 0.1.1

Bug Fixes

  • Fix an issue where large indexes could result in suffix array indexing going out of bounds.

Version 0.1.0

10 Dec 22:26
75c6230

Choose a tag to compare

First release of AWRY