Skip to content

Commit

Permalink
Minor update to docstring example to match param update.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlratzel committed Jan 26, 2022
1 parent f761712 commit 22667c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/pylibcugraph/pylibcugraph/pagerank.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def EXPERIMENTAL__pagerank(EXPERIMENTAL__ResourceHandle resource_handle,
... is_symmetric=False, is_multigraph=False)
>>> G = pylibcugraph.experimental.SGGraph(
... resource_handle, graph_props, srcs, dsts, weights,
... store_transposed=True, renumber=False, expensive_check=False)
... store_transposed=True, renumber=False, do_expensive_check=False)
>>> (vertices, pageranks) = pylibcugraph.experimental.pagerank(
... resource_handle, G, None, alpha=0.85, epsilon=1.0e-6,
... max_iterations=500, has_initial_guess=False,
Expand Down
2 changes: 1 addition & 1 deletion python/pylibcugraph/pylibcugraph/sssp.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def EXPERIMENTAL__sssp(EXPERIMENTAL__ResourceHandle resource_handle,
... is_symmetric=False, is_multigraph=False)
>>> G = pylibcugraph.experimental.SGGraph(
... resource_handle, graph_props, srcs, dsts, weights,
... store_transposed=False, renumber=False, expensive_check=False)
... store_transposed=False, renumber=False, do_expensive_check=False)
>>> (vertices, distances, predecessors) = pylibcugraph.experimental.sssp(
... resource_handle, G, source=1, cutoff=999,
... compute_predecessors=True, do_expensive_check=False)
Expand Down

0 comments on commit 22667c6

Please sign in to comment.