GCC Code Coverage Report


Directory: ./
File: src/function/of-parameter-subset.cc
Date: 2025-05-05 12:19:30
Exec Total Coverage
Lines: 0 19 0.0%
Branches: 0 32 0.0%

Line Branch Exec Source
1 // Copyright (c) 2017 - 2018, CNRS
2 // Authors: Joseph Mirabel (joseph.mirabel@laas.fr), Florent Lamiraux
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/constraints/function/of-parameter-subset.hh>
30 #include <hpp/util/indent.hh>
31
32 namespace hpp {
33 namespace constraints {
34 namespace function {
35 namespace {
36 std::string toStr(const segment_t& s) {
37 std::ostringstream os;
38 os << "[ " << s.first << ", " << s.first + s.second << " ]";
39 return os.str();
40 }
41 } // namespace
42
43 OfParameterSubset::OfParameterSubset(const DifferentiableFunctionPtr_t& g,
44 const size_type& nArgs,
45 const size_type& nDers,
46 const segment_t& inArgs,
47 const segment_t& inDers)
48 : DifferentiableFunction(nArgs, nDers, g->outputSpace(),
49 g->name() + " | " + toStr(inArgs)),
50 g_(g),
51 sa_(inArgs),
52 sd_(inDers) {
53 activeParameters_.setConstant(false);
54 activeParameters_.segment(sa_.first, sa_.second) = g_->activeParameters();
55
56 activeDerivativeParameters_.setConstant(false);
57 activeDerivativeParameters_.segment(sd_.first, sd_.second) =
58 g_->activeDerivativeParameters();
59 }
60
61 std::ostream& OfParameterSubset::print(std::ostream& os) const {
62 constraints::DifferentiableFunction::print(os);
63 return os << incindent << iendl << *g_ << decindent;
64 }
65 } // namespace function
66 } // namespace constraints
67 } // namespace hpp
68