I need to define a set of tuples that are composed of a set of tuples
tuple link{
string src;
string dest;
};
tuple route{
{link} links
};
{route} possible_routes;
Another way that can represent my problem is a set of set (a set of sets of links). The only trial that was a success is defining a set of tuples that have a set of strings each, but I need to extend that to a set of tuples. Is that possible in OPL?