/* This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT. * See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details. * Author(s): Siargey Kachanovich * * Copyright (C) 2016 Inria * * Modification(s): * - YYYY/MM Author: Description of the modification */ // #ifdef _DEBUG // # define TBB_USE_THREADING_TOOL // #endif #define BOOST_TEST_DYN_LINK #define BOOST_TEST_MODULE Subsampling - test pick_n_random_points #include #include #include #include #include BOOST_AUTO_TEST_CASE(test_pick_n_random_points) { typedef CGAL::Epick_d K; typedef typename K::FT FT; typedef typename K::Point_d Point_d; std::vector vect; vect.push_back(Point_d(std::vector({0,0,0,0}))); vect.push_back(Point_d(std::vector({0,0,0,1}))); vect.push_back(Point_d(std::vector({0,0,1,0}))); vect.push_back(Point_d(std::vector({0,0,1,1}))); vect.push_back(Point_d(std::vector({0,1,0,0}))); vect.push_back(Point_d(std::vector({0,1,0,1}))); vect.push_back(Point_d(std::vector({0,1,1,0}))); vect.push_back(Point_d(std::vector({0,1,1,1}))); vect.push_back(Point_d(std::vector({1,0,0,0}))); vect.push_back(Point_d(std::vector({1,0,0,1}))); vect.push_back(Point_d(std::vector({1,0,1,0}))); vect.push_back(Point_d(std::vector({1,0,1,1}))); vect.push_back(Point_d(std::vector({1,1,0,0}))); vect.push_back(Point_d(std::vector({1,1,0,1}))); vect.push_back(Point_d(std::vector({1,1,1,0}))); vect.push_back(Point_d(std::vector({1,1,1,1}))); std::vector results; Gudhi::subsampling::pick_n_random_points(vect, 5, std::back_inserter(results)); std::cout << "landmark vector contains: "; for (auto l: results) std::cout << l << "\n"; BOOST_CHECK(results.size() == 5); }