Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/03/19 14:49:46 (5 years ago)
Author:
abeham
Message:

#2521: Refactored ParetoFrontScatterPlot (moved from TestFunctions.MultiObjective to Analysis)

  • Introduced generic type that may work with all solution encodings
Location:
branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Views/3.3
Files:
2 added
1 edited
2 moved

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Views/3.3/HeuristicLab.Analysis.Views-3.3.csproj

    r16723 r17229  
    144144      <DependentUpon>IndexedDataTableView.cs</DependentUpon>
    145145    </Compile>
     146    <Compile Include="ParetoFrontScatterPlotViewOfT.cs">
     147      <SubType>UserControl</SubType>
     148    </Compile>
     149    <Compile Include="ParetoFrontScatterPlotViewOfT.Designer.cs">
     150      <DependentUpon>ParetoFrontScatterPlotViewOfT.cs</DependentUpon>
     151    </Compile>
     152    <Compile Include="ParetoFrontScatterPlotView.cs">
     153      <SubType>UserControl</SubType>
     154    </Compile>
     155    <Compile Include="ParetoFrontScatterPlotView.Designer.cs">
     156      <DependentUpon>ParetoFrontScatterPlotView.cs</DependentUpon>
     157    </Compile>
    146158    <Compile Include="ScatterPlotView.cs">
    147159      <SubType>UserControl</SubType>
  • branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Views/3.3/ParetoFrontScatterPlotView.Designer.cs

    r17228 r17229  
    2020#endregion
    2121
    22 namespace HeuristicLab.Problems.TestFunctions.Views {
     22namespace HeuristicLab.Analysis.Views {
    2323  partial class ParetoFrontScatterPlotView {
    2424    /// <summary>
  • branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Views/3.3/ParetoFrontScatterPlotView.cs

    r17228 r17229  
    2222using System;
    2323using System.Linq;
    24 using HeuristicLab.Analysis;
    2524using HeuristicLab.Common;
    2625using HeuristicLab.Core.Views;
    2726using HeuristicLab.MainForm;
    28 using HeuristicLab.Problems.TestFunctions.MultiObjective;
    2927
    30 namespace HeuristicLab.Problems.TestFunctions.Views {
     28namespace HeuristicLab.Analysis.Views {
    3129  [View("Scatter Plot")]
     30#pragma warning disable CS0618 // Type or member is obsolete
    3231  [Content(typeof(ParetoFrontScatterPlot))]
     32#pragma warning restore CS0618 // Type or member is obsolete
    3333  public partial class ParetoFrontScatterPlotView : ItemView {
    3434
     
    4242    private bool suppressEvents;
    4343
     44#pragma warning disable CS0618 // Type or member is obsolete
    4445    public new ParetoFrontScatterPlot Content {
    4546      get { return (ParetoFrontScatterPlot)base.Content; }
    4647      set { base.Content = value; }
    4748    }
     49#pragma warning restore CS0618 // Type or member is obsolete
    4850
    4951    public ParetoFrontScatterPlotView() {
Note: See TracChangeset for help on using the changeset viewer.