- Timestamp:
- 01/28/14 10:52:45 (11 years ago)
- Location:
- branches/DataAnalysis.IslandAlgorithms/HeuristicLab.Algorithms.DataAnalysis.Symbolic/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis.IslandAlgorithms/HeuristicLab.Algorithms.DataAnalysis.Symbolic/3.3/ConsecutiveSamplesEvaluator.cs
r10353 r10404 132 132 133 133 //calculat new rows for evaluation 134 if ( generation % dataMigrationInterval == 0) {134 if (dataMigrationInterval != 0 && generation % dataMigrationInterval == 0) { 135 135 //create fixed rows enumerable 136 136 var rows = Enumerable.Range(fixedSamples.Start, fixedSamples.Size); -
branches/DataAnalysis.IslandAlgorithms/HeuristicLab.Algorithms.DataAnalysis.Symbolic/3.3/RandomSamplesEvaluator .cs
r10353 r10404 123 123 124 124 //calculat new rows for evaluation 125 if ( generation % dataMigrationInterval == 0) {125 if (dataMigrationInterval != 0 && generation % dataMigrationInterval == 0) { 126 126 //create fixed rows enumerable 127 127 var rows = Enumerable.Range(fixedSamples.Start, fixedSamples.Size);
Note: See TracChangeset
for help on using the changeset viewer.