Changeset 2591 for trunk/sources/HeuristicLab.GP.Algorithms
- Timestamp:
- 01/05/10 10:31:40 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.GP.Algorithms/3.2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.GP.Algorithms/3.2/HeuristicLabGpAlgorithmsPlugin.cs
r2566 r2591 26 26 27 27 namespace HeuristicLab.GP.Algorithms { 28 [ ClassInfo(Name ="HeuristicLab.GP.Algorithms-3.2")]29 [PluginFile( Filename = "HeuristicLab.GP.Algorithms-3.2.dll", Filetype =PluginFileType.Assembly)]30 [ Dependency(Dependency ="HeuristicLab.Common-3.2")]31 [ Dependency(Dependency ="HeuristicLab.Core-3.2")]32 [ Dependency(Dependency ="HeuristicLab.Data-3.2")]33 [ Dependency(Dependency ="HeuristicLab.Evolutionary-3.2")]34 [ Dependency(Dependency ="HeuristicLab.GP-3.3")]35 [ Dependency(Dependency ="HeuristicLab.GP.Interfaces-3.3")]36 [ Dependency(Dependency ="HeuristicLab.GP.Operators-3.3")]37 [ Dependency(Dependency ="HeuristicLab.Logging-3.2")]38 [ Dependency(Dependency ="HeuristicLab.Operators-3.2")]39 [ Dependency(Dependency ="HeuristicLab.Random-3.2")]40 [ Dependency(Dependency ="HeuristicLab.Selection-3.2")]41 [ Dependency(Dependency ="HeuristicLab.Selection.OffspringSelection-3.2")]42 [ Dependency(Dependency ="HeuristicLab.SequentialEngine-3.2")]28 [Plugin("HeuristicLab.GP.Algorithms-3.2")] 29 [PluginFile("HeuristicLab.GP.Algorithms-3.2.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Common-3.2")] 31 [PluginDependency("HeuristicLab.Core-3.2")] 32 [PluginDependency("HeuristicLab.Data-3.2")] 33 [PluginDependency("HeuristicLab.Evolutionary-3.2")] 34 [PluginDependency("HeuristicLab.GP-3.3")] 35 [PluginDependency("HeuristicLab.GP.Interfaces-3.3")] 36 [PluginDependency("HeuristicLab.GP.Operators-3.3")] 37 [PluginDependency("HeuristicLab.Logging-3.2")] 38 [PluginDependency("HeuristicLab.Operators-3.2")] 39 [PluginDependency("HeuristicLab.Random-3.2")] 40 [PluginDependency("HeuristicLab.Selection-3.2")] 41 [PluginDependency("HeuristicLab.Selection.OffspringSelection-3.2")] 42 [PluginDependency("HeuristicLab.SequentialEngine-3.2")] 43 43 public class HeuristicLabGpAlgorithmsPlugin : PluginBase { 44 44 } -
trunk/sources/HeuristicLab.GP.Algorithms/3.2/OffSpringSelectionGpEditor.cs
r2474 r2591 82 82 IView view = OffspringSelectionGP.ProblemInjector.CreateView(); 83 83 if(view != null) 84 PluginManager.ControlManager.ShowControl(view);84 ControlManager.Manager.ShowControl(view); 85 85 } 86 86 … … 107 107 IEngine clone = (IEngine)OffspringSelectionGP.Engine.Clone(); 108 108 IEditor editor = ((IEditable)clone).CreateEditor(); 109 PluginManager.ControlManager.ShowControl(editor);109 ControlManager.Manager.ShowControl(editor); 110 110 } 111 111 #endregion -
trunk/sources/HeuristicLab.GP.Algorithms/3.2/StandardGpEditor.cs
r2474 r2591 80 80 IView view = StandardGP.ProblemInjector.CreateView(); 81 81 if(view != null) 82 PluginManager.ControlManager.ShowControl(view);82 ControlManager.Manager.ShowControl(view); 83 83 } 84 84 … … 105 105 IEngine clone = (IEngine)StandardGP.Engine.Clone(); 106 106 IEditor editor = ((IEditable)clone).CreateEditor(); 107 PluginManager.ControlManager.ShowControl(editor);107 ControlManager.Manager.ShowControl(editor); 108 108 } 109 109 #endregion
Note: See TracChangeset
for help on using the changeset viewer.