Greg-Glockner
Gurobi Staff- 合計アクティビティ 161
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 1ユーザー
- 投票 21
- サブスクリプション 67
アクティビティの概要
Greg-Glocknerさんの最近のアクティビティ-
Greg Glocknerさんがコメントを作成しました:
The Pi Zero 2W supports both armv7l (32-bit) and aarch64 (64-bit) operating systems, but Gurobi only supports 64-bit Linux. So you will need to ensure that you install 64-bit Raspberry Pi OS. Also ...
-
Greg Glocknerさんがコメントを作成しました:
正式なコメント Unfortunately, no: Gurobi only supports 64-bit for ARM Linux, and we have no plans for 32-bit support in the future. We also do not provide source code for the Gurobi solver. That said, I have succ...
-
Greg Glocknerさんがコメントを作成しました:
2 things to check: Ensure your local machine configuration was updated correctly so that the computation is running on the cloud. The console and the log should show something like: Capacity avail...
-
Greg Glocknerさんがコメントを作成しました:
I'm sure there are a lot of details which we can't get into on this discussion forum, but let me point you in a direction that hopefully should help. Most importantly, you must formulate your model...
-
Greg Glocknerさんがコメントを作成しました:
Looks like K or SC are either decision variables or linear expressions. This isn't supported.
-
Greg Glocknerさんがコメントを作成しました:
Why not just write a for loop and call Model.addConstr() to add the constraints one at a time?
-
Greg Glocknerさんがコメントを作成しました:
Unfortunately, no. However, the following may be more efficient for this model since it avoids some intermediate Python objects: for i in range(u.shape[2]): model.addMConstrs(u[:, :, i], x, '>', v)
-
Greg Glocknerさんがコメントを作成しました:
You don't need to link with pthread.
-
Greg Glocknerさんがコメントを作成しました:
For C++, you need -lgurobi_c++ -lgurobi90 -lm; see the sample Makefile in the examples/build subdirectory.
-
Greg Glocknerさんがコメントを作成しました:
正式なコメント See GRBModel::addGenConstrAbs().