yalmip / YALMIP

MATLAB toolbox for optimization modeling
https://yalmip.github.io/
Other
492 stars 139 forks source link

Mosek selected in bmibnb on nonconvex exp #696

Closed johanlofberg closed 4 years ago

johanlofberg commented 4 years ago
x = sdpvar(2,1);
Objective = logsumexp(x)
a = [2;1];
rho = 2;
Constraints = (norm(x-a, 2) <= rho^2);
solution = optimize(Constraints, -Objective, sdpsettings('solver', 'bmibnb'));
johanlofberg commented 4 years ago

Duplicate of #788