├── .gitignore ├── Makefile ├── README.md ├── main.cpp ├── primitives.h ├── reedSolomon.cpp ├── reedSolomon.h └── simulation ├── README.md ├── m7t30.jpg └── m7t60.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *~ 3 | *.DS_Store 4 | 5 | build/ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nceruchalu/reed_solomon/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nceruchalu/reed_solomon/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nceruchalu/reed_solomon/HEAD/main.cpp -------------------------------------------------------------------------------- /primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nceruchalu/reed_solomon/HEAD/primitives.h -------------------------------------------------------------------------------- /reedSolomon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nceruchalu/reed_solomon/HEAD/reedSolomon.cpp -------------------------------------------------------------------------------- /reedSolomon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nceruchalu/reed_solomon/HEAD/reedSolomon.h -------------------------------------------------------------------------------- /simulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nceruchalu/reed_solomon/HEAD/simulation/README.md -------------------------------------------------------------------------------- /simulation/m7t30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nceruchalu/reed_solomon/HEAD/simulation/m7t30.jpg -------------------------------------------------------------------------------- /simulation/m7t60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nceruchalu/reed_solomon/HEAD/simulation/m7t60.jpg --------------------------------------------------------------------------------