Sanjeev Bhurtyal

  • Gurobi-versary
  • First Comment
  • First Question
  • Total activity 11
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 4

Posts

Recent activity by Sanjeev Bhurtyal Recent activity Votes
  • Multiprocessing produce different results in each run.

    Awaiting user input

    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):...

  • Different Dual values?

    Awaiting user input

    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...

  • Gurobi Multiprocessing

    Ongoing

    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...

  • Start the solution from .sol file for LP.

    Awaiting user input

    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 ...