Skip to content

Commit

Permalink
Use main URL for Wikipedia, not mobile URL (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
kenahoo authored May 20, 2024
1 parent 9c8efd9 commit 615afe4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Experimental/ShortestPaths/ShortestPaths.jl
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ shortest paths.
See `ShortestPathAlgorithm` for more details on the algorithm specifications.
### Implementation Notes
The elements of `distmx` may be of any type that has a [Total Ordering](https://en.m.wikipedia.org/wiki/Total_order)
The elements of `distmx` may be of any type that has a [Total Ordering](https://en.wikipedia.org/wiki/Total_order)
and valid comparator, `zero` and `typemax` functions. Concretely, this means that
distance matrices containing complex numbers are invalid.
Expand Down
2 changes: 1 addition & 1 deletion src/Experimental/ShortestPaths/bfs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ using Graphs.Experimental.Traversals
struct BFS <: ShortestPathAlgorithm
The structure used to configure and specify that [`shortest_paths`](@ref)
should use the [Breadth-First Search algorithm](https://en.m.wikipedia.org/wiki/Breadth-first_search).
should use the [Breadth-First Search algorithm](https://en.wikipedia.org/wiki/Breadth-first_search).
An optional sorting algorithm may be specified (default = no sorting).
Sorting helps maintain cache locality and will improve performance on
Expand Down
2 changes: 1 addition & 1 deletion src/biconnectivity/bridge.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
bridges(g)
Compute the [bridges](https://en.m.wikipedia.org/wiki/Bridge_(graph_theory))
Compute the [bridges](https://en.wikipedia.org/wiki/Bridge_(graph_theory))
of a connected graph `g` and return an array containing all bridges, i.e edges
whose deletion increases the number of connected components of the graph.
# Examples
Expand Down

0 comments on commit 615afe4

Please sign in to comment.