├── LICENSE ├── Makefile ├── README.md ├── docs ├── automata.png ├── determinization.png ├── theory.pdf └── theory.typ ├── test.sh ├── trre.1 ├── trre_dft.c └── trre_nft.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0stya/trre/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0stya/trre/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0stya/trre/HEAD/README.md -------------------------------------------------------------------------------- /docs/automata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0stya/trre/HEAD/docs/automata.png -------------------------------------------------------------------------------- /docs/determinization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0stya/trre/HEAD/docs/determinization.png -------------------------------------------------------------------------------- /docs/theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0stya/trre/HEAD/docs/theory.pdf -------------------------------------------------------------------------------- /docs/theory.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0stya/trre/HEAD/docs/theory.typ -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0stya/trre/HEAD/test.sh -------------------------------------------------------------------------------- /trre.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0stya/trre/HEAD/trre.1 -------------------------------------------------------------------------------- /trre_dft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0stya/trre/HEAD/trre_dft.c -------------------------------------------------------------------------------- /trre_nft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0stya/trre/HEAD/trre_nft.c --------------------------------------------------------------------------------