Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/08/19 15:37:35 (5 years ago)
Author:
abeham
Message:

#2740: merged to stable (16782, 16783)

Location:
stable
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Algorithms.ALPS

  • stable/HeuristicLab.Algorithms.ALPS/3.3/AlpsGeneticAlgorithm.cs

    r17097 r17111  
    2323using System.Collections.Generic;
    2424using System.Linq;
     25using HEAL.Attic;
    2526using HeuristicLab.Analysis;
    2627using HeuristicLab.Collections;
     
    3233using HeuristicLab.Optimization.Operators;
    3334using HeuristicLab.Parameters;
    34 using HEAL.Attic;
    3535using HeuristicLab.PluginInfrastructure;
    3636using HeuristicLab.Random;
     
    501501    protected override void Problem_OperatorsChanged(object sender, EventArgs e) {
    502502      base.Problem_OperatorsChanged(sender, e);
     503      foreach (IOperator op in Problem.Operators.OfType<IOperator>()) ParameterizeStochasticOperator(op);
    503504      ParameterizeIterationBasedOperators();
    504505      UpdateCrossovers();
  • stable/HeuristicLab.Algorithms.ALPS/3.3/AlpsOffspringSelectionGeneticAlgorithm.cs

    r17097 r17111  
    2323using System.Collections.Generic;
    2424using System.Linq;
     25using HEAL.Attic;
    2526using HeuristicLab.Analysis;
    2627using HeuristicLab.Collections;
     
    3233using HeuristicLab.Optimization.Operators;
    3334using HeuristicLab.Parameters;
    34 using HEAL.Attic;
    3535using HeuristicLab.PluginInfrastructure;
    3636using HeuristicLab.Random;
     
    561561    protected override void Problem_OperatorsChanged(object sender, EventArgs e) {
    562562      base.Problem_OperatorsChanged(sender, e);
     563      foreach (IOperator op in Problem.Operators.OfType<IOperator>()) ParameterizeStochasticOperator(op);
    563564      ParameterizeIterationBasedOperators();
    564565      UpdateCrossovers();
Note: See TracChangeset for help on using the changeset viewer.