Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/09/12 16:17:37 (12 years ago)
Author:
spimming
Message:

#1894:

  • Implemented interface IGraph in Graph
  • Equals method in vertex modified
  • Equals method in Edge implemented
  • New algorithm version for IGraph
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Graph/IGraph.cs

    r8438 r8461  
    22using System.Collections.Generic;
    33namespace HeuristicLab.Problems.RoutePlanning.Graph {
    4   interface IGraph {
     4  public interface IGraph {
    55    void AddVertex(Vertex vertex);
    66    Vertex GetVertex(long id);
    77    void AddEdge(long startId, long endId);
     8    void AddEdge(Edge<Vertex> edge);
    89    void RemoveEdge(long startId, long endId);
    910    bool HasEdge(long startId, long endId);
Note: See TracChangeset for help on using the changeset viewer.