Last change
on this file since 14827 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:
1.0 KB
|
Rev | Line | |
---|
[14278] | 1 | using HeuristicLab.PluginInfrastructure;
|
---|
| 2 | using System;
|
---|
| 3 | using System.Collections.Generic;
|
---|
| 4 | using System.Linq;
|
---|
| 5 | using System.Text;
|
---|
| 6 | using System.Threading.Tasks;
|
---|
| 7 |
|
---|
| 8 | namespace HeuristicLab.Data.MoveVectorData.Views
|
---|
| 9 | {
|
---|
| 10 |
|
---|
| 11 | [Plugin("HeuristicLab.Data.MoveVectorData.Views", "3.3.1.1")]
|
---|
| 12 | [PluginFile("HeuristicLab.Data.MoveVectorData.Views-3.3.dll", PluginFileType.Assembly)]
|
---|
| 13 | [PluginDependency("HeuristicLab.Collections", "3.3")]
|
---|
| 14 | [PluginDependency("HeuristicLab.Common", "3.3")]
|
---|
| 15 | [PluginDependency("HeuristicLab.Core", "3.3")]
|
---|
| 16 | [PluginDependency("HeuristicLab.Core.Views", "3.3")]
|
---|
| 17 | [PluginDependency("HeuristicLab.Data", "3.3")]
|
---|
| 18 | [PluginDependency("HeuristicLab.Data.MoveVectorData", "3.3")]
|
---|
| 19 | [PluginDependency("HeuristicLab.MainForm", "3.3")]
|
---|
| 20 | [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")]
|
---|
| 21 | [PluginDependency("HeuristicLab.Optimization", "3.3")]
|
---|
| 22 | [PluginDependency("HeuristicLab.Optimization.Views", "3.3")]
|
---|
| 23 |
|
---|
| 24 | public class HeuristicLabDataMoveVectorDataViewsPlugin : PluginBase
|
---|
| 25 | {
|
---|
| 26 | }
|
---|
| 27 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.