| Package | Description | 
|---|---|
| org.apache.commons.math3.optim | 
  Generally, optimizers are algorithms that will either
   minimizeormaximizea scalar function, called theobjective
  function. | 
| org.apache.commons.math3.optim.linear | Optimization algorithms for linear constrained problems. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected void | BaseOptimizer. incrementIterationCount()Increment the iteration count. | 
| PAIR | BaseOptimizer. optimize()Performs the optimization. | 
| PAIR | BaseOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected void | SimplexSolver. doIteration(org.apache.commons.math3.optim.linear.SimplexTableau tableau)Runs one iteration of the Simplex method on the given model. | 
| PointValuePair | SimplexSolver. doOptimize()Performs the bulk of the optimization algorithm. | 
| PointValuePair | SimplexSolver. optimize(OptimizationData... optData)Stores data and performs the optimization. | 
| PointValuePair | LinearOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization. | 
| protected void | SimplexSolver. solvePhase1(org.apache.commons.math3.optim.linear.SimplexTableau tableau)Solves Phase 1 of the Simplex method. | 
Copyright © 2003–2016 The Apache Software Foundation. All rights reserved.