All Packages Class Hierarchy This Package Previous Next Index
Class juice.solver.SimplexSolver
java.lang.Object
|
+----juice.solver.IterativeSlv
|
+----juice.solver.SimplexSolver
- public class SimplexSolver
- extends IterativeSlv
Simplex Solver.
-
simply
-
-
vertexList
-
-
SimplexSolver(Iterator, Vector[])
-
-
SimplexSolver(Vector[])
-
-
getApproximation()
- A copy would be nicer: I have to loop over the entire data set.
-
solve(Operator, Vector, Vector)
- Solves Ax = b for x
"Solve" is used in a loose sense.
vertexList
protected Vector vertexList[]
simply
protected Simplex simply
SimplexSolver
public SimplexSolver(Vector basis[])
SimplexSolver
public SimplexSolver(Iterator iterator,
Vector basis[])
getApproximation
public Vector getApproximation()
- A copy would be nicer: I have to loop over the entire data set.
This would not happen if I had incorporated x into vertexList
instead of copying it. Don't know how to do this though.
- Overrides:
- getApproximation in class IterativeSlv
solve
public void solve(Operator A,
Vector b,
Vector x)
- Solves Ax = b for x
"Solve" is used in a loose sense.
- Overrides:
- solve in class IterativeSlv
All Packages Class Hierarchy This Package Previous Next Index