
Arash Baharvandi
- 合計アクティビティ 15
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 1
- サブスクリプション 4
アクティビティの概要
Arash Baharvandiさんの最近のアクティビティ-
Arash Baharvandiさんが投稿を作成しました:
Runtime
回答済みHi, I have two equal problems that second one include more constraints i.e. three times than first one. First problem would be run in 5 seconds, while second one takes 900 seconds that it does not ...
-
Arash Baharvandiさんがコメントを作成しました:
Thanks a lot for your help.
-
Arash Baharvandiさんがコメントを作成しました:
Thank you, I figured out the issue. I simplified code and removed all fixed variables. from gurobipy import *import numpy as np#indicesmyList = list(range(0,4))vctr=np.array(myList)I=vctr# generato...
-
Arash Baharvandiさんがコメントを作成しました:
Hi, I have following code , but I do not know when I increase ''peak'' model is infeasible, while it should be feasible. For peak=10, I got optimal solution, but for more than 10, it will be infe...
-
Arash Baharvandiさんが投稿を作成しました:
Different platforms and different results
回答済みHi, I wrote a problem to be solved by Gurobi (Python), before increasing a parameter, I got correct results by Gurobi and another platform, when I increase a parameter I will get infeasible problem...
-
Arash Baharvandiさんがコメントを作成しました:
Sorry for not clarifying it well. I have a parameter (vf) which is a matrix, this matrix contains two columns and I want to use each column for any problem. vf= np.array([[1,2],[2,4],[4,4]]) In f...
-
Arash Baharvandiさんがコメントを作成しました:
Thanks for your response, I mean I have the following problem and I want to solve this problem 3 times, I have a matrix vf (with 3 columns), and I want to solve this problem for each column of th...
-
Arash Baharvandiさんが投稿を作成しました:
Adding objective functions and variables to a matrix
回答済みHi, I have an optimization problem. A parameter will get new values and solve the problem again. How can I define a matrix included objective functions and variables? (python with Gurobi package)...
-
Arash Baharvandiさんがコメントを作成しました:
Thank you for your response, I have another question. I really appreciate you for responding my question. I have a constraint, and there is relationship between its indices, for example if i=1, t...
-
Arash Baharvandiさんが投稿を作成しました:
Adding a column to a parameter and rerun it for new column
回答済みHi, I have a parameter in a 4*2 matrix. I want to run my optimization problem first for first column,then for second column in Gurobi. v[i,j] is in my constraint, so I wanna run it first for v[...