Last change
on this file since 14821 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:
904 bytes
|
Rev | Line | |
---|
[14278] | 1 | using HeuristicLab.Common;
|
---|
| 2 | using HeuristicLab.Core;
|
---|
| 3 | using HeuristicLab.Data;
|
---|
| 4 | using HeuristicLab.Encodings.MoveVectorEncoding.Interfaces;
|
---|
| 5 | using HeuristicLab.Operators;
|
---|
| 6 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 7 | using System;
|
---|
| 8 | using System.Collections.Generic;
|
---|
| 9 | using System.Linq;
|
---|
| 10 | using System.Text;
|
---|
| 11 | using System.Threading.Tasks;
|
---|
| 12 |
|
---|
| 13 | namespace HeuristicLab.Encodings.MoveVectorEncoding
|
---|
| 14 | {
|
---|
| 15 | [Item("MoveVectorOperator", "Base class for move vector operators.")]
|
---|
| 16 | [StorableClass]
|
---|
| 17 | public abstract class MoveVectorOperator : InstrumentedOperator, IMoveVectorOperator
|
---|
| 18 | {
|
---|
| 19 | [StorableConstructor]
|
---|
| 20 | protected MoveVectorOperator(bool deserializing) : base(deserializing) { }
|
---|
| 21 | protected MoveVectorOperator(MoveVectorOperator original, Cloner cloner) : base(original, cloner) { }
|
---|
| 22 | public MoveVectorOperator() : base() { }
|
---|
| 23 | }
|
---|
| 24 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.