Changeset 17097 for stable/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/LinkageTree.cs
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.ParameterlessPopulationPyramid
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Algorithms.ParameterlessPopulationPyramid merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/LinkageTree.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 * and the BEACON Center for the Study of Evolution in Action. 5 5 * … … 27 27 using HeuristicLab.Core; 28 28 using HeuristicLab.Encodings.BinaryVectorEncoding; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 using HeuristicLab.Random; 31 31 … … 34 34 // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785–792, 2014 35 35 // and the original source code in C++11 available from: https://github.com/brianwgoldman/Parameter-less_Population_Pyramid 36 [Storable Class]36 [StorableType("40E75AC2-ABD0-43A9-AC91-7478FDD6A399")] 37 37 public class LinkageTree : DeepCloneable { 38 38 [Storable] … … 51 51 52 52 [StorableConstructor] 53 protected LinkageTree( bool deserializing) : base() { }53 protected LinkageTree(StorableConstructorFlag _) { } 54 54 55 55
Note: See TracChangeset
for help on using the changeset viewer.