Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/24/11 17:51:06 (13 years ago)
Author:
gkronber
Message:

#1553: added remaining unit tests to create and run optimizer samples.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/SimulatedAnnealing.cs

    r6053 r6476  
    5959      get { return (ValueParameter<BoolValue>)Parameters["SetSeedRandomly"]; }
    6060    }
    61     private ConstrainedValueParameter<IMultiMoveGenerator> MoveGeneratorParameter {
     61    public ConstrainedValueParameter<IMultiMoveGenerator> MoveGeneratorParameter {
    6262      get { return (ConstrainedValueParameter<IMultiMoveGenerator>)Parameters["MoveGenerator"]; }
    6363    }
    64     private ConstrainedValueParameter<IMoveMaker> MoveMakerParameter {
     64    public ConstrainedValueParameter<IMoveMaker> MoveMakerParameter {
    6565      get { return (ConstrainedValueParameter<IMoveMaker>)Parameters["MoveMaker"]; }
    6666    }
    67     private ConstrainedValueParameter<ISingleObjectiveMoveEvaluator> MoveEvaluatorParameter {
     67    public ConstrainedValueParameter<ISingleObjectiveMoveEvaluator> MoveEvaluatorParameter {
    6868      get { return (ConstrainedValueParameter<ISingleObjectiveMoveEvaluator>)Parameters["MoveEvaluator"]; }
    6969    }
    70     private ConstrainedValueParameter<IDiscreteDoubleValueModifier> AnnealingOperatorParameter {
     70    public ConstrainedValueParameter<IDiscreteDoubleValueModifier> AnnealingOperatorParameter {
    7171      get { return (ConstrainedValueParameter<IDiscreteDoubleValueModifier>)Parameters["AnnealingOperator"]; }
    7272    }
     
    108108      get { return MoveEvaluatorParameter.Value; }
    109109      set { MoveEvaluatorParameter.Value = value; }
     110    }
     111    public IDiscreteDoubleValueModifier AnnealingOperator {
     112      get { return AnnealingOperatorParameter.Value; }
     113      set { AnnealingOperatorParameter.Value = value; }
    110114    }
    111115    public IntValue MaximumIterations {
Note: See TracChangeset for help on using the changeset viewer.