Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSolverNet/GQAPListSolver.cs
- Timestamp:
- 03/31/19 14:40:15 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSolverNet/GQAPListSolver.cs
r15890 r16728 22 22 using System; 23 23 using System.Threading; 24 using HEAL.Attic; 24 25 using HeuristicLab.Common; 25 26 using HeuristicLab.Core; … … 27 28 using HeuristicLab.Encodings.IntegerVectorEncoding; 28 29 using HeuristicLab.Optimization; 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;30 30 using localsolver; 31 31 32 32 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.LocalSolverNet { 33 33 [Item("LocalSolver List (GQAP)", "LocalSolver algorithm solving the GQAP using list decision variables")] 34 [Storable Class]34 [StorableType("BBB27FAA-DCFD-4DB4-A465-4A02E1A0EDA9")] 35 35 [Creatable(CreatableAttribute.Categories.Algorithms)] 36 36 public sealed class GQAPListSolver : ContextAlgorithm<LocalSolverContext, IntegerVectorEncoding> { … … 55 55 56 56 [StorableConstructor] 57 private GQAPListSolver( bool deserializing) : base(deserializing) { }57 private GQAPListSolver(StorableConstructorFlag _) : base(_) { } 58 58 private GQAPListSolver(GQAPListSolver original, Cloner cloner) 59 59 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.