|
| 1 | +// --------------------------------------------------------------------- |
| 2 | +// |
| 3 | +// Copyright (C) 2014 - 2020 by the pi-BEM authors. |
| 4 | +// |
| 5 | +// This file is part of the pi-BEM library. |
| 6 | +// |
| 7 | +// The pi-BEM is free software; you can use it, redistribute |
| 8 | +// it, and/or modify it under the terms of the GNU Lesser General |
| 9 | +// Public License version 2.1 as published by the Free Software Foundation. |
| 10 | +// The full text of the license can be found in the file LICENSE at |
| 11 | +// the top level of the pi-BEM distribution. |
| 12 | +// |
| 13 | +// Authors: Nicola Giuliani, Andrea Mola, Luca Heltai |
1 | 14 |
|
2 | 15 | #ifndef bem_problem_h |
3 | 16 | #define bem_problem_h |
|
23 | 36 | #include <deal.II/lac/affine_constraints.h> |
24 | 37 | #include <deal.II/lac/block_sparsity_pattern.h> |
25 | 38 | #include <deal.II/lac/full_matrix.h> |
26 | | -#include <deal.II/lac/matrix_lib.h> |
27 | 39 | #include <deal.II/lac/precondition.h> |
28 | 40 | #include <deal.II/lac/solver_control.h> |
29 | 41 | #include <deal.II/lac/solver_gmres.h> |
@@ -311,8 +323,8 @@ class BEMProblem : public deal2lkit::ParameterAcceptor |
311 | 323 |
|
312 | 324 |
|
313 | 325 |
|
314 | | - std_cxx1x::shared_ptr<Quadrature<dim - 1>> quadrature; |
315 | | - unsigned int quadrature_order; |
| 326 | + std::shared_ptr<Quadrature<dim - 1>> quadrature; |
| 327 | + unsigned int quadrature_order; |
316 | 328 |
|
317 | 329 | /// the number of standard quadrature points |
318 | 330 | /// and singular kernel quadrature to be |
|
0 commit comments