Does intlinprog find a local minimum or global minimum?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a problem that can mathematically be described as a MILP. However, it is essential that I find the global optimum (if it exists) and not just a feasible point. So I understand that the relevant matlab function is intlinprog. According to Matlab documentation (https://www.mathworks.com/help/optim/ug/local-vs-global-optima.html), I know that linprog guarantees global optimum and not just a local one. My question is does intlinprog guarantee the same or not?
0 commentaires
Réponse acceptée
Matt J
le 8 Nov 2021
Modifié(e) : Matt J
le 8 Nov 2021
In ideal math, yes, however real world computers can't do ideal math, so you can be significantly off from the global solution depending on how you set your tolerances.. This is illustrated in the example below. The ideal global minimum is y=1, but intlinprog finds y=0, because it is within the default numerical tolerances.
x=optimvar('x',1,'type','integer','LowerBound',0);
y=optimvar('y',1,'type','integer','LowerBound',0);
prob=optimproblem('Objective',y, 'Constraints', y>=x+1e-4);
sol=solve(prob)
5 commentaires
Matt J
le 8 Nov 2021
Modifié(e) : Matt J
le 8 Nov 2021
I don't think so, because let's apply your proposal to my earlier example, adding an upper bound of 2 on both x and y.
x=optimvar('x',1,'type','integer','LowerBound',0,'UpperBound',2);
y=optimvar('y',1,'type','integer','LowerBound',0,'UpperBound',2);
prob=optimproblem('Objective',y, 'Constraints', y>=x+1e-8);
In this case, there are no non-integer variables, so your method reduces to simply evaluating all 9 combinations 0<=(x,y)<=2.
But how will you decide whether the combination (x,y)=(0,0) is supposed to be feasible or not, bearing in mind that the 1e-8 might just be floating point noise? The decision you make will change the solution and its optimum value by 1.
Plus de réponses (2)
Chunru
le 8 Nov 2021
MILP is NP-hard problem. All solvers require some heuristic rules and the global optimum can not guarenteed for larger problems.
0 commentaires
John D'Errico
le 8 Nov 2021
Another issue is that it is easy to formulate a problem with multiple solutions, all equally good. intlinprog should find one of them, but any solution is as good as another. These will typically lie along a constraint boundary, or parallel to one. So is that a global solution or a local one? It depends on how you choose to define what a local solution means to you.
0 commentaires
Voir également
Catégories
En savoir plus sur Linear Programming and Mixed-Integer Linear Programming dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!