Sanjeev Bhurtyal

  • Gurobi-versary
  • First Comment
  • First Question
  • 合計アクティビティ 11
  • 前回のアクティビティ
  • メンバー登録日
  • フォロー 0ユーザー
  • フォロワー 0ユーザー
  • 投票 0
  • サブスクリプション 4

アクティビティの概要

Sanjeev Bhurtyalさんの最近のアクティビティ
  • Sanjeev Bhurtyalさんが投稿を作成しました:

    Multiprocessing produce different results in each run.

    ユーザーの入力を待っています。

    I used the following code for multiprocessing, but it gives different results in each run. Am I doing something wrong? import multiprocessing as mpimport gurobipy as gp def solve_model(input_data):...

  • Sanjeev Bhurtyalさんが投稿を作成しました:

    Different Dual values?

    ユーザーの入力を待っています。

    Why do I get different dual values for the same problem when I use model.getAttr("Pi", constraint list) and model.getConstrbyName("Constraint Name").pi? mdlSP = gurobipy.model("Problem")#1st Formul...

  • Sanjeev Bhurtyalさんがコメントを作成しました:

    Thank you Matthias for your comment. I am implementing Benders Decomposition algorithm. I need to solve sub problem 9 times in each iteration till the stopping criteria is met. Solving subproblem f...

  • Sanjeev Bhurtyalさんが投稿を作成しました:

    Gurobi Multiprocessing

    進行中

    I am trying to implement multiprocessing to run 9 scenarios in parallel. I have a single model for which constraints are changed based on each scenario. I am trying to run these scenarios in parall...

  • Sanjeev Bhurtyalさんがコメントを作成しました:

    Hi Jaromil, There was a bug in the code. After I fixed it, the code runs fine now.  Thank you for your help. Sanjeev

  • Sanjeev Bhurtyalさんがコメントを作成しました:

    Thank you Jaromil for your comment. I am implementing Benders Decomposition algorithm. For each scenario, I change RHS of one of the scenario specific constraint. In an iteration, I solve the model...

  • Sanjeev Bhurtyalさんが投稿を作成しました:

    Start the solution from .sol file for LP.

    ユーザーの入力を待っています。

    My problem is scenario specific. I need to iterate a problem over 9 times in each iteration. I want to save the .sol of each scenario from one iteration and use this sol file as the starting point ...