Property | Type | Description | |
---|---|---|---|
constraint_ | QLNet.Constraint | ||
costFunction_ | QLNet.CostFunction | ||
currentValue_ | Vector | ||
functionEvaluation_ | int | ||
functionValue_ | double? |
Method | Description | |
---|---|---|
Problem ( QLNet.CostFunction costFunction, QLNet.Constraint constraint, Vector initialValue ) : System | ||
constraint ( ) : QLNet.Constraint | ||
costFunction ( ) : QLNet.CostFunction | ||
currentValue ( ) : Vector | ||
functionEvaluation ( ) : int | ||
functionValue ( ) : double | ||
gradient ( Vector grad_f, Vector x ) : void | ||
gradientEvaluation ( ) : int | ||
gradientNormValue ( ) : double | ||
reset ( ) : void | ||
setCurrentValue ( Vector currentValue ) : void | ||
setFunctionValue ( double functionValue ) : void | ||
setGradientNormValue ( double squaredNorm ) : void | ||
value ( Vector x ) : double | ||
valueAndGradient ( Vector grad_f, Vector x ) : double | ||
values ( Vector x ) : Vector |
public Problem ( QLNet.CostFunction costFunction, QLNet.Constraint constraint, Vector initialValue ) : System | ||
costFunction | QLNet.CostFunction | |
constraint | QLNet.Constraint | |
initialValue | Vector | |
return | System |
public gradient ( Vector grad_f, Vector x ) : void | ||
grad_f | Vector | |
x | Vector | |
return | void |
public setCurrentValue ( Vector currentValue ) : void | ||
currentValue | Vector | |
return | void |
public setFunctionValue ( double functionValue ) : void | ||
functionValue | double | |
return | void |
public setGradientNormValue ( double squaredNorm ) : void | ||
squaredNorm | double | |
return | void |
public valueAndGradient ( Vector grad_f, Vector x ) : double | ||
grad_f | Vector | |
x | Vector | |
return | double |
protected CostFunction,QLNet costFunction_ | ||
return | QLNet.CostFunction |