As part of my decision variables, I will have an array of numbers, where each
element is the execution time to complete tasks at a server. The LP is to
spread some load across the servers such that the maximum completion time
across all tasks is minimised. I cannot figure out how to express this
objective.
I have something like this:
set SERVERS;
var CompletionTimes{s in SERVERS} >= 0;
s.t. compl{s in SERVERS} : CompletionTime[s] = .......;
minimize z: max(CompletionTimes{s in SERVERS}); # Doesn't work
set SERVERS := 1 2 3 4 5;
--
View this message in context:
http://www.nabble.com/Using-max-on-an-array-of-decision-variables-tf4404121.html#a12564375
Sent from the Gnu - GLPK - Help mailing list archive at Nabble.com.
_______________________________________________
Help-glpk mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-glpk