Changeset 16712 for branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Infrastructure/Algorithms
- Timestamp:
- 03/25/19 17:26:02 (6 years ago)
- Location:
- branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Infrastructure/Algorithms
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Infrastructure/Algorithms/ContextAlgorithm.cs
r15718 r16712 31 31 using HeuristicLab.Parameters; 32 32 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 33 using HEAL.Attic; 33 34 34 35 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms { 35 36 [Item("Context-based Algorithm", "Algorithms that make use of contexts to facilitate applying operators.")] 36 [Storable Class]37 [StorableType("F4D85B12-B512-4CC5-B220-69C01E2C8DBB")] 37 38 public abstract class ContextAlgorithm<TContext, TEncoding> : BasicAlgorithm 38 39 where TContext : class, IContext, new() … … 110 111 111 112 [StorableConstructor] 112 protected ContextAlgorithm( bool deserializing) : base(deserializing) { }113 protected ContextAlgorithm(StorableConstructorFlag _) : base(_) { } 113 114 protected ContextAlgorithm(ContextAlgorithm<TContext, TEncoding> original, Cloner cloner) 114 115 : base(original, cloner) { -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Infrastructure/Algorithms/StochasticAlgorithm.cs
r15572 r16712 28 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 29 using HeuristicLab.Random; 30 using HEAL.Attic; 30 31 31 32 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms { 32 33 [Item("Stochastic Algorithm", "Stochastic context-based algorithms to facilitate applying operators.")] 33 [Storable Class]34 [StorableType("75B72520-ECBC-42F7-8560-448940825847")] 34 35 public abstract class StochasticAlgorithm<TContext, TEncoding> : ContextAlgorithm<TContext, TEncoding> 35 36 where TContext : class, IStochasticContext, new() … … 57 58 58 59 [StorableConstructor] 59 protected StochasticAlgorithm( bool deserializing) : base(deserializing) { }60 protected StochasticAlgorithm(StorableConstructorFlag _) : base(_) { } 60 61 protected StochasticAlgorithm(StochasticAlgorithm<TContext, TEncoding> original, Cloner cloner) 61 62 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.