Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.Optimization/3.3/BasicProblems/BasicProblem.cs
- Timestamp:
- 03/31/19 14:40:15 (6 years ago)
- Location:
- branches/1614_GeneralizedQAP/HeuristicLab.Optimization
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.Optimization
- Property svn:mergeinfo changed
-
branches/1614_GeneralizedQAP/HeuristicLab.Optimization/3.3/BasicProblems/BasicProblem.cs
r15605 r16728 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. … … 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Optimization { 31 [Storable Class]31 [StorableType("D877082E-9E77-4CB1-ABDB-35F63878E116")] 32 32 public abstract class BasicProblem<TEncoding, TEvaluator> : HeuristicOptimizationProblem<TEvaluator, ISolutionCreator>, IProblemDefinition, IStorableContent 33 33 where TEncoding : class, IEncoding … … 82 82 83 83 [StorableConstructor] 84 protected BasicProblem( bool deserializing) : base(deserializing) { }84 protected BasicProblem(StorableConstructorFlag _) : base(_) { } 85 85 [StorableHook(HookType.AfterDeserialization)] 86 86 private void AfterDeserialization() {
Note: See TracChangeset
for help on using the changeset viewer.