Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/01/11 12:04:53 (13 years ago)
Author:
mkommend
Message:

#1418: worked on data analysis problem representation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interfaces/ISymbolicDataAnalysisValidatingAnalyzer.cs

    r5553 r5577  
    2121using HeuristicLab.Core;
    2222using HeuristicLab.Data;
    23 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    24 using HeuristicLab.Optimization;
    2523namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
    26   public interface ISymbolicDataAnalysisValidatingAnalyzer<T> : ISymbolicDataAnalysisAnalyzer where T : class, IDataAnalysisProblemData {
    27     ILookupParameter<ISymbolicDataAnalysisEvaluator<T>> EvaluatorParameter { get; }
     24  public interface ISymbolicDataAnalysisValidatingAnalyzer<T, U> : ISymbolicDataAnalysisAnalyzer
     25    where T : class,ISymbolicDataAnalysisEvaluator<U>
     26    where U : class, IDataAnalysisProblemData {
     27    ILookupParameter<T> EvaluatorParameter { get; }
    2828    IValueLookupParameter<IntValue> ValidationSamplesStartParameter { get; }
    2929    IValueLookupParameter<IntValue> ValidationSamplesEndParameter { get; }
Note: See TracChangeset for help on using the changeset viewer.