Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/06/15 15:33:25 (9 years ago)
Author:
mkommend
Message:

#2521: Added encodings for schedules.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/Manipulators/JSMManipulator.cs

    r13435 r13437  
    2525using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2626
    27 namespace HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix {
     27namespace HeuristicLab.Encodings.ScheduleEncoding {
    2828  [Item("JSMManipulator", "An operator which manipulates a JSM representation.")]
    2929  [StorableClass]
     
    3232    protected JSMManipulator(bool deserializing) : base(deserializing) { }
    3333    protected JSMManipulator(JSMManipulator original, Cloner cloner) : base(original, cloner) { }
    34     public JSMManipulator()
    35       : base() {
    36       ScheduleParameter.ActualName = "JobSequenceMatrix";
    37     }
     34    public JSMManipulator() : base() { }
    3835
    3936    protected abstract void Manipulate(IRandom random, ISchedule individual);
Note: See TracChangeset for help on using the changeset viewer.