Changeset 16682 for branches/2994-AutoDiffForIntervals/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Crossovers/SymbolicDataAnalysisExpressionProbabilisticFunctionalCrossover.cs
- Timestamp:
- 03/13/19 23:55:38 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2994-AutoDiffForIntervals/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Crossovers/SymbolicDataAnalysisExpressionProbabilisticFunctionalCrossover.cs
r16565 r16682 116 116 // remove branches with an infinite or NaN behavioral distance 117 117 for (int i = weights.Count - 1; i >= 0; --i) { 118 if ( Double.IsNaN(weights[i]) || Double.IsInfinity(weights[i])) {118 if (double.IsNaN(weights[i]) || double.IsInfinity(weights[i])) { 119 119 weights.RemoveAt(i); 120 120 allowedBranches.RemoveAt(i);
Note: See TracChangeset
for help on using the changeset viewer.