public abstract class KKTSolver<P,M,V>
extends java.lang.Object
implements org.hipparchus.optim.OptimizationData
Constructor and Description |
---|
KKTSolver() |
Modifier and Type | Method and Description |
---|---|
abstract M |
getKKTMatrix(M H,
M A,
M R)
Return KKT Matrix.
|
abstract P |
iterate(V... b)
Iterate KKT equation from given list of Vector
|
abstract P |
solve(V B1,
V B2)
Solve KKT equation from given right hand value.
|
public abstract P solve(V B1, V B2)
B1
- first right hand vectorB2
- second right hand vectorpublic abstract M getKKTMatrix(M H, M A, M R)
H
- Hessian MAtrixA
- Costraint MatrixR
- Wheight Matrix