Originally posted by: nomiz
To answer my own questions:
1. Is this construct possible?
Yes it is. Let x be a IloNumExprArray.
2. Can the elements in an IloExprArray relate to each other?
Apparently they can, but a starting expression should be given.
3. Howto implement a start condition for an expression element, i.e. x[0] = 0 ?
This is done by
x[0] = IloNumExpr(env, xStart);
where xStart is an IloNum.
#CPLEXOptimizers#DecisionOptimization