PatWie / CppNumericalSolvers

a lightweight header-only C++17 library of numerical optimization methods for nonlinear functions based on Eigen
MIT License
873 stars 201 forks source link

Expose types only via function and avoid need for template arguments #124

Closed PatWie closed 4 years ago

PatWie commented 4 years ago

Previously, the solvers exposed template parameters from the function. This is not the case anymore to have a much cleaner design. Further, this also avoids the need to specify order and dimension as this can be judged during runtime.