1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using HeuristicLab.Common;
|
---|
25 |
|
---|
26 | namespace HeuristicLab.Core {
|
---|
27 | [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("3677EA7A-B956-47D1-BEDA-5041CA5A7903")]
|
---|
28 | public interface IVertex : IItem {
|
---|
29 | IEnumerable<IArc> InArcs { get; }
|
---|
30 | IEnumerable<IArc> OutArcs { get; }
|
---|
31 |
|
---|
32 | int InDegree { get; }
|
---|
33 | int OutDegree { get; }
|
---|
34 | int Degree { get; }
|
---|
35 |
|
---|
36 | string Label { get; set; }
|
---|
37 | double Weight { get; set; }
|
---|
38 |
|
---|
39 | void AddArc(IArc arc);
|
---|
40 | void RemoveArc(IArc arc);
|
---|
41 |
|
---|
42 | event EventHandler Changed; // generic event for when the content, label or weight have changed
|
---|
43 | event EventHandler<EventArgs<IArc>> ArcAdded;
|
---|
44 | event EventHandler<EventArgs<IArc>> ArcRemoved;
|
---|
45 | }
|
---|
46 |
|
---|
47 | [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("5184E468-DA53-4D59-B86D-5DC000E17B57")]
|
---|
48 | public interface IVertex<T> : IVertex where T : class, IDeepCloneable {
|
---|
49 | T Data { get; set; }
|
---|
50 | }
|
---|
51 | }
|
---|