Changeset 17097 for stable/HeuristicLab.Optimization/3.3/RunCollectionModification/RunCollectionSorter.cs
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Optimization
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Optimization (added) merged: 16452-16454,16462,16476,16529,16539,16558-16559 /trunk/HeuristicLab.Optimization merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimization/3.3/RunCollectionModification/RunCollectionSorter.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. … … 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 25 using HeuristicLab.Common; 27 26 using HeuristicLab.Core; 28 27 using HeuristicLab.Data; 29 28 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 31 30 32 31 namespace HeuristicLab.Optimization { 33 32 [Item("RunCollection Sorter", "Sorts a run collection according the specified key variable.")] 34 [Storable Class]33 [StorableType("0F64D1D2-8934-4697-B997-A8072ADB4CF3")] 35 34 public class RunCollectionSorter : ParameterizedNamedItem, IRunCollectionModifier { 36 35 … … 48 47 #region Construction & Cloning 49 48 [StorableConstructor] 50 protected RunCollectionSorter( bool deserializing) : base(deserializing) { }49 protected RunCollectionSorter(StorableConstructorFlag _) : base(_) { } 51 50 protected RunCollectionSorter(RunCollectionSorter original, Cloner cloner) 52 51 : base(original, cloner) { … … 80 79 } 81 80 81 [StorableType("824092f4-863b-4ba8-ac0a-98f871876a6e")] 82 82 private class ValueComparer : IComparer<IComparable> { 83 83
Note: See TracChangeset
for help on using the changeset viewer.