Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/21/10 22:05:40 (14 years ago)
Author:
abeham
Message:

added first draft of SASEGASA #839

File:
1 edited

Legend:

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

    r3426 r3479  
    212212      solutionsCreator.Successor = mainLoop;
    213213
    214       mainLoop.PopulationSizeParameter.ActualName = PopulationSizeParameter.Name;
    215214      mainLoop.SelectorParameter.ActualName = SelectorParameter.Name;
    216215      mainLoop.CrossoverParameter.ActualName = CrossoverParameter.Name;
     
    285284    private void PopulationSizeParameter_ValueChanged(object sender, EventArgs e) {
    286285      PopulationSize.ValueChanged += new EventHandler(PopulationSize_ValueChanged);
    287       MainLoop.PopulationSizeParameter.Value = new IntValue(PopulationSize.Value - Elites.Value);
    288286      ParameterizeSelectors();
    289287    }
    290288    private void PopulationSize_ValueChanged(object sender, EventArgs e) {
    291       MainLoop.PopulationSizeParameter.Value = new IntValue(PopulationSize.Value - Elites.Value);
    292289      ParameterizeSelectors();
    293290    }
Note: See TracChangeset for help on using the changeset viewer.