PeriDEM 0.2.0
PeriDEM -- Peridynamics-based high-fidelity model for granular media
Loading...
Searching...
No Matches
testNSearchLib.h
Go to the documentation of this file.
1/*
2 * -------------------------------------------
3 * Copyright (c) 2021 - 2024 Prashant K. Jha
4 * -------------------------------------------
5 * PeriDEM https://github.com/prashjha/PeriDEM
6 *
7 * Distributed under the Boost Software License, Version 1.0. (See accompanying
8 * file LICENSE)
9 */
10
11#ifndef TEST_NSEARCH_LIB_H
12#define TEST_NSEARCH_LIB_H
13
14#include <string>
15#include <vector>
16
17namespace test {
18
32
42template <int dim = 3>
43std::string testNanoflann(size_t N, double L, double dL, int seed);
44
55template <int dim = 3>
56std::string testNanoflannExcludeInclude(size_t N, double L,
57 double dL, int seed,
58 testNSearchData &data);
59
68std::string testNanoflannClosestPoint(size_t N, double L, double dL, int seed);
69
70} // namespace test
71
72#endif // TEST_NSEARCH_LIB_H
Namespace to group the methods used in testing of the library.
Definition testFeLib.h:18
std::string testNanoflannExcludeInclude(size_t N, double L, double dL, int seed, testNSearchData &data)
Perform test on nsearch.
std::string testNanoflannClosestPoint(size_t N, double L, double dL, int seed)
Perform test on nsearch.
std::string testNanoflann(size_t N, double L, double dL, int seed)
Perform test on nsearch.