Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3057_DynamicALPS/TestProblems/oesr-alps-master/HeuristicLab.Algorithms.OESRALPS/Operators/ISlidingWindowOperator.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: 888 bytes
Line 
1using HEAL.Attic;
2using HeuristicLab.Core;
3using HeuristicLab.Data;
4using HeuristicLab.Problems.DataAnalysis;
5using System;
6
7namespace HeuristicLab.Algorithms.OESRALPS.SlidingWindow.Operator
8{
9    [StorableType("3E8AA082-3B86-4609-BD38-E3FA78DAD29F")]
10    public interface ISlidingWindowOperator : IOperator
11    {
12        IFixedValueParameter<IntValue> SlidingWindowStepWidthParameter { get; }
13        IFixedValueParameter<IntValue> StartSlidingWindowParameter { get; }
14        IFixedValueParameter<IntValue> SlidingWindowSizeParameter { get; }
15        ILookupParameter<IntRange> FitnessCalculationPartitionParameter { get; }
16        IValueLookupParameter<IntRange> TrainingPartitionParameter { get; }
17        IValueLookupParameter<IntRange> ValidationPartitionParameter { get; }
18
19        event EventHandler MoveWindow;
20        IOperation OnMoveWindow();
21    }
22}
Note: See TracBrowser for help on using the repository browser.