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/GenealogyGraphNode.cs

    r10285 r10293  
    111111
    112112    public new void AddForwardArc(IVertex target, double w = 0, object data = null) {
    113       var e = new GenealogyGraphArc { Source = this, Target = (IGenealogyGraphNode)target, Data = data, Weight = w };
    114       base.AddForwardArc(e);
     113      var arc = new GenealogyGraphArc { Source = this, Target = (IGenealogyGraphNode)target, Data = data, Weight = w };
     114      base.AddForwardArc(arc);
    115115    }
    116116    public new void AddReverseArc(IVertex source, double w = 0.0, object data = null) {
    117       var e = new GenealogyGraphArc { Source = (IGenealogyGraphNode)source, Target = this, Data = data, Weight = w };
    118       base.AddReverseArc(e);
     117      var arc = new GenealogyGraphArc { Source = (IGenealogyGraphNode)source, Target = this, Data = data, Weight = w };
     118      base.AddReverseArc(arc);
    119119    }
    120120  }
     
    124124  public class GenealogyGraphNode<T> : GenealogyGraphNode, IGenealogyGraphNode<T> where T : class,IItem {
    125125    public T Content { get; set; }
    126 
     126    public GenealogyGraphNode() { }
    127127  }
    128128}
Note: See TracChangeset for help on using the changeset viewer.