Usage#
We provide below general information about the Python and MATLAB interfaces of PDFO. For more detailed information, please refer to Python API documentation for the Python version and File Exchange for the MATLAB version.
Python#
General information#
PDFO provides a Python function pdfo
, which can solve general constrained or unconstrained optimization problems without using derivatives.
The pdfo
function can automatically identify the type of your problem and then call one of Powell’s solvers, namely COBYLA, UOBYQA, NEWUOA, BOBYQA, and LINCOA.
The user can also specify the solver by setting the method
field of the options passed to pdfo
.
The pdfo function is designed to be compatible with the scipy.optimize.minimize
function of SciPy.
You can call pdfo in exactly the same way as calling scipy.optimize.minimize
except that pdfo
does not accept derivative arguments.
For detailed syntax of pdfo
, see Python API documentation.
An example#
The following code illustrates how to minimize the chained Rosenbrock function
subject to various constraints.
import numpy as np
from pdfo import pdfo, Bounds, LinearConstraint, NonlinearConstraint
def chrosen(x):
"""Objective function"""
return sum(4 * (x[1:] - x[:-1] ** 2) ** 2 + (1 - x[:-1]) ** 2)
def con_ineq(x):
"""Nonlinear inequality constraints"""
return x[:-1] ** 2 - x[1:]
def con_eq(x):
"""Nonlinear equality constraints"""
return sum(x ** 2) - 1
if __name__ == '__main__':
print('\nMinimize the chained Rosenbrock function with three variables subject to various constraints:\n')
x0 = [0, 0, 0] # starting point
print('\n1. Nonlinear constraints --- ||x||_2^2 = 1, x(i)^2 >= x(i+1) >= 0.5*x(i) >= 0 for i = 1, 2:\n')
lb = [0, 0, 0]
ub = [np.inf, np.inf, np.inf]
bounds = Bounds(lb, ub) # lb <= x <= ub
# Alternative formulation:
# bounds = [(lb[0], ub[0]), (lb[1], ub[1]), (lb[2], ub[2])]
A = [[0.5, -1, 0], [0, 0.5, -1]]
lin_lb = [-np.inf, -np.inf]
lin_ub = [0, 0]
lin_con = LinearConstraint(A, lin_lb, lin_ub) # lin_lb <= A*x <= lin_ub
nonlin_lb = [0, 0]
nonlin_ub = [np.inf, np.inf]
nonlin_con_ineq = NonlinearConstraint(con_ineq, nonlin_lb, nonlin_ub) # nonlin_lb <= con_ineq(x) <= nonlin_ub
nonlin_con_eq = NonlinearConstraint(con_eq, 0, 0) # con_eq(x) = 0
# Alternative formulation:
# nonlin_con_ineq = {'type': 'ineq', 'fun': con_ineq} # con_ineq(x) >= 0
# nonlin_con_eq = {'type': 'eq', 'fun': con_eq} # con_eq(x) = 0
res = pdfo(chrosen, x0, bounds=bounds, constraints=[lin_con, nonlin_con_ineq, nonlin_con_eq])
print(res)
print('\n2. Linear constraints --- sum(x) = 1, x(i+1) <= x(i) <= 1 for i = 1, 2:\n')
bounds = Bounds([-np.inf, -np.inf, -np.inf], [1, 1, 1])
A = [[-1, 1, 0], [0, -1, 1], [1, 1, 1]]
lin_con = LinearConstraint(A, [-np.inf, -np.inf, 1], [0, 0, 1])
res = pdfo(chrosen, x0, bounds=bounds, constraints=lin_con)
print(res)
print('\n3. Bound constraints --- -0.5 <= x(1) <= 0.5, 0 <= x(2) <= 0.25:\n')
bounds = Bounds([-0.5, 0, -np.inf], [0.5, 0.25, np.inf])
res = pdfo(chrosen, x0, bounds=bounds)
print(res)
print('\n4. No constraints:\n')
res = pdfo(chrosen, x0)
print(res)
MATLAB#
General information#
PDFO provides a MATLAB function pdfo
, which can solve general constrained or unconstrained optimization problems without using derivatives.
The pdfo
function can automatically identify the type of your problem and then call one of Powell’s solvers, namely COBYLA, UOBYQA, NEWUOA, BOBYQA, and LINCOA.
The user can also specify the solver by setting the solver
field of the options passed to pdfo
.
The pdfo
function is designed to be compatible with the fmincon
function available in the Optimization Toolbox of MATLAB.
You can call pdfo
in the same way as calling fmincon
.
In addition, pdfo
can be called in some flexible ways that are not supported by fmincon
, which will be illustrated in the example below.
For detailed syntax of pdfo
, use the standard help
command of MATLAB.
For example, run
help pdfo
An example#
The following code illustrates how to minimize the chained Rosenbrock function (1) subject to various constraints.
function rosenbrock_example()
fprintf('\nMinimize the chained Rosenbrock function with three variables subject to various constraints:\n');
x0 = [0; 0; 0]; % starting point
fprintf('\n1. Nonlinear constraints --- ||x||_2^2 = 1, x(i)^2 >= x(i+1) >= 0.5*x(i) >= 0 for i = 1, 2:\n');
% linear inequality constraints A*x <= b
A = [0.5, -1, 0; 0, 0.5, -1];
b = [0; 0];
% linear equality constraints Aeq*x = beq
Aeq = [];
beq = [];
% bound constraints lb <= x <= ub
lb = [0; 0; 0];
ub = []; % ub = [inf; inf; inf] works equally well
% nonlinear constraints
nonlcon = @nlc; % see function nlc given below
% The following syntax is identical to fmincon:
[x, fx, exitflag, output] = pdfo(@chrosen, x0, A, b, Aeq, beq, lb, ub, nonlcon)
% Alternatively, the problem can be passed to pdfo as a structure:
%p.objective = @chrosen; p.x0 = x0; p.Aineq = A; p.bineq = b; p.lb = lb; p.nonlcon = @nlc;
%[x, fx, exitflag, output] = pdfo(p)
fprintf('\n2. Linear constraints --- sum(x) = 1, x(i+1) <= x(i) <= 1 for i = 1, 2:\n');
A = [-1, 1, 0; 0, -1, 1];
b = [0; 0];
Aeq = [1, 1, 1];
beq = 1;
ub = [1; 1; 1];
[x, fx, exitflag, output] = pdfo(@chrosen, x0, A, b, Aeq, beq, [], ub)
fprintf('\n3. Bound constraints --- -0.5 <= x(1) <= 0.5, 0 <= x(2) <= 0.25:\n');
lb = [-0.5; 0; -inf];
ub = [0.5; 0.25; inf];
[x, fx, exitflag, output] = pdfo(@chrosen, x0, [], [], [], [], lb, ub)
fprintf('\n4. No constraints:\n');
[x, fx, exitflag, output] = pdfo(@chrosen, x0)
return
function f = chrosen(x) % the subroutine defining the objective function
f = sum((x(1:end-1)-1).^2 + 4*(x(2:end)-x(1:end-1).^2).^2);
return
function [cineq, ceq] = nlc(x) % the subroutine defining the nonlinear constraints
% The same as fmincon, nonlinear constraints cineq(x) <= 0 and ceq(x) = 0 are specified
% by a function with two returns, the first being cineq and the second being ceq.
cineq = x(2:end) - x(1:end-1).^2;
ceq = x'*x - 1;
return
Options#
When calling pdfo
, we may specify some options by passing a structure to pdfo
as the last input.
Here are several useful options.
solver
: a string indicating which solver to use; default:'uobyqa'
for unconstrained problems with at most 8 variables,'newuoa'
for unconstrained problems with 9 or more variables,'bobyqa'
for bound-constrained problems,'lincoa'
for linearly constrained problems, and'cobyla'
for nonlinearly constrained problems. If you want to choose a solver, note that UOBYQA and NEWUOA can solve unconstrained problems, NEWUOA being preferable except for rather small problems; BOBYQA can solve unconstrained and bound-constrained problems; LINCOA can solve unconstrained, bound-constrained, and linearly constrained problems; COBYLA can solve general nonlinear optimization problems. We observe that LINCOA sometimes outperforms NEWUOA on unconstrained problems. It is also worth noting that BOBYQA evaluates the objective function only at feasible points, while LINCOA and COBYLA may explore infeasible points.maxfun
: maximal number of function evaluations; default:500*length(x0)
.ftarget
: target function value; pdfo terminates once it finds a feasible point with a function value at mostftarget
; default:-inf
.scale
: a boolean value indicating whether to scale the problem according to bound constraints; if it istrue
and if all the variables have both lower and upper bounds, then the problem will be scaled so that the bound constraints become \(-1 \le x \le 1\); default:false
.rhobeg
: initial trust-region radius; typically,rhobeg
should be in the order of one tenth of the greatest expected change to a variable;rhobeg
should be positive; default:1
if the problem will not be scaled, and0.5
if the problem will be scaled; in case of scaling,rhobeg
will be used as the initial trust-region radius of the scaled problem.rhoend
: final trust-region radius;rhoend
reflects the precision of the approximate solution obtained bypdfo
;rhoend
should be positive and not larger thanrhobeg
; default:1e-6
; in case of scaling,rhoend
will be used as the final trust-region radius of the scaled problem.
For instance, to minimize the aforementioned chained Rosenbrock function without constraints by LINCOA with at most \(50\) function evaluations and a target function value \(10^{-2}\), it suffices to replace pdfo(@chrosen, x0)
in the above example with
pdfo(@chrosen, x0, struct('solver', 'lincoa', 'maxfun', 50, 'ftarget', 1e-2))