Difference between revisions of "Package glpk/GLPK.LPMax"

From ApCoCoAWiki
(Essentially copied from ApCoCoA-1:GLPK.LPMax)
 
m (see also)
 
Line 16: Line 16:
 
<item>@return List of linear polynomials, the zeros of the polynomials are the points where the optimal value of the objective function is achieved</item>
 
<item>@return List of linear polynomials, the zeros of the polynomials are the points where the optimal value of the objective function is achieved</item>
 
</itemize>
 
</itemize>
 
 
</description>
 
</description>
 +
<seealso>
 +
  <see>Package glpk/GLPK.BPMax</see>
 +
  <see>Package glpk/GLPK.MIPMax</see>
 +
  <see>Package glpk/GLPK.LPMin</see>
 +
</seealso>
 
<types>
 
<types>
 
   <type>poly</type>
 
   <type>poly</type>

Latest revision as of 15:30, 1 November 2020

This article is about a function from ApCoCoA-2. If you are looking for the ApCoCoA-1 version of it, see ApCoCoA-1:GLPK.LPMax.

GLPK.LPMax

Solving linear programmes by maximizing the objective function.

Syntax

GLPK.LPMax(Objective_f:POLY, Inequations:LIST, Bounds:LIST, Method:STRING) :LIST

Description

Please note: The function(s) explained on this page is/are using the ApCoCoAServer. You will have to start the ApCoCoAServer in order to use it/them.

  • @param Objective_f: A linear polynomial which is equivalent to the linear objective function.

  • @param Inequations: List of linear polynomials, which are equivalent to the conditions of the linear program of the form A <= 0.

  • @param Bounds: List of lists with two elements. Each List contains the lower and upper bounds for each variable. You can choose between INT or RAT for the type of each bound, if you type in a (empty) string, then it means minus infinity (first place) or plus infinity (second place).

  • @param Method: You can choose between the interior-point-method ("InterP") or the simplex-algorithm ("Simplex"). Usually you should use the simplex-algorithm.

  • @return List of linear polynomials, the zeros of the polynomials are the points where the optimal value of the objective function is achieved

See also

Package glpk/GLPK.BPMax

Package glpk/GLPK.MIPMax

Package glpk/GLPK.LPMin