
amir b
- Total activity 9
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 3
Activity overview
Latest activity by amir b-
amir b created a post,
API compatibility to work with GNU Octave
Hi, I used to work with YALMIP and MATLAB. However, It would be great to add Gurobi API compatibility with GNU Octave and so to run .m files. I see that YALMIP is ok with Octave I used MATLAB setup...
-
amir b commented,
Thank you so much for the guide. Sincerely, Amir
-
amir b commented,
Hi I used this code pG = m.addMVar(shape = p_Ng * p_Ns, vtype = GRB.BINARY)for i in range(0, p_Ng * p_Ns): pG[i].Start = GRB.UNDEFINED # or pG[i].Start = 0 did not work but it says 'No start ...
-
amir b created a post,
how to manage unused binary values during solve?
AnsweredI use Python API and GUROBI. I have a model consisting of some binary decision variables (in MVar manner) and constraints implemented using matrix multiplication operator. I had earlier implemented...
-
amir b created a post,
Problems around general indicator constraints using MVar (& matrix multiplication operator)
AnsweredHi, Do MVar objects compatible with general indicator constraints? I have problem with it. Where can I find an example.. Assume 'x', 'y' and 'z' are binaries. Yij + Zjk + (Xpq - 1)M == 1 like the l...