Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/10/17 21:42:09 (8 years ago)
Author:
pkimmesw
Message:

#2665 Renamings due to typos, ManagedPool tests, Skip Noops in Debugger

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Creator/PointsBasedPushProgramCreator.cs

    r14733 r14744  
    1 namespace HeuristicLab.Problems.ProgramSynthesis.Push.Creator {
     1//namespace HeuristicLab.Problems.ProgramSynthesis.Push.Creator {
    22
    3   using HeuristicLab.Common;
    4   using HeuristicLab.Core;
    5   using HeuristicLab.Operators;
    6   using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    7   using HeuristicLab.Problems.ProgramSynthesis.Push.Configuration;
    8   using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions;
    9   using HeuristicLab.Problems.ProgramSynthesis.Push.Generators;
     3//  using HeuristicLab.Common;
     4//  using HeuristicLab.Core;
     5//  using HeuristicLab.Operators;
     6//  using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     7//  using HeuristicLab.Problems.ProgramSynthesis.Push.Configuration;
     8//  using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions;
     9//  using HeuristicLab.Problems.ProgramSynthesis.Push.Generators;
    1010
    11   [Item("PointBasedPushProgramCreator", "Creates a Push program whereby points specify the max size but not the min size of the program.")]
    12   [StorableClass]
    13   public class PointsBasedPushProgramCreator : InstrumentedOperator, IPushProgramCreator {
     11//  [Item("PointBasedPushProgramCreator", "Creates a Push program whereby points specify the max size but not the min size of the program.")]
     12//  [StorableClass]
     13//  public class PointsBasedPushProgramCreator : InstrumentedOperator, IPushProgramCreator {
    1414
    15     public PointsBasedPushProgramCreator(bool deserializing) : base(deserializing) { }
     15//    public PointsBasedPushProgramCreator(bool deserializing) : base(deserializing) { }
    1616
    17     public PointsBasedPushProgramCreator(PointsBasedPushProgramCreator origin, Cloner cloner) : base(origin, cloner) {
     17//    public PointsBasedPushProgramCreator(PointsBasedPushProgramCreator origin, Cloner cloner) : base(origin, cloner) {
    1818
    19     }
     19//    }
    2020
    21     public override IDeepCloneable Clone(Cloner cloner) {
    22       return new PointsBasedPushProgramCreator(this, cloner);
    23     }
     21//    public override IDeepCloneable Clone(Cloner cloner) {
     22//      return new PointsBasedPushProgramCreator(this, cloner);
     23//    }
    2424
    25     public PushProgram CreateProgram(IRandom random, IReadonlyPushConfiguration config) {
    26       return CodeGenerator.RandomProgram(10, random, config);
    27     }
    28   }
    29 }
     25//    public PushProgram CreateProgram(IRandom random, IReadonlyPushConfiguration config) {
     26//      return CodeGenerator.RandomProgram(10, random, config);
     27//    }
     28//  }
     29//}
Note: See TracChangeset for help on using the changeset viewer.