I am trying to improve memory use by setting Memory Emphasis parameter on and Preprocessing parameter off.
I found similar code for matlab and java but fail to do the same in c#.
Memory optimization while using CPLEX library in Java
ILOG.CP objects have SetParameter method, I tried below expressions but they give syntax errors.
cp.SetParameter (Cplex.Param.Preprocessing.Presolve, 0); cp.SetParameter(Cplex.Param.Emphasis.Memory, 1);
How can I set these parameters using C#?
Thank you very much in advance,