Difference between revisions of "Integer Linear Programming"
From Cohen Courses
Jump to navigationJump to searchLine 16: | Line 16: | ||
== Procedure == | == Procedure == | ||
− | '''Input | + | '''Input''': |
* the objective function | * the objective function | ||
* the constraints | * the constraints | ||
− | ''' | + | '''Output''': |
− | * | + | * the assignment of unknown variables that optimizes the objective function and is consistent with the constraints |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== References / Links == | == References / Links == |
Revision as of 01:41, 28 September 2011
Summary
Integer Linear Programming (ILP) is a method for:
- optimizing a linear objective function:
- maximize
- where is known and is unknown variable
- subject to linear equality or inequality constraints:
- where and are known
- and where can only take integer values
In other words, it is a method to find the optimal solution (i.e. the best assignment of unknown variables such as 's) that maximizes the objective function while meeting a list of requirements expressed as linear equality or inequality relationships.
Procedure
Input:
- the objective function
- the constraints
Output:
- the assignment of unknown variables that optimizes the objective function and is consistent with the constraints
References / Links
- Leo Brieman. Bagging Predictors. Machine Learning, 24, 123–140 (1996). - [1]
- Wikipedia article on Bagging - [2]