Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/27/14 16:33:17 (10 years ago)
Author:
bburlacu
Message:

#1772: Adjusted namespace in Plugin.cs.frame for HeuristicLab.EvolutionTracking.Views. Simplified DirectedGraph and GenealogyGraph API. Added public events for the Vertex content (so that the graph itself can be notified when the content changes and can adjust it's content-to-vertex map. Adjusted instrumented operators code to reflect api changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/DirectedGraph/Interfaces/IVertex.cs

    r10888 r10897  
    2020#endregion
    2121
     22using System;
    2223using System.Collections.Generic;
    2324using HeuristicLab.Core;
     
    2526namespace HeuristicLab.EvolutionTracking {
    2627  public interface IVertex : IItem {
    27     string Id { get; set; }
    28     IEnumerable<IArc> InArcs { get; }
    29     IEnumerable<IArc> OutArcs { get; }
     28    event EventHandler PreContentChanged;
     29    event EventHandler PostContentChanged;
     30
     31    string Id { get; }
     32    IEnumerable<IArc> InArcs { get; set; }
     33    IEnumerable<IArc> OutArcs { get; set; }
    3034
    3135    int InDegree { get; }
Note: See TracChangeset for help on using the changeset viewer.