Free cookie consent management tool by TermsFeed Policy Generator

source: branches/IslandALPS/IslandALPS/3.3/Plugin.cs @ 13857

Last change on this file since 13857 was 13595, checked in by pkuelzer, 8 years ago

#2558 Added GroupedLayerAnalyzer
Fixed an evaluated solutions bug

File size: 972 bytes
Line 
1using HeuristicLab.PluginInfrastructure;
2
3namespace HeuristicLab.Algorithms.IslandALPS {
4
5  [Plugin("HeuristicLab.Algorithms.IslandALPS", "Coarse grained version of ALPS.", "3.3.0.0")]
6  [PluginFile("HeuristicLab.Algorithms.IslandALPS-3.3.dll", PluginFileType.Assembly)]
7  [PluginDependency("HeuristicLab.Core", "3.3")]
8  [PluginDependency("HeuristicLab.Common", "3.3")]
9  [PluginDependency("HeuristicLab.Collections", "3.3")]
10  [PluginDependency("HeuristicLab.Data", "3.3")]
11  [PluginDependency("HeuristicLab.Operators", "3.3")]
12  [PluginDependency("HeuristicLab.Optimization", "3.3")]
13  [PluginDependency("HeuristicLab.Optimization.Operators", "3.3")]
14  [PluginDependency("HeuristicLab.Parameters", "3.3")]
15  [PluginDependency("HeuristicLab.Persistence", "3.3")]
16  [PluginDependency("HeuristicLab.Random", "3.3")]
17  [PluginDependency("HeuristicLab.Algorithms.ALPS", "3.3")]
18  public class HeuristicLabAlgorithmsIslandALPSPlugin : PluginBase {
19  }
20}
Note: See TracBrowser for help on using the repository browser.