1^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2Changelog for package ariles_ros
3^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
16- Update required cmake version to enable compilation on modern systems.
17- Add qpmad::qpmad cmake target -- use in new projects instead of legacy
18 qpmad_INCLUDE_DIRS (still supported).
19- Eigen 5 support, drop FindEigen.cmake
20- Drop dependency on deprecated boost system component.
27* Added QPMAD_PEDANTIC_LICENSE cmake option to address
28 https://github.com/asherikov/qpmad/issues/9
30* Drop cpput dependency and code generation.
36* API refactoring: modernize and generalize
37* Small API fix to enable integration in https://github.com/isri-aist/QpSolverCollection
43* Added `reserve()` method
44* Added limited sparsity support
45* Fixed unnecessary memory allocations
52* Binary debian package generation
58* Use Eigen Cholesky decomposition instead of a custom one, detect
59 semi-definite Hessians. This change introduces dependency on Eigen 3.3, use
60 older version of `qpmad` if not available.
61* Refactor API to avoid instantiation of dynamic Eigen matrices and vectors.
62* Allow specification of scalar type and problem dimensions at compilation time.
63* The source code is now dependent on C++11 features.
64* Added methods that expose number of iterations and dual variables.
65* Added optional hot-starting with inverted Cholesky factor.
66* DANGER: Solver does not perform Cholesky factorization in some trivial cases
67 anymore, i.e. the Hessian is not necessarily modified. Use `getHessianType()`
68 to get the correct Hessian type when using solver with constant Hessian.
69* DANGER: Solver does not return error codes anymore, exceptions are used
70 instead in order to make error handling consistent (some errors used to be
71 exceptions in older versions as well). The return codes are: OK,
72 MAXIMAL_NUMBER_OF_ITERATIONS.
78* Added missing dependency in package.xml.
83* Doxygen documentation.