- Timestamp:
- 10/08/15 13:18:41 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/CMAOperators/CMAUpdater.cs
r12630 r12987 248 248 // assign D to eigenvalue square roots 249 249 for (int i = 0; i < N; i++) { 250 if (sp.D[i] < 0) { // numerical problem?250 if (sp.D[i] <= 0) { // numerical problem? 251 251 DegenerateStateParameter.ActualValue.Value = true; 252 252 sp.D[i] = 0;
Note: See TracChangeset
for help on using the changeset viewer.