- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.QuadraticAssignment
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.QuadraticAssignment/3.3/QAPAssignment.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. … … 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Encodings.PermutationEncoding; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Problems.QuadraticAssignment { 30 30 [Item("QAP Assignment", "Represents a solution to the QAP.")] 31 [Storable Class]31 [StorableType("7ED6596B-3179-4CE5-8132-498735E536F7")] 32 32 public sealed class QAPAssignment : Item, INotifyPropertyChanged { 33 33 … … 77 77 78 78 [StorableConstructor] 79 private QAPAssignment( bool deserializing) : base(deserializing) { }79 private QAPAssignment(StorableConstructorFlag _) : base(_) { } 80 80 private QAPAssignment(QAPAssignment original, Cloner cloner) 81 81 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.