Originally posted by: Bogdan_Tanasa
Hi guys,
Is there any way to hold a matrix in a tuple? I tried to write something like this:
int nrOfMessages = ...;
int nrOfCycles = ...;
int msgUa = nrOfMessages;
range rangeOfMessages = 1 .. nrOfMessages;
range rangeOfCycles = 1 .. nrOfCycles;
tuple config_type {
key int id;
int cfg
rangeOfMessagesrangeOfCycles;
}
{config_type} oldConfigs = ...;
but I get an error saying that Expecting tuple component foud cfg ...
Thanks,
Bogdan.
#DecisionOptimization#MathematicalProgramming-General