Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/27/15 12:29:57 (9 years ago)
Author:
pfleck
Message:

#2027

  • Hide the additional ViewsLabel of the ViewHost in the ThresholdTerminatorView.
  • Renamed Terminators-parameter to Terminator to match naming of the Analyzer-parameter.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/TerminationCriteria/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithm.cs

    r12403 r12404  
    117117    }
    118118    private IValueParameter<MultiTerminator> TerminatorsParameter {
    119       get { return (IValueParameter<MultiTerminator>)Parameters["Terminators"]; }
     119      get { return (IValueParameter<MultiTerminator>)Parameters["Terminator"]; }
    120120    }
    121121    #endregion
     
    287287      Parameters.Add(new ValueParameter<IntValue>("MaximumEvaluatedSolutions", "The maximum number of evaluated solutions (approximately).", new IntValue(int.MaxValue)));
    288288      Parameters.Add(new FixedValueParameter<BoolValue>("FillPopulationWithParents", "True if the population should be filled with parent individual or false if worse children should be used when the maximum selection pressure is exceeded.", new BoolValue(false)) { Hidden = true });
    289       Parameters.Add(new ValueParameter<MultiTerminator>("Terminators", "The termination criteria which sould be checked.", new MultiTerminator()));
     289      Parameters.Add(new ValueParameter<MultiTerminator>("Terminator", "The termination criteria which sould be checked.", new MultiTerminator()));
    290290
    291291      RandomCreator randomCreator = new RandomCreator();
Note: See TracChangeset for help on using the changeset viewer.