Hello,
I was following this topic regarding lazy constraints and TSP, I am
working on similar problem maybe you can give me some advice. I have a
TSP like model and I try to compare the solution by using lazy
constraints and using a kind of Miller – Tucker – Zemlin formulation
from Sherali HD, Driscoll PJ (2002).
Somehow the solution using lazy constraints is always slower. I wonder
if I may be doing something wrong, thank you for any hints.
Here is the log you can see the difference in node amount and time:
-----------
Lazy:
Cutting planes:
Gomory: 8
Clique: 7
Zero half: 10
Lazy constraints: 1829
Explored 65545 nodes (1613840 simplex iterations) in 194.24 seconds
Thread count was 8 (of 8 available processors)
Optimal solution found (tolerance 1.00e-04)
Best objective 9.100000000000e+01, best bound 9.100000000000e+01, gap 0.0%
-------------
MTZ:
Cutting planes:
Gomory: 24
Implied bound: 522
Clique: 13
MIR: 32
Zero half: 53
Explored 23806 nodes (1022890 simplex iterations) in 57.89 seconds
Thread count was 8 (of 8 available processors)
Optimal solution found (tolerance 1.00e-04)
Best objective 9.100000000000e+01, best bound 9.100000000000e+01, gap 0.0%
------------
As I say, thank you for any hints
Peter