Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysis/HeuristicLab.Problems.DataAnalysis.MultiVariate.TimeSeriesPrognosis/3.3/Interfaces/IOnlineTimeSeriesPrognosisEvaluator.cs @ 4235

Last change on this file since 4235 was 4113, checked in by gkronber, 14 years ago

Added plugin for time series prognosis. #1081

File size: 537 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6using HeuristicLab.Data;
7using HeuristicLab.Problems.DataAnalysis.Evaluators;
8using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
9using HeuristicLab.Parameters;
10
11namespace HeuristicLab.Problems.DataAnalysis.MultiVariate.TimeSeriesPrognosis {
12  public interface IOnlineTimeSeriesPrognosisEvaluator : IOnlineEvaluator {
13    void StartNewPredictionWindow(double referenceOriginalValue);
14  }
15}
Note: See TracBrowser for help on using the repository browser.