Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9076


Ignore:
Timestamp:
12/19/12 10:11:48 (11 years ago)
Author:
mkommend
Message:

#1996: Updated comments for backwards compatibility regions in IslandGA and IslandGAMainLoop.

Location:
trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm/3.3
Files:
2 edited

Legend:

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

    r9039 r9076  
    260260      // BackwardsCompatibility3.3
    261261      // the global random is resetted to ensure the same algorithm results
    262       #region Backwards compatible code, remove with 3.4
     262      #region Backwards compatible code, remove global random resetter with 3.4 and rewire the operator graph
    263263      globalRandomResetter.RandomParameter.ActualName = "GlobalRandom";
    264264      globalRandomResetter.SeedParameter.ActualName = SeedParameter.Name;
  • trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithmMainLoop.cs

    r9039 r9076  
    315315      // BackwardsCompatibility3.3
    316316      //the local randoms are created by the island GA itself and are only here to ensure same algorithm results
    317       #region Backwards compatible code, remove with 3.4
     317      #region Backwards compatible code, remove local random creator with 3.4 and rewire the operator graph
    318318      islandAnalyzer1.Successor = localRandomCreator;
    319319      localRandomCreator.Successor = null;
Note: See TracChangeset for help on using the changeset viewer.