Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/26/17 19:34:13 (8 years ago)
Author:
pkimmesw
Message:

#2665 Fixed analyzer, fixed Plush encoding + operators, adpated print evaluation according to McPhee

Location:
branches/PushGP/HeuristicLab.PushGP
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP

    • Property svn:ignore set to
      *.user
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Tests/Problem/IndividualMapperTests.cs

    r15189 r15289  
    1313  using HeuristicLab.Problems.ProgramSynthesis.Push.Individual;
    1414  using HeuristicLab.Problems.ProgramSynthesis.Push.Interpreter;
    15   using HeuristicLab.Problems.ProgramSynthesis.Push.Problem;
    1615  using HeuristicLab.Problems.ProgramSynthesis.Push.Stack;
    1716  using HeuristicLab.Random;
     
    4140      var programs = Enumerable.Range(0, Environment.ProcessorCount)
    4241        .AsParallel()
    43         .Select(i => vector.ToPushProgram(config, randomPool))
     42        .Select(i => vector.ToPushProgram(config))
    4443        .ToArray();
    4544
    46       var referenceProgram = vector.ToPushProgram(config, randomPool);
     45      var referenceProgram = vector.ToPushProgram(config);
    4746      Assert.IsTrue(programs.All(p => p.Equals(referenceProgram)));
    4847    }
     
    7069
    7170      sw.Start();
    72       var program = vector.ToPushProgram(config, random);
     71      var program = vector.ToPushProgram(config);
    7372      sw.Stop();
    7473
Note: See TracChangeset for help on using the changeset viewer.