| Package | Description |
|---|---|
| net.sf.tweety.math.opt | |
| net.sf.tweety.math.opt.solver |
| Modifier and Type | Method and Description |
|---|---|
static Solver |
Solver.getDefaultGeneralSolver()
Returns the default solver for non-linear (general) optimization problems.
|
static Solver |
Solver.getDefaultIntegerLinearSolver()
Returns the default solver for integer linear optimization problems.
|
static Solver |
Solver.getDefaultLinearSolver()
Returns the default solver for linear optimization problems.
If a default solver for linear problems has been configured this solver
is returned by this method.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
Solver.setDefaultGeneralSolver(Solver solver)
Sets the default solver for non-linear (general) optimization problems.
|
static void |
Solver.setDefaultIntegerLinearSolver(Solver solver)
Sets the default solver for integer linear optimization problems.
|
static void |
Solver.setDefaultLinearSolver(Solver solver)
Sets the default solver for linear optimization problems.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ApacheCommonsCMAESOptimizer
This class is a wrapper for the Apache Commons Math3 CMAES optimizer.
|
class |
ApacheCommonsNonLinearConjugateGradientOptimizer
This class is a wrapper for the Apache Commons Math3 Non-Linear
Conjugate Gradient Optimizer.
|
class |
ApacheCommonsSimplex
This class is a wrapper for the Apache Commons Math Simplex implementation.
|
class |
BfgsSolver
This class implements the BFGS algorithm for solving unconstrained optimization problems.
|
class |
GlpkSolver
Provides a Java binding to the Glpk solver (https://www.gnu.org/software/glpk).
|
class |
GradientDescent
This class implements the gradient descent method to
find an optimum.
|
class |
HessianGradientDescent
This class implements a gradient descent involving Hessian correction
for solving unconstrained optimization problems.
|
class |
LagrangeSolver
This class implements a (naive) Langrange solver for optimization problems.
This solver only considers optimization problems without inequations. |
class |
LbfgsSolver
This class implements a wrapper for L-BFGS.
|
class |
LpSolve
This class implements a wrapper to the lpsolve binary
for mixed integer linear programming.
|
class |
OctaveSqpSolver
Provides a bridge to the Octave (http://www.gnu.org/software/octave/) optimization
solver "sqp" which implements a successive quadratic programming solver for
general non-linear optimization problems.
|
class |
OpenOptSolver
This class implements a wrapper for the OpenOpt optimization library.
|
class |
OpenOptWebSolver
Uses a web service implementation of the OpenOpt-library.
|
class |
SimpleGeneticOptimizationSolver
This class implements a simple genetic optimization algorithm for solving
optimization problems with box or equality constraints on float variables.
|
Copyright © 2018. All rights reserved.