| 1887 | ///< optimize() function call. |
| 1888 | |
| 1889 | virtual void initBuffers( const int aParamCount, const int aPopSize, |
| 1890 | const int aCnsCount = 0, const int aObjCount = 1 ) |
| 1891 | { |
| 1892 | CBiteParPops< ptype > :: initBuffers( aParamCount, aPopSize, |
| 1893 | aCnsCount, aObjCount ); |
| 1894 | |
| 1895 | MinValues = new double[ ParamCount ]; |
| 1896 | MaxValues = new double[ ParamCount ]; |
| 1897 | DiffValues = new double[ ParamCount ]; |
| 1898 | DiffValuesI = new double[ ParamCount ]; |
| 1899 | StartParams = new ptype[ ParamCount ]; |
| 1900 | BestValues = new double[ ParamCount ]; |
| 1901 | NewValues = new double[ ParamCount ]; |
| 1902 | } |
| 1903 | |
| 1904 | virtual void deleteBuffers() |
| 1905 | { |
nothing calls this directly
no outgoing calls
no test coverage detected