| 329 | EState State; ///< Current optimization state. |
| 330 | |
| 331 | virtual void initBuffers( const int aParamCount, const int aPopSize, |
| 332 | const int aCnsCount = 0, const int aObjCount = 1 ) |
| 333 | { |
| 334 | CBiteOptBase :: initBuffers( aParamCount, aPopSize, aCnsCount, |
| 335 | aObjCount ); |
| 336 | |
| 337 | x = PopParams; |
| 338 | y = new double[ M ]; |
| 339 | x0 = CentParams; |
| 340 | x1 = TmpParams; |
| 341 | x2 = new double[ N ]; |
| 342 | } |
| 343 | |
| 344 | virtual void deleteBuffers() |
| 345 | { |
nothing calls this directly
no outgoing calls
no test coverage detected