Uno, a unified solver for nonlinearly constrained optimization
We consider nonlinearly constrained optimization problems of the form
where \(x \in \mathbb{R}^n\), \(f : \mathbb{R}^n \to \mathbb{R}\), \(c: \mathbb{R}^n \to \mathbb{R}^{m_c}\), \(A \in \mathbb{R}^{m_A \times n}\), and \(l \in (\mathbb{R} \cup \{-\infty\})^{m_c + m_A + n}\) and \(u \in (\mathbb{R} \cup \{+\infty\})^{m_c + m_A + n}\). \(f\) and \(c\) may be nonconvex, which results in a nonconvex optimization problem. This formulation allows for unbounded variables and equality constraints and explicitly separates general nonlinear, linear, and bound constraints, enabling solvers to readily exploit this structure. However, for the sake of simplicity of this presentation and without loss of generality, we consider the problem in the following form:
where \(x \in \mathbb{R}^n\), \(f : \mathbb{R}^n \to \mathbb{R}\), and \(c: \mathbb{R}^n \to \mathbb{R}^m\).
Most derivative-based iterative methods for nonlinearly constrained nonconvex optimization share common algorithmic components. Building on this insight, we introduce an abstract framework structured around generic building blocks that describes these methods in a unified fashion. We then present Uno (Unifying Nonlinear Optimization)1, a modular open-source solver for nonlinearly constrained optimization that unifies numerous state-of-the-art methods and organizes existing strategies into a coherent hierarchy (see wheel of strategies below).
Uno allows the automatic generation of various strategy combinations on the fly with no programming effort from the user. While all combinations do not lead to convergent methods, some of them result in efficient solvers that may not exist as software implementations. Uno currently implements the following strategies:
- constraint relaxation strategies: feasibility restoration;
- inequality handling methods: inequality constrained method, interior-point method;
- Hessian models: exact, L-BFGS, L-SR1, identity, zero;
- inertia control strategies: primal, primal-dual, none;
- globalization strategies: filter method, funnel method, merit function;
- globalization mechanisms: backtracking line search, trust-region method.
We believe that Uno has the potential to serve as an experimental laboratory for practitioners and optimizers and to accelerate research in nonlinearly constrained optimization. Our ultimate goal is to promote the extension of state-of-the-art nonlinear optimization techniques to new classes of problems such as problems with equilibrium constraints and nonlinear robust optimization.
-
Uno was first introduced at the ISMP 2018 conference under the name Argonot. ↩