Changeset 10591 for branches/DataAnalysis.IslandAlgorithms/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm
- Timestamp:
- 03/12/14 21:01:02 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/DataAnalysis.IslandAlgorithms/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/IslandOffspringSelectionGeneticAlgorithmMainLoop.cs ¶
r10155 r10591 130 130 get { return (LookupParameter<IntValue>)Parameters["EvaluatedSolutions"]; } 131 131 } 132 public ValueLookupParameter<BoolValue> ReevaluateI mmigrants{133 get { return (ValueLookupParameter<BoolValue>)Parameters["ReevaluateI mmigrants"]; }132 public ValueLookupParameter<BoolValue> ReevaluateIndividualsAfterMigration { 133 get { return (ValueLookupParameter<BoolValue>)Parameters["ReevaluateIndividualsAfterMigration"]; } 134 134 } 135 135 #endregion … … 177 177 Parameters.Add(new ValueLookupParameter<IOperator>("IslandAnalyzer", "The operator used to analyze each island.")); 178 178 Parameters.Add(new LookupParameter<IntValue>("EvaluatedSolutions", "The number of times solutions have been evaluated.")); 179 Parameters.Add(new ValueLookupParameter<BoolValue>("ReevaluateI mmigrants", "Flag which indicates if inviduals should be reevaluated before they are immigrated."));179 Parameters.Add(new ValueLookupParameter<BoolValue>("ReevaluateIndividualsAfterMigration", "Flag which indicates if inviduals should be reevaluated after migration.")); 180 180 #endregion 181 181 … … 422 422 reevaluateImmigrantsBranch.TrueBranch = uniformSubScopesProcessor3; 423 423 uniformSubScopesProcessor3.Operator = subScopesProcessor; 424 subScopesProcessor.Operators.Add( new EmptyOperator());424 subScopesProcessor.Operators.Add(uniformSubScopesProcessor4); 425 425 subScopesProcessor.Operators.Add(uniformSubScopesProcessor4); 426 426 uniformSubScopesProcessor4.Operator = evaluator;
Note: See TracChangeset
for help on using the changeset viewer.