Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/19/19 15:22:34 (4 years ago)
Author:
mkommend
Message:

#3020: Merged r17198 into stable.

Location:
stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SASEGASA.cs

    r17181 r17352  
    2222using System;
    2323using System.Linq;
     24using HEAL.Attic;
    2425using HeuristicLab.Analysis;
    2526using HeuristicLab.Common;
     
    3031using HeuristicLab.Optimization.Operators;
    3132using HeuristicLab.Parameters;
    32 using HEAL.Attic;
    3333using HeuristicLab.PluginInfrastructure;
    3434using HeuristicLab.Random;
     
    258258
    259259      var optionalMutatorParameter = MutatorParameter as OptionalConstrainedValueParameter<IManipulator>;
    260       if (optionalMutatorParameter != null) {
     260      var mutatorParameter = MutatorParameter as ConstrainedValueParameter<IManipulator>;
     261      if (mutatorParameter == null && optionalMutatorParameter != null) {
    261262        Parameters.Remove(optionalMutatorParameter);
    262263        Parameters.Add(new ConstrainedValueParameter<IManipulator>("Mutator", "The operator used to mutate solutions."));
Note: See TracChangeset for help on using the changeset viewer.