Skip to content

Commit 2f102ea

Browse files
committed
centrality.pyx
1 parent 4103129 commit 2f102ea

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/sage/graphs/centrality.pyx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,7 @@ def centrality_betweenness(G, bint exact=False, bint normalize=True):
119119
"""
120120
if exact:
121121
return centrality_betweenness_C(G, <mpq_t> 0, normalize=normalize)
122-
else:
123-
return centrality_betweenness_C(G, <double>0, normalize=normalize)
122+
return centrality_betweenness_C(G, <double>0, normalize=normalize)
124123

125124

126125
@cython.cdivision(True)

0 commit comments

Comments
 (0)