Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/13/18 16:56:35 (6 years ago)
Author:
bburlacu
Message:

#2895: Add solution skeleton for PushGP with genealogy analysis.

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  
    1111  using HeuristicLab.Optimization;
    1212  using HeuristicLab.ParallelEngine;
    13   using HeuristicLab.Problems.ProgramSynthesis.Push.Problem.BenchmarkSuite;
    14   using HeuristicLab.Problems.ProgramSynthesis.Push.Selector;
     13  using HeuristicLab.Problems.ProgramSynthesis;
    1514
    1615  using Microsoft.VisualStudio.TestTools.UnitTesting;
  • branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Tests/Problem/IndividualMapperTests.cs

    r15366 r15771  
    1 // ReSharper disable AccessToDisposedClosure
     1using System;
     2using System.Diagnostics;
     3using System.Linq;
     4
     5using HeuristicLab.Core;
     6using HeuristicLab.Encodings.IntegerVectorEncoding;
     7using HeuristicLab.Problems.ProgramSynthesis;
     8using HeuristicLab.Random;
     9using Microsoft.VisualStudio.TestTools.UnitTesting;
     10
    211namespace 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 
    2212  [TestClass]
    2313  public class IndividualMapperTests {
Note: See TracChangeset for help on using the changeset viewer.