Waseem Akram
- Total activity 21
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 3
Comments
Recent activity by Waseem Akram-
Hi Jaromil, I would like to thank you for your kind help and support for all my queries. I did not bother you again because I found a solution for Python version and I was able to run my script wit...
-
Here is my script. This generates infeasible model because of uu variable multiplication in right_term12. With the following the model is Ok. But I need to get rid of @ operator in python 2.7 m.ad...
-
thank you very much. In my case I have to adopt Python 2.7. I used tolist function and it worked in setting objective function. u=m.AddMvar(shape=4)uu=u.tolist()obj1=np.matmul(uu,R)objective=np.mat...
-
Hi Jaromił Najman I hope you are doing very well. I would like to ask one question. In python 2.7, the @ operator is not supported. What is the alternative of this if I want to set my objective as ...