Originally posted by: SystemAdmin
[agus said:]
Hi,
I got an error message saying: internal error (Please notify Ilog)
Here is my code:
tuple link {
key int id;
string p1;
string p2;
}
{link} links = ...;
tuple flight {
key string ID;
{string} realNodes;
{string} holdingNodes;
string destination;
string origin;
string status;
int OBT;
int TTD;
int ETA;
}
{flight} flights = ...;
tuple relation {
flight f;
link l;
}
{relation} relations with f in flights, l in links =...;
And here is my data file:
flights = {
<", {"a"}, {"c"}, "c", "a", "dept", 1, 30, 0>,
<", {"a"}, {"c"}, "c", "b", "dept", 1, 10, 0>
};
links = {<1, "a", "b">, <2, "b", "c">};
relations = {<",1>, <",2>, <",2>};
Can anyone help me with it?
Thanks
agus
#DecisionOptimization#OPLusingCPLEXOptimizer