Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/22/14 16:53:31 (10 years ago)
Author:
pfleck
Message:
  • Added ProblemDataCreator for instancing a new DataAnalysisProblemData with changed Dataset etc.
  • Added export functionality to PreprocessingContext. (cloned Algorithm or Problem)
  • Commented out code in StatisticsLogic which breaks the build. :(
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingContext.cs

    r10307 r10383  
    2020#endregion
    2121
     22using System;
    2223using HeuristicLab.Core;
    2324using HeuristicLab.Optimization;
     
    2526
    2627namespace HeuristicLab.DataPreprocessing {
    27   public interface IPreprocessingContext : IItem {
     28  public interface IPreprocessingContext
     29    : IItem {
     30
    2831    IPreprocessingData Data { get; }
    2932
    30     /// <summary>
    31     /// Parent algorithm, if available, or problem.
    32     /// </summary>
    33     IItem ParentItem { get; }
    34 
     33    [Obsolete]
    3534    IDataAnalysisProblemData DataAnalysisProblemData { get; }
    3635
    3736    IAlgorithm Algorithm { get; }
    3837
    39     IProblem Problem { get; }
     38    IDataAnalysisProblem Problem { get; }
     39
     40    IItem ExportAlgorithmOrProblem();
     41
     42    IAlgorithm ExportAlgorithm();
     43
     44    IProblem ExportProblem();
    4045  }
    4146}
Note: See TracChangeset for help on using the changeset viewer.