Uses of Class
org.apache.commons.math3.exception.TooManyIterationsException
Packages that use TooManyIterationsException
Package
Description
Generally, optimizers are algorithms that will either
minimize
or
maximize
a scalar function, called the
objective
function
.Optimization algorithms for linear constrained problems.
-
Uses of TooManyIterationsException in org.apache.commons.math3.optim
Methods in org.apache.commons.math3.optim that throw TooManyIterationsExceptionModifier and TypeMethodDescriptionprotected void
BaseOptimizer.incrementIterationCount()
Increment the iteration count.BaseOptimizer.optimize()
Performs the optimization.BaseOptimizer.optimize
(OptimizationData... optData) Stores data and performs the optimization. -
Uses of TooManyIterationsException in org.apache.commons.math3.optim.linear
Methods in org.apache.commons.math3.optim.linear that throw TooManyIterationsExceptionModifier and TypeMethodDescriptionprotected void
SimplexSolver.doIteration
(org.apache.commons.math3.optim.linear.SimplexTableau tableau) Runs one iteration of the Simplex method on the given model.SimplexSolver.doOptimize()
Performs the bulk of the optimization algorithm.LinearOptimizer.optimize
(OptimizationData... optData) Stores data and performs the optimization.SimplexSolver.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.