Premkumar Subramanian
- 合計アクティビティ 6
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 1
アクティビティの概要
Premkumar Subramanianさんの最近のアクティビティ-
Premkumar Subramanianさんがコメントを作成しました:
Thanks Riley! Indeed it seems that we have been already unknowingly taking the risk by passing the custom objects to a tuplelist.As we didn't include `gurobipy-stubs` for gurobipy 10, we never noti...
-
Premkumar Subramanianさんがコメントを作成しました:
That can be a last resort. But I still wonder why this error is thrown in the first place. I don't want to have unexpected results from Gurobi as I suppress this error.
-
Premkumar Subramanianさんがコメントを作成しました:
Hi Riley, The code may even be able to run without issues, but I am blocked by this typing issue. MyPy, the type checker, doesn't see the custom Python class objects as valid ones in the list
-
Premkumar Subramanianさんがコメントを作成しました:
Hi Matthias, The typing issue still continues even with the list as the list is expected to have `int | float | str` error: List item 0 has incompatible type "<Custom Python class>"; expected "int...
-
Premkumar Subramanianさんが投稿を作成しました:
`tuplelist` in Gurobipy 11
回答済みWe would like to migrate from Gurobipy 10 to 11. `tuplelist` in version 11 doesn't accept custom Python objects. For instance, the code below worked in Gurobipy 10, but raises typing error in 11. H...