Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/04/15 10:35:04 (8 years ago)
Author:
mkommend
Message:

#2521: Intermediate version of schedule encoding refactoring.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/DirectScheduleRandomCreator.cs

    r12012 r13435  
    6363      Parameters.Add(new ValueLookupParameter<IntValue>("Resources", "The number of resources used in this problem instance."));
    6464      Parameters.Add(new LookupParameter<ItemList<Job>>("JobData", "Job data taken from the JSSP - Instance."));
    65       ScheduleEncodingParameter.ActualName = "Schedule";
     65      ScheduleParameter.ActualName = "Schedule";
    6666    }
    6767
     
    8282
    8383
    84     protected override IScheduleEncoding CreateSolution() {
     84    protected override ISchedule CreateSolution() {
    8585      try {
    8686        var jobData = (ItemList<Job>)JobDataParameter.ActualValue.Clone();
Note: See TracChangeset for help on using the changeset viewer.