A.Omidi

Gurobi-versary
Conversationalist
Investigator
  • Total activity 49
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 20

Posts

Recent activity by A.Omidi Recent activity Votes
  • Using Gurobi heuristic parameter to achieve a feasible solution

    Answered

    Dear support team, I'm working on an optimization problem (MIP) which in the medium/large scale takes too much time to solve optimality. Then I tried to use Gurobi heuristic parameter to invoke a f...

  • MIP-Heuristic as a MIP-start

    Answered

    Dear support team,   I'm trying to solve a scheduling problem using Gurobi 9. The model is solved and the optimal solution is found. Now, I would like to use a heuristic (which an instance could be...

  • Gurobi NEOS issue

    Answered

    Dear support team,   I'm trying to solve a large scale optimization problem using Gurobi solver (V.9) on my local machine. As I have not accessed to an academic licence for Gurobi, I will need to u...

  • Special knapsack problem

    Answered

    Dear community team, I have tried to solve a special knapsack problem which contains an inequality with binary parameters. AFAIK, cover cuts families can be applied to solve the standard knapsack ...

  • Separating specific cuts

    Answered

    Dear support team, I was trying to solve a MIP using Gurobi and Java. I will need to turn off all pre-solving, heuristics and separating options and solve the problem using pure Branch and Bound. T...

  • Relaxed variable in Java API

    Answered

    Hello support team, I define an integer variable as following: GRBVar[][] start = new GRBVar[mach.length][item.length]; for (int m = 0; m < mach.length; m++) { for (int k = 0; k < item.leng...

  • Gurobi Java API

    Hello support team, I have worked on the transfer a GAMS/Gurobi model into the Gurobi Java API. The GAMS code is: Binary variable rank(i,k);Equations c1,c2;c1(k).. sum(i, rank(i,k)) =e= 1;c2(i).....

  • SOS_type_1 definition in Java

    Hello, I want to use SOS_type_1 in my model in Java language. I defined variable "rank" as the below form: // Definition variable rank[i][k]GRBVar[][] rank = new GRBVar[item.length][item.length];fo...

  • Branch and price example

    Answered

    Hello everybody, Are there any B&P Java example using Gurobi? Regards Omidi. A

  • Unable to read MPS file

    Answered

    Hello everybody,   I have a problem with reading a (.mps) file in Java API. This is Java code: *=========================== import gurobi.*; public class Lp2 {public static void main(String[] args)...