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:
2 added
1 copied

Legend:

Unmodified
Added
Removed
  • branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.Views/PushDebuggerView.cs

    r15756 r15771  
    44using System.Linq;
    55using System.Windows.Forms;
    6 
    7 namespace HeuristicLab.Problems.ProgramSynthesis.Push.Views {
    8   using Configuration;
    9   using Core.Views;
    10   using Expressions;
    11 
    12   using HeuristicLab.Problems.ProgramSynthesis.Push.Solution;
    13 
    14   using Interpreter;
    15   using MainForm;
    16   using Stack;
     6using HeuristicLab.Core.Views;
     7using HeuristicLab.MainForm;
     8
     9namespace HeuristicLab.Problems.ProgramSynthesis.Views {
    1710
    1811  public partial class PushDebuggerView : ItemView {
     
    3730    }
    3831
    39     public new PushSolution Content
    40     {
     32    public new PushSolution Content {
    4133      get { return (PushSolution)base.Content; }
    42       set
    43       {
     34      set {
    4435        base.Content = value;
    4536      }
Note: See TracChangeset for help on using the changeset viewer.