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

Legend:

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

    r15756 r15771  
    1 namespace HeuristicLab.Problems.ProgramSynthesis.Base.Erc.Views {
    2   using System.Linq;
    3   using Core;
    4   using Core.Views;
    5   using MainForm;
     1using System.Linq;
     2using HeuristicLab.Collections;
     3using HeuristicLab.Core;
     4using HeuristicLab.Core.Views;
     5using HeuristicLab.MainForm;
    66
     7namespace HeuristicLab.Problems.ProgramSynthesis {
    78  [View("ERC Options")]
    89  [Content(typeof(ErcOptions), true)]
     
    4243    }
    4344
    44     public new ErcOptions Content
    45     {
     45    public new ErcOptions Content {
    4646      get { return (ErcOptions)base.Content; }
    47       set
    48       {
     47      set {
    4948        ClearOldContent();
    5049        base.Content = value;
Note: See TracChangeset for help on using the changeset viewer.