├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── TODO ├── cppAutoSolve.h ├── dependencies └── Catch.h ├── inc ├── AutoSolveController.h ├── FunctionNode.h └── ParameterNode.h └── tests └── test.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I3ck/cppAutoSolve/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I3ck/cppAutoSolve/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I3ck/cppAutoSolve/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I3ck/cppAutoSolve/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I3ck/cppAutoSolve/HEAD/TODO -------------------------------------------------------------------------------- /cppAutoSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I3ck/cppAutoSolve/HEAD/cppAutoSolve.h -------------------------------------------------------------------------------- /dependencies/Catch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I3ck/cppAutoSolve/HEAD/dependencies/Catch.h -------------------------------------------------------------------------------- /inc/AutoSolveController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I3ck/cppAutoSolve/HEAD/inc/AutoSolveController.h -------------------------------------------------------------------------------- /inc/FunctionNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I3ck/cppAutoSolve/HEAD/inc/FunctionNode.h -------------------------------------------------------------------------------- /inc/ParameterNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I3ck/cppAutoSolve/HEAD/inc/ParameterNode.h -------------------------------------------------------------------------------- /tests/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/I3ck/cppAutoSolve/HEAD/tests/test.cpp --------------------------------------------------------------------------------