Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 6121 was 6121, checked in by jhelm, 13 years ago

#1329: Implemented basic functionalities of problemdefinition, encodings and primitive operators. A GA can already be applied on the problem to compute a solution it seems however that the current implementation isn't very efficient so the process takes some time.

File size: 446 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  interface IJSSPCrossover : ICrossover{
11    ILookupParameter<ItemArray<JSSPEncoding>> ParentsParameter { get; }
12    ILookupParameter<JSSPEncoding> ChildParameter { get; }
13  }
14}
Note: See TracBrowser for help on using the repository browser.