Ronald van der Velden

  • Gurobi Staff
  • 合計アクティビティ 244
  • 前回のアクティビティ
  • メンバー登録日
  • フォロー 0ユーザー
  • フォロワー 0ユーザー
  • 投票 1
  • サブスクリプション 119

アクティビティの概要

Ronald van der Veldenさんの最近のアクティビティ
  • Ronald van der Veldenさんがコメントを作成しました:

    正式なコメント

    Hi David,Consider setting the MIPGap parameter to 0.005 before solving. This will tell Gurobi to stop as soon as it finds a gap of 0.5%. You can then access the solution and the ObjVal and ObjBound...

  • Ronald van der Veldenさんが記事を作成しました:

    PuLPでGurobiを使うには?

    PuLPはGurobiをサポートするモデリングフレームワークの一つです。本記事では、PuLPを通じてGurobiを使用する方法について説明します。より詳しい情報やPuLPに関連する問題の解決には、PuLP公式ウェブサイトおよびGurobiインターフェースの特定のドキュメントをご覧ください。GurobiへのインターフェースPuLPはGurobiへの2つのインターフェースを提供しています。これら...

  • Ronald van der Veldenさんが記事を作成しました:

    PyomoでGurobiを使うには?

    Pyomoは、Gurobiをサポートするモデリングフレームワークの一つです。この記事では、Pyomoを通じてGurobiを使用する方法について説明します。より詳しい情報やPyomoに関連する問題の解決には、Pyomo公式ウェブサイトをご覧ください。GurobiへのインターフェースPyomoはGurobiへの複数のインターフェースを提供しています。これらのインターフェースは、Pyomoで定義さ...

  • Ronald van der Veldenさんがコメントを作成しました:

    So why Gurobi reject this as a initial solution? This you can learn by fixing the solution (set the lowerbound and upperbound of each variable equal to the start solution) and asking Gurobi to op...

  • Ronald van der Veldenさんがコメントを作成しました:

    Hi, this problem might occur if there are constraints around the boundary between the two years (e.g. if you have 3 shifts in a workforce puzzle on Dec 29-31 and 3 shifts on Jan 1-3, but maximum fi...

  • Ronald van der Veldenさんがコメントを作成しました:

    Hi, You could use the ResultFile parameter to specify where Gurobi should store a logfile while solving your model. It would also contain information about the method used to solve your model (e.g....

  • Ronald van der Veldenさんがコメントを作成しました:

    Ah, the fact that there's a variable on the left side does not allow a quick fix. Still, you could try multiplying both sides by \[max_{j,l,k}^{box}\] to see if this improves performance. I'm assum...

  • Ronald van der Veldenさんがコメントを作成しました:

    Hi Eugene, You could do something like this: import gurobipy as gpfrom gurobipy import GRBH = range(3)K = [7, 13, 16]with gp.Env() as env, gp.Model(env=env) as model:    V = model.addVars(H, name='...

  • Ronald van der Veldenさんがコメントを作成しました:

    Hi Jaime, Instead of using Pool.map, you could look at a slightly lower-level approach where you start N processes and keep them running continuously (maintaining their own Gurobi environment objec...

  • Ronald van der Veldenさんがコメントを作成しました:

    Hi Lennard, My first reaction would be that you could separate (x * l)/y from y/y=1. Then the question is where this expression would be used - in a constraint or the objective function? For a cons...