Skip to content

Commit

Permalink
undo changes to symmetrize
Browse files Browse the repository at this point in the history
  • Loading branch information
jnke2016 committed Oct 1, 2024
1 parent 4e9e85d commit d135ac1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/cugraph/cugraph/structure/symmetrize.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,13 +257,12 @@ def symmetrize(
>>> df['values'] = cudf.Series(M['2'])
>>> src, dst, val = symmetrize(df, 'sources', 'destinations', 'values', multi=True)
"""
"""

warnings.warn(
"This method is deprecated and will no longer be supported. The symmetrization "
"of the edges are only supported by setting the 'symmetrize' flag to 'True'",
FutureWarning,
)
"""

# FIXME: Redundant check that should be done at the graph creation
if "edge_id" in input_df.columns and symmetrize:
Expand Down

0 comments on commit d135ac1

Please sign in to comment.