Originally posted by: ostaz
Hi everyone,
In OPL, it is possible to declare a tuple of data, like this
tuple link{
int Origin;
int Destination;
};
{link} Links=...;
and then use an identifier l for Links in expressions, such that
for (l in Links)
do_something (l.origin, l.destination);
Is it possible to do such declaration with Concert /C++ ?
Thanks in advance
#CPLEXOptimizers#DecisionOptimization