Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/20/20 16:18:23 (4 years ago)
Author:
abeham
Message:

#2521: fixed build fail in tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Tests/HeuristicLab.Encodings.ScheduleEncoding-3.3/JSMJOXCrossoverTest.cs

    r17226 r17516  
    4040    public void ApplyTest() {
    4141      IRandom random = new TestRandom(new int[] { 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1 }, null);
    42       JSMEncoding p1 = TestUtils.CreateTestJSM1();
    43       JSMEncoding p2 = TestUtils.CreateTestJSM2();
    44       JSMEncoding expected = new JSMEncoding(0);
     42      JSM p1 = TestUtils.CreateTestJSM1();
     43      JSM p2 = TestUtils.CreateTestJSM2();
     44      JSM expected = new JSM(0);
    4545      ItemList<Permutation> jsm = expected.JobSequenceMatrix;
    4646      for (int i = 0; i < 6; i++) {
     
    4949
    5050
    51       JSMEncoding actual;
     51      JSM actual;
    5252      actual = JSMJOXCrossover.Apply(random, p1, p2);
    5353
Note: See TracChangeset for help on using the changeset viewer.