From fabcb3782ef06fa5721e8f855b7fb6db4b46c697 Mon Sep 17 00:00:00 2001 From: jnke2016 Date: Thu, 26 Sep 2024 12:26:01 -0700 Subject: [PATCH] update docstrings --- cpp/include/cugraph_c/graph.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpp/include/cugraph_c/graph.h b/cpp/include/cugraph_c/graph.h index 7155ec8a55e..d812b503778 100644 --- a/cpp/include/cugraph_c/graph.h +++ b/cpp/include/cugraph_c/graph.h @@ -103,6 +103,8 @@ cugraph_error_code_t cugraph_sg_graph_create( * Note that setting this flag will arbitrarily select one instance of a multi edge to be the * edge that survives. If the edges have properties that should be honored (e.g. sum the weights, + * or take the maximum weight), the caller should remove specific edges themselves and not rely + * on this flag. * @param [in] symmetrize If true, symmetrize the edgelist. The symmetrization of edges * with edge_ids and/or edge_type_ids is currently not supported. * @param [in] do_expensive_check If true, do expensive checks to validate the input data