- Timestamp:
- 12/18/17 14:38:18 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CFSAP/HeuristicLab.Problems.Scheduling.CFSAP/3.3/CFSAP.cs
r15493 r15533 112 112 113 113 public int Evaluate(Permutation order, BinaryVector assignment) { 114 return EvaluateAssign ement(order, assignment, ProcessingTimes, SetupTimes);114 return EvaluateAssignment(order, assignment, ProcessingTimes, SetupTimes); 115 115 } 116 116 … … 147 147 148 148 //Function to evaluate individual with the specified assignment 149 public static int EvaluateAssign ement(Permutation order, BinaryVector assignment, IntMatrix processingTimes, ItemList<IntMatrix> setupTimes) {149 public static int EvaluateAssignment(Permutation order, BinaryVector assignment, IntMatrix processingTimes, ItemList<IntMatrix> setupTimes) { 150 150 if (processingTimes.Rows != 2) throw new ArgumentException("Method can only be used when there are two machines.", "assignment"); 151 151 var N = order.Length;
Note: See TracChangeset
for help on using the changeset viewer.