Jennifer Locke
-
Gurobi Staff
- 合計アクティビティ 88
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 57
コメント
Jennifer Lockeによる最近のアクティビティ-
Where are you spending your time? Is it in modeling or in solving your model? Gurobi's API's are wrappers to our C API, the solver performance will be the same whether you are using MATLAB or Pyth...
-
Try running computeIIS() after optimize(). Check the status to see if the model is still infeasible, if it is, then run IIS. m.optimize()status = m.statusif status == GRB.Status.INFEASIBLE: m....
-
Can you share why you want to run Gurobi on RaspberryPi or ARM? If we understand what you are trying to accomplish, someone may have suggestions for you.
-
Are all of you running Linux on your Windows machine through Windows Subsystem for Linux (WSL)? In addition, please answer the following questions: What version of WSL are you running? Did you in...
-
正式なコメント Our Experts have published an open source project called grblogtools that will allow you to extract information from Gurobi log files and generate pandas DataFrames or Excel worksheets for further ...
-
Please check your Autofill Password Manager Chrome settings. Make sure the "Offer to save passwords" is turned on.
-
Gurobi does not provide an Excel add in. If you are comfortable in Python, there are several Python packages available to read and write to an excel Notebook. Combined with the Gurobi Python API, ...
-
Hi Andres, Could you also share which Gurobi API you are using? Thanks, Jennifer
-
Hi Murilo, Because solvers have a different bag of tricks used under the hood, it is best to find a common termination criteria when comparing between two or more solvers. Using time as the termina...
-
1) Gurobi will use up to 16 threads on on a c5.4xlarge machine. If you set a thread count less than 16, Threads=N, Gurobi will use up to N threads. 2) In hyper-threaded machines such as a c5.4xla...