| 91 | */ |
| 92 | |
| 93 | void init( CBiteRnd& rnd, const double* const InitParams = NULL, |
| 94 | const double InitRadius = 1.0 ) |
| 95 | { |
| 96 | initCommonVars( rnd ); |
| 97 | |
| 98 | StartSD = 0.25 * InitRadius; |
| 99 | |
| 100 | if( InitParams != NULL ) |
| 101 | { |
| 102 | copyParams( StartParams, InitParams ); |
| 103 | UseStartParams = true; |
| 104 | } |
| 105 | |
| 106 | ParOpt.init( rnd, InitParams, InitRadius ); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Function performs the parameter optimization iteration that involves 1 |