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

25 views (last 30 days)
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 Comments
keisuke maesako
keisuke maesako on 18 Aug 2021
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 on 2 Feb 2024
Moved: Matt J on 2 Feb 2024
How did you solve your problem? I am facing the similar challange as you described here.

Sign in to comment.

Answers (1)

Matt J
Matt J on 18 Aug 2021
Edited: Matt J on 18 Aug 2021
Eliminate the inner max problem by rewriting it as,
  7 Comments
Torsten
Torsten on 2 Feb 2024
Edited: Torsten on 2 Feb 2024
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 on 3 Feb 2024
Edited: Sadia Tasnim on 3 Feb 2024
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.

Sign in to comment.

Categories

Find more on Linear Programming and Mixed-Integer Linear Programming in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!