Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/15/19 14:13:13 (5 years ago)
Author:
abeham
Message:

#2740: Fixed problem with local random number generator and multi-encoding in ALPS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Algorithms.ALPS/3.3/AlpsGeneticAlgorithm.cs

    r16565 r16782  
    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();
Note: See TracChangeset for help on using the changeset viewer.