Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/22/10 10:33:44 (14 years ago)
Author:
svonolfe
Message:

Renamed OneMax to OneMaxProblem and OneMaxView to OneMaxProblemView (#916)

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.OneMax/3.3/OnemaxProblem.cs

    r3163 r3164  
    3434
    3535namespace HeuristicLab.Problems.OneMax {
    36   [Item("OneMax", "Represents a OneMax Problem.")]
     36  [Item("OneMaxProblem", "Represents a OneMax Problem.")]
    3737  [Creatable("Problems")]
    3838  [StorableClass]
    39   public sealed class OneMax : ParameterizedNamedItem, ISingleObjectiveProblem {
     39  public sealed class OneMaxProblem : ParameterizedNamedItem, ISingleObjectiveProblem {
    4040    public override Image ItemImage {
    4141      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Type; }
     
    116116    #endregion
    117117
    118     public OneMax()
     118    public OneMaxProblem()
    119119      : base() {
    120120      RandomBinaryVectorCreator creator = new RandomBinaryVectorCreator();
     
    137137
    138138    [StorableConstructor]
    139     private OneMax(bool deserializing) : base() { }
     139    private OneMaxProblem(bool deserializing) : base() { }
    140140
    141141    public override IDeepCloneable Clone(Cloner cloner) {
    142       OneMax clone = (OneMax)base.Clone(cloner);
     142      OneMaxProblem clone = (OneMaxProblem)base.Clone(cloner);
    143143      clone.Initialize();
    144144      return clone;
Note: See TracChangeset for help on using the changeset viewer.