├── .gitignore ├── Documentation ├── 40-DAFx-16_paper_35-PN.pdf └── Doxyfile ├── Libs └── rt-wdf │ ├── rt-wdf.cpp │ ├── rt-wdf.h │ ├── rt-wdf_nlModels.cpp │ ├── rt-wdf_nlModels.h │ ├── rt-wdf_nlSolvers.cpp │ ├── rt-wdf_nlSolvers.h │ └── rt-wdf_types.h └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RT-WDF/rt-wdf_lib/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/40-DAFx-16_paper_35-PN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RT-WDF/rt-wdf_lib/HEAD/Documentation/40-DAFx-16_paper_35-PN.pdf -------------------------------------------------------------------------------- /Documentation/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RT-WDF/rt-wdf_lib/HEAD/Documentation/Doxyfile -------------------------------------------------------------------------------- /Libs/rt-wdf/rt-wdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RT-WDF/rt-wdf_lib/HEAD/Libs/rt-wdf/rt-wdf.cpp -------------------------------------------------------------------------------- /Libs/rt-wdf/rt-wdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RT-WDF/rt-wdf_lib/HEAD/Libs/rt-wdf/rt-wdf.h -------------------------------------------------------------------------------- /Libs/rt-wdf/rt-wdf_nlModels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RT-WDF/rt-wdf_lib/HEAD/Libs/rt-wdf/rt-wdf_nlModels.cpp -------------------------------------------------------------------------------- /Libs/rt-wdf/rt-wdf_nlModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RT-WDF/rt-wdf_lib/HEAD/Libs/rt-wdf/rt-wdf_nlModels.h -------------------------------------------------------------------------------- /Libs/rt-wdf/rt-wdf_nlSolvers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RT-WDF/rt-wdf_lib/HEAD/Libs/rt-wdf/rt-wdf_nlSolvers.cpp -------------------------------------------------------------------------------- /Libs/rt-wdf/rt-wdf_nlSolvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RT-WDF/rt-wdf_lib/HEAD/Libs/rt-wdf/rt-wdf_nlSolvers.h -------------------------------------------------------------------------------- /Libs/rt-wdf/rt-wdf_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RT-WDF/rt-wdf_lib/HEAD/Libs/rt-wdf/rt-wdf_types.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RT-WDF/rt-wdf_lib/HEAD/README.md --------------------------------------------------------------------------------