Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
trac #17665: identation error in generic_graph_pyx.pyx
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoudert committed Jan 24, 2015
1 parent 58ae861 commit b4d28b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/graphs/generic_graph_pyx.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1321,7 +1321,7 @@ def transitive_reduction_acyclic(G):
for vv in G.neighbors_out(uu):
v = v_to_int[vv]
binary_matrix_set1(closure, u, v)
bitset_or(closure.rows+u, closure.rows+u, closure.rows+v)
bitset_or(closure.rows+u, closure.rows+u, closure.rows+v)

# Build the transitive reduction of G
#
Expand All @@ -1333,7 +1333,7 @@ def transitive_reduction_acyclic(G):
u = v_to_int[uu]
for vv in G.neighbors_out(uu):
v = v_to_int[vv]
bitset_difference(closure.rows+u, closure.rows+u, closure.rows+v)
bitset_difference(closure.rows+u, closure.rows+u, closure.rows+v)
for vv in G.neighbors_out(uu):
v = v_to_int[vv]
if binary_matrix_get(closure, u, v):
Expand Down

0 comments on commit b4d28b2

Please sign in to comment.