Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/07/14 12:31:18 (10 years ago)
Author:
bburlacu
Message:

#1772: Merged trunk changes to the branch projects. Fixed some small bugs in the GenealogyGraphArc, added SymbolicDataAnalysisGenealogyAnalyzer.cs as a facade to the generic analyzer (it looks nicer in the GUI).

File:
1 edited

Legend:

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

    r10285 r10293  
    3939      return new GenealogyGraphArc(this, cloner);
    4040    }
    41     public new IGenealogyGraphNode Source { get; set; }
    42     public new IGenealogyGraphNode Target { get; set; }
    4341
     42    public new IGenealogyGraphNode Source {
     43      get { return (IGenealogyGraphNode)base.Source; }
     44      set { base.Source = value; }
     45    }
    4446
     47    public new IGenealogyGraphNode Target {
     48      get { return (IGenealogyGraphNode)base.Target; }
     49      set { base.Target = value; }
     50    }
    4551  }
    4652
     
    6066    }
    6167    public new T Data {
    62       get {
    63         return (T)base.Data;
    64       }
    65       set {
    66         base.Data = value;
    67       }
     68      get { return (T)base.Data; }
     69      set { base.Data = value; }
    6870    }
    6971  }
Note: See TracChangeset for help on using the changeset viewer.