Last change
on this file since 17357 was
14536,
checked in by jzenisek, 8 years ago
|
#2719 added datastream type; updated the optimizer view and control functionality
|
File size:
610 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 | using HeuristicLab.Common;
|
---|
7 | using HeuristicLab.Core;
|
---|
8 | using HeuristicLab.Problems.DataAnalysis;
|
---|
9 |
|
---|
10 | namespace 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.