Uses of Class
org.apache.commons.math.optimization.OptimizationException

Packages that use OptimizationException
org.apache.commons.math.optimization.linear This package provides optimization algorithms for linear constrained problems. 
 

Uses of OptimizationException in org.apache.commons.math.optimization.linear
 

Subclasses of OptimizationException in org.apache.commons.math.optimization.linear
 class NoFeasibleSolutionException
          This class represents exceptions thrown by optimizers when no solution fulfills the constraints.
 class UnboundedSolutionException
          This class represents exceptions thrown by optimizers when a solution escapes to infinity.
 

Methods in org.apache.commons.math.optimization.linear that throw OptimizationException
protected  void SimplexSolver.doIteration(org.apache.commons.math.optimization.linear.SimplexTableau tableau)
          Runs one iteration of the Simplex method on the given model.
protected abstract  RealPointValuePair AbstractLinearOptimizer.doOptimize()
          Perform the bulk of optimization algorithm.
 RealPointValuePair SimplexSolver.doOptimize()
          Perform the bulk of optimization algorithm.
protected  void AbstractLinearOptimizer.incrementIterationsCounter()
          Increment the iterations counter by 1.
 RealPointValuePair AbstractLinearOptimizer.optimize(LinearObjectiveFunction f, Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative)
          Optimizes an objective function.
 RealPointValuePair LinearOptimizer.optimize(LinearObjectiveFunction f, Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative)
          Optimizes an objective function.
protected  void SimplexSolver.solvePhase1(org.apache.commons.math.optimization.linear.SimplexTableau tableau)
          Solves Phase 1 of the Simplex method.
 



Copyright © 2003-2011 The Apache Software Foundation. All Rights Reserved.