Free cookie consent management tool by TermsFeed Policy Generator

Changeset 13128


Ignore:
Timestamp:
11/06/15 14:02:40 (8 years ago)
Author:
pfleck
Message:

#2269 Fixed wrong parameter descriptions.

Location:
branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3
Files:
4 edited

Legend:

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

    r13127 r13128  
    276276      Parameters.Add(new ValueParameter<BoolValue>("SetSeedRandomly", "True if the random seed should be set to a random value, otherwise false.", new BoolValue(true)));
    277277
    278       Parameters.Add(new FixedValueParameter<MultiAnalyzer>("Analyzer", "The operator used to analyze the islands.", new MultiAnalyzer()));
     278      Parameters.Add(new FixedValueParameter<MultiAnalyzer>("Analyzer", "The operator used to analyze all individuals from all layers combined.", new MultiAnalyzer()));
    279279      Parameters.Add(new FixedValueParameter<MultiAnalyzer>("LayerAnalyzer", "The operator used to analyze each layer.", new MultiAnalyzer()));
    280280
     
    321321      globalRandomCreator.RandomParameter.ActualName = "GlobalRandom";
    322322      globalRandomCreator.SeedParameter.Value = null;
     323      globalRandomCreator.SeedParameter.ActualName = SeedParameter.Name;
    323324      globalRandomCreator.SetSeedRandomlyParameter.Value = null;
     325      globalRandomCreator.SetSeedRandomlyParameter.ActualName = SetSeedRandomlyParameter.Name;
    324326      globalRandomCreator.Successor = layer0Creator;
    325327
     
    597599      foreach (var selector in SelectorParameter.ValidValues) {
    598600        selector.CopySelected = new BoolValue(true);
    599         // Explicit setting of NumberOfSelectedSubScopesParameter is not required anymore because the NumberOfSelectedSubScopesCalculator calculates it itself
    600         //selector.NumberOfSelectedSubScopesParameter.Value = new IntValue(2 * (PopulationSize - Elites.Value));
    601601        selector.NumberOfSelectedSubScopesParameter.Hidden = true;
    602602        ParameterizeStochasticOperatorForLayer(selector);
  • branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/AlpsGeneticAlgorithmMainLoop.cs

    r13127 r13128  
    138138      Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem, otherwise false."));
    139139
    140       Parameters.Add(new ValueLookupParameter<IOperator>("Analyzer", "The operator used to analyze the islands."));
     140      Parameters.Add(new ValueLookupParameter<IOperator>("Analyzer", "The operator used to analyze all individuals from all layers combined."));
    141141      Parameters.Add(new ValueLookupParameter<IOperator>("LayerAnalyzer", "The operator used to analyze each layer."));
    142142
  • branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/MatingPoolCreator.cs

    r13127 r13128  
    7070          var individuals = prevScope.SubScopes;
    7171          foreach (var individual in individuals) {
    72             targetScope.SubScopes.Add((IScope)individual.Clone(new Cloner()));
     72            targetScope.SubScopes.Add((IScope)individual.Clone());
    7373          }
    7474        }
  • branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/ResultsHistoryWiper.cs

    r13124 r13128  
    3030
    3131namespace HeuristicLab.Algorithms.ALPS {
    32   [Item("ResultsHistoryWiper",
    33     "An operator that removes the history of a ResultsCollection by setting all values in all DataTables to NaN.")]
     32  [Item("ResultsHistoryWiper", "An operator that removes the history of a ResultsCollection by setting all values in all DataTables to NaN.")]
    3433  [StorableClass]
    3534  public class ResultsHistoryWiper : SingleSuccessorOperator {
Note: See TracChangeset for help on using the changeset viewer.