blz78suf/README.md

24 lines
573 B
Markdown
Raw Normal View History

2025-01-29 16:28:43 +00:00
# blz78suf
blz78suf - suffix trie-based optimal LZ78 parsing for Brainfuck code
generation. Makes no assumptions on cell size, cell wrapping behaviours
or tape wrapping behaviours of the underlying interpreter. Asymptotically
optimal for highly redundant inputs.Released to the public domain by
Kamila Szewczyk - see COPYING.
Project homepage: https://github.com/kspalaiologos/blz78suf
## Building
```
# If using a git clone (not needed for source packages), first...
$ ./bootstrap
# All...
$ ./configure
$ make
$ sudo make install
```
## Algorithm description
TOOD.