Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3057_DynamicALPS/TestProblems/oesr-alps-master/HeuristicLab.Algorithms.OESRALPS/Analyzers/ISlidingWindowAnalyzer.cs @ 17479

Last change on this file since 17479 was 17479, checked in by kyang, 4 years ago

#3057

  1. upload the latest version of ALPS with SMS-EMOA
  2. upload the related dynamic test problems (dynamic, single-objective symbolic regression), written by David Daninel.
File size: 616 bytes
Line 
1using HEAL.Attic;
2using HeuristicLab.Algorithms.OESRALPS.SlidingWindow.Operator;
3using HeuristicLab.Core;
4using HeuristicLab.Data;
5using HeuristicLab.Problems.DataAnalysis;
6using HeuristicLab.Problems.DataAnalysis.Symbolic;
7using System;
8using System.Collections.Generic;
9using System.Linq;
10using System.Text;
11using System.Threading.Tasks;
12
13namespace HeuristicLab.Algorithms.OESRALPS.Analyzers
14{
15    [StorableType("136DA11B-0AC1-49A8-B4D9-DCE73BDB7114")]
16    public interface ISlidingWindowAnalyzer :
17        ISymbolicDataAnalysisSingleObjectiveAnalyzer, ISlidingWindowOperator
18    {
19    }
20}
Note: See TracBrowser for help on using the repository browser.