Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2864_PermutationProblems/HeuristicLab.Problems.PFSP/3.3/Plugin.cs @ 15521

Last change on this file since 15521 was 15521, checked in by fholzing, 6 years ago

#2864: First commit of new branch of Permutation based benchmark problems.

File size: 1.1 KB
Line 
1using HeuristicLab.PluginInfrastructure;
2
3namespace HeuristicLab.Problems.PFSP
4{
5  [Plugin("HeuristicLab.Problems.PFSP", "3.3.14.14965")]
6  [PluginFile("HeuristicLab.Problems.PFSP-3.3.dll", PluginFileType.Assembly)]
7  [PluginDependency("HeuristicLab.Collections", "3.3")]
8  [PluginDependency("HeuristicLab.Common", "3.3")]
9  [PluginDependency("HeuristicLab.Common.Resources", "3.3")]
10  [PluginDependency("HeuristicLab.Core", "3.3")]
11  [PluginDependency("HeuristicLab.Data", "3.3")]
12  [PluginDependency("HeuristicLab.Encodings.IntegerVectorEncoding", "3.3")]
13  [PluginDependency("HeuristicLab.Encodings.PermutationEncoding", "3.3")]
14  [PluginDependency("HeuristicLab.Encodings.ScheduleEncoding", "3.3")]
15  [PluginDependency("HeuristicLab.Operators", "3.3")]
16  [PluginDependency("HeuristicLab.Optimization", "3.3")]
17  [PluginDependency("HeuristicLab.Parameters", "3.3")]
18  [PluginDependency("HeuristicLab.Persistence", "3.3")]
19  [PluginDependency("HeuristicLab.Problems.Instances", "3.3")]
20  public class HeuristicLabProblemsPFSPPlugin : PluginBase { }
21}
Note: See TracBrowser for help on using the repository browser.