LZ78 optimal parsing for repetitive Brainfuck text generation
m4 | ||
.gitignore | ||
AUTHORS | ||
blz78suf.cpp | ||
bootstrap | ||
configure.ac | ||
COPYING | ||
INSTALL | ||
Makefile.am | ||
README.md |
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.