- Timestamp:
- 06/05/13 17:52:32 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/IslandOffspringSelectionGeneticAlgorithm.cs ¶
r9569 r9592 264 264 [StorableHook(HookType.AfterDeserialization)] 265 265 private void AfterDeserialization() { 266 #region Backwards Compatibility 266 // BackwardsCompatibility3.3 267 #region Backwards compatible code, remove with 3.4 267 268 if (successfulOffspringAnalyzer == null) 268 269 successfulOffspringAnalyzer = new SuccessfulOffspringAnalyzer(); -
TabularUnified trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/IslandOffspringSelectionGeneticAlgorithmMainLoop.cs ¶
r9591 r9592 421 421 [StorableHook(HookType.AfterDeserialization)] 422 422 private void AfterDeserialization() { 423 // BackwardsCompatibility3.3 423 424 #region Backwards compatible code, remove with 3.4 424 425 if (!Parameters.ContainsKey("ReevaluateElites")) { -
TabularUnified trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithm.cs ¶
r9569 r9592 212 212 [StorableHook(HookType.AfterDeserialization)] 213 213 private void AfterDeserialization() { 214 #region Backwards Compatibility 214 // BackwardsCompatibility3.3 215 #region Backwards compatible code, remove with 3.4 215 216 if (successfulOffspringAnalyzer == null) 216 217 successfulOffspringAnalyzer = new SuccessfulOffspringAnalyzer(); -
TabularUnified trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithmMainLoop.cs ¶
r9591 r9592 113 113 [StorableHook(HookType.AfterDeserialization)] 114 114 private void AfterDeserialization() { 115 // BackwardsCompatibility3.3 115 116 #region Backwards compatible code, remove with 3.4 116 117 if (!Parameters.ContainsKey("ReevaluateElites")) { -
TabularUnified trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithmMainOperator.cs ¶
r9591 r9592 105 105 [StorableHook(HookType.AfterDeserialization)] 106 106 private void AfterDeserialization() { 107 // BackwardsCompatibility3.3 107 108 #region Backwards compatible code, remove with 3.4 108 109 if (!Parameters.ContainsKey("ReevaluateElites")) { -
TabularUnified trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SASEGASA.cs ¶
r9569 r9592 240 240 [StorableHook(HookType.AfterDeserialization)] 241 241 private void AfterDeserialization() { 242 #region Backwards Compatibility 242 // BackwardsCompatibility3.3 243 #region Backwards compatible code, remove with 3.4 243 244 if (successfulOffspringAnalyzer == null) 244 245 successfulOffspringAnalyzer = new SuccessfulOffspringAnalyzer(); -
TabularUnified trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SASEGASAMainLoop.cs ¶
r9591 r9592 431 431 [StorableHook(HookType.AfterDeserialization)] 432 432 private void AfterDeserialization() { 433 // BackwardsCompatibility3.3 433 434 #region Backwards compatible code, remove with 3.4 434 435 if (!Parameters.ContainsKey("ReevaluateElites")) {
Note: See TracChangeset
for help on using the changeset viewer.