Free cookie consent management tool by TermsFeed Policy Generator

source: branches/StackingProblems/HeuristicLab.Encodings.MoveVectorEncoding/3.3/Interfaces/IBoundedMoveVectorOperator.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: 671 bytes
RevLine 
[14278]1using HeuristicLab.Core;
2using HeuristicLab.Data;
3using System;
4using System.Collections.Generic;
5using System.Linq;
6using System.Text;
7using System.Threading.Tasks;
8
9namespace HeuristicLab.Encodings.MoveVectorEncoding.Interfaces
10{
11    public interface IBoundedMoveVectorOperator : IMoveVectorOperator
12    {
13        /// <summary>
14        /// The bounds parameter must contain at least one row and at least two columns. The first two columns specify min and max values, the last column specifies the step size, but is optional (1 is assumed if omitted).
15        /// </summary>
16        IValueLookupParameter<IntMatrix> BoundsParameter { get; }
17    }
18}
Note: See TracBrowser for help on using the repository browser.