Changeset 11230 for branches/HeuristicLab.BottomUpTreeDistance
- Timestamp:
- 07/29/14 19:32:11 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BottomUpTreeDistance/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/SimilarityCalculators/MaxCommonSubtreeSimilarityCalculator.cs
r11221 r11230 67 67 if (lenB <= max) continue; 68 68 int matches = SymbolicExpressionTreeMatching.Match(aa, bb, comparer); 69 if (max < matches) max = matches; 69 if (matches == lenB && max < matches) 70 max = matches; 70 71 } 71 72 }
Note: See TracChangeset
for help on using the changeset viewer.