Free cookie consent management tool by TermsFeed Policy Generator

Changeset 12533


Ignore:
Timestamp:
06/29/15 17:07:11 (9 years ago)
Author:
pfleck
Message:

#2269 Re-added MaximumGenerations property based on the generations terminator.

File:
1 edited

Legend:

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

    r12531 r12533  
    7272      set { PopulationSizeParameter.Value = value; }
    7373    }
     74    public int MaximumGenerations {
     75      get { return generationsTerminator.Threshold.Value; }
     76      set { generationsTerminator.Threshold.Value = value; }
     77    }
    7478    public ISelector Selector {
    7579      get { return SelectorParameter.Value; }
Note: See TracChangeset for help on using the changeset viewer.