packed-dawg 0.2.0.5 → 0.2.0.6
raw patch · 2 files changed
+1/−5 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Data/DAWG/Packed.hs +0/−4
- packed-dawg.cabal +1/−1
Data/DAWG/Packed.hs view
@@ -7,7 +7,6 @@ A DAWG node is stored in four bytes, using 22 bits for indexing and 8 bits for data storage. This implies that * The number of nodes shouldn't exceed 2^22, or 4194304.- * Input characters should be mapped to the 0-255 range. -}@@ -67,11 +66,8 @@ Each "Word32" represents a node. The format of a node is the following: * 22 bits: the index of the first child.- * 8 bits: character data.- * 1 bit: end-of-word flag.- * 1 bit: end-of-childlist flag. The children of a node are laid out next to each other, so they can be iterated over by starting from the first child
packed-dawg.cabal view
@@ -1,7 +1,7 @@ name: packed-dawg-version: 0.2.0.5+version: 0.2.0.6 synopsis: Generation and traversal of highly compressed directed acyclic word graphs. description: Generation and traversal of highly compressed directed acyclic word graphs. license: BSD3