Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/30/14 01:41:54 (10 years ago)
Author:
bburlacu
Message:

#1772: Worked towards integrating the new graph api with the tracking operators.

File:
1 edited

Legend:

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

    r10903 r11233  
    3333      : base(original, cloner) { }
    3434
    35     protected GenealogyGraphArc() { }
    36 
    37     public GenealogyGraphArc(IGenealogyGraphNode source, IGenealogyGraphNode target, object data = null) {
    38       Source = source;
    39       Target = target;
    40       Data = data;
     35    public GenealogyGraphArc(IGenealogyGraphNode source, IGenealogyGraphNode target)
     36      : base(source, target) {
    4137    }
    4238
     
    4743    public new IGenealogyGraphNode Source {
    4844      get { return (IGenealogyGraphNode)base.Source; }
    49       set { base.Source = value; }
    5045    }
    5146
    5247    public new IGenealogyGraphNode Target {
    5348      get { return (IGenealogyGraphNode)base.Target; }
    54       set { base.Target = value; }
    5549    }
    5650  }
     
    6357    protected GenealogyGraphArc(GenealogyGraphArc<T> original, Cloner cloner)
    6458      : base(original, cloner) {
    65       Data = (T)original.Data;
     59      Data = original.Data;
    6660    }
    6761
Note: See TracChangeset for help on using the changeset viewer.