Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 13:41:42 (5 years ago)
Author:
gkronber
Message:

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Problems.LinearAssignment/3.3/LinearAssignmentProblem.cs

    r15583 r16565  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    3131using HeuristicLab.Optimization.Operators;
    3232using HeuristicLab.Parameters;
    33 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     33using HEAL.Attic;
    3434using HeuristicLab.PluginInfrastructure;
    3535
     
    3737  [Item("Linear Assignment Problem (LAP)", "In the linear assignment problem (LAP) an assignment of workers to jobs has to be found such that each worker is assigned to exactly one job, each job is assigned to exactly one worker and the sum of the resulting costs is minimal (or maximal).")]
    3838  [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 130)]
    39   [StorableClass]
     39  [StorableType("7766E004-A93D-4CA6-8012-AE5E8F4C4D85")]
    4040  public sealed class LinearAssignmentProblem : SingleObjectiveHeuristicOptimizationProblem<ILAPEvaluator, IPermutationCreator>, IStorableContent {
    4141    public static readonly string CostsDescription = "The cost matrix that describes the assignment of rows to columns.";
     
    9494
    9595    [StorableConstructor]
    96     private LinearAssignmentProblem(bool deserializing) : base(deserializing) { }
     96    private LinearAssignmentProblem(StorableConstructorFlag _) : base(_) { }
    9797    private LinearAssignmentProblem(LinearAssignmentProblem original, Cloner cloner)
    9898      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.