Changeset 6476 for trunk/sources/HeuristicLab.Algorithms.SimulatedAnnealing
- Timestamp:
- 06/24/11 17:51:06 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/SimulatedAnnealing.cs ¶
r6053 r6476 59 59 get { return (ValueParameter<BoolValue>)Parameters["SetSeedRandomly"]; } 60 60 } 61 p rivateConstrainedValueParameter<IMultiMoveGenerator> MoveGeneratorParameter {61 public ConstrainedValueParameter<IMultiMoveGenerator> MoveGeneratorParameter { 62 62 get { return (ConstrainedValueParameter<IMultiMoveGenerator>)Parameters["MoveGenerator"]; } 63 63 } 64 p rivateConstrainedValueParameter<IMoveMaker> MoveMakerParameter {64 public ConstrainedValueParameter<IMoveMaker> MoveMakerParameter { 65 65 get { return (ConstrainedValueParameter<IMoveMaker>)Parameters["MoveMaker"]; } 66 66 } 67 p rivateConstrainedValueParameter<ISingleObjectiveMoveEvaluator> MoveEvaluatorParameter {67 public ConstrainedValueParameter<ISingleObjectiveMoveEvaluator> MoveEvaluatorParameter { 68 68 get { return (ConstrainedValueParameter<ISingleObjectiveMoveEvaluator>)Parameters["MoveEvaluator"]; } 69 69 } 70 p rivateConstrainedValueParameter<IDiscreteDoubleValueModifier> AnnealingOperatorParameter {70 public ConstrainedValueParameter<IDiscreteDoubleValueModifier> AnnealingOperatorParameter { 71 71 get { return (ConstrainedValueParameter<IDiscreteDoubleValueModifier>)Parameters["AnnealingOperator"]; } 72 72 } … … 108 108 get { return MoveEvaluatorParameter.Value; } 109 109 set { MoveEvaluatorParameter.Value = value; } 110 } 111 public IDiscreteDoubleValueModifier AnnealingOperator { 112 get { return AnnealingOperatorParameter.Value; } 113 set { AnnealingOperatorParameter.Value = value; } 110 114 } 111 115 public IntValue MaximumIterations {
Note: See TracChangeset
for help on using the changeset viewer.