- Timestamp:
- 02/23/10 06:50:50 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.