- Timestamp:
- 02/04/11 01:29:43 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.3/CrossValidation.cs
r5287 r5419 165 165 } 166 166 167 public IEnumerable<IOptimizer> NestedOptimizers { 168 get { 169 if (Algorithm != null) yield return Algorithm; 170 if (clonedAlgorithms != null) { 171 foreach (IAlgorithm alg in ClonedAlgorithms) { 172 yield return alg; 173 foreach (IOptimizer nested in alg.NestedOptimizers) 174 yield return nested; 175 } 176 } 177 } 178 } 179 167 180 [Storable] 168 181 private ResultCollection results;
Note: See TracChangeset
for help on using the changeset viewer.