- Timestamp:
- 05/10/12 18:05:40 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ScatterSearch (trunk integration)/HeuristicLab.Optimization.Operators/3.3/SimilarityCalculator.cs
r7789 r7793 65 65 66 66 if (left == right) return 0; 67 else return Calculate Diversity(left, right);67 else return CalculateSimilarity(left, right); 68 68 } 69 69 70 protected abstract double Calculate Diversity(IScope left, IScope right);70 protected abstract double CalculateSimilarity(IScope left, IScope right); 71 71 } 72 72 }
Note: See TracChangeset
for help on using the changeset viewer.