- Timestamp:
- 11/26/13 09:45:11 (11 years ago)
- Location:
- branches/DataAnalysis.IslandAlgorithms/HeuristicLab.Algorithms.GeneticAlgorithm/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/DataAnalysis.IslandAlgorithms/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithm.cs ¶
r10142 r10155 109 109 get { return (ValueParameter<MultiAnalyzer>)Parameters["IslandAnalyzer"]; } 110 110 } 111 protected IFixedValueParameter<BoolValue> ReevaluateImmigrantsParameter { 112 get { return (IFixedValueParameter<BoolValue>)Parameters["ReevaluateImmigrants"]; } 113 } 111 114 #endregion 112 115 … … 183 186 get { return IslandAnalyzerParameter.Value; } 184 187 set { IslandAnalyzerParameter.Value = value; } 188 } 189 public bool ReevaluateImmigrants { 190 get { return ReevaluateImmigrantsParameter.Value.Value; } 191 set { ReevaluateImmigrantsParameter.Value.Value = value; } 185 192 } 186 193 protected RandomCreator RandomCreator { … … 245 252 Parameters.Add(new ValueParameter<MultiAnalyzer>("Analyzer", "The operator used to analyze the islands.", new MultiAnalyzer())); 246 253 Parameters.Add(new ValueParameter<MultiAnalyzer>("IslandAnalyzer", "The operator used to analyze each island.", new MultiAnalyzer())); 254 Parameters.Add(new FixedValueParameter<BoolValue>("ReevaluateImmigrants", "Flag which indicates if inviduals should be reevaluated before they are immigrated.", new BoolValue(false)) { Hidden = true }); 247 255 248 256 RandomCreator randomCreator = new RandomCreator(); -
TabularUnified branches/DataAnalysis.IslandAlgorithms/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithmMainLoop.cs ¶
r9756 r10155 115 115 public ValueLookupParameter<BoolValue> Migrate { 116 116 get { return (ValueLookupParameter<BoolValue>)Parameters["Migrate"]; } 117 } 118 119 public ValueLookupParameter<BoolValue> ReevaluateImmigrants { 120 get { return (ValueLookupParameter<BoolValue>)Parameters["ReevaluateImmigrants"]; } 117 121 } 118 122 #endregion … … 155 159 Parameters.Add(new LookupParameter<IntValue>("IslandEvaluatedSolutions", "The number of times a solution has been evaluated on one island.")); 156 160 Parameters.Add(new ValueLookupParameter<BoolValue>("Migrate", "Migrate the island?")); 161 Parameters.Add(new ValueLookupParameter<BoolValue>("ReevaluateImmigrants", "Flag which indicates if inviduals should be reevaluated before they are immigrated.")); 157 162 #endregion 158 163 … … 193 198 IntCounter migrationsCounter = new IntCounter(); 194 199 Placeholder migrator = new Placeholder(); 200 ConditionalBranch reevaluateImmigrantsBranch = new ConditionalBranch(); 201 Assigner evaluatedSolutionsAssigner2 = new Assigner(); 195 202 UniformSubScopesProcessor uniformSubScopesProcessor6 = new UniformSubScopesProcessor(); 203 SubScopesProcessor subScopesProcessor3 = new SubScopesProcessor(); 204 DataReducer evaluatedSolutionsReducer2 = new DataReducer(); 205 UniformSubScopesProcessor uniformSubScopesProcessor7 = new UniformSubScopesProcessor(); 196 206 Placeholder immigrationReplacer = new Placeholder(); 197 207 Comparator generationsComparator = new Comparator(); … … 200 210 ConditionalBranch reevaluateElitesBranch = new ConditionalBranch(); 201 211 202 203 212 variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("Migrations", new IntValue(0))); 204 213 variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("GenerationsSinceLastMigration", new IntValue(0))); … … 295 304 migrator.Name = "Migrator (placeholder)"; 296 305 migrator.OperatorParameter.ActualName = MigratorParameter.Name; 306 307 reevaluateImmigrantsBranch.ConditionParameter.ActualName = "ReevaluateImmigrants"; 308 reevaluateImmigrantsBranch.Name = "Reevaluate Immigrants ?"; 309 310 evaluatedSolutionsAssigner2.Name = "Reset Island evaluated solutions"; 311 evaluatedSolutionsAssigner2.LeftSideParameter.ActualName = IslandEvaluatedSolutions.Name; 312 evaluatedSolutionsAssigner2.RightSideParameter.Value = new IntValue(0); 313 314 evaluatedSolutionsReducer2.Name = "Increment Evaluated Solutions"; 315 evaluatedSolutionsReducer2.ParameterToReduce.ActualName = IslandEvaluatedSolutions.Name; 316 evaluatedSolutionsReducer2.TargetParameter.ActualName = EvaluatedSolutionsParameter.Name; 317 evaluatedSolutionsReducer2.ReductionOperation.Value = new ReductionOperation(ReductionOperations.Sum); 318 evaluatedSolutionsReducer2.TargetOperation.Value = new ReductionOperation(ReductionOperations.Sum); 297 319 298 320 immigrationReplacer.Name = "Immigration Replacer (placeholder)"; … … 368 390 emigrantsSelector.Successor = null; 369 391 uniformSubScopesProcessor5.Successor = migrator; 370 migrator.Successor = uniformSubScopesProcessor6; 371 uniformSubScopesProcessor6.Operator = immigrationReplacer; 372 uniformSubScopesProcessor6.Successor = generationsComparator; 392 migrator.Successor = reevaluateImmigrantsBranch; 393 reevaluateImmigrantsBranch.FalseBranch = null; 394 reevaluateImmigrantsBranch.Successor = uniformSubScopesProcessor7; 395 reevaluateImmigrantsBranch.TrueBranch = uniformSubScopesProcessor6; 396 uniformSubScopesProcessor6.Successor = evaluatedSolutionsReducer2; 397 uniformSubScopesProcessor6.Operator = evaluatedSolutionsAssigner2; 398 evaluatedSolutionsReducer2.Successor = null; 399 evaluatedSolutionsAssigner2.Successor = subScopesProcessor3; 400 subScopesProcessor3.Operators.Add(new EmptyOperator()); 401 subScopesProcessor3.Operators.Add(uniformSubScopesProcessor3); 402 uniformSubScopesProcessor7.Operator = immigrationReplacer; 403 uniformSubScopesProcessor7.Successor = generationsComparator; 373 404 generationsComparator.Successor = analyzer2; 374 405 analyzer2.Successor = generationsTerminationCondition;
Note: See TracChangeset
for help on using the changeset viewer.