Last change
on this file since 16147 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:
534 bytes
|
Line | |
---|
1 | using HeuristicLab.Core;
|
---|
2 | using HeuristicLab.Data;
|
---|
3 | using HeuristicLab.Data.MoveVectorData;
|
---|
4 | using HeuristicLab.Optimization;
|
---|
5 | using System;
|
---|
6 | using System.Collections.Generic;
|
---|
7 |
|
---|
8 | namespace HeuristicLab.Encodings.MoveVectorEncoding.Interfaces
|
---|
9 | {
|
---|
10 | public interface IMoveVectorCreator : IBoundedMoveVectorOperator, ISolutionCreator
|
---|
11 | {
|
---|
12 | IValueLookupParameter<IntValue> LengthParameter { get; }
|
---|
13 | ILookupParameter<MoveVector> MoveVectorParameter { get; }
|
---|
14 |
|
---|
15 | IList<Type> MoveTypes { get; set; }
|
---|
16 | }
|
---|
17 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.