- Timestamp:
- 02/13/18 16:56:35 (7 years ago)
- Location:
- branches/2895_PushGP_GenealogyAnalysis
- Files:
-
- 1 added
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Tests/Problem/DeterministicTests.cs
r15366 r15771 11 11 using HeuristicLab.Optimization; 12 12 using HeuristicLab.ParallelEngine; 13 using HeuristicLab.Problems.ProgramSynthesis.Push.Problem.BenchmarkSuite; 14 using HeuristicLab.Problems.ProgramSynthesis.Push.Selector; 13 using HeuristicLab.Problems.ProgramSynthesis; 15 14 16 15 using Microsoft.VisualStudio.TestTools.UnitTesting; -
branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Tests/Problem/IndividualMapperTests.cs
r15366 r15771 1 // ReSharper disable AccessToDisposedClosure 1 using System; 2 using System.Diagnostics; 3 using System.Linq; 4 5 using HeuristicLab.Core; 6 using HeuristicLab.Encodings.IntegerVectorEncoding; 7 using HeuristicLab.Problems.ProgramSynthesis; 8 using HeuristicLab.Random; 9 using Microsoft.VisualStudio.TestTools.UnitTesting; 10 2 11 namespace HeuristicLab.Tests.Problem { 3 using System;4 using System.Diagnostics;5 using System.Linq;6 7 using HeuristicLab.Core;8 using HeuristicLab.Encodings.IntegerVectorEncoding;9 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc;10 using HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Integer;11 using HeuristicLab.Problems.ProgramSynthesis.Push.Configuration;12 using HeuristicLab.Problems.ProgramSynthesis.Push.Data.Pool;13 using HeuristicLab.Problems.ProgramSynthesis.Push.Encoding;14 using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions;15 using HeuristicLab.Problems.ProgramSynthesis.Push.Individual;16 using HeuristicLab.Problems.ProgramSynthesis.Push.Interpreter;17 using HeuristicLab.Problems.ProgramSynthesis.Push.Parser;18 using HeuristicLab.Problems.ProgramSynthesis.Push.Stack;19 using HeuristicLab.Random;20 using Microsoft.VisualStudio.TestTools.UnitTesting;21 22 12 [TestClass] 23 13 public class IndividualMapperTests {
Note: See TracChangeset
for help on using the changeset viewer.