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/IntegerVectorPushProblem.cs

    r15341 r15771  
    1 namespace HeuristicLab.Problems.ProgramSynthesis.Push.Problem {
    2   using System.Linq;
     1using System.Linq;
     2using HeuristicLab.Common;
     3using HeuristicLab.Encodings.IntegerVectorEncoding;
     4using HeuristicLab.Optimization;
     5using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    36
    4   using Common;
    5   using Configuration;
    6   using HeuristicLab.Encodings.IntegerVectorEncoding;
    7   using HeuristicLab.Problems.ProgramSynthesis.Push.Analyzer;
    8   using HeuristicLab.Problems.ProgramSynthesis.Push.Evaluator;
    9   using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions;
    10   using HeuristicLab.Problems.ProgramSynthesis.Push.Individual;
    11   using HeuristicLab.Problems.ProgramSynthesis.Push.SolutionCreator;
    12 
    13   using Optimization;
    14   using Persistence.Default.CompositeSerializers.Storable;
    15 
     7namespace HeuristicLab.Problems.ProgramSynthesis {
    168  [StorableClass]
    179  public abstract class IntegerVectorPushProblem : PushProblemBase<IntegerVectorEncoding> {
Note: See TracChangeset for help on using the changeset viewer.