Thanks for your answer. I will indeed try it on Gurobi 7. What I didn't say clearly in the earlier post is that x >= 1 should be set as a constraint and not as a variable bound to have the issue.
On Gurobi 6.51:
If it is set as a variable bound I get:
Optimize a model with 0 rows, 2 columns and 0 nonzeros
Coefficient statistics:
Matrix range [0e+00, 0e+00]
Objective range [1e+00, 1e+00]
Bounds range [1e+00, 1e+00]
RHS range [0e+00, 0e+00]
Presolve removed 0 rows and 1 columns
Presolve time: 0.00s
Iteration Objective Primal Inf. Dual Inf. Time
0 handle free variables 0s
Solved in 0 iterations and 0.00 seconds
Unbounded model
X = [1.0,0.0]
If it is set as a constraint I get:
Optimize a model with 1 rows, 2 columns and 1 nonzeros
Coefficient statistics:
Matrix range [1e+00, 1e+00]
Objective range [1e+00, 1e+00]
Bounds range [0e+00, 0e+00]
RHS range [1e+00, 1e+00]
Presolve removed 1 rows and 1 columns
Presolve time: 0.00s
Iteration Objective Primal Inf. Dual Inf. Time
0 handle free variables 0s
Solved in 1 iterations and 0.00 seconds
Unbounded model
X = [6.94934e-310,0.0]
Regars,
Benoît