- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.RAPGA/3.3/RAPGAMainLoop.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 … … 35 35 /// </summary> 36 36 [Item("RAPGAMainLoop", "An operator which represents the main loop of a relevant alleles preserving genetic algorithm.")] 37 [Storable Class]37 [StorableType("31A887DE-2FE2-419A-9784-1BAE52067930")] 38 38 public sealed class RAPGAMainLoop : AlgorithmOperator { 39 39 #region Parameter properties … … 111 111 112 112 [StorableConstructor] 113 private RAPGAMainLoop( bool deserializing) : base(deserializing) { }113 private RAPGAMainLoop(StorableConstructorFlag _) : base(_) { } 114 114 private RAPGAMainLoop(RAPGAMainLoop original, Cloner cloner) : base(original, cloner) { } 115 115 public RAPGAMainLoop()
Note: See TracChangeset
for help on using the changeset viewer.