You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/QuikGraph/Algorithms/TarjanOfflineLeastCommonAncestorAlgorithm.cs
+7-3
Original file line number
Diff line number
Diff line change
@@ -124,9 +124,13 @@ public bool TryGetVertexPairs(out IEnumerable<SEquatableEdge<TVertex>> pairs)
124
124
returnpairs!=null;
125
125
}
126
126
127
-
/// <summary>
128
-
/// Sets vertices pairs.
129
-
/// </summary>
127
+
/// <summary> Sets vertices pairs. </summary>
128
+
/// <param name="pairs">Vertices pairs.</param>
129
+
/// <exception cref="T:System.ArgumentNullException"><paramref name="pairs"/> is <see langword="null"/>.</exception>
130
+
/// <exception cref="T:System.ArgumentException"><paramref name="pairs"/> is empty or any vertex from pairs is not part of <see cref="AlgorithmBase{TGraph}.VisitedGraph"/>.</exception>
/// <exception cref="T:System.ArgumentNullException"><paramref name="pairs"/> is <see langword="null"/>.</exception>
132
136
/// <exception cref="T:System.ArgumentException"><paramref name="pairs"/> is empty or any vertex from pairs is not part of <see cref="AlgorithmBase{TGraph}.VisitedGraph"/>.</exception>
0 commit comments