Last change
on this file since 15490 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
|
Rev | Line | |
---|
[14278] | 1 | using HeuristicLab.Core;
|
---|
| 2 | using HeuristicLab.Data.MoveVectorData;
|
---|
| 3 | using HeuristicLab.Optimization;
|
---|
| 4 |
|
---|
| 5 | namespace 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.