Skip to content

Changes v3.3.0 to v3.4.0

jgillis edited this page Mar 7, 2018 · 19 revisions

Credit where credit is due: Proper attribution of linear solver routines, reimplementation of code generation for linear solvers #2158, #2134

CasADi 3.3 introduced support for two sparse direct linear solvers relying based on sparse direct QR factorization and sparse direct LDL factorization, respectively. In the release notes and in the code, it was not made clear enough that part of these routines could be considered derivative works of CSparse and LDL, respectively, both under copyright of Tim Davis. In the current release, routines derived from CSparse and LDL are clearly marked as such and to be considered derivative work under LGPL. All these routines reside inside the casadi::Sparsity class. Since CasADi, CSparse and LDL all have the same open-source license (LGPL), this will not introduce any additional restrictions for users.

Since C code generated from CasADi is not LGPL (allowing CasADi users to use the generated code freely), all CSparse and LDL derived routines have been removed or replaced in CasADi's C runtime. This means that code generation for CasADi's 'qr' and 'ldl' is now possible without any additional license restrictions. A number of bugs have also been resolved.

Parametric sensitivity for NLP solvers #724

CasADi 3.4 introduces differentiability for NLP solver instances in CasADi. Derivatives can be calculated efficiently with either forward or reverse mode algorithmic differentiation. We will detail this functionality in future publications, but in the meantime, feel free to reach out to Joel if you have questions about the functionality. The implementation is based on using derivative propagation rules to the implicit function theorem, applied to the nonlinear KKT system. It is part of the NLP solver base class and should in principle work with any NLP solver, although the factorization and solution of the KKT system (based on the sparse QR above) is likely to be a speed bottle neck in applications. The derivative calculations also depend on accurate Lagrange multipliers to be available, in particular with the correct signs for all multipliers. Functions for calculating parametric sensitivities for a particular system can be C code generated.

A primal-dual active set method for quadratic programming

The parametric sensitivity analysis for NLP solvers, detailed above, is only as good as the multipliers you provide to it. Multipliers from an interior point method such as IPOPT are usually not accurate enough to be used for the parametric sensitivity analysis, which in particular relies on knowledge of the active set. For this reason, we have started work on a primal-dual active set method for quadratic programming. The method relies on the same factorization of the linearized KKT system as the parametric sensitivity analysis and will support C code generation. The solver is available as the "activeset" plugin in CasADi. The method is still work-in-progress and in particular performs poorly if the Hessian matrix is not strictly positive definite.

Changes in Opti

  • describe methods in Matlab now follows index-1 based convention.
  • Added show_infeasibilities to help debugging infeasible problems.
  • Added opti.lbg,opti.ubg

Changes in existing functionality

  • Some CasADi operations failed when the product of rows and columns of a matrix was larger then 2^31-1. This limit has been raised to 2^63-1 by changing CasADi integer types to casadi_int (long long). The change is hidden for Python/Octave/Matlab users, but C++ users may be affected.
  • Fixed various bottlenecks in large scale MX Function initialization
  • Non-zero location reports for NaN/Inf now follow index-1 based convention in Matlab interface.

Added functionality

  • SX Functions can be serialized/pickled/saved now.
  • Added for-loop equivalents to the users guide
  • New backend for parallel maps: "thread" target, shipped in the binaries.
  • Uniform 'success' flag in solver.stats() for nlpsol/conic
  • Added evalf function to numerically evaluate an SX/MX matrix that does not depend on any symbols
  • Added diff and cumsum (follows the Matlab convention)
  • Added a rootfinder plugin ('fast_newton') that can code-generate
  • Added binary search for Linear/BSpline Interpolant. Used by default for grid dimensions (>=100)

Binaries

  • Binaries now come with a large set of plugins enabled
  • Binaries ship with "thread" parallelization
  • Binaries are hosted on Github instead of Sourceforge

Misc

  • Default build mode is Release mode once again (as was always intended)
  • CasADi passes with -Werror for gcc-6 and gcc-7
Clone this wiki locally