Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3057_DynamicALPS/TestProblems/oesr-alps-master/HeuristicLab.Algorithms.OESRALPS/Operators/IGenerationalSlidingWindowOperator.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: 639 bytes
Line 
1using HEAL.Attic;
2using HeuristicLab.Core;
3using HeuristicLab.Data;
4using HeuristicLab.Optimization;
5using System;
6using System.Collections.Generic;
7using System.Linq;
8using System.Text;
9using System.Threading.Tasks;
10
11namespace HeuristicLab.Algorithms.OESRALPS.SlidingWindow.Operator
12{
13    [StorableType("136DA41B-0AC1-49A8-B4D9-DCE73BDB7A14")]
14    interface IGenerationalSlidingWindowOperator : ISlidingWindowOperator, IIterationBasedOperator
15    {
16        IFixedValueParameter<IntValue> GenerationsIntervalParameter { get; }
17        IFixedValueParameter<IntValue> GenerationsIntervalStartParameter { get; }
18    }
19}
Note: See TracBrowser for help on using the repository browser.