Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/24/11 14:23:19 (13 years ago)
Author:
jhelm
Message:

#1329: Added DirectSchedule-Classes for optimization with the direct-schedule encoding.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Scheduling/HeuristicLab.Problems.Scheduling/3.3/JobShopSchedulingProblem.cs

    r6412 r6475  
    173173            PWRDecoder decoder = new PWRDecoder();
    174174            ((SchedulingEvaluationAlgorithm)this.EvaluatorParameter.ActualValue).InitializeOperatorGraph<PWREncoding>(decoder);
     175          } else {
     176            if (SolutionCreator.GetType().Equals(typeof(DirectScheduleRandomCreator))) {
     177              Operators.AddRange(ApplicationManager.Manager.GetInstances<IDirectScheduleOperator>());
     178              ((SchedulingEvaluationAlgorithm)this.EvaluatorParameter.ActualValue).InitializeOperatorGraph<Schedule>();
     179            }
    175180          }
    176181        }
Note: See TracChangeset for help on using the changeset viewer.