- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.Binary/3.3/OneMaxProblem.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.Core; 26 26 using HeuristicLab.Encodings.BinaryVectorEncoding; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Problems.Binary { 30 30 [Item("One Max Problem", "Represents a problem whose objective is to maximize the number of true values.")] 31 31 [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 210)] 32 [Storable Class]32 [StorableType("A290ADDE-33F5-4607-ABC0-19349CD0FBF1")] 33 33 public class OneMaxProblem : BinaryProblem { 34 34 public override bool Maximization { … … 43 43 44 44 [StorableConstructor] 45 protected OneMaxProblem( bool deserializing) : base(deserializing) { }45 protected OneMaxProblem(StorableConstructorFlag _) : base(_) { } 46 46 47 47 protected OneMaxProblem(OneMaxProblem original, Cloner cloner) : base(original, cloner) { }
Note: See TracChangeset
for help on using the changeset viewer.