- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.ALPS
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.ALPS (added) merged: 16452-16454,16462,16529,16539,16558-16559 /trunk/HeuristicLab.Algorithms.ALPS merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.ALPS/3.3/AlpsGeneticAlgorithmMainLoop.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 27 27 using HeuristicLab.Optimization.Operators; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 using HeuristicLab.Selection; 31 31 … … 33 33 34 34 [Item("AlpsGeneticAlgorithmMainLoop", "An ALPS genetic algorithm main loop operator.")] 35 [Storable Class]35 [StorableType("3DDD5DE1-4ACF-4E85-9A4C-30D930C44B56")] 36 36 public sealed class AlpsGeneticAlgorithmMainLoop : AlgorithmOperator { 37 37 #region Parameter Properties … … 121 121 122 122 [StorableConstructor] 123 private AlpsGeneticAlgorithmMainLoop(bool deserializing) 124 : base(deserializing) { } 123 private AlpsGeneticAlgorithmMainLoop(StorableConstructorFlag _) : base(_) { } 125 124 private AlpsGeneticAlgorithmMainLoop(AlpsGeneticAlgorithmMainLoop original, Cloner cloner) 126 125 : base(original, cloner) { }
Note: See TracChangeset
for help on using the changeset viewer.