@@ -126,8 +126,8 @@ class BEMProblem : public ParameterAcceptor
126126 const MPI_Comm comm = MPI_COMM_WORLD );
127127
128128 void
129- solve (TrilinosWrappers::MPI ::Vector & phi,
130- TrilinosWrappers::MPI ::Vector & dphi_dn,
129+ solve (TrilinosWrappers::MPI ::Vector & phi,
130+ TrilinosWrappers::MPI ::Vector & dphi_dn,
131131 const TrilinosWrappers::MPI ::Vector &tmp_rhs);
132132
133133 // / This function takes care of the proper initialization of all the elements
@@ -151,8 +151,8 @@ class BEMProblem : public ParameterAcceptor
151151 // / have kept this function serial. We stress that it needs to be called only
152152 // / once.
153153 void
154- compute_constraints (IndexSet & c_cpu_set,
155- AffineConstraints<double > & constraints,
154+ compute_constraints (IndexSet & c_cpu_set,
155+ AffineConstraints<double > & constraints,
156156 const TrilinosWrappers::MPI ::Vector &tmp_rhs);
157157
158158 // private:
@@ -169,8 +169,10 @@ class BEMProblem : public ParameterAcceptor
169169 virtual void
170170 parse_parameters (ParameterHandler &prm);
171171
172- // / This function computes the free coefficients appearing in the hypersingular BIE.
173- void compute_hypersingular_free_coeffs ();
172+ // / This function computes the free coefficients appearing in the
173+ // / hypersingular BIE.
174+ void
175+ compute_hypersingular_free_coeffs ();
174176
175177 // / This function computes the fraction of solid angles seen by our domain. We
176178 // / use the Double Layer Operator (through the Neumann matrix) to determine
@@ -196,15 +198,15 @@ class BEMProblem : public ParameterAcceptor
196198 // / vector src. The result is stored
197199 // / in the vector dst.
198200 void
199- vmult (TrilinosWrappers::MPI ::Vector & dst,
201+ vmult (TrilinosWrappers::MPI ::Vector & dst,
200202 const TrilinosWrappers::MPI ::Vector &src) const ;
201203
202204 // / The second method computes the
203205 // / right hand side vector of the
204206 // / system.
205207
206208 void
207- compute_rhs (TrilinosWrappers::MPI ::Vector & dst,
209+ compute_rhs (TrilinosWrappers::MPI ::Vector & dst,
208210 const TrilinosWrappers::MPI ::Vector &src) const ;
209211
210212 // / The third method computes the
@@ -221,8 +223,8 @@ class BEMProblem : public ParameterAcceptor
221223 // / Depending on the resolution stategy we go whether for the direct or fma
222224 // / strategy.
223225 void
224- solve_system (TrilinosWrappers::MPI ::Vector & phi,
225- TrilinosWrappers::MPI ::Vector & dphi_dn,
226+ solve_system (TrilinosWrappers::MPI ::Vector & phi,
227+ TrilinosWrappers::MPI ::Vector & dphi_dn,
226228 const TrilinosWrappers::MPI ::Vector &tmp_rhs);
227229
228230
@@ -349,13 +351,14 @@ class BEMProblem : public ParameterAcceptor
349351 // / solution and alpha vectors
350352 TrilinosWrappers::MPI ::Vector sol;
351353 TrilinosWrappers::MPI ::Vector alpha;
352- // / an alternatively computed alpha vector (obtained with geometric computations)
354+ // / an alternatively computed alpha vector (obtained with geometric
355+ // / computations)
353356 TrilinosWrappers::MPI ::Vector hyp_alpha;
354357 // / a set of distributed vectors which contain all the entries of the
355- // / C_ij tensor appearing in the hypersingular BIE
358+ // / C_ij tensor appearing in the hypersingular BIE
356359 std::vector<TrilinosWrappers::MPI ::Vector> C_ij;
357360 // / a set of distributed vectors which contain all the entries of the
358- // / b_i vector appearing in the hypersingular BIE
361+ // / b_i vector appearing in the hypersingular BIE
359362 std::vector<TrilinosWrappers::MPI ::Vector> b_i;
360363
361364 mutable TrilinosWrappers::MPI ::Vector serv_phi;
@@ -444,9 +447,6 @@ class BEMProblem : public ParameterAcceptor
444447 bool have_dirichlet_bc;
445448
446449 BEMFMA <dim> fma;
447-
448-
449-
450450};
451451
452452#endif
0 commit comments