Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8637


Ignore:
Timestamp:
09/12/12 17:08:00 (12 years ago)
Author:
mkommend
Message:

#1924: Added comment that explains the usage of the cloner in the classification simplifier view.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views/3.4/InteractiveSymbolicClassificationSolutionSimplifierViewBase.cs

    r8636 r8637  
    4949    }
    5050
     51    /// <summary>
     52    /// It is necessary to create new models of an unknown type with new trees in the simplifier.
     53    /// For this purpose the cloner is used by registering the new tree as already cloned object and invoking the clone mechanism.
     54    /// This results in a new model of the same type as the old one with an exchanged tree.
     55    /// </summary>
     56    /// <param name="tree">The new tree that should be included in the new object</param>
     57    /// <returns></returns>
    5158    protected ISymbolicClassificationModel CreateModel(ISymbolicExpressionTree tree) {
    5259      var cloner = new Cloner();
Note: See TracChangeset for help on using the changeset viewer.