Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/27/15 18:08:41 (9 years ago)
Author:
bburlacu
Message:

#1772: Removed obsolete FrequentFragmentsDialog, added a checkbox to select the subtree matching mode in the SymbolicDataAnalysisGenealogyGraphView, removed commented code from the SymbolicDataAnalysisPoly10Analyzer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Tracking/SymbolicDataAnalysisGenealogyGraphView.cs

    r12283 r12406  
    183183        // currently there is no possibility to specify the subtree matching criteria
    184184        var trees = Content.Vertices.Select(x => x.Data);
     185        comparer.MatchVariableWeights = matchingModeButton.Checked;
     186        comparer.MatchConstantValues = matchingModeButton.Checked;
    185187        var matchingTrees = trees.Where(x => x.Root.ContainsSubtree(node, comparer));
    186188
     
    197199
    198200        var trees = Content.Vertices.Select(x => x.Data);
     201        comparer.MatchVariableWeights = matchingModeButton.Checked;
     202        comparer.MatchConstantValues = matchingModeButton.Checked;
    199203        var matchingTrees = trees.Where(x => x.Root.ContainsSubtree(ClonedSubtree, comparer));
    200204
Note: See TracChangeset for help on using the changeset viewer.