Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/05/17 19:16:33 (7 years ago)
Author:
gkronber
Message:

#2690 renamed RandomForestModelView -> RandomForestModelEvaluationView

Location:
trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4
Files:
1 edited
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/HeuristicLab.Algorithms.DataAnalysis.Views-3.4.csproj

    r15105 r15123  
    149149      <DependentUpon>RandomForestClassificationSolutionView.cs</DependentUpon>
    150150    </Compile>
    151     <Compile Include="RandomForestModelView.cs">
    152       <SubType>UserControl</SubType>
    153     </Compile>
    154     <Compile Include="RandomForestModelView.Designer.cs">
    155       <DependentUpon>RandomForestModelView.cs</DependentUpon>
    156     </Compile>
    157     <Compile Include="RandomForestRegressionSolutionView.cs">
    158       <SubType>UserControl</SubType>
    159     </Compile>
    160     <Compile Include="RandomForestRegressionSolutionView.Designer.cs">
    161       <DependentUpon>RandomForestRegressionSolutionView.cs</DependentUpon>
     151    <Compile Include="RandomForestModelEvaluationView.cs">
     152      <SubType>UserControl</SubType>
     153    </Compile>
     154    <Compile Include="RandomForestModelEvaluationView.Designer.cs">
     155      <DependentUpon>RandomForestModelEvaluationView.cs</DependentUpon>
    162156    </Compile>
    163157    <Compile Include="MeanProdView.cs">
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/RandomForestModelEvaluationView.Designer.cs

    r15122 r15123  
    2121
    2222namespace HeuristicLab.Algorithms.DataAnalysis.Views {
    23   partial class RandomForestModelView {
     23  partial class RandomForestModelEvaluationView {
    2424    /// <summary>
    2525    /// Required designer variable.
     
    8181      this.listBox.DoubleClick += new System.EventHandler(this.listBox_DoubleClick);
    8282      //
    83       // RandomForestModelView
     83      // RandomForestModelEvaluationView
    8484      //
    8585      this.AllowDrop = true;
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/RandomForestModelEvaluationView.cs

    r15122 r15123  
    3030
    3131namespace HeuristicLab.Algorithms.DataAnalysis.Views {
    32   [View("Random forest model")]
     32  [View("RF Model Evaluation")]
    3333  [Content(typeof(IRandomForestRegressionSolution), false)]
    3434  [Content(typeof(IRandomForestClassificationSolution), false)]
    35   public partial class RandomForestModelView : DataAnalysisSolutionEvaluationView {
    36     public override Image ViewImage {
    37       get { return HeuristicLab.Common.Resources.VSImageLibrary.Function; }
    38     }
     35  public partial class RandomForestModelEvaluationView : DataAnalysisSolutionEvaluationView {
    3936
    4037    protected override void SetEnabledStateOfControls() {
     
    4441    }
    4542
    46     public RandomForestModelView()
     43    public RandomForestModelEvaluationView()
    4744      : base() {
    4845      InitializeComponent();
Note: See TracChangeset for help on using the changeset viewer.