Changeset 17516 for branches/2521_ProblemRefactoring/HeuristicLab.Tests/HeuristicLab.Encodings.ScheduleEncoding-3.3/JSMShiftChangeManipulatorTest.cs
- Timestamp:
- 04/20/20 16:18:23 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Tests/HeuristicLab.Encodings.ScheduleEncoding-3.3/JSMShiftChangeManipulatorTest.cs
r17226 r17516 40 40 public void ApplyTest() { 41 41 IRandom random = new TestRandom(new int[] { 2, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2 }, null); 42 JSM Encodingindividual = TestUtils.CreateTestJSM1();42 JSM individual = TestUtils.CreateTestJSM1(); 43 43 JSMShiftChangeManipulator.Apply(random, individual); 44 JSM Encoding expected = new JSMEncoding(0);44 JSM expected = new JSM(0); 45 45 ItemList<Permutation> jsm = expected.JobSequenceMatrix; 46 46 for (int i = 0; i < 3; i++) {
Note: See TracChangeset
for help on using the changeset viewer.