Free cookie consent management tool by TermsFeed Policy Generator

source: branches/StackingProblems/HeuristicLab.Encodings.MoveVectorEncoding/3.3/Interfaces/IMoveVectorCrossover.cs @ 14278

Last change on this file since 14278 was 14278, checked in by mzehetho, 8 years ago

Initial Commit for ticket #2605

Implemented:

  • Encoding
  • Moves
  • Views
  • Blocks World Problem
  • Blocks Relocation Problem
  • Stacking Problem
File size: 404 bytes
RevLine 
[14278]1using HeuristicLab.Core;
2using HeuristicLab.Data.MoveVectorData;
3using HeuristicLab.Optimization;
4
5namespace HeuristicLab.Encodings.MoveVectorEncoding.Interfaces
6{
7    public interface IMoveVectorCrossover : IMoveVectorOperator, ICrossover
8    {
9        ILookupParameter<ItemArray<MoveVector>> ParentsParameter { get; }
10        ILookupParameter<MoveVector> ChildParameter { get; }
11    }
12}
Note: See TracBrowser for help on using the repository browser.