Panggah Prabawa
- 合計アクティビティ 25
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 9
- サブスクリプション 5
投稿
Panggah Prabawaによる最近のアクティビティ-
Passing multiple variables across Python function/methods
回答済みHi all, I wonder if I can pass multiple/all variables across Python functions considering many variables to pass on so that they are accessible and optimized outside the function. For example: def ...
-
Treating Gurobi as a local solver?
回答済みHi all, As Gurobi is a global solver, is it possible to make Gurobi solve a problem and stop when it finds a local optimum by e.g., adding model.Param? I intend to make an iterative algorithm using...
-
Convex vs SOCP Constraint
回答済みHello, I am constructing a problem which includes a convex constraint: \( l_{ij} * u_{i} \geq p_{ij}^2 + q_{i,j}^2 \) which I coded as follows (with additional dimension \( t \) ): Ohm_law = m.addC...
-
tupledict.prod() with partial dictionary key
回答済みHi, Similar to that in the documentation, suppose that I have 3-D variable x: # My trial:x = m.addVars([(1,2,0), (1,3,0), (2,3,0)]) # The indices are generated from tuplelist, in which the last i...