├── .gitignore ├── INSTALL ├── LICENSE ├── Makefile.default ├── README.md ├── bitstring.h ├── learn.cc ├── older_or_experimental_codes ├── Makefile.miles ├── config_jt ├── learn.cc ├── learn_jt6.cc ├── reverse_test_data_in.txt ├── sample_inputfile ├── test.cc ├── test_data_in.txt ├── test_data_in_bitstrings.txt └── tree.cc └── sample_inputfile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/Makefile.default -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/README.md -------------------------------------------------------------------------------- /bitstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/bitstring.h -------------------------------------------------------------------------------- /learn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/learn.cc -------------------------------------------------------------------------------- /older_or_experimental_codes/Makefile.miles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/older_or_experimental_codes/Makefile.miles -------------------------------------------------------------------------------- /older_or_experimental_codes/config_jt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/older_or_experimental_codes/config_jt -------------------------------------------------------------------------------- /older_or_experimental_codes/learn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/older_or_experimental_codes/learn.cc -------------------------------------------------------------------------------- /older_or_experimental_codes/learn_jt6.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/older_or_experimental_codes/learn_jt6.cc -------------------------------------------------------------------------------- /older_or_experimental_codes/reverse_test_data_in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 18 3 | 5 4 | 10 5 | 6 6 | 20 7 | 27 8 | 3 9 | 15 10 | 24 11 | -------------------------------------------------------------------------------- /older_or_experimental_codes/sample_inputfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/older_or_experimental_codes/sample_inputfile -------------------------------------------------------------------------------- /older_or_experimental_codes/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/older_or_experimental_codes/test.cc -------------------------------------------------------------------------------- /older_or_experimental_codes/test_data_in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 9 3 | 20 4 | 10 5 | 12 6 | 5 7 | 27 8 | 24 9 | 30 10 | 3 11 | -------------------------------------------------------------------------------- /older_or_experimental_codes/test_data_in_bitstrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/older_or_experimental_codes/test_data_in_bitstrings.txt -------------------------------------------------------------------------------- /older_or_experimental_codes/tree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/older_or_experimental_codes/tree.cc -------------------------------------------------------------------------------- /sample_inputfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emstoudenmire/parity/HEAD/sample_inputfile --------------------------------------------------------------------------------