Did you know ... | Search Documentation: |
Introduction |
A linear programming problem or simply linear program (LP) consists of:
The goal is to assign values to the variables so as to maximize (or minimize) the value of the objective function while satisfying all constraints.
Many optimization problems can be modeled in this way. As one basic
example, consider a knapsack with fixed capacity C, and a number of
items with sizes s(i)
and values v(i)
. The
goal is to put as many items as possible in the knapsack (not exceeding
its capacity) while maximizing the sum of their values.
As another example, suppose you are given a set of coins with certain values, and you are to find the minimum number of coins such that their values sum up to a fixed amount. Instances of these problems are solved below.
Solving an LP or integer linear program (ILP) with this library typically comprises 4 stages:
The most frequently used predicates are thus:
Left Op C
,
where Left is a list of Coefficient*Variable
terms (variables in the context of linear programs can be atoms or
compound terms) and C is a non-negative numeric constant. The
list represents the sum of its elements. Op can be =
, =<
or >=
. The coefficient 1
can be omitted. An
integrality constraint is of the form integral(Variable)
and constrains Variable to an integral value.Coefficient*Variable
terms that represents the sum of its
elements, with respect to the linear program corresponding to state
S0. \
arg{S} is unified with an
internal representation of the solved instance.All numeric quantities are converted to rationals via rationalize/1, and rational arithmetic is used throughout solving linear programs. In the current implementation, all variables are implicitly constrained to be non-negative. This may change in future versions, and non-negativity constraints should therefore be stated explicitly.