From 2c43d55e65480841682251b2d94a58d8a30f02d2 Mon Sep 17 00:00:00 2001 From: wolf Date: Wed, 23 May 2001 14:14:06 +0000 Subject: [PATCH] Fix various issues. git-svn-id: https://svn.dealii.org/trunk@4723 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/boundaries.cc | 4 ++-- tests/deal.II/derivative_approximation.cc | 2 +- tests/deal.II/dof_renumbering.cc | 2 +- tests/deal.II/error_estimator.cc | 2 +- tests/deal.II/filtered_matrix.cc | 4 ++-- tests/deal.II/matrices.cc | 2 +- tests/deal.II/support_point_map.cc | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/deal.II/boundaries.cc b/tests/deal.II/boundaries.cc index 413e0e1371..0a5d3cea68 100644 --- a/tests/deal.II/boundaries.cc +++ b/tests/deal.II/boundaries.cc @@ -85,7 +85,7 @@ check () Triangulation tr; if (dim==2) { - GridGenerator::hyper_ball(tr); + GridGenerator::hyper_ball(tr, Point(), 1); } else GridGenerator::hyper_cube(tr, -1./sqrt(dim),1./sqrt(dim)); @@ -137,7 +137,7 @@ check () deallog << "Interpolated boundary values" << std::endl; std::map interpolated_bv; VectorTools::interpolate_boundary_values (mapping, dof, function_map, - interpolated_bv); + interpolated_bv, std::vector()); write_map (interpolated_bv); // project boundary values diff --git a/tests/deal.II/derivative_approximation.cc b/tests/deal.II/derivative_approximation.cc index d879b2a1bf..fea9cc52d2 100644 --- a/tests/deal.II/derivative_approximation.cc +++ b/tests/deal.II/derivative_approximation.cc @@ -40,7 +40,7 @@ check () Triangulation tr; if (dim==2) - GridGenerator::hyper_ball(tr); + GridGenerator::hyper_ball(tr, Point(), 1); else GridGenerator::hyper_cube(tr, -1,1); tr.refine_global (1); diff --git a/tests/deal.II/dof_renumbering.cc b/tests/deal.II/dof_renumbering.cc index 69d90e1aaa..8ab6400484 100644 --- a/tests/deal.II/dof_renumbering.cc +++ b/tests/deal.II/dof_renumbering.cc @@ -59,7 +59,7 @@ check () Triangulation tr; if (dim==2) - GridGenerator::hyper_ball(tr); + GridGenerator::hyper_ball(tr, Point(), 1); else GridGenerator::hyper_cube(tr, -1,1); tr.refine_global (1); diff --git a/tests/deal.II/error_estimator.cc b/tests/deal.II/error_estimator.cc index 2f1c2711d3..6c2f7830a7 100644 --- a/tests/deal.II/error_estimator.cc +++ b/tests/deal.II/error_estimator.cc @@ -77,7 +77,7 @@ check () Triangulation tr; if (dim==2) - GridGenerator::hyper_ball(tr); + GridGenerator::hyper_ball(tr, Point(), 1); else GridGenerator::hyper_cube(tr, -1,1); tr.refine_global (1); diff --git a/tests/deal.II/filtered_matrix.cc b/tests/deal.II/filtered_matrix.cc index 08d47bf793..b04f76d817 100644 --- a/tests/deal.II/filtered_matrix.cc +++ b/tests/deal.II/filtered_matrix.cc @@ -101,7 +101,7 @@ check () CosineFunction cosine; if (dim==2) - GridGenerator::hyper_ball(tr); + GridGenerator::hyper_ball(tr, Point(), 1); else GridGenerator::hyper_cube(tr, -1,1); @@ -163,7 +163,7 @@ check () // interpolate boundary values std::map bv; - VectorTools::interpolate_boundary_values (mapping, dof, 0, cosine, bv); + VectorTools::interpolate_boundary_values (mapping, dof, 0, cosine, bv, std::vector()); // the cosine has too many zero // values on the boundary of the // domain, so reset the elements to diff --git a/tests/deal.II/matrices.cc b/tests/deal.II/matrices.cc index 0794de877b..19d526c181 100644 --- a/tests/deal.II/matrices.cc +++ b/tests/deal.II/matrices.cc @@ -119,7 +119,7 @@ check () { Triangulation tr; if (dim==2) - GridGenerator::hyper_ball(tr); + GridGenerator::hyper_ball(tr, Point(), 1); else GridGenerator::hyper_cube(tr, -1,1); tr.refine_global (1); diff --git a/tests/deal.II/support_point_map.cc b/tests/deal.II/support_point_map.cc index 0c131cf340..ea16c04bea 100644 --- a/tests/deal.II/support_point_map.cc +++ b/tests/deal.II/support_point_map.cc @@ -82,7 +82,7 @@ check () Triangulation tr; if (dim==2) { - GridGenerator::hyper_ball(tr); + GridGenerator::hyper_ball(tr, Point(), 1); } else GridGenerator::hyper_cube(tr, -1./sqrt(dim),1./sqrt(dim)); -- 2.39.5