1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 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 | using HEAL.Attic;
|
---|
26 |
|
---|
27 | namespace HeuristicLab.Core {
|
---|
28 | [StorableType("e79c962e-b662-4502-bc32-cac6a83e4e83")]
|
---|
29 | public interface IDirectedGraph : IItem {
|
---|
30 | IEnumerable<IVertex> Vertices { get; }
|
---|
31 | IEnumerable<IArc> Arcs { get; }
|
---|
32 |
|
---|
33 | void Clear();
|
---|
34 | void AddVertex(IVertex vertex);
|
---|
35 | void RemoveVertex(IVertex vertex);
|
---|
36 |
|
---|
37 | void AddVertices(IEnumerable<IVertex> vertexList);
|
---|
38 | void RemoveVertices(IEnumerable<IVertex> vertexList);
|
---|
39 |
|
---|
40 | IArc AddArc(IVertex source, IVertex target);
|
---|
41 | void AddArc(IArc arc);
|
---|
42 | void RemoveArc(IArc arc);
|
---|
43 |
|
---|
44 | void AddArcs(IEnumerable<IArc> arcs);
|
---|
45 | void RemoveArcs(IEnumerable<IArc> removeArcs);
|
---|
46 |
|
---|
47 | event EventHandler<EventArgs<IVertex>> VertexAdded;
|
---|
48 | event EventHandler<EventArgs<IVertex>> VertexRemoved;
|
---|
49 | event EventHandler<EventArgs<IArc>> ArcAdded;
|
---|
50 | event EventHandler<EventArgs<IArc>> ArcRemoved;
|
---|
51 | }
|
---|
52 | }
|
---|