Changeset 14029 for branches/crossvalidation-2434/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/CMAOperators
- Timestamp:
- 07/08/16 14:40:02 (8 years ago)
- Location:
- branches/crossvalidation-2434
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/crossvalidation-2434
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/CMAOperators/CMAUpdater.cs
r12630 r14029 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.