Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Scheduling/HeuristicLab.Problems.Scheduling/3.3/Interfaces/IJSSPCrossover.cs @ 6193

Last change on this file since 6193 was 6177, checked in by jhelm, 14 years ago

#1329: Implemented PriorityRulesVector based encoding and added new operators to the JSMEncoding. Added Gantt-Charts for visualization of schedules and problems.

File size: 455 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Optimization;
6using HeuristicLab.Core;
7using HeuristicLab.Problems.Scheduling.Encodings;
8
9namespace HeuristicLab.Problems.Scheduling.Interfaces {
10  public interface IJSSPCrossover : ICrossover{
11    ILookupParameter<ItemArray<IJSSPEncoding>> ParentsParameter { get; }
12    ILookupParameter<IJSSPEncoding> ChildParameter { get; }
13  }
14}
Note: See TracBrowser for help on using the repository browser.