Hi,
you could use a tuple set for O:
int k=3;
tuple t
{
int i;
int j;
}
range TimeFrame = 1..k;
{t} O[TimeFrame]=[{<1,2>},{<2,3>},{<3,4>}];
execute
{
writeln(O);
}
works fine
regards
------------------------------
ALEX FLEISCHER
------------------------------