Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
jnke2016 committed Aug 29, 2024
1 parent 0d3d029 commit 5294974
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions cpp/src/prims/per_v_pair_dst_nbr_intersection.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,14 @@ per_v_pair_dst_nbr_intersection(raft::handle_t const& handle,
{
static_assert(!GraphViewType::is_storage_transposed);

return detail::nbr_intersection(handle,
graph_view,
cugraph::edge_dummy_property_t{}.view(),
vertex_pair_first,
vertex_pair_last,
std::array<bool, 2>{true, true},
do_expensive_check /*FIXME: pass 'do_expensive_check' as argument*/);
return detail::nbr_intersection(
handle,
graph_view,
cugraph::edge_dummy_property_t{}.view(),
vertex_pair_first,
vertex_pair_last,
std::array<bool, 2>{true, true},
do_expensive_check /*FIXME: pass 'do_expensive_check' as argument*/);
}

} // namespace cugraph

0 comments on commit 5294974

Please sign in to comment.