Originally posted by: onuruzunlar
Hi,
I have a very simple problem.
i am trying to calculate M[i][j] for all i in Nodes and j in Nodes, so i wrote the following to the .mod file;
float M
NodesNodes;
execute {
for (var i in Nodes){
for (var j in Nodes) {
M[i][j]=theta*gamma+theta*sum(s in Nodes)g[s][j];
}
}
}
but it does not work. Any help?_
#DecisionOptimization#OPLusingCPLEXOptimizer