Last change
on this file 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
|
Line | |
---|
1 | using HeuristicLab.Core;
|
---|
2 | using HeuristicLab.Data;
|
---|
3 | using System;
|
---|
4 | using System.Collections.Generic;
|
---|
5 | using System.Linq;
|
---|
6 | using System.Text;
|
---|
7 | using System.Threading.Tasks;
|
---|
8 |
|
---|
9 | namespace 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.