Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2719_HeuristicLab.DatastreamAnalysis/HeuristicLab.DatastreamAnalysis/3.4/IProxyEnsembleModel.cs @ 15867

Last change on this file since 15867 was 15867, checked in by jzenisek, 6 years ago

#2719: added proxy ensemble model

File size: 405 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6using HeuristicLab.Core;
7
8namespace HeuristicLab.DatastreamAnalysis {
9  public interface IProxyEnsembleModel : IParameterizedItem {
10    IEnumerable<IParameterizedItem> ExecutionContextItems { get; }
11    event EventHandler Reset;
12    event EventHandler ModelChanged;
13  }
14}
Note: See TracBrowser for help on using the repository browser.