Skip to content

Commit 9f134db

Browse files
authored
Reach 100% coverage (#60)
1 parent e22e3d3 commit 9f134db

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

src/graph.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ vertices(g::Graph) = 1:length(g)
2525
neighbors(g::Graph, v::Integer) = view(g.rowval, g.colptr[v]:(g.colptr[v + 1] - 1))
2626
degree(g::Graph, v::Integer) = length(g.colptr[v]:(g.colptr[v + 1] - 1))
2727

28-
maximum_degree(g::Graph) = maximum(Base.Fix1(degree, g), vertices(g))
29-
minimum_degree(g::Graph) = minimum(Base.Fix1(degree, g), vertices(g))
30-
3128
## Bipartite graph
3229

3330
"""

0 commit comments

Comments
 (0)