Hi all,
I am very new in the field of LP and gurobi and I would like to know what kind of method gurobi uses for solving LP. Simplex method or maybe another existing method? Is there any resource available about it?
I am trying to write a small program to get familiar with gurobi. In order to get the number of iterations ( is this in simplex method? I guess so) and the number of solutions via Java, I write as follows:
logger.info("Optimal value " + model.get(GRB.DoubleAttr.ObjVal)) ;
logger.info("#iterations : " + model.get(GRB.DoubleAttr.IterCount ) ) ;
logger.info("#solutions : " + model.get(GRB.IntAttr.SolCount) ) ;
And I receive the following as result :
#iterations : 0.0
#solutions : 1
I cannot understand why I am getting always 0 for #iterations and 1 for solutions. Is that normal?
Is it the correct way to receive the number of iterations via model.get(GRB.DoubleAttr.IterCount ) ?
How can I understand ( is there a variable to check in java ) which LP method gurobi is using for my problem?
Thanks for your help!!
Regards