Memory optimization while using CPLEX library in Java
问题 I am using IBM CPLEX library for an optimization problem in Java. Since main memory was not enough for the application I found a property of CPLEX : "Memory emphasis: letting the optimizer use disk for storage". Default value for Memory Emphasis is 0. How can I change this property in Java? for (int i = 0; i < GreenOverlayGlobals.numNodes; i++) { for (int j = 0; j < GreenOverlayGlobals.numNodes; j++) { IloLinearNumExpr expr2 = cplex.linearNumExpr(); for (int p = 0; p < GreenOverlayGlobals