Skip to content

Commit

Permalink
removed fixme note and added comment
Browse files Browse the repository at this point in the history
  • Loading branch information
acostadon committed Jul 31, 2023
1 parent c22b970 commit 9a80661
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/cugraph/cugraph/layout/force_atlas2_wrapper.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ def force_atlas2(input_graph,
if not input_graph.edgelist:
input_graph.view_edge_list()

# FIXME: This implementation assumes that the number of vertices
# is the max vertex ID + 1 which is not always the case.
# this code allows handling of graphs that have been renumbered
if input_graph.is_renumbered():
num_verts = input_graph.renumber_map.df_internal_to_external['id'].max()+1
else:
Expand Down

0 comments on commit 9a80661

Please sign in to comment.