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
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/PushProblemBase.cs

    r15334 r15771  
    11using System;
    22using System.Linq;
     3using HeuristicLab.Common;
     4using HeuristicLab.Core;
     5using HeuristicLab.Data;
     6using HeuristicLab.Optimization;
     7using HeuristicLab.Parameters;
     8using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     9using HeuristicLab.Random;
    310
    4 namespace HeuristicLab.Problems.ProgramSynthesis.Push.Problem {
    5   using HeuristicLab.Common;
    6   using HeuristicLab.Core;
    7   using HeuristicLab.Data;
    8   using HeuristicLab.Optimization;
    9   using HeuristicLab.Parameters;
    10   using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    11   using HeuristicLab.Problems.ProgramSynthesis.Push.Configuration;
    12   using HeuristicLab.Problems.ProgramSynthesis.Push.Evaluator;
    13   using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions;
    14   using HeuristicLab.Problems.ProgramSynthesis.Push.Interpreter;
    15   using HeuristicLab.Problems.ProgramSynthesis.Push.ObjectPools.Random;
    16   using HeuristicLab.Problems.ProgramSynthesis.Push.Solution;
    17   using HeuristicLab.Random;
    18 
     11namespace HeuristicLab.Problems.ProgramSynthesis {
    1912  [StorableClass]
    2013  public abstract class PushProblemBase<T> : SingleObjectiveBasicProblem<T> where T : class, IEncoding {
Note: See TracChangeset for help on using the changeset viewer.