GCC Code Coverage Report


Directory: Bembel/src/
Coverage: low: ≥ 0% medium: ≥ 75.0% high: ≥ 90.0%
Coverage Exec / Excl / Total
Lines: 98.5% 1282 / 0 / 1302
Functions: 100.0% 77 / 0 / 77
Branches: 63.9% 917 / 0 / 1436

AnsatzSpace/Projector.hpp
Line Branch Exec Source
1 // This file is part of Bembel, the higher order C++ boundary element library.
2 //
3 // Copyright (C) 2022 see <http://www.bembel.eu>
4 //
5 // It was written as part of a cooperation of J. Doelz, H. Harbrecht, S. Kurz,
6 // M. Multerer, S. Schoeps, and F. Wolf at Technische Universitaet Darmstadt,
7 // Universitaet Basel, and Universita della Svizzera italiana, Lugano. This
8 // source code is subject to the GNU General Public License version 3 and
9 // provided WITHOUT ANY WARRANTY, see <http://www.bembel.eu> for further
10 // information.
11 #ifndef BEMBEL_SRC_ANSATZSPACE_PROJECTOR_HPP_
12 #define BEMBEL_SRC_ANSATZSPACE_PROJECTOR_HPP_
13
14 namespace Bembel {
15 namespace ProjectorRoutines {
16 /**
17 * \brief Helper struct for assembling the Projector for the different cases.
18 */
19 template <typename Derived, unsigned int DF>
20 struct projector_matrixmaker_ {
21 static Eigen::SparseMatrix<double> makeMatrix(
22 const Bembel::SuperSpace<Derived>& super_space,
23 const int knotrepetition) {
24 assert(false && "This needs to be specialized");
25 return Eigen::SparseMatrix<double>(1, 1);
26 }
27 };
28 } // namespace ProjectorRoutines
29
30 /**
31 * \ingroup AnsatzSpace
32 * \brief The Projector provides routines to assemble smooth B-Splines on each
33 * patch.
34 *
35 * This class solves local interpolation problems on each patch to assemble
36 * B-splines from the Berstein basis. The linear combination of the Bernstein
37 * basis functions is stored in a sparse transformation matrix.
38 */
39 template <typename Derived>
40 class Projector {
41 public:
42 //////////////////////////////////////////////////////////////////////////////
43 /// constructors
44 //////////////////////////////////////////////////////////////////////////////
45 /**
46 * \brief Default constructor
47 */
48 Projector() {}
49 /**
50 * \brief Constructor for the Projector.
51 *
52 * This constructor initializes a Projector object with the provided
53 * parameters.
54 *
55 * \param super_space The SuperSpace to handle basis functions.
56 * \param knot_repetition The number of repetitions of knots in the space.
57 */
58 180 Projector(const SuperSpace<Derived>& super_space, const int knot_repetition) {
59
10/20
Bembel::Projector<Bembel::DummyOperator>::Projector(Bembel::SuperSpace<Bembel::DummyOperator> const&, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::Projector<Bembel::HelmholtzSingleLayerOperator>::Projector(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int):
✓ Branch 1 taken 3 times.
✗ Branch 2 not taken.
Bembel::Projector<Bembel::HomogenisedLaplaceSingleLayerOperator>::Projector(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::Projector<Bembel::LaplaceBeltramiOperator>::Projector(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::Projector<Bembel::LaplaceSingleLayerOperator>::Projector(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::Projector<Bembel::MassMatrixScalarCont>::Projector(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::Projector<Bembel::MaxwellSingleLayerOperator>::Projector(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::Projector<TestOperatorC>::Projector(Bembel::SuperSpace<TestOperatorC> const&, int):
✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
Bembel::Projector<TestOperatorDisc>::Projector(Bembel::SuperSpace<TestOperatorDisc> const&, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::Projector<TestOperatorDivC>::Projector(Bembel::SuperSpace<TestOperatorDivC> const&, int):
✓ Branch 1 taken 77 times.
✗ Branch 2 not taken.
180 init_Projector(super_space, knot_repetition);
60 180 }
61 //////////////////////////////////////////////////////////////////////////////
62 /// init
63 //////////////////////////////////////////////////////////////////////////////
64 /**
65 * \brief Initializes the Projector.
66 *
67 * This function initializes the member variables of the Projector
68 *
69 * \param super_space The SuperSpace to handle basis functions.
70 * \param knot_repetition The number of repetitions of knots in the space.
71 */
72 180 void init_Projector(const SuperSpace<Derived>& super_space,
73 const int knot_repetition) {
74 180 knot_repetition_ = knot_repetition;
75
20/40
Bembel::Projector<Bembel::DummyOperator>::init_Projector(Bembel::SuperSpace<Bembel::DummyOperator> const&, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 4 times.
✗ Branch 5 not taken.
Bembel::Projector<Bembel::HelmholtzSingleLayerOperator>::init_Projector(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int):
✓ Branch 1 taken 3 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 3 times.
✗ Branch 5 not taken.
Bembel::Projector<Bembel::HomogenisedLaplaceSingleLayerOperator>::init_Projector(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 2 times.
✗ Branch 5 not taken.
Bembel::Projector<Bembel::LaplaceBeltramiOperator>::init_Projector(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
✓ Branch 4 taken 1 time.
✗ Branch 5 not taken.
Bembel::Projector<Bembel::LaplaceSingleLayerOperator>::init_Projector(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 2 times.
✗ Branch 5 not taken.
Bembel::Projector<Bembel::MassMatrixScalarCont>::init_Projector(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
✓ Branch 4 taken 1 time.
✗ Branch 5 not taken.
Bembel::Projector<Bembel::MaxwellSingleLayerOperator>::init_Projector(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 2 times.
✗ Branch 5 not taken.
Bembel::Projector<TestOperatorC>::init_Projector(Bembel::SuperSpace<TestOperatorC> const&, int):
✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 64 times.
✗ Branch 5 not taken.
Bembel::Projector<TestOperatorDisc>::init_Projector(Bembel::SuperSpace<TestOperatorDisc> const&, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 24 times.
✗ Branch 5 not taken.
Bembel::Projector<TestOperatorDivC>::init_Projector(Bembel::SuperSpace<TestOperatorDivC> const&, int):
✓ Branch 1 taken 77 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 77 times.
✗ Branch 5 not taken.
180 projector_ = makeProjectionMatrix(super_space, knot_repetition);
76 180 dofs_before_projector_ = projector_.rows();
77 180 dofs_after_projector_ = projector_.cols();
78 180 return;
79 }
80 //////////////////////////////////////////////////////////////////////////////
81 /// getter
82 //////////////////////////////////////////////////////////////////////////////
83 /**
84 * \brief Return knot repetition.
85 *
86 * \return The number of repetitions of knots in the space.
87 */
88 200 int get_knot_repetition() const { return knot_repetition_; }
89 /**
90 * \brief This function returns the transformation matrix to assemble smooth
91 * tensor product B-splines.
92 *
93 * In the assembly process of this Projection matrix an local interpolation
94 * problem is solved on each element. This matrix needs to be applied to the
95 * Bernstein basis to assemble smooth tensor product B-splines.
96 *
97 * \return The Projector matrix a tall thin Sparse transformation matrix.
98 */
99 180 const Eigen::SparseMatrix<double>& get_projection_matrix() {
100 180 return projector_;
101 }
102 /**
103 * \brief Return number of smooth B-splines.
104 *
105 * \return Number of DOFs after applying the transformation matrix.
106 */
107 277 int get_dofs_after_projector() const { return dofs_after_projector_; }
108 //////////////////////////////////////////////////////////////////////////////
109 /// private members
110 //////////////////////////////////////////////////////////////////////////////
111 private:
112 180 Eigen::SparseMatrix<double> makeProjectionMatrix(
113 const SuperSpace<Derived>& super_space, const int knotrepetition) {
114 return ProjectorRoutines::projector_matrixmaker_<
115 Derived,
116 LinearOperatorTraits<Derived>::Form>::makeMatrix(super_space,
117 180 knotrepetition);
118 }
119 // we declare functionality which has not been implemented (yet)
120 // to be private
121 int knot_repetition_;
122 int dofs_before_projector_;
123 int dofs_after_projector_;
124 Eigen::SparseMatrix<double> projector_;
125 Projector(const Projector<Derived>& other);
126 Projector(Projector<Derived>&& other);
127 Projector& operator=(const Projector<Derived>& other);
128 Projector& operator=(Projector<Derived>&& other);
129 //////////////////////////////////////////////////////////////////////////////
130 };
131
132 namespace ProjectorRoutines {
133
134 /**
135 * \brief Helper struct
136 *
137 * \todo Use Eigen::Triplets.
138 */
139 struct _proj_info {
140 std::vector<double> vals;
141 std::vector<int> rows;
142 std::vector<int> cols;
143 int num_c_dof;
144 int num_dc_dof;
145 };
146
147 template <typename Derived>
148 /**
149 * \brief This function solves on each element the interpolation problem to
150 * assemble smooth tensor product B-splines.
151 *
152 * This function returns the entries of the matrix which transforms Bernstein
153 * polynomials to tensor product B-splines defined by the polynomial degree in x
154 * and y direction. The local interpolation mask is filled with the DeBoor
155 * algorithm and the system is solved with the Eigen::FullPivLU decomposition.
156 *
157 * \param super_space Reference to the SuperSpace handling basis functions.
158 * \param pp1x Polynomial degree in x direction plus 1.
159 * \param pp1y Polynomial degree in y direction plus 1.
160 * \param knotrepetition_in Knot repetition of the knot vector.
161 *
162 * \return Struct Number of DOFs and indices of the matrix entries and the
163 * coefficients of the linear combination assembling smooth B-spline.
164 */
165 259 inline _proj_info makeLocalProjectionTriplets(
166 const SuperSpace<Derived>& super_space, const int pp1x, const int pp1y,
167 const int knotrepetition_in) {
168 259 const int M = super_space.get_refinement_level();
169 259 const int maximal_polynomial_degree = std::max(pp1x, pp1y);
170
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 3 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 154 times.
✗ Branch 2 not taken.
259 assert(maximal_polynomial_degree == super_space.get_polynomial_degree() + 1 &&
171 "superSpace not suitable for desired ansatz space -> polynomial "
172 "degree mismatch");
173 259 const int minp = std::min(pp1x, pp1y);
174 259 const int knotrepetition = (maximal_polynomial_degree <= knotrepetition_in)
175
12/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 64 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 12 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 154 times.
259 ? minp
176 : knotrepetition_in;
177 259 const int n = (1 << M);
178 259 const int patch_number = super_space.get_number_of_patches();
179
180 // At the moment, we allow a difference of one only, i.e., we start our de
181 // Rham sequence with a space of the same degree in every TP-direction.
182
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 64 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 24 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 154 times.
259 assert(std::abs(maximal_polynomial_degree - minp) <= 1);
183
184 // Now, we construct the continuous spaces which will be the preimage of the
185 // projector. n-1 is passed, since n = number_elements but n-1 = number of
186 // interior knots.
187 259 std::vector<double> c_space_knot_x =
188 Spl::MakeUniformKnotVector(pp1x, n - 1, knotrepetition);
189 259 std::vector<double> c_space_knot_y =
190 Spl::MakeUniformKnotVector(pp1y, n - 1, knotrepetition);
191 259 const int c_space_dim_x = c_space_knot_x.size() - pp1x;
192 259 const int c_space_dim_y = c_space_knot_y.size() - pp1y;
193 259 const int c_space_dim = c_space_dim_x * c_space_dim_y;
194
195 259 _proj_info out;
196
197 259 out.cols.reserve(c_space_dim * maximal_polynomial_degree *
198
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 3 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 154 times.
✗ Branch 2 not taken.
259 maximal_polynomial_degree * patch_number);
199 259 out.vals.reserve(c_space_dim * maximal_polynomial_degree *
200
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 3 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 154 times.
✗ Branch 2 not taken.
259 maximal_polynomial_degree * patch_number);
201 259 out.rows.reserve(c_space_dim * maximal_polynomial_degree *
202
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 3 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 154 times.
✗ Branch 2 not taken.
259 maximal_polynomial_degree * patch_number);
203
204 259 std::vector<double> mask =
205 Spl::MakeInterpolationMask(maximal_polynomial_degree);
206 259 const int masksize = mask.size();
207
208 // Now we assemble our system which we use for the interpolation
209
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 64 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 24 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 154 times.
259 assert(masksize == maximal_polynomial_degree &&
210 "projector.cpp: System needs to be square");
211 259 Eigen::Matrix<double, -1, -1> system(
212 masksize * masksize,
213
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 3 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 154 times.
✗ Branch 2 not taken.
259 maximal_polynomial_degree * maximal_polynomial_degree);
214
215 // Here, we suddenly use the degree for basisevaluation, i.e.,
216 // maximal_polynomial_degree-1. This is confusing, but correct and tested.
217 {
218 double vals_y[Constants::MaxP + 1];
219 double vals_x[Constants::MaxP + 1];
220
20/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 3 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 8 times.
✓ Branch 1 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 0 taken 224 times.
✓ Branch 1 taken 64 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 0 taken 84 times.
✓ Branch 1 taken 24 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 0 taken 536 times.
✓ Branch 1 taken 154 times.
1127 for (int iy = 0; iy < maximal_polynomial_degree; ++iy) {
221
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 8 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 2 taken 224 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 2 taken 84 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 2 taken 536 times.
✗ Branch 3 not taken.
868 Bembel::Basis::ShapeFunctionHandler::evalBasis(
222 maximal_polynomial_degree - 1, vals_y, mask[iy]);
223
20/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 6 times.
✓ Branch 1 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 8 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 0 taken 864 times.
✓ Branch 1 taken 224 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 0 taken 324 times.
✓ Branch 1 taken 84 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 0 taken 2060 times.
✓ Branch 1 taken 536 times.
4154 for (int ix = 0; ix < maximal_polynomial_degree; ++ix) {
224
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 6 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 16 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 2 taken 864 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 2 taken 324 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 2 taken 2060 times.
✗ Branch 3 not taken.
3286 Bembel::Basis::ShapeFunctionHandler::evalBasis(
225 maximal_polynomial_degree - 1, vals_x, mask[ix]);
226
20/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 10 times.
✓ Branch 1 taken 6 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 0 taken 8 times.
✓ Branch 1 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 0 taken 8 times.
✓ Branch 1 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 32 times.
✓ Branch 1 taken 16 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 0 taken 3584 times.
✓ Branch 1 taken 864 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 0 taken 1344 times.
✓ Branch 1 taken 324 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 0 taken 8528 times.
✓ Branch 1 taken 2060 times.
16808 for (int jy = 0; jy < maximal_polynomial_degree; ++jy) {
227
20/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 18 times.
✓ Branch 1 taken 10 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 8 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 8 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 64 times.
✓ Branch 1 taken 32 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 0 taken 15648 times.
✓ Branch 1 taken 3584 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 0 taken 5868 times.
✓ Branch 1 taken 1344 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 0 taken 37196 times.
✓ Branch 1 taken 8528 times.
72356 for (int jx = 0; jx < maximal_polynomial_degree; ++jx) {
228 117668 system(iy * masksize + ix, jy * maximal_polynomial_degree + jx) =
229
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 18 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 16 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 16 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 15648 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 5868 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 37196 times.
✗ Branch 2 not taken.
58834 vals_x[jx] * vals_y[jy];
230 }
231 }
232 }
233 }
234 }
235
236 // Do LU-Decomposition of
237 // systemsuper_space.get_mesh().get_element_tree().begin()
238
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 3 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 154 times.
✗ Branch 2 not taken.
259 const Eigen::PartialPivLU<Eigen::Matrix<double, -1, -1>> pplu(system);
239
240 259 unsigned int element_number = 0;
241
242 25871 for (auto element = super_space.get_mesh().get_element_tree().cpbegin();
243
20/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 4 taken 4240 times.
✓ Branch 5 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 4 taken 193 times.
✓ Branch 5 taken 3 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 4 taken 120 times.
✓ Branch 5 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 4 taken 6 times.
✓ Branch 5 taken 1 time.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 4 taken 97 times.
✓ Branch 5 taken 2 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 4 taken 6 times.
✓ Branch 5 taken 1 time.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 4 taken 204 times.
✓ Branch 5 taken 4 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 4 taken 6800 times.
✓ Branch 5 taken 64 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 4 taken 168 times.
✓ Branch 5 taken 24 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 4 taken 13778 times.
✓ Branch 5 taken 154 times.
25871 element != super_space.get_mesh().get_element_tree().cpend();
244 25612 ++element) {
245 // s = x
246
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 2 taken 4240 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 193 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 120 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 2 taken 6 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 97 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 2 taken 6 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 204 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 2 taken 6800 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 2 taken 168 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 2 taken 13778 times.
✗ Branch 3 not taken.
25612 const double pos_x = element->llc_(0);
247
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 2 taken 4240 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 193 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 120 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 2 taken 6 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 97 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 2 taken 6 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 204 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 2 taken 6800 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 2 taken 168 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 2 taken 13778 times.
✗ Branch 3 not taken.
25612 const double pos_y = element->llc_(1);
248
249 25612 const double h = element->get_h();
250 25612 const double mid_x = pos_x + (.5 * h);
251 25612 const double mid_y = pos_y + (.5 * h);
252
253 // The following block of code computes the indeces of all continuous basis
254 // functions which have a support on the element of index 'element'
255 25612 std::vector<double> nonzero_dofs_x;
256 25612 std::vector<double> nonzero_dofs_y;
257
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 193 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 6 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 6 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 204 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 6800 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 168 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 13778 times.
✗ Branch 2 not taken.
25612 nonzero_dofs_x.reserve(pp1x);
258
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 193 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 6 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 6 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 204 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 6800 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 168 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 13778 times.
✗ Branch 2 not taken.
25612 nonzero_dofs_y.reserve(pp1y);
259
20/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 0 taken 263232 times.
✓ Branch 1 taken 4240 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 865 times.
✓ Branch 1 taken 193 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 432 times.
✓ Branch 1 taken 120 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 6 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 385 times.
✓ Branch 1 taken 97 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 6 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 882 times.
✓ Branch 1 taken 204 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 0 taken 63800 times.
✓ Branch 1 taken 6800 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 0 taken 1524 times.
✓ Branch 1 taken 168 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 0 taken 121735 times.
✓ Branch 1 taken 13778 times.
478491 for (int dof_y = 0; dof_y < c_space_dim_y; ++dof_y) {
260
36/40
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 133736 times.
✓ Branch 2 taken 129496 times.
✓ Branch 3 taken 4240 times.
✓ Branch 4 taken 258992 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 577 times.
✓ Branch 2 taken 288 times.
✓ Branch 3 taken 289 times.
✓ Branch 4 taken 576 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 276 times.
✓ Branch 2 taken 156 times.
✓ Branch 3 taken 120 times.
✓ Branch 4 taken 312 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 12 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 241 times.
✓ Branch 2 taken 144 times.
✓ Branch 3 taken 97 times.
✓ Branch 4 taken 288 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 12 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 594 times.
✓ Branch 2 taken 288 times.
✓ Branch 3 taken 306 times.
✓ Branch 4 taken 576 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 43800 times.
✓ Branch 2 taken 20000 times.
✓ Branch 3 taken 23800 times.
✓ Branch 4 taken 40000 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 1056 times.
✓ Branch 2 taken 468 times.
✓ Branch 3 taken 588 times.
✓ Branch 4 taken 936 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 81527 times.
✓ Branch 2 taken 40208 times.
✓ Branch 3 taken 41319 times.
✓ Branch 4 taken 80416 times.
714710 if ((c_space_knot_y[dof_y] <= mid_y) &&
261
18/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✓ Branch 2 taken 129496 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 289 times.
✓ Branch 2 taken 288 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✓ Branch 2 taken 156 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✓ Branch 2 taken 144 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 306 times.
✓ Branch 2 taken 288 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 23800 times.
✓ Branch 2 taken 20000 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 588 times.
✓ Branch 2 taken 468 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 41319 times.
✓ Branch 2 taken 40208 times.
261831 (c_space_knot_y[dof_y + pp1y] >= mid_y)) {
262
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 289 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 306 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 23800 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 588 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 41319 times.
✗ Branch 2 not taken.
70783 nonzero_dofs_y.push_back(dof_y);
263 }
264 }
265
20/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 0 taken 263232 times.
✓ Branch 1 taken 4240 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 865 times.
✓ Branch 1 taken 193 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 432 times.
✓ Branch 1 taken 120 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 6 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 385 times.
✓ Branch 1 taken 97 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 6 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 882 times.
✓ Branch 1 taken 204 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 0 taken 63800 times.
✓ Branch 1 taken 6800 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 0 taken 1524 times.
✓ Branch 1 taken 168 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 0 taken 121735 times.
✓ Branch 1 taken 13778 times.
478491 for (int dof_x = 0; dof_x < c_space_dim_x; ++dof_x) {
266
36/40
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 133736 times.
✓ Branch 2 taken 129496 times.
✓ Branch 3 taken 4240 times.
✓ Branch 4 taken 258992 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 577 times.
✓ Branch 2 taken 288 times.
✓ Branch 3 taken 289 times.
✓ Branch 4 taken 576 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 276 times.
✓ Branch 2 taken 156 times.
✓ Branch 3 taken 120 times.
✓ Branch 4 taken 312 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 12 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 241 times.
✓ Branch 2 taken 144 times.
✓ Branch 3 taken 97 times.
✓ Branch 4 taken 288 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 12 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 594 times.
✓ Branch 2 taken 288 times.
✓ Branch 3 taken 306 times.
✓ Branch 4 taken 576 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 43800 times.
✓ Branch 2 taken 20000 times.
✓ Branch 3 taken 23800 times.
✓ Branch 4 taken 40000 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 1056 times.
✓ Branch 2 taken 468 times.
✓ Branch 3 taken 588 times.
✓ Branch 4 taken 936 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 81527 times.
✓ Branch 2 taken 40208 times.
✓ Branch 3 taken 41319 times.
✓ Branch 4 taken 80416 times.
714710 if ((c_space_knot_x[dof_x] <= mid_x) &&
267
18/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✓ Branch 2 taken 129496 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 289 times.
✓ Branch 2 taken 288 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✓ Branch 2 taken 156 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✓ Branch 2 taken 144 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 306 times.
✓ Branch 2 taken 288 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 23800 times.
✓ Branch 2 taken 20000 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 588 times.
✓ Branch 2 taken 468 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 41319 times.
✓ Branch 2 taken 40208 times.
261831 (c_space_knot_x[dof_x + pp1x] >= mid_x)) {
268
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 289 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 306 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 23800 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 588 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 41319 times.
✗ Branch 2 not taken.
70783 nonzero_dofs_x.push_back(dof_x);
269 }
270 }
271
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 193 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 6 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 6 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 204 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 6800 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 168 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 13778 times.
✗ Branch 2 not taken.
25612 nonzero_dofs_x.shrink_to_fit();
272
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 193 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 6 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 6 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 204 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 6800 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 168 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 13778 times.
✗ Branch 2 not taken.
25612 nonzero_dofs_y.shrink_to_fit();
273
274 // We now loop over all basis functions wich are non-zero on the element
275
20/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 5 taken 4240 times.
✓ Branch 6 taken 4240 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 5 taken 289 times.
✓ Branch 6 taken 193 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 5 taken 120 times.
✓ Branch 6 taken 120 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 5 taken 12 times.
✓ Branch 6 taken 6 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 5 taken 97 times.
✓ Branch 6 taken 97 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 5 taken 12 times.
✓ Branch 6 taken 6 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 5 taken 306 times.
✓ Branch 6 taken 204 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 5 taken 23800 times.
✓ Branch 6 taken 6800 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 5 taken 588 times.
✓ Branch 6 taken 168 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 5 taken 41319 times.
✓ Branch 6 taken 13778 times.
96395 for (auto dof_y : nonzero_dofs_y) {
276
20/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 13 taken 4240 times.
✓ Branch 14 taken 4240 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 13 taken 481 times.
✓ Branch 14 taken 289 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 13 taken 120 times.
✓ Branch 14 taken 120 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 13 taken 24 times.
✓ Branch 14 taken 12 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 13 taken 97 times.
✓ Branch 14 taken 97 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 13 taken 24 times.
✓ Branch 14 taken 12 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 13 taken 408 times.
✓ Branch 14 taken 306 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 13 taken 91800 times.
✓ Branch 14 taken 23800 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 13 taken 2268 times.
✓ Branch 14 taken 588 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 13 taken 137700 times.
✓ Branch 14 taken 41319 times.
307945 for (auto dof_x : nonzero_dofs_x) {
277 // The next few lines are to check if the element is within the support
278 // of the basis function given by dof_x and dof_y.
279
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 481 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 408 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 91800 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 2268 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 137700 times.
✗ Branch 2 not taken.
474324 std::vector<double> local_mask_x(masksize);
280
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 481 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 408 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 91800 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 2268 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 137700 times.
✗ Branch 2 not taken.
237162 std::vector<double> local_mask_y(masksize);
281
20/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 0 taken 4240 times.
✓ Branch 1 taken 4240 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 865 times.
✓ Branch 1 taken 481 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 120 times.
✓ Branch 1 taken 120 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 0 taken 48 times.
✓ Branch 1 taken 24 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 97 times.
✓ Branch 1 taken 97 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 0 taken 48 times.
✓ Branch 1 taken 24 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 816 times.
✓ Branch 1 taken 408 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 0 taken 380800 times.
✓ Branch 1 taken 91800 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 0 taken 9408 times.
✓ Branch 1 taken 2268 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 0 taken 585180 times.
✓ Branch 1 taken 137700 times.
1218784 for (int i = 0; i < masksize; ++i) {
282 981622 local_mask_x[i] = pos_x + (1.0 / n) * mask[i];
283 981622 local_mask_y[i] = pos_y + (1.0 / n) * mask[i];
284
20/40
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 4240 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 865 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 865 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 120 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 48 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 48 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 97 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 48 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 48 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 816 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 816 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 380800 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 380800 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 9408 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 9408 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 585180 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 585180 times.
✗ Branch 5 not taken.
981622 assert(local_mask_x[i] < 1 && local_mask_x[i] > 0);
285
20/40
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 4240 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 865 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 865 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 120 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 48 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 48 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 97 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 48 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 48 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 816 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 816 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 380800 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 380800 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 9408 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 9408 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 585180 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 585180 times.
✗ Branch 5 not taken.
981622 assert(local_mask_y[i] < 1 && local_mask_y[i] > 0);
286 }
287
288 // build unit vectors
289
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 481 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 408 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 91800 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 2268 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 137700 times.
✗ Branch 2 not taken.
237162 std::vector<double> c_coefs_x(c_space_dim_x, 0.0);
290
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 481 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 408 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 91800 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 2268 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 137700 times.
✗ Branch 2 not taken.
237162 std::vector<double> c_coefs_y(c_space_dim_y, 0.0);
291 237162 c_coefs_x[dof_x] = 1.;
292 237162 c_coefs_y[dof_y] = 1.;
293
294 // evaluate rhs for interpolation problem
295 237162 std::vector<double> vals_x =
296 Spl::DeBoor(c_coefs_x, c_space_knot_x, local_mask_x);
297 237162 std::vector<double> vals_y =
298 Spl::DeBoor(c_coefs_y, c_space_knot_y, local_mask_y);
299
300 // assemble and solve interpolation problem
301
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 481 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 408 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 91800 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 2268 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 137700 times.
✗ Branch 2 not taken.
237162 Eigen::VectorXd rhs(masksize * masksize);
302
20/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 0 taken 4240 times.
✓ Branch 1 taken 4240 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 865 times.
✓ Branch 1 taken 481 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 120 times.
✓ Branch 1 taken 120 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 0 taken 48 times.
✓ Branch 1 taken 24 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 97 times.
✓ Branch 1 taken 97 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 0 taken 48 times.
✓ Branch 1 taken 24 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 816 times.
✓ Branch 1 taken 408 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 0 taken 380800 times.
✓ Branch 1 taken 91800 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 0 taken 9408 times.
✓ Branch 1 taken 2268 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 0 taken 585180 times.
✓ Branch 1 taken 137700 times.
1218784 for (int iy = 0; iy < masksize; ++iy)
303
20/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 0 taken 4240 times.
✓ Branch 1 taken 4240 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 1633 times.
✓ Branch 1 taken 865 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 120 times.
✓ Branch 1 taken 120 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 0 taken 96 times.
✓ Branch 1 taken 48 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 97 times.
✓ Branch 1 taken 97 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 0 taken 96 times.
✓ Branch 1 taken 48 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 1632 times.
✓ Branch 1 taken 816 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 0 taken 1662600 times.
✓ Branch 1 taken 380800 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 0 taken 41076 times.
✓ Branch 1 taken 9408 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 0 taken 2595348 times.
✓ Branch 1 taken 585180 times.
5288560 for (int ix = 0; ix < masksize; ++ix)
304
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 3 taken 4240 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 3 taken 1633 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 3 taken 120 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 3 taken 96 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 3 taken 97 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 3 taken 96 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 3 taken 1632 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 3 taken 1662600 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 3 taken 41076 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 3 taken 2595348 times.
✗ Branch 4 not taken.
4306938 rhs(iy * masksize + ix) = vals_x[ix] * vals_y[iy];
305
20/40
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 4240 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 481 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 481 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 120 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 24 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 97 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 24 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 408 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 408 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 91800 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 91800 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 2268 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 2268 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 137700 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 137700 times.
✗ Branch 5 not taken.
237162 Eigen::VectorXd sol = pplu.solve(rhs);
306
307 // insert entries into helperstruct
308 4544100 for (int i = 0;
309
20/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 0 taken 4240 times.
✓ Branch 1 taken 4240 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 1633 times.
✓ Branch 1 taken 481 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 120 times.
✓ Branch 1 taken 120 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 0 taken 96 times.
✓ Branch 1 taken 24 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 97 times.
✓ Branch 1 taken 97 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 0 taken 96 times.
✓ Branch 1 taken 24 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 0 taken 1632 times.
✓ Branch 1 taken 408 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 0 taken 1662600 times.
✓ Branch 1 taken 91800 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 0 taken 41076 times.
✓ Branch 1 taken 2268 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 0 taken 2595348 times.
✓ Branch 1 taken 137700 times.
4544100 i < maximal_polynomial_degree * maximal_polynomial_degree; ++i) {
310
27/40
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 4240 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 1633 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 481 times.
✓ Branch 5 taken 1152 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 120 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 96 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 24 times.
✓ Branch 5 taken 72 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 97 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 96 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 24 times.
✓ Branch 5 taken 72 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 1632 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 816 times.
✓ Branch 5 taken 816 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 1662600 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 560920 times.
✓ Branch 5 taken 1101680 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 41076 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 6628 times.
✓ Branch 5 taken 34448 times.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 2595348 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 978704 times.
✓ Branch 5 taken 1616644 times.
4306938 if (std::abs(sol(i)) > Constants::projector_tolerance) {
311 1552054 out.cols.push_back(element->patch_ * (c_space_dim) +
312
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 481 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 816 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 560920 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 6628 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 978704 times.
✗ Branch 2 not taken.
1552054 (c_space_dim_x * dof_y) + dof_x);
313 1552054 out.rows.push_back((element_number * maximal_polynomial_degree *
314 maximal_polynomial_degree) +
315
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 481 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 816 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 560920 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 6628 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 978704 times.
✗ Branch 2 not taken.
1552054 i);
316
20/40
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 4240 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 481 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 481 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 120 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 24 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 97 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 24 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 816 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 816 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 560920 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 560920 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 6628 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 6628 times.
✗ Branch 5 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 978704 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 978704 times.
✗ Branch 5 not taken.
1552054 out.vals.push_back(sol(i));
317 }
318 }
319 }
320 }
321 25612 ++element_number;
322 }
323
324 259 out.num_c_dof = c_space_dim_x * c_space_dim_y * patch_number;
325 259 out.num_dc_dof = maximal_polynomial_degree * maximal_polynomial_degree * n *
326 259 n * patch_number;
327
328
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 3 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 154 times.
✗ Branch 2 not taken.
259 out.cols.shrink_to_fit();
329
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 3 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 154 times.
✗ Branch 2 not taken.
259 out.rows.shrink_to_fit();
330
10/20
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 3 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 1 taken 154 times.
✗ Branch 2 not taken.
259 out.vals.shrink_to_fit();
331
332
20/40
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::DummyOperator>(Bembel::SuperSpace<Bembel::DummyOperator> const&, int, int, int):
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
✓ Branch 6 taken 4 times.
✗ Branch 7 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HelmholtzSingleLayerOperator>(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 3 times.
✗ Branch 3 not taken.
✓ Branch 6 taken 3 times.
✗ Branch 7 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::HomogenisedLaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✓ Branch 6 taken 2 times.
✗ Branch 7 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceBeltramiOperator>(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int, int, int):
✓ Branch 2 taken 1 time.
✗ Branch 3 not taken.
✓ Branch 6 taken 1 time.
✗ Branch 7 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::LaplaceSingleLayerOperator>(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✓ Branch 6 taken 2 times.
✗ Branch 7 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MassMatrixScalarCont>(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int, int, int):
✓ Branch 2 taken 1 time.
✗ Branch 3 not taken.
✓ Branch 6 taken 1 time.
✗ Branch 7 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<Bembel::MaxwellSingleLayerOperator>(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int, int, int):
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
✓ Branch 6 taken 4 times.
✗ Branch 7 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorC>(Bembel::SuperSpace<TestOperatorC> const&, int, int, int):
✓ Branch 2 taken 64 times.
✗ Branch 3 not taken.
✓ Branch 6 taken 64 times.
✗ Branch 7 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDisc>(Bembel::SuperSpace<TestOperatorDisc> const&, int, int, int):
✓ Branch 2 taken 24 times.
✗ Branch 3 not taken.
✓ Branch 6 taken 24 times.
✗ Branch 7 not taken.
Bembel::ProjectorRoutines::_proj_info Bembel::ProjectorRoutines::makeLocalProjectionTriplets<TestOperatorDivC>(Bembel::SuperSpace<TestOperatorDivC> const&, int, int, int):
✓ Branch 2 taken 154 times.
✗ Branch 3 not taken.
✓ Branch 6 taken 154 times.
✗ Branch 7 not taken.
259 assert((out.vals.size() == out.rows.size()) &&
333 (out.rows.size() == out.cols.size()) &&
334 "projector.cpp: you made a mistake, try again.");
335
336 518 return out;
337 259 }
338
339 /**
340 * \brief Specification of the struct for the scalar continuous case.
341 *
342 * Do the same as in the discontinuous case but with an assert p >= 1.
343 */
344 template <typename Derived>
345 struct projector_matrixmaker_<Derived, DifferentialForm::Continuous> {
346 66 static Eigen::SparseMatrix<double> makeMatrix(
347 const SuperSpace<Derived>& super_space, const int knotrepetition) {
348 66 const int P = super_space.get_polynomial_degree();
349
3/6
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::LaplaceBeltramiOperator, 0u>::makeMatrix(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MassMatrixScalarCont, 0u>::makeMatrix(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorC, 0u>::makeMatrix(Bembel::SuperSpace<TestOperatorC> const&, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 64 times.
66 assert(P > 0 && "P must be 1 or larger for this type of discrete space");
350
3/6
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::LaplaceBeltramiOperator, 0u>::makeMatrix(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MassMatrixScalarCont, 0u>::makeMatrix(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorC, 0u>::makeMatrix(Bembel::SuperSpace<TestOperatorC> const&, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 64 times.
66 assert(knotrepetition <= P &&
351 "Knot repetition must be smaller than P for this type of discrete "
352 "space");
353 // The matrices coincide with the 2 case, up to the limitations above
354 66 Eigen::SparseMatrix<double> local_matrix = projector_matrixmaker_<
355 Derived, DifferentialForm::Discontinuous>::makeMatrix(super_space,
356 knotrepetition);
357
358 66 return local_matrix;
359 }
360 };
361
362 /**
363 * \brief Specification of the struct for the vector Div conforming case.
364 *
365 * The Maxwell case: This function assembles a vector valued smooth tensor
366 * product B-spline basis. Hereby the first component has the polynomial degree
367 * p in x direction and p - 1 in y direction. For the second component the
368 * polynomial degree for x and y direction are switched.
369 */
370 template <typename Derived>
371 struct projector_matrixmaker_<Derived, DifferentialForm::DivConforming> {
372 79 static Eigen::SparseMatrix<double> makeMatrix(
373 const SuperSpace<Derived>& super_space, const int knotrepetition) {
374
2/4
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MaxwellSingleLayerOperator, 1u>::makeMatrix(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDivC, 1u>::makeMatrix(Bembel::SuperSpace<TestOperatorDivC> const&, int):
✓ Branch 1 taken 77 times.
✗ Branch 2 not taken.
79 assert(super_space.get_polynomial_degree() > 0 &&
375 "P must be 1 or larger for this type of discrete space");
376
2/4
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MaxwellSingleLayerOperator, 1u>::makeMatrix(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDivC, 1u>::makeMatrix(Bembel::SuperSpace<TestOperatorDivC> const&, int):
✓ Branch 1 taken 77 times.
✗ Branch 2 not taken.
79 assert(knotrepetition <= super_space.get_polynomial_degree() &&
377 "Knot repetition must be smaller than P for this type of discrete "
378 "space");
379
2/4
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MaxwellSingleLayerOperator, 1u>::makeMatrix(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int):
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDivC, 1u>::makeMatrix(Bembel::SuperSpace<TestOperatorDivC> const&, int):
✓ Branch 2 taken 77 times.
✗ Branch 3 not taken.
158 const auto info1 = ProjectorRoutines::makeLocalProjectionTriplets<Derived>(
380 79 super_space, super_space.get_polynomial_degree() + 1,
381 super_space.get_polynomial_degree(), knotrepetition);
382
2/4
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MaxwellSingleLayerOperator, 1u>::makeMatrix(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int):
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDivC, 1u>::makeMatrix(Bembel::SuperSpace<TestOperatorDivC> const&, int):
✓ Branch 2 taken 77 times.
✗ Branch 3 not taken.
79 const auto info2 = ProjectorRoutines::makeLocalProjectionTriplets<Derived>(
383 super_space, super_space.get_polynomial_degree(),
384 79 super_space.get_polynomial_degree() + 1, knotrepetition);
385 79 const int size1 = info1.vals.size();
386 79 const int size2 = info2.vals.size();
387
2/4
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MaxwellSingleLayerOperator, 1u>::makeMatrix(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDivC, 1u>::makeMatrix(Bembel::SuperSpace<TestOperatorDivC> const&, int):
✗ Branch 0 not taken.
✓ Branch 1 taken 77 times.
79 assert(size1 == size2);
388 79 std::vector<Eigen::Triplet<double>> trips;
389
4/4
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MaxwellSingleLayerOperator, 1u>::makeMatrix(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int):
✓ Branch 0 taken 408 times.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDivC, 1u>::makeMatrix(Bembel::SuperSpace<TestOperatorDivC> const&, int):
✓ Branch 0 taken 489352 times.
✓ Branch 1 taken 77 times.
489839 for (int k = 0; k < size1; ++k) {
390
2/4
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MaxwellSingleLayerOperator, 1u>::makeMatrix(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int):
✓ Branch 1 taken 408 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDivC, 1u>::makeMatrix(Bembel::SuperSpace<TestOperatorDivC> const&, int):
✓ Branch 1 taken 489352 times.
✗ Branch 2 not taken.
489760 trips.push_back(
391 979520 Eigen::Triplet<double>(info1.rows[k], info1.cols[k], info1.vals[k]));
392 }
393
4/4
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MaxwellSingleLayerOperator, 1u>::makeMatrix(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int):
✓ Branch 0 taken 408 times.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDivC, 1u>::makeMatrix(Bembel::SuperSpace<TestOperatorDivC> const&, int):
✓ Branch 0 taken 489352 times.
✓ Branch 1 taken 77 times.
489839 for (int k = 0; k < size2; ++k) {
394
2/4
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MaxwellSingleLayerOperator, 1u>::makeMatrix(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int):
✓ Branch 2 taken 408 times.
✗ Branch 3 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDivC, 1u>::makeMatrix(Bembel::SuperSpace<TestOperatorDivC> const&, int):
✓ Branch 2 taken 489352 times.
✗ Branch 3 not taken.
489760 trips.push_back(Eigen::Triplet<double>(info2.rows[k] + info1.num_dc_dof,
395 979520 info2.cols[k] + info1.num_c_dof,
396 489760 info2.vals[k]));
397 }
398 79 Eigen::SparseMatrix<double> local_matrix(
399
2/4
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MaxwellSingleLayerOperator, 1u>::makeMatrix(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDivC, 1u>::makeMatrix(Bembel::SuperSpace<TestOperatorDivC> const&, int):
✓ Branch 1 taken 77 times.
✗ Branch 2 not taken.
79 info1.num_dc_dof + info2.num_dc_dof, info1.num_c_dof + info2.num_c_dof);
400
2/4
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MaxwellSingleLayerOperator, 1u>::makeMatrix(Bembel::SuperSpace<Bembel::MaxwellSingleLayerOperator> const&, int):
✓ Branch 3 taken 2 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDivC, 1u>::makeMatrix(Bembel::SuperSpace<TestOperatorDivC> const&, int):
✓ Branch 3 taken 77 times.
✗ Branch 4 not taken.
79 local_matrix.setFromTriplets(trips.begin(), trips.end());
401
402 158 return local_matrix;
403 79 }
404 };
405
406 /**
407 * \brief Specification of the struct for the discontinuous case.
408 *
409 * This functions assembles scalar smooth tensor product B-splines according to
410 * the knot repetition. The polynomial degree in x and y direction is the same.
411 */
412 template <typename Derived>
413 struct projector_matrixmaker_<Derived, DifferentialForm::Discontinuous> {
414 101 static Eigen::SparseMatrix<double> makeMatrix(
415 const SuperSpace<Derived>& super_space, const int knotrepetition) {
416
8/16
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::DummyOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::DummyOperator> const&, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::HelmholtzSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int):
✓ Branch 1 taken 3 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::HomogenisedLaplaceSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::LaplaceBeltramiOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::LaplaceSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MassMatrixScalarCont, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorC, 2u>::makeMatrix(Bembel::SuperSpace<TestOperatorC> const&, int):
✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDisc, 2u>::makeMatrix(Bembel::SuperSpace<TestOperatorDisc> const&, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
101 const auto info = ProjectorRoutines::makeLocalProjectionTriplets<Derived>(
417 101 super_space, super_space.get_polynomial_degree() + 1,
418 101 super_space.get_polynomial_degree() + 1, knotrepetition);
419 101 const int size = info.vals.size();
420 101 std::vector<Eigen::Triplet<double>> trips;
421
16/16
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::DummyOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::DummyOperator> const&, int):
✓ Branch 0 taken 4240 times.
✓ Branch 1 taken 4 times.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::HelmholtzSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int):
✓ Branch 0 taken 481 times.
✓ Branch 1 taken 3 times.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::HomogenisedLaplaceSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int):
✓ Branch 0 taken 120 times.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::LaplaceBeltramiOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int):
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::LaplaceSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int):
✓ Branch 0 taken 97 times.
✓ Branch 1 taken 2 times.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MassMatrixScalarCont, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int):
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 1 time.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorC, 2u>::makeMatrix(Bembel::SuperSpace<TestOperatorC> const&, int):
✓ Branch 0 taken 560920 times.
✓ Branch 1 taken 64 times.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDisc, 2u>::makeMatrix(Bembel::SuperSpace<TestOperatorDisc> const&, int):
✓ Branch 0 taken 6628 times.
✓ Branch 1 taken 24 times.
572635 for (int k = 0; k < size; ++k) {
422
8/16
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::DummyOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::DummyOperator> const&, int):
✓ Branch 1 taken 4240 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::HelmholtzSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int):
✓ Branch 1 taken 481 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::HomogenisedLaplaceSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int):
✓ Branch 1 taken 120 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::LaplaceBeltramiOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::LaplaceSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int):
✓ Branch 1 taken 97 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MassMatrixScalarCont, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorC, 2u>::makeMatrix(Bembel::SuperSpace<TestOperatorC> const&, int):
✓ Branch 1 taken 560920 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDisc, 2u>::makeMatrix(Bembel::SuperSpace<TestOperatorDisc> const&, int):
✓ Branch 1 taken 6628 times.
✗ Branch 2 not taken.
572534 trips.push_back(
423 1145068 Eigen::Triplet<double>(info.rows[k], info.cols[k], info.vals[k]));
424 }
425
8/16
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::DummyOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::DummyOperator> const&, int):
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::HelmholtzSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int):
✓ Branch 1 taken 3 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::HomogenisedLaplaceSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::LaplaceBeltramiOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::LaplaceSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int):
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MassMatrixScalarCont, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int):
✓ Branch 1 taken 1 time.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorC, 2u>::makeMatrix(Bembel::SuperSpace<TestOperatorC> const&, int):
✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDisc, 2u>::makeMatrix(Bembel::SuperSpace<TestOperatorDisc> const&, int):
✓ Branch 1 taken 24 times.
✗ Branch 2 not taken.
101 Eigen::SparseMatrix<double> local_matrix(info.num_dc_dof, info.num_c_dof);
426
8/16
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::DummyOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::DummyOperator> const&, int):
✓ Branch 3 taken 4 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::HelmholtzSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::HelmholtzSingleLayerOperator> const&, int):
✓ Branch 3 taken 3 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::HomogenisedLaplaceSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::HomogenisedLaplaceSingleLayerOperator> const&, int):
✓ Branch 3 taken 2 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::LaplaceBeltramiOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::LaplaceBeltramiOperator> const&, int):
✓ Branch 3 taken 1 time.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::LaplaceSingleLayerOperator, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::LaplaceSingleLayerOperator> const&, int):
✓ Branch 3 taken 2 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<Bembel::MassMatrixScalarCont, 2u>::makeMatrix(Bembel::SuperSpace<Bembel::MassMatrixScalarCont> const&, int):
✓ Branch 3 taken 1 time.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorC, 2u>::makeMatrix(Bembel::SuperSpace<TestOperatorC> const&, int):
✓ Branch 3 taken 64 times.
✗ Branch 4 not taken.
Bembel::ProjectorRoutines::projector_matrixmaker_<TestOperatorDisc, 2u>::makeMatrix(Bembel::SuperSpace<TestOperatorDisc> const&, int):
✓ Branch 3 taken 24 times.
✗ Branch 4 not taken.
101 local_matrix.setFromTriplets(trips.begin(), trips.end());
427
428 202 return local_matrix;
429 101 }
430 };
431 } // namespace ProjectorRoutines
432
433 } // namespace Bembel
434
435 #endif // BEMBEL_SRC_ANSATZSPACE_PROJECTOR_HPP_
436