Originally posted by: arguen
Hi,
I am getting below error message when I want to see the open form of (the children of) the below constraints from the "problem browser" after I got the solution.
Error message: "Oplrun process is not responding, you must relaunch the configuration"
int TW=3; dvar
boolean x[IJV][T]; forall( v in V, i in NPD_v[v], t in T : <i,i,v> in IJV) sum (tau in t..t+ TW : tau in T) x[<i,i,v>][tau] <= TW;
My guess is that the problem arises from the sum () function and only a displaying error since the mentioned constraint seems to be working fine in the model.
Also note that : when I code the same constraint (below code) w/o tuple it doesn't give any problem.
forall( v in V, i in NPD_v[v], t in T) sum (tau in t..t+TW): tau in T) x[i][i][v][tau] <= TW;
The message populated in the .log file:
!ENTRY ilog.odms.ide.core 4 0 2012-11-22 13:04:24.020 !MESSAGE Error handling script request #5990 code: IloOdmsIde.expand(Constraint6._expandable.expand[0]) cause: java.lang.InterruptedException !STACK 0 ilog.odms.ide.internal.core.run.IloAbstractRunController$ScriptHandlingException: Error handling script request #5990 code: IloOdmsIde.expand(Constraint6._expandable.expand[0]) cause: java.lang.InterruptedException at ilog.odms.ide.internal.core.run.IloAbstractRunController$ScriptHandlingRequest.handleResult(IloAbstractRunController.java:203) at ilog.odms.ide.internal.core.run.IloAbstractRunController$SyncScriptHandlingRequest.waitAndHandleResultEvent(IloAbstractRunController.java:266) at ilog.odms.ide.internal.core.run.IloAbstractRunController.processRequestScript(IloAbstractRunController.java:418) at ilog.odms.ide.internal.core.run.IloAbstractRunController.access$9(IloAbstractRunController.java:398) at ilog.odms.ide.internal.core.run.IloAbstractRunController$2.call(IloAbstractRunController.java:343) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) at java.util.concurrent.FutureTask.run(FutureTask.java:138) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.Thread.run(Thread.java:736)
Thanks for any help!
#DecisionOptimization#OPLusingCPLEXOptimizer