Free cookie consent management tool by TermsFeed Policy Generator

source: branches/StackingProblems/HeuristicLab.Data.MoveVectorData.Views/3.3/Plugin.cs @ 14498

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