How to solve the min-max problem with mixed integer linear programming(MILP)?

25 次查看(过去 30 天)
I am trying to solve the MILP problem by referring to the page below.
https://jp.mathworks.com/help/optim/ug/mixed-integer-linear-programming-basics-problem-based.html?lang=en
The problem I want to solve is that the objective function is represented by min-max.
However, I understand that the "optimproblem function" that creates an optimization problem only supports maximization and minimization, not min-max.
https://jp.mathworks.com/help/optim/ug/optimproblem.html?lang=en
So, please tell me how to solve the min-max problem.
thanks in advance.
  3 个评论
keisuke maesako
keisuke maesako 2021-8-18
I want to solve an optimization problem to achieve network traffic distribution.
Therefore, the maximum value of the network link utilization rate is set to be minimized as the objective function.
The constraint condition is the calculation of the network link utilization rate.
The only determinant is and I think it's MILP.
Below is a description of the formulas and variables.
V is network node set, E is Network link set, F is network flow set, is link l utilization, is link l capacity, is amount of traffic through link l by flow f, is path set for flow f, is requested traffic volume of flow f, is 1 If route r is assigned to flow f, is 1 if route r is assigned to flow f and route r contains link l.
Sadia Tasnim
Sadia Tasnim 2024-2-2
移动:Matt J 2024-2-2
How did you solve your problem? I am facing the similar challange as you described here.

请先登录,再进行评论。

回答(1 个)

Matt J
Matt J 2021-8-18
编辑:Matt J 2021-8-18
Eliminate the inner max problem by rewriting it as,
  7 个评论
Torsten
Torsten 2024-2-2
编辑:Torsten 2024-2-2
You mean that you want to add
prob.Objective = z;
to your problem formulation ?
The code gives a result, but I wonder why because you try to access y(1) and y(2) although you define y as a 3x3 matrix.
Sadia Tasnim
Sadia Tasnim 2024-2-3
编辑:Sadia Tasnim 2024-2-3
Answer to your question is yes. Thank you so much @Torsten. Perhaps my problem is solved. This code is just a practice sample that I randomly made to learn optimization syntax using MATLAB.
Thanks again for your sincere response @Torsten and @Matt J.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Linear Programming and Mixed-Integer Linear Programming 的更多信息

产品


版本

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by