using HeuristicLab.Core; using HeuristicLab.Data; using HeuristicLab.Optimization; namespace HeuristicLab.Problems.Scheduling.CFSAP { public interface ICFSAP : IProblem { IValueParameter ProcessingTimesParameter { get; } IntMatrix ProcessingTimes { get; set; } IValueParameter> SetupTimesParameter { get; } ItemList SetupTimes { get; set; } void UpdateEncoding(); } }