Changeset 11984
- Timestamp:
- 02/12/15 15:03:06 (10 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.Programmable/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Programmable/3.3/HeuristicLab.Problems.Programmable-3.3.csproj
r11961 r11984 111 111 </ItemGroup> 112 112 <ItemGroup> 113 <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj"> 114 <Project>{887425b4-4348-49ed-a457-b7d2c26ddbf9}</Project> 115 <Name>HeuristicLab.Analysis-3.3</Name> 116 <Private>False</Private> 117 </ProjectReference> 113 118 <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj"> 114 119 <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project> -
trunk/sources/HeuristicLab.Problems.Programmable/3.3/Plugin.cs.frame
r11961 r11984 25 25 [Plugin("HeuristicLab.Problems.Programmable", "Programmable problem for defining custom representation and evaluation function.", "3.3.9.$WCREV$")] 26 26 [PluginFile("HeuristicLab.Problems.Programmable-3.3.dll", PluginFileType.Assembly)] 27 [PluginDependency("HeuristicLab.Analysis", "3.3")] 27 28 [PluginDependency("HeuristicLab.Collections", "3.3")] 28 29 [PluginDependency("HeuristicLab.Common", "3.3")] -
trunk/sources/HeuristicLab.Problems.Programmable/3.3/SingleObjectiveProgrammableProblem.cs
r11961 r11984 22 22 using System.Collections.Generic; 23 23 using System.Drawing; 24 using HeuristicLab.Analysis; 24 25 using HeuristicLab.Common; 25 26 using HeuristicLab.Common.Resources; … … 61 62 : base() { 62 63 Parameters.Add(new FixedValueParameter<SingleObjectiveProblemDefinitionScript>("ProblemScript", "Defines the problem.", new SingleObjectiveProblemDefinitionScript() { Name = Name })); 64 Operators.Add(new BestScopeSolutionAnalyzer()); 63 65 RegisterEvents(); 64 66 }
Note: See TracChangeset
for help on using the changeset viewer.