├── .travis.yml ├── LICENSE.md ├── Makefile ├── README.md ├── coru.c ├── coru.h ├── coru_platform.c ├── coru_platform.h ├── coru_util.h └── tests ├── template.fmt ├── test.py ├── test_corners.sh ├── test_nested.sh ├── test_overflow.sh ├── test_parallel.sh ├── test_params.sh └── test_simple.sh /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/README.md -------------------------------------------------------------------------------- /coru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/coru.c -------------------------------------------------------------------------------- /coru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/coru.h -------------------------------------------------------------------------------- /coru_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/coru_platform.c -------------------------------------------------------------------------------- /coru_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/coru_platform.h -------------------------------------------------------------------------------- /coru_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/coru_util.h -------------------------------------------------------------------------------- /tests/template.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/tests/template.fmt -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/tests/test.py -------------------------------------------------------------------------------- /tests/test_corners.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/tests/test_corners.sh -------------------------------------------------------------------------------- /tests/test_nested.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/tests/test_nested.sh -------------------------------------------------------------------------------- /tests/test_overflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/tests/test_overflow.sh -------------------------------------------------------------------------------- /tests/test_parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/tests/test_parallel.sh -------------------------------------------------------------------------------- /tests/test_params.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/tests/test_params.sh -------------------------------------------------------------------------------- /tests/test_simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geky/coru/HEAD/tests/test_simple.sh --------------------------------------------------------------------------------