Beispiel #1
0
 /// <summary>
 /// Determines whether the <see cref="ClusteredAdjacencyGraph"/>
 /// contains an edge from the vertex <paramref name="u"/> to
 /// the vertex <paramref name="v"/>.
 /// </summary>
 /// <param name="u">
 /// The source vertex of the edge(s) to locate in <see cref="ClusteredAdjacencyGraph"/>.
 /// </param>
 /// <param name="v">
 /// The target vertex of the edge(s) to locate in <see cref="ClusteredAdjacencyGraph"/>.
 /// </param>
 /// <returns>
 /// true if the <see cref="ClusteredAdjacencyGraph"/> contains
 /// the edge (<paramref name="u"/>, <paramref name="v"/>); otherwise, false.
 ///	</returns>
 public bool ContainsEdge(IVertex u, IVertex v)
 {
     return(Wrapped.ContainsEdge(u, v));
 }
Beispiel #2
0
 /// <summary>
 /// Determines whether the <see cref="ClusteredAdjacencyGraph"/>
 /// contains the edge <paramref name="e"/>.
 /// </summary>
 /// <param name="e">
 /// The edge to locate in <see cref="ClusteredAdjacencyGraph"/>.
 /// </param>
 /// <returns>
 /// true if the <see cref="ClusteredAdjacencyGraph"/> contains
 /// the edge <paramref name="e"/>; otherwise, false.
 ///	</returns>
 public bool ContainsEdge(IEdge e)
 {
     return(Wrapped.ContainsEdge(e));
 }