Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/25/19 17:26:02 (5 years ago)
Author:
gkronber
Message:

#2936: adapted branch to new persistence (works with HL trunk r16711)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/GQAP.cs

    r16077 r16712  
    3434using HeuristicLab.PluginInfrastructure;
    3535using HeuristicLab.Problems.Instances;
     36using HEAL.Attic;
    3637
    3738namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
    3839  [Item("Generalized Quadratic Assignment Problem (GQAP)", "The Generalized Quadratic Assignment Problem (GQAP) is a generalization of the QAP in that it allows to assign multiple facilities (here called equipment) to a single location. The problem is described in Lee, C.G., and Ma, Z. 2003. The Generalized Quadratic Assignment Problem. Technical Report M5S 3G8, University of Toronto, Canada.")]
    3940  [Creatable(CreatableAttribute.Categories.CombinatorialProblems)]
    40   [StorableClass]
     41  [StorableType("20DC9B2F-F667-425E-A235-B0192CCB1BF4")]
    4142  public sealed class GQAP : SingleObjectiveBasicProblem<IntegerVectorEncoding>,
    4243    IProblemInstanceConsumer<QAPData>,
     
    8788
    8889    [StorableConstructor]
    89     private GQAP(bool deserializing) : base(deserializing) { }
     90    private GQAP(StorableConstructorFlag _) : base(_) { }
    9091    private GQAP(GQAP original, Cloner cloner)
    9192      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.