- Timestamp:
- 07/03/12 16:46:35 (12 years ago)
- Location:
- branches/GP-MoveOperators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-MoveOperators
- Property svn:mergeinfo changed
/trunk/sources merged: 8084,8088-8090,8092-8100,8102-8113,8115,8117-8132,8134-8146,8148-8156,8158-8160,8163-8170,8173-8176,8178-8190,8192-8205
- Property svn:mergeinfo changed
-
branches/GP-MoveOperators/HeuristicLab.Encodings.RealVectorEncoding/3.3/ParticleOperators/RealVectorSwarmUpdater.cs
r7745 r8206 89 89 get { return (ILookupParameter<DoubleValue>)Parameters["VelocityBoundsScale"]; } 90 90 } 91 public OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier> VelocityBoundsScalingOperatorParameter {92 get { return ( OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier>)Parameters["VelocityBoundsScalingOperator"]; }91 public IConstrainedValueParameter<IDiscreteDoubleValueModifier> VelocityBoundsScalingOperatorParameter { 92 get { return (IConstrainedValueParameter<IDiscreteDoubleValueModifier>)Parameters["VelocityBoundsScalingOperator"]; } 93 93 } 94 94 public IValueLookupParameter<DoubleValue> VelocityBoundsStartValueParameter { … … 162 162 get { return VelocityBoundsStartValueParameter.ActualValue; } 163 163 } 164 p rivateIDiscreteDoubleValueModifier VelocityBoundsScalingOperator {164 public IDiscreteDoubleValueModifier VelocityBoundsScalingOperator { 165 165 get { return VelocityBoundsScalingOperatorParameter.Value; } 166 set { VelocityBoundsScalingOperatorParameter.Value = value; } 166 167 } 167 168 private ResultCollection Results {
Note: See TracChangeset
for help on using the changeset viewer.