Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DatastreamAnalysis/HeuristicLab.DatastreamAnalysis/3.4/IAnalysisBase.cs @ 14710

Last change on this file since 14710 was 14536, checked in by jzenisek, 7 years ago

#2719 added datastream type; updated the optimizer view and control functionality

File size: 610 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6using HeuristicLab.Common;
7using HeuristicLab.Core;
8using HeuristicLab.Problems.DataAnalysis;
9
10namespace HeuristicLab.DatastreamAnalysis {
11  public interface IAnalysisBase : IParameterizedNamedItem, INamedItem, IItem, IContent, IDeepCloneable, ICloneable, IParameterizedItem {
12
13    // Ensembles
14    void AddEnsemble(IRegressionEnsembleModel ensemble);
15    void RemoveEnsemble(IRegressionEnsembleModel ensemble);
16
17    // Events
18    event EventHandler ModelsChanged;
19  }
20}
Note: See TracBrowser for help on using the repository browser.