@@ -112,10 +112,16 @@ class CorrectionMethod:
112112
113113class MatrixAdaptationType :
114114 __members__ : ClassVar [dict ] = ... # read-only
115+ NONE : ClassVar [MatrixAdaptationType ] = ...
115116 COVARIANCE : ClassVar [MatrixAdaptationType ] = ...
116117 MATRIX : ClassVar [MatrixAdaptationType ] = ...
117- NONE : ClassVar [MatrixAdaptationType ] = ...
118118 SEPERABLE : ClassVar [MatrixAdaptationType ] = ...
119+ ONEPLUSONE : ClassVar [MatrixAdaptationType ] = ...
120+ CHOLESKY : ClassVar [MatrixAdaptationType ] = ...
121+ CMSA : ClassVar [MatrixAdaptationType ] = ...
122+ COVARIANCE_NO_EIGV : ClassVar [MatrixAdaptationType ] = ...
123+ NATURAL_GRADIENT : ClassVar [MatrixAdaptationType ] = ...
124+
119125 __entries : ClassVar [dict ] = ...
120126 def __init__ (self , value : int ) -> None : ...
121127 def __eq__ (self , other : object ) -> bool : ...
@@ -184,12 +190,15 @@ class RestartStrategy:
184190class StepSizeAdaptation :
185191 __members__ : ClassVar [dict ] = ... # read-only
186192 CSA : ClassVar [StepSizeAdaptation ] = ...
187- LPXNES : ClassVar [StepSizeAdaptation ] = ...
193+ TPA : ClassVar [StepSizeAdaptation ] = ...
188194 MSR : ClassVar [StepSizeAdaptation ] = ...
195+ XNES : ClassVar [StepSizeAdaptation ] = ...
189196 MXNES : ClassVar [StepSizeAdaptation ] = ...
197+ LPXNES : ClassVar [StepSizeAdaptation ] = ...
190198 PSR : ClassVar [StepSizeAdaptation ] = ...
191- TPA : ClassVar [StepSizeAdaptation ] = ...
192- XNES : ClassVar [StepSizeAdaptation ] = ...
199+ SR : ClassVar [StepSizeAdaptation ] = ...
200+ SA : ClassVar [StepSizeAdaptation ] = ...
201+
193202 __entries : ClassVar [dict ] = ...
194203 def __init__ (self , value : int ) -> None : ...
195204 def __eq__ (self , other : object ) -> bool : ...
0 commit comments