- Timestamp:
- 07/22/10 00:44:01 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/StrategyParameters
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/StrategyParameters/StdDevStrategyVectorCreator.cs
r3450 r4068 20 20 #endregion 21 21 22 using HeuristicLab.Common;23 22 using HeuristicLab.Core; 24 23 using HeuristicLab.Data; … … 26 25 using HeuristicLab.Optimization; 27 26 using HeuristicLab.Parameters; 28 using HeuristicLab.Encodings.RealVectorEncoding;29 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 28 … … 54 52 Parameters.Add(new LookupParameter<RealVector>("StrategyParameter", "The crossed strategy parameter.")); 55 53 Parameters.Add(new ValueLookupParameter<IntValue>("Length", "The length of the vector.")); 56 Parameters.Add(new ValueLookupParameter<DoubleMatrix>("Bounds", "A 2 column matrix specifying the lower and upper bound for each dimension. If there are less rows than dimension the bounds vector is cycled.", new DoubleMatrix(new double[,] { { 0, 5} })));54 Parameters.Add(new ValueLookupParameter<DoubleMatrix>("Bounds", "A 2 column matrix specifying the lower and upper bound for each dimension. If there are less rows than dimension the bounds vector is cycled.", new DoubleMatrix(new double[,] { { 0, 5 } }))); 57 55 } 58 56 -
trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/StrategyParameters/StdDevStrategyVectorCrossover.cs
r3659 r4068 20 20 #endregion 21 21 22 using HeuristicLab.Common;23 22 using HeuristicLab.Core; 24 23 using HeuristicLab.Operators; 25 24 using HeuristicLab.Optimization; 26 25 using HeuristicLab.Parameters; 27 using HeuristicLab.Encodings.RealVectorEncoding;28 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 27 -
trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/StrategyParameters/StdDevStrategyVectorManipulator.cs
r3520 r4068 20 20 #endregion 21 21 22 using HeuristicLab.Common;22 using System; 23 23 using HeuristicLab.Core; 24 using HeuristicLab.Data; 24 25 using HeuristicLab.Operators; 25 26 using HeuristicLab.Optimization; 26 27 using HeuristicLab.Parameters; 27 using HeuristicLab. Data;28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 29 using HeuristicLab.Random; 29 using System;30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;31 30 32 31 namespace HeuristicLab.Encodings.RealVectorEncoding {
Note: See TracChangeset
for help on using the changeset viewer.