Céline Meister
- 合計アクティビティ 6
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 2
投稿
Céline Meisterによる最近のアクティビティ-
sum of two variables integer
回答済みI have the variables x and y. x = pd.Series(m4.addVars(stocks), index=stocks)y = pd.Series(m4.addVars(stocks), index=stocks) x and y can be non-integer each, but x + y should be integer. I have no ...
-
How can i adjust a parameter if there was no improvement after x iterations?
回答済みI have the following (working) model, which i have to improve: timeLimit=200 numVarAct=int(0.5*n)numIterations=100 mdl.params.timeLimit=30 tm=time.time()tm2=time.time() while tm2-tm<timeLimit: ...