Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/26/12 09:51:13 (13 years ago)
Author:
jkarder
Message:

#1331: merged r8086:8330 from trunk

Location:
branches/ScatterSearch (trunk integration)
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/ScatterSearch (trunk integration)

  • branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.LocalSearch/3.3/LocalSearch.cs

    r8086 r8331  
    5858      get { return (ValueParameter<BoolValue>)Parameters["SetSeedRandomly"]; }
    5959    }
    60     public ConstrainedValueParameter<IMoveGenerator> MoveGeneratorParameter {
    61       get { return (ConstrainedValueParameter<IMoveGenerator>)Parameters["MoveGenerator"]; }
    62     }
    63     public ConstrainedValueParameter<IMoveMaker> MoveMakerParameter {
    64       get { return (ConstrainedValueParameter<IMoveMaker>)Parameters["MoveMaker"]; }
    65     }
    66     public ConstrainedValueParameter<ISingleObjectiveMoveEvaluator> MoveEvaluatorParameter {
    67       get { return (ConstrainedValueParameter<ISingleObjectiveMoveEvaluator>)Parameters["MoveEvaluator"]; }
     60    public IConstrainedValueParameter<IMoveGenerator> MoveGeneratorParameter {
     61      get { return (IConstrainedValueParameter<IMoveGenerator>)Parameters["MoveGenerator"]; }
     62    }
     63    public IConstrainedValueParameter<IMoveMaker> MoveMakerParameter {
     64      get { return (IConstrainedValueParameter<IMoveMaker>)Parameters["MoveMaker"]; }
     65    }
     66    public IConstrainedValueParameter<ISingleObjectiveMoveEvaluator> MoveEvaluatorParameter {
     67      get { return (IConstrainedValueParameter<ISingleObjectiveMoveEvaluator>)Parameters["MoveEvaluator"]; }
    6868    }
    6969    private ValueParameter<IntValue> MaximumIterationsParameter {
  • branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.LocalSearch/3.3/LocalSearchImprovementOperator.cs

    r8086 r8331  
    6464
    6565    #region Parameter Properties
    66     public ConstrainedValueParameter<IMoveGenerator> MoveGeneratorParameter {
    67       get { return (ConstrainedValueParameter<IMoveGenerator>)Parameters["MoveGenerator"]; }
    68     }
    69     public ConstrainedValueParameter<IMoveMaker> MoveMakerParameter {
    70       get { return (ConstrainedValueParameter<IMoveMaker>)Parameters["MoveMaker"]; }
    71     }
    72     public ConstrainedValueParameter<ISingleObjectiveMoveEvaluator> MoveEvaluatorParameter {
    73       get { return (ConstrainedValueParameter<ISingleObjectiveMoveEvaluator>)Parameters["MoveEvaluator"]; }
     66    public IConstrainedValueParameter<IMoveGenerator> MoveGeneratorParameter {
     67      get { return (IConstrainedValueParameter<IMoveGenerator>)Parameters["MoveGenerator"]; }
     68    }
     69    public IConstrainedValueParameter<IMoveMaker> MoveMakerParameter {
     70      get { return (IConstrainedValueParameter<IMoveMaker>)Parameters["MoveMaker"]; }
     71    }
     72    public IConstrainedValueParameter<ISingleObjectiveMoveEvaluator> MoveEvaluatorParameter {
     73      get { return (IConstrainedValueParameter<ISingleObjectiveMoveEvaluator>)Parameters["MoveEvaluator"]; }
    7474    }
    7575    public IValueLookupParameter<IntValue> SampleSizeParameter {
     
    255255            foreach (IScopeTreeLookupParameter param in clone.Parameters.OfType<IScopeTreeLookupParameter>())
    256256              param.Depth = 0;
    257             Analyzer.Operators.Add(clone, clone.EnabledByDefault);
     257            Analyzer.Operators.Add(clone, false);
    258258          }
    259259        }
    260260      }
    261       Analyzer.Operators.Add(qualityAnalyzer, qualityAnalyzer.EnabledByDefault);
     261      Analyzer.Operators.Add(qualityAnalyzer, false);
    262262    }
    263263
  • branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.LocalSearch/3.3/Plugin.cs.frame

    r7259 r8331  
    2626  /// Plugin class for HeuristicLab.Algorithms.LocalSearch plugin.
    2727  /// </summary>
    28   [Plugin("HeuristicLab.Algorithms.LocalSearch", "3.3.6.$WCREV$")]
     28  [Plugin("HeuristicLab.Algorithms.LocalSearch", "3.3.7.$WCREV$")]
    2929  [PluginFile("HeuristicLab.Algorithms.LocalSearch-3.3.dll", PluginFileType.Assembly)]
    3030  [PluginDependency("HeuristicLab.Analysis", "3.3")]
  • branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.LocalSearch/3.3/Properties/AssemblyInfo.cs.frame

    r7259 r8331  
    5353// by using the '*' as shown below:
    5454[assembly: AssemblyVersion("3.3.0.0")]
    55 [assembly: AssemblyFileVersion("3.3.6.$WCREV$")]
     55[assembly: AssemblyFileVersion("3.3.7.$WCREV$")]
Note: See TracChangeset for help on using the changeset viewer.