- Timestamp:
- 06/05/13 15:28:06 (11 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/IslandOffspringSelectionGeneticAlgorithmMainLoop.cs
r9569 r9591 421 421 [StorableHook(HookType.AfterDeserialization)] 422 422 private void AfterDeserialization() { 423 #region Backwards compatible code, remove with 3.4 423 424 if (!Parameters.ContainsKey("ReevaluateElites")) { 424 425 Parameters.Add(new ValueLookupParameter<BoolValue>("ReevaluateElites", "Flag to determine if elite individuals should be reevaluated (i.e., if stochastic fitness functions are used.)")); 425 426 } 427 #endregion 426 428 } 427 429 -
trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithmMainLoop.cs
r9569 r9591 113 113 [StorableHook(HookType.AfterDeserialization)] 114 114 private void AfterDeserialization() { 115 #region Backwards compatible code, remove with 3.4 115 116 if (!Parameters.ContainsKey("ReevaluateElites")) { 116 117 Parameters.Add(new ValueLookupParameter<BoolValue>("ReevaluateElites", "Flag to determine if elite individuals should be reevaluated (i.e., if stochastic fitness functions are used.)")); 117 118 } 119 #endregion 118 120 } 119 121 -
trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithmMainOperator.cs
r9569 r9591 105 105 [StorableHook(HookType.AfterDeserialization)] 106 106 private void AfterDeserialization() { 107 #region Backwards compatible code, remove with 3.4 107 108 if (!Parameters.ContainsKey("ReevaluateElites")) { 108 109 Parameters.Add(new ValueLookupParameter<BoolValue>("ReevaluateElites", "Flag to determine if elite individuals should be reevaluated (i.e., if stochastic fitness functions are used.)")); 109 110 } 111 #endregion 110 112 } 111 113 -
trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SASEGASAMainLoop.cs
r9569 r9591 431 431 [StorableHook(HookType.AfterDeserialization)] 432 432 private void AfterDeserialization() { 433 #region Backwards compatible code, remove with 3.4 433 434 if (!Parameters.ContainsKey("ReevaluateElites")) { 434 435 Parameters.Add(new ValueLookupParameter<BoolValue>("ReevaluateElites", "Flag to determine if elite individuals should be reevaluated (i.e., if stochastic fitness functions are used.)")); 435 436 } 437 #endregion 436 438 } 437 439
Note: See TracChangeset
for help on using the changeset viewer.