Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CFSAP/HeuristicLab.Problems.Scheduling.CFSAP/3.3/ICFSAP.cs @ 15460

Last change on this file since 15460 was 15460, checked in by abeham, 6 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 
1using HeuristicLab.Core;
2using HeuristicLab.Data;
3using HeuristicLab.Optimization;
4
5namespace 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.