All Questions
2 questions
1
vote
0
answers
112
views
CPLEX Tree Memory Exceeds Given Limit
I am solving a model using CPLEX (version 12.8.0) on Python (3.5), and I have set the tree memory limit to 200MB with the following line:
model=cplex.Cplex()
model.parameters.mip.limits.treememory.set(...
1
vote
0
answers
179
views
GAMS : Avoid Scan of obviously wrong solutions in CPLEX
I have the following problem in GAMS
I implemented a location routing problem. While checking the .log file I noticed something that could speed up the calculation time immensly if I fixed it.
Let me ...