My MIP Model in OPL CPLEX V12.9 is currently working with a small amount of Data, but with a bigger database import from excel, after running for 1 hour I get the following error:
Error 1001: Out of memory.
I already know that I can change some Parameters at the .ops
I have already tried to set the following parameters:
CPX_PARAM_WORKMEM = 1920.0 (default 2048.0)
CPX_PARAM_NODEFILEIND = 3 (default Node file in memory and compressed)
and afterward I got:
Error 1422: Can not open file %s for writing
So I changed the Parameter:
CPX_PARAM_WORKDIR
to C:\Users\..\opl
But my main worry is about the memory issue. I am using a surface 4 pro with 4GB RAM and 1867MHz and i5-6300U CPU.
While the Model is running my CPU also goes to 99-100%.
Which parameters can I change to solve the memory problem and what value should I change these parameters to?