Changeset 11561 for branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Encodings/RealEncoding.cs
- Timestamp:
- 11/20/14 17:20:29 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Encodings/RealEncoding.cs
r11559 r11561 148 148 static RealEncoding() { 149 149 encodingSpecificOperatorTypes = new List<Type>() { 150 typeof (IRealVectorOperator),151 typeof (IRealVectorCreator),152 typeof (IRealVectorCrossover),153 typeof (IRealVectorManipulator),154 typeof (IRealVectorStdDevStrategyParameterOperator),155 typeof (IRealVectorSwarmUpdater),156 typeof (IRealVectorParticleCreator),157 typeof (IRealVectorParticleUpdater),158 typeof (IRealVectorMultiNeighborhoodShakingOperator),159 typeof (IRealVectorBoundsChecker),160 typeof (IRealVectorMoveOperator),161 typeof (IRealVectorMoveGenerator)162 };150 typeof (IRealVectorOperator), 151 typeof (IRealVectorCreator), 152 typeof (IRealVectorCrossover), 153 typeof (IRealVectorManipulator), 154 typeof (IRealVectorStdDevStrategyParameterOperator), 155 typeof (IRealVectorSwarmUpdater), 156 typeof (IRealVectorParticleCreator), 157 typeof (IRealVectorParticleUpdater), 158 typeof (IRealVectorMultiNeighborhoodShakingOperator), 159 typeof (IRealVectorBoundsChecker), 160 typeof (IRealVectorMoveOperator), 161 typeof (IRealVectorMoveGenerator) 162 }; 163 163 } 164 164 private void DiscoverOperators() { … … 223 223 if (p != null) { 224 224 p.ActualName = Name + "Strategy"; 225 p.Hidden = true;226 225 } 227 226 }
Note: See TracChangeset
for help on using the changeset viewer.