Giorgos Tsoumos
- 合計アクティビティ 25
- 前回のアクティビティ
- メンバー登録日
- フォロー 1ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 8
投稿
Giorgos Tsoumosによる最近のアクティビティ-
Model not solving all instances
回答済みHello, I have a problem with my model, while it solves some instances of solomons 56 PDPTW like lc101,lc105 etc. some others like lc102,lc103 etc is incapable of solving it and it runs for hours w...
-
Error 10003 Invalid arguments in callback function
ユーザーの入力を待っています。Hello, I am trying to get the values of the GRBVariables inside the callback function of a user-defined class inherited from GRBCallback. However when i run getSolution() or setSolution the error ...
-
Dual Simplex Stucks when Barrier solves the model in C++
回答済みHello, I have formulate the CVRPTW problem which is solved by the barrier algorithm but when the dual simplex method crossover comes to optimize the solution it stucks forever showing me logs... A...
-
Constraint formulation C++
回答済みHello, I have these formulas that i want to add to my model as constraints. The attempt so far is shown below. int customers = 100; int vehicles = 25; void visit_once_constr(GRB...
-
Getting the value of a GRBVar in C++ before optimization
回答済みHello, I have a 2d dynamically created array of GRBVar and i want to get the value in order to add a new constraint to my model before i call the model.optimize() function. Is there any way to ...
-
Cannot set objective function in Gurobi model C++
回答済みHello, I have tried to set the objective function in my model based on a quadatric expression GRBQuadExpr that i return from a function in different file other than Main.cpp. But when i run the pro...
-
Error when assigning a GRBVar into a 3d dynamically array in c++
回答済みHello, I have a problem with the assignment of a GRBVar into a 3d dynamically allocated array in C++ and i dont know why the error occures. The code is down below so // In test.cpp GRBVar*** in...