├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── dima.cpp ├── source ├── calc.h ├── define.h ├── func.h └── unit.h └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | dima 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/dima/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/dima/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/dima/HEAD/README.md -------------------------------------------------------------------------------- /dima.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/dima/HEAD/dima.cpp -------------------------------------------------------------------------------- /source/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/dima/HEAD/source/calc.h -------------------------------------------------------------------------------- /source/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/dima/HEAD/source/define.h -------------------------------------------------------------------------------- /source/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/dima/HEAD/source/func.h -------------------------------------------------------------------------------- /source/unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/dima/HEAD/source/unit.h -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/dima/HEAD/test.sh --------------------------------------------------------------------------------