File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Experimental/ShortestPaths Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ shortest paths.
78
78
See `ShortestPathAlgorithm` for more details on the algorithm specifications.
79
79
80
80
### Implementation Notes
81
- The elements of `distmx` may be of any type that has a [Total Ordering](https://en.m. wikipedia.org/wiki/Total_order)
81
+ The elements of `distmx` may be of any type that has a [Total Ordering](https://en.wikipedia.org/wiki/Total_order)
82
82
and valid comparator, `zero` and `typemax` functions. Concretely, this means that
83
83
distance matrices containing complex numbers are invalid.
84
84
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ using Graphs.Experimental.Traversals
4
4
struct BFS <: ShortestPathAlgorithm
5
5
6
6
The structure used to configure and specify that [`shortest_paths`](@ref)
7
- should use the [Breadth-First Search algorithm](https://en.m. wikipedia.org/wiki/Breadth-first_search).
7
+ should use the [Breadth-First Search algorithm](https://en.wikipedia.org/wiki/Breadth-first_search).
8
8
9
9
An optional sorting algorithm may be specified (default = no sorting).
10
10
Sorting helps maintain cache locality and will improve performance on
Original file line number Diff line number Diff line change 1
1
"""
2
2
bridges(g)
3
3
4
- Compute the [bridges](https://en.m. wikipedia.org/wiki/Bridge_(graph_theory))
4
+ Compute the [bridges](https://en.wikipedia.org/wiki/Bridge_(graph_theory))
5
5
of a connected graph `g` and return an array containing all bridges, i.e edges
6
6
whose deletion increases the number of connected components of the graph.
7
7
# Examples
You can’t perform that action at this time.
0 commit comments