Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2719_HeuristicLab.DatastreamAnalysis/HeuristicLab.DatastreamAnalysis/3.4/IRatedEnsembleModel.cs

Last change on this file was 14710, checked in by jzenisek, 8 years ago

#2719 implemented ensemble model rating by introducing the new type RatedEnsembleModel; introduced performance indicator calculation in results;

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 IRatedEnsembleModel : 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.