Mert Eroglu
- Total activity 11
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 3
Comments
Recent activity by Mert Eroglu-
I was getting the error despite calling optimize(), i guess there was a problem with my constraints. But i used another approach for my problem, for now. Thanks for your support.
-
Hello, thanks for your fast support. I implemented your codes into mine and printed: "No feasible solution available". Therefore why .x is not being used in my code, result i didn't understand tha...
-
Oh OK, i thought adding such constraint would delete the - sign on the 0.0's but it's the same thing. Thanks for your support.
-
for j in range(n): for i in range(m): model.addConstr(y_2022[j,i] >= 0.5 + eps - M*(1-B)) model.addConstr(y_2022[j,i] <= 0.5 + M*(B)) model.addConstr((B==1) >> (y_2022[j,i] ...
-
Yeah, I set IntFeasTol to 1e-9 and IntegralityFocus to 1, but it didn't changed the outcome. Thanks for the fast reply.