help-glpk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Help-glpk] minimax problem


From: Andrew Makhorin
Subject: Re: [Help-glpk] minimax problem
Date: Thu, 23 Nov 2006 00:34:56 +0300

> How do you describe minimax optimizations for the GLPK?

There is a standard way. For example,

   minimize obj: max{i in I} x[i];

can be modeled as follows:

   var z;
   s.t. foo{i in I}: z >= x[i];
   minimize obj: z;






reply via email to

[Prev in Thread] Current Thread [Next in Thread]