Changeset 14046 for branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Encodings/PackingSolutionManipulator.cs
- Timestamp:
- 07/12/16 19:34:31 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Encodings/PackingSolutionManipulator.cs
r13032 r14046 27 27 using HeuristicLab.Parameters; 28 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 using HeuristicLab.Problems.BinPacking .Interfaces;29 using HeuristicLab.Problems.BinPacking; 30 30 31 31 namespace HeuristicLab.Encodings.PackingEncoding { … … 47 47 public PackingSolutionManipulator() 48 48 : base() { 49 49 Parameters.Add(new LookupParameter<IPackingSolutionEncoding>("EncodedSolution", "The bin packing solution to be manipulated.")); 50 50 Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic manipulation operators.")); 51 51 }
Note: See TracChangeset
for help on using the changeset viewer.