Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/05/14 20:47:50 (10 years ago)
Author:
bburlacu
Message:

#1772: Added SymbolicDataAnalysisGenealogyView, updated generic analyzer and operators.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/Interfaces/IGenealogyGraphNode.cs

    r10278 r10285  
    2222using System;
    2323using System.Collections.Generic;
     24using HeuristicLab.Core;
    2425
    2526namespace HeuristicLab.EvolutionTracking {
     
    2728    IEnumerable<IGenealogyGraphNode> Ancestors();
    2829    IEnumerable<IGenealogyGraphNode> Descendants();
    29 
    3030    new List<IGenealogyGraphArc> InArcs { get; }
    3131    new List<IGenealogyGraphArc> OutArcs { get; }
     
    3636  }
    3737
    38   public interface IGenealogyGraphNode<T> : IGenealogyGraphNode, IVertex<T> { }
     38  public interface IGenealogyGraphNode<T> : IGenealogyGraphNode, IVertex<T> where T : class,IItem {
     39
     40  }
    3941
    4042}
Note: See TracChangeset for help on using the changeset viewer.