- Timestamp:
- 07/22/10 00:44:01 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.OneMax/3.3/Evaluators/OneMaxEvaluator.cs
r3376 r4068 20 20 #endregion 21 21 22 using HeuristicLab.Common;23 22 using HeuristicLab.Core; 24 23 using HeuristicLab.Data; 24 using HeuristicLab.Encodings.BinaryVectorEncoding; 25 using HeuristicLab.Operators; 25 26 using HeuristicLab.Parameters; 26 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 using HeuristicLab.Encodings.BinaryVectorEncoding;28 using HeuristicLab.Operators;29 28 30 29 namespace HeuristicLab.Problems.OneMax { … … 38 37 get { return (ILookupParameter<DoubleValue>)Parameters["Quality"]; } 39 38 } 40 39 41 40 public ILookupParameter<BinaryVector> BinaryVectorParameter { 42 41 get { return (ILookupParameter<BinaryVector>)Parameters["BinaryVector"]; }
Note: See TracChangeset
for help on using the changeset viewer.