- Timestamp:
- 07/07/19 23:40:10 (6 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.GraphColoring/3.3/GraphColoringProblem.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. … … 30 30 using HeuristicLab.Optimization.Operators; 31 31 using HeuristicLab.Parameters; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;32 using HEAL.Attic; 33 33 using HeuristicLab.Problems.Instances; 34 34 … … 37 37 [Item("Graph Coloring Problem (GCP)", "Attempts to find a coloring using a minimal number of colors that doesn't produce a conflict.")] 38 38 [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 135)] 39 [Storable Class]39 [StorableType("007BD5F0-196C-4045-AC5D-BF287927C3DC")] 40 40 public sealed class GraphColoringProblem : SingleObjectiveBasicProblem<LinearLinkageEncoding>, IProblemInstanceConsumer<GCPData>, IProblemInstanceExporter<GCPData> { 41 41 … … 65 65 66 66 [StorableConstructor] 67 private GraphColoringProblem( bool deserializing) : base(deserializing) { }67 private GraphColoringProblem(StorableConstructorFlag _) : base(_) { } 68 68 private GraphColoringProblem(GraphColoringProblem original, Cloner cloner) 69 69 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.