- Timestamp:
- 05/06/10 16:32:31 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Manipulators/MultiRealVectorManipulator.cs
r3593 r3674 29 29 using HeuristicLab.Parameters; 30 30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 31 using HeuristicLab.PluginInfrastructure; 31 32 32 33 namespace HeuristicLab.Encodings.RealVectorEncoding { … … 54 55 Parameters.Add(new LookupParameter<RealVector>("RealVector", "The real vector that is being manipulating.")); 55 56 Parameters.Add(new ValueLookupParameter<DoubleMatrix>("Bounds", "The lower and upper bounds for each dimension of the vector.")); 57 58 foreach (Type type in ApplicationManager.Manager.GetTypes(typeof(IRealVectorManipulator))) { 59 if (!typeof(MultiOperator<IRealVectorManipulator>).IsAssignableFrom(type)) 60 Operators.Add((IRealVectorManipulator)Activator.CreateInstance(type), true); 61 } 56 62 } 57 63
Note: See TracChangeset
for help on using the changeset viewer.