Skip to content

Commit

Permalink
Address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Naim committed May 29, 2024
1 parent 61f98d6 commit 0e80b4b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cpp/include/cugraph/sampling_functions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,8 @@ build_edge_id_and_type_to_src_dst_lookup_map(
edge_property_view_t<edge_t, edge_type_t const*> edge_type_view);

/*
* @brief Lookup edge sources and destinations using edge ids and a single edge type
* @brief Lookup edge sources and destinations using edge ids and a single edge type.
* Use this function to lookup endpoints of edges belonging to the same edge type.
*
* @tparam vertex_t Type of vertex identifiers. Needs to be an integral type.
* @tparam edge_t Type of edge identifiers. Needs to be an integral type.
Expand All @@ -371,7 +372,8 @@ lookup_endpoints_for_edge_ids_of_single_type(
edge_type_t edge_type_to_lookup);

/*
* @brief Lookup edge sources and destinations using edge ids and edge types
* @brief Lookup edge sources and destinations using edge ids and edge types.
* Use this function to lookup endpoints of edges belonging to different edge types.
*
* @tparam vertex_t Type of vertex identifiers. Needs to be an integral type.
* @tparam edge_t Type of edge identifiers. Needs to be an integral type.
Expand Down

0 comments on commit 0e80b4b

Please sign in to comment.