Yali Chen
- 合計アクティビティ 13
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 2
アクティビティの概要
Yali Chenさんの最近のアクティビティ-
Yali Chenさんが投稿を作成しました:
Complexity analysis
回答済みFor the formulated optimization problem, I design an algorithm primarily based on Gurobi solving, which means that I mainly use the Gurobi to solve my optimization problem. In thi case, how to anal...
-
Yali Chenさんが投稿を作成しました:
convergence property
For the formulated optimization problem, I design an algorithm primarily based on Gurobi solving, which means that I mainly use the Gurobi to solve my optimization problem. In thi case, how to anal...
-
Yali Chenさんが投稿を作成しました:
The code runs for a particularly long time
回答済みMy optimization problem is as follows, and optimization variables are underlined in red. The corresponding code is as follows, from gurobipy import *import gurobipy as gpfrom numpy import *import...
-
Yali Chenさんがコメントを作成しました:
Hi Eli, sorry to bother you again. According to your comments about the code I showed above,the error is in the following part, constr_1 = LinExpr(0)for k in range(0,K): for km in range(0,M): ...
-
Yali Chenさんがコメントを作成しました:
Hi Jaromił, sorry to bother you again. IndexError: list index out of range: constr_1.addTerms(1, b0[combination[km]]*r[combination[km]]*cov(k,combination[km])). from gurobipy import *from numpy im...
-
Yali Chenさんがコメントを作成しました:
Hi Jaromił, according to your comments, we have changed the code, but there are still some problems. TypeError: unsupported operand type(s) for *: 'int' and 'tupledict':sum7=2*nu-math.log(K**2)-(ma...
-
Yali Chenさんがコメントを作成しました:
Hi Jaromił, according to your comments, we have changed the code, but there are still some problems. Looking forward to your reply! Many thanks! We use Gurobi to sove the following problem. Optimiz...
-
Yali Chenさんがコメントを作成しました:
Hi Jaromił, thanks for your help! All the best, Yali
-
Yali Chenさんがコメントを作成しました:
Hi, thank you very much for your comments. For the optimization problem given by the above picture, optimization variables are underlined in green, and we use Gurobi to sove the problem. According ...
-
Yali Chenさんがコメントを作成しました:
from gurobipy import *from numpy import *import numpy as npimport mathimport random#define global variablesglobal KK = 5global MM = 2global ATtheta1ATtheta1=0.42global ATtheta2ATtheta2=2.00global ...