summaryrefslogtreecommitdiff
path: root/include/gudhi/random_point_generators.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gudhi/random_point_generators.h')
-rw-r--r--include/gudhi/random_point_generators.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/gudhi/random_point_generators.h b/include/gudhi/random_point_generators.h
index 9df77760..f8107c8b 100644
--- a/include/gudhi/random_point_generators.h
+++ b/include/gudhi/random_point_generators.h
@@ -4,7 +4,7 @@
*
* Author(s): Clement Jamin
*
- * Copyright (C) 2016 INRIA
+ * Copyright (C) 2016 Inria
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -190,7 +190,8 @@ template <typename Kernel, typename OutputIterator>
static void generate_uniform_points_on_torus_d(const Kernel &k, int dim, std::size_t num_slices,
OutputIterator out,
double radius_noise_percentage = 0.,
- std::vector<typename Kernel::FT> current_point = std::vector<typename Kernel::FT>()) {
+ std::vector<typename Kernel::FT> current_point =
+ std::vector<typename Kernel::FT>()) {
CGAL::Random rng;
int point_size = static_cast<int>(current_point.size());
if (point_size == 2 * dim) {