├── .gitignore ├── README.md ├── src ├── binarymatrix.h ├── binaryprint.h ├── bitmaskcombination.h ├── bitpacker.h ├── blockcode.h ├── convolutional-decoder.h ├── convolutional-encoder.h ├── crc.h ├── fecmagic-global.h ├── golay.h ├── hamming.h └── sequence.h └── tests ├── helper.h ├── test_binarymatrix.cpp ├── test_binaryprint.cpp ├── test_bitmaskcombination.cpp ├── test_bitpacker.cpp ├── test_convolutional_decoder.cpp ├── test_convolutional_encoder.cpp ├── test_crc.cpp ├── test_golay.cpp └── test_hamming.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/README.md -------------------------------------------------------------------------------- /src/binarymatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/src/binarymatrix.h -------------------------------------------------------------------------------- /src/binaryprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/src/binaryprint.h -------------------------------------------------------------------------------- /src/bitmaskcombination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/src/bitmaskcombination.h -------------------------------------------------------------------------------- /src/bitpacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/src/bitpacker.h -------------------------------------------------------------------------------- /src/blockcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/src/blockcode.h -------------------------------------------------------------------------------- /src/convolutional-decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/src/convolutional-decoder.h -------------------------------------------------------------------------------- /src/convolutional-encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/src/convolutional-encoder.h -------------------------------------------------------------------------------- /src/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/src/crc.h -------------------------------------------------------------------------------- /src/fecmagic-global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/src/fecmagic-global.h -------------------------------------------------------------------------------- /src/golay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/src/golay.h -------------------------------------------------------------------------------- /src/hamming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/src/hamming.h -------------------------------------------------------------------------------- /src/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/src/sequence.h -------------------------------------------------------------------------------- /tests/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/tests/helper.h -------------------------------------------------------------------------------- /tests/test_binarymatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/tests/test_binarymatrix.cpp -------------------------------------------------------------------------------- /tests/test_binaryprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/tests/test_binaryprint.cpp -------------------------------------------------------------------------------- /tests/test_bitmaskcombination.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/tests/test_bitmaskcombination.cpp -------------------------------------------------------------------------------- /tests/test_bitpacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/tests/test_bitpacker.cpp -------------------------------------------------------------------------------- /tests/test_convolutional_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/tests/test_convolutional_decoder.cpp -------------------------------------------------------------------------------- /tests/test_convolutional_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/tests/test_convolutional_encoder.cpp -------------------------------------------------------------------------------- /tests/test_crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/tests/test_crc.cpp -------------------------------------------------------------------------------- /tests/test_golay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/tests/test_golay.cpp -------------------------------------------------------------------------------- /tests/test_hamming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Venemo/fecmagic/HEAD/tests/test_hamming.cpp --------------------------------------------------------------------------------