Changeset 2852 for trunk/sources/HeuristicLab.Permutation
- Timestamp:
- 02/23/10 06:50:50 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Permutation/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Permutation/3.3/HeuristicLab.Permutation-3.3.csproj
r2829 r2852 121 121 <Name>HeuristicLab.Operators-3.3</Name> 122 122 </ProjectReference> 123 <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj"> 124 <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project> 125 <Name>HeuristicLab.Optimization-3.3</Name> 126 </ProjectReference> 123 127 <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj"> 124 128 <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project> -
trunk/sources/HeuristicLab.Permutation/3.3/HeuristicLabPermutationPlugin.cs.frame
r2794 r2852 33 33 [PluginDependency("HeuristicLab.Data", "3.3")] 34 34 [PluginDependency("HeuristicLab.Operators", "3.3")] 35 [PluginDependency("HeuristicLab.Optimization", "3.3")] 35 36 [PluginDependency("HeuristicLab.Parameters", "3.3")] 36 37 [PluginDependency("HeuristicLab.Persistence", "3.3")] -
trunk/sources/HeuristicLab.Permutation/3.3/RandomPermutationCreator.cs
r2834 r2852 23 23 using HeuristicLab.Data; 24 24 using HeuristicLab.Operators; 25 using HeuristicLab.Optimization; 25 26 using HeuristicLab.Parameters; 26 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; … … 33 34 [EmptyStorableClass] 34 35 [Creatable("Test")] 35 public sealed class RandomPermutationCreator : SingleSuccessorOperator {36 public LookupParameter<IRandom> RandomParameter {36 public sealed class RandomPermutationCreator : SingleSuccessorOperator, ISolutionCreator { 37 public ILookupParameter<IRandom> RandomParameter { 37 38 get { return (LookupParameter<IRandom>)Parameters["Random"]; } 38 39 }
Note: See TracChangeset
for help on using the changeset viewer.