Last change
on this file since 17639 was
15460,
checked in by abeham, 7 years ago
|
#2747: worked on the CFSAP
- Added problem definition that defines both sequence and assignment for a single nest
- Added problem definition that would optimizes both sequence and assignment for multiple nests
- Added interface
- Added solving strategy that would use multiple instances of a template algorithm to optimize the worst nest
- Fixed bug in parser regarding setup times
|
File size:
453 bytes
|
Line | |
---|
1 | using HeuristicLab.Core;
|
---|
2 | using HeuristicLab.Data;
|
---|
3 | using HeuristicLab.Optimization;
|
---|
4 |
|
---|
5 | namespace HeuristicLab.Problems.Scheduling.CFSAP {
|
---|
6 | public interface ICFSAP : IProblem {
|
---|
7 | IValueParameter<IntMatrix> ProcessingTimesParameter { get; }
|
---|
8 | IntMatrix ProcessingTimes { get; set; }
|
---|
9 | IValueParameter<ItemList<IntMatrix>> SetupTimesParameter { get; }
|
---|
10 | ItemList<IntMatrix> SetupTimes { get; set; }
|
---|
11 |
|
---|
12 | void UpdateEncoding();
|
---|
13 | }
|
---|
14 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.