Mario Klostermeier
- Total activity 5
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
Activity overview
Latest activity by Mario Klostermeier-
Mario Klostermeier commented,
Hello, this is not perfect but you don't need two loops. for i in A: model.addLConstr(z >= y[i,:], name=f"G1-{k}")
-
Mario Klostermeier commented,
This is my solution so far. Is there a better way ? for w_index in range(model.NumObj): model.Params.ObjNumber = w_index model.update() model.ObjNWeight = weights[w_index] model.update()
-
Mario Klostermeier created a post,
Changing weights for a multi-objective Problem.
AnsweredHello, I am currently working on the weight sum method and would like to solve the same model with different weights. For this I would like to know how I can best change the weights of the differen...