- Timestamp:
- 07/26/17 19:34:13 (8 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP
-
Property
svn:ignore
set to
*.user
-
Property
svn:ignore
set to
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Tests/Problem/IndividualMapperTests.cs
r15189 r15289 13 13 using HeuristicLab.Problems.ProgramSynthesis.Push.Individual; 14 14 using HeuristicLab.Problems.ProgramSynthesis.Push.Interpreter; 15 using HeuristicLab.Problems.ProgramSynthesis.Push.Problem;16 15 using HeuristicLab.Problems.ProgramSynthesis.Push.Stack; 17 16 using HeuristicLab.Random; … … 41 40 var programs = Enumerable.Range(0, Environment.ProcessorCount) 42 41 .AsParallel() 43 .Select(i => vector.ToPushProgram(config , randomPool))42 .Select(i => vector.ToPushProgram(config)) 44 43 .ToArray(); 45 44 46 var referenceProgram = vector.ToPushProgram(config , randomPool);45 var referenceProgram = vector.ToPushProgram(config); 47 46 Assert.IsTrue(programs.All(p => p.Equals(referenceProgram))); 48 47 } … … 70 69 71 70 sw.Start(); 72 var program = vector.ToPushProgram(config , random);71 var program = vector.ToPushProgram(config); 73 72 sw.Stop(); 74 73
Note: See TracChangeset
for help on using the changeset viewer.