Skip to content

Commit

Permalink
undo the previous change
Browse files Browse the repository at this point in the history
  • Loading branch information
seunghwak committed Jan 4, 2024
1 parent 81df775 commit 7722003
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
7 changes: 2 additions & 5 deletions cpp/src/c_api/graph_mg.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2024, NVIDIA CORPORATION.
* Copyright (c) 2021-2023, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -217,10 +217,7 @@ struct create_graph_functor : public cugraph::c_api::abstract_functor {
std::move(edgelist_dsts),
std::move(edgelist_weights),
std::move(edgelist_edge_ids),
std::move(edgelist_edge_types),
properties_->is_symmetric
? true /* keep minimum weight edges to maintain symmetry */
: false);
std::move(edgelist_edge_types));
}

std::tie(*graph, new_edge_weights, new_edge_ids, new_edge_types, new_number_map) =
Expand Down
5 changes: 1 addition & 4 deletions cpp/src/c_api/graph_sg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,7 @@ struct create_graph_functor : public cugraph::c_api::abstract_functor {
std::move(edgelist_dsts),
std::move(edgelist_weights),
std::move(edgelist_edge_ids),
std::move(edgelist_edge_types),
properties_->is_symmetric
? true /* keep minimum weight edges to maintain symmetry */
: false);
std::move(edgelist_edge_types));
}

std::tie(*graph, new_edge_weights, new_edge_ids, new_edge_types, new_number_map) =
Expand Down

0 comments on commit 7722003

Please sign in to comment.