Skip to content

Commit

Permalink
Remove unnecessary default parameter for combine_neighbor_sets().
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Sep 5, 2024
1 parent 2a41d15 commit 09b5a7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/umappp/combine_neighbor_sets.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace umappp {
namespace internal {

template<typename Index_, typename Float_>
void combine_neighbor_sets(NeighborList<Index_, Float_>& x, Float_ mix_ratio = 1) {
void combine_neighbor_sets(NeighborList<Index_, Float_>& x, Float_ mix_ratio) {
std::vector<size_t> last(x.size());
std::vector<size_t> original(x.size());

Expand Down

0 comments on commit 09b5a7a

Please sign in to comment.