Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionaryTracking/HeuristicLab.EvolutionaryTracking/3.4/DirectedGraph/Arc.cs @ 9082

Last change on this file since 9082 was 9082, checked in by bburlacu, 11 years ago

#1772: Renamed and refactored genealogy graph components. Added SymbolGraph and FPGraph (frequent pattern graph). Added evolvability and genetic operator average improvement analyzer.

File size: 417 bytes
Line 
1
2namespace HeuristicLab.EvolutionaryTracking {
3  /// <summary>
4  /// An arc that can have a weight, a label, and can old additional information in the Data object
5  /// </summary>
6  public class Arc {
7    public IVertex Source { get; set; }
8    public IVertex Target { get; set; }
9    public string Label { get; set; }
10    public double Weight { get; set; }
11    public object Data { get; set; }
12  }
13}
Note: See TracBrowser for help on using the repository browser.