GCC Code Coverage Report


Directory: ./
File: plugins/spline-gradient-based.cc
Date: 2024-08-10 11:29:48
Exec Total Coverage
Lines: 0 8 0.0%
Branches: 0 20 0.0%

Line Branch Exec Source
1 // Copyright (c) 2019, Joseph Mirabel
2 // Authors: Joseph Mirabel (joseph.mirabel@laas.fr)
3 //
4
5 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions are
7 // met:
8 //
9 // 1. Redistributions of source code must retain the above copyright
10 // notice, this list of conditions and the following disclaimer.
11 //
12 // 2. Redistributions in binary form must reproduce the above copyright
13 // notice, this list of conditions and the following disclaimer in the
14 // documentation and/or other materials provided with the distribution.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
27 // DAMAGE.
28
29 #include <hpp/core/path-optimization/spline-gradient-based.hh>
30 #include <hpp/core/plugin.hh>
31 #include <hpp/core/problem-solver.hh>
32
33 namespace hpp {
34 namespace core {
35 class SplineGradientBasedPlugin : public ProblemSolverPlugin {
36 public:
37 SplineGradientBasedPlugin()
38 : ProblemSolverPlugin("SplineGradientBasedPlugin", "0.0") {}
39
40 protected:
41 virtual bool impl_initialize(ProblemSolverPtr_t ps) {
42 // ps->pathOptimizers.add
43 // ("SplineGradientBased_cannonical1",pathOptimization::SplineGradientBased<path::CanonicalPolynomeBasis,
44 // 1>::create); ps->pathOptimizers.add
45 // ("SplineGradientBased_cannonical2",pathOptimization::SplineGradientBased<path::CanonicalPolynomeBasis,
46 // 2>::create); ps->pathOptimizers.add
47 // ("SplineGradientBased_cannonical3",pathOptimization::SplineGradientBased<path::CanonicalPolynomeBasis,
48 // 3>::create);
49 ps->pathOptimizers.add(
50 "SplineGradientBased_bezier1",
51 pathOptimization::SplineGradientBased<path::BernsteinBasis, 1>::create);
52 // ps->pathOptimizers.add
53 // ("SplineGradientBased_bezier2",pathOptimization::SplineGradientBased<path::BernsteinBasis,
54 // 2>::create);
55 ps->pathOptimizers.add(
56 "SplineGradientBased_bezier3",
57 pathOptimization::SplineGradientBased<path::BernsteinBasis, 3>::create);
58 ps->pathOptimizers.add(
59 "SplineGradientBased_bezier5",
60 pathOptimization::SplineGradientBased<path::BernsteinBasis, 5>::create);
61 return true;
62 }
63 };
64 } // namespace core
65 } // namespace hpp
66
67 HPP_CORE_DEFINE_PLUGIN(hpp::core::SplineGradientBasedPlugin)
68