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 | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Optimization;
|
---|
6 | using HeuristicLab.Core;
|
---|
7 | using HeuristicLab.Problems.Scheduling.Encodings;
|
---|
8 |
|
---|
9 | namespace 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.