D

  • Gurobi-versary
  • Investigator
  • Conversationalist
  • Total activity 48
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 6
  • Subscriptions 18

Posts

Recent activity by D Recent activity Votes
  • Continuing optimization...

    Answered

    What does it mean when I see this in the log for a while "Continuing optimization... ", even though I used the parameter: model.Params.OutputFlag = 1, to get detailed information during the optimzi...

  • Running consecutive optimizations on the same model

    Ongoing

    What exactly happens when I construct a model, run an optimization, then change the parameters, and run the optimization again? Does the second run learn from the first run and start where it left ...

  • quicksum() and sum()

    Answered

    Is there a difference between suing quicksum() and sum()? would it affect the results? or computational time? or intermediate results if a time limit was added?

  • Local optima

    Answered

    I am running a MIP problem. I am using a set of inputs and the code converges and I get 27 feasible solutions (which are optimal matches) that would reduce the objective function, although I was ex...

  • How to print solution with variable names

    Awaiting user input

    I used model.x, to save the variables and print them, but this doesn't include variable names.  Also, I need to only print variables>0.  And I have too many variables in the magnitude of 100K, so I...

  • deleting variables - example

    Awaiting user input

    The example in the documentation that is used for deleting variables, doesn't make a lot of sense to me. What are we saving in error? Does it update the model automatically  Example usage:int first...

  • Model infeasible but not sure why, formulation is sound

    Answered

    Could someone help me pinpoint the issue of the model with this error result: " Gurobi Optimizer version 9.0.3 build v9.0.3rc0 (win64) Optimize a model with 2922876 rows, 3868200 columns and 586115...

  • How to save model construction in a file to be able to update later

    Answered

    I want to save the model construction (constraints, objective function) in a file, because the model construction alone took 5 hours. However, the model is currently infeasible so it will require c...

  • Can we print constraints as they are added? Hows?

    Answered

    Trying to track why is the script taking too long, Anyone knows if we can print values while the model is building constructed. 

  • model.setParam('TimeLimit', )doesn't seem to work.

    Answered

    model.setParam('TimeLimit', 2000) Should I switch to worklimit instead? the code is taking too long? How do I know if the code is actually stuck due to problems in constraints or the computation ti...