From: heltai Date: Wed, 4 Dec 2013 16:03:57 +0000 (+0000) Subject: Removed missing instantiations X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0776523341df4b02ace0b415adeed5aead1fc1c8;p=dealii-svn.git Removed missing instantiations git-svn-id: https://svn.dealii.org/branches/branch_manifold_id@31879 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/grid/tria_boundary_lib.h b/deal.II/include/deal.II/grid/tria_boundary_lib.h index a6f63a3ebb..20e2b5416f 100644 --- a/deal.II/include/deal.II/grid/tria_boundary_lib.h +++ b/deal.II/include/deal.II/grid/tria_boundary_lib.h @@ -88,9 +88,9 @@ public: * this class and the documentation of the * base class. */ - virtual Point - get_new_point (const std::vector > &surrounding_points, - const std::vector &weights) const; +// virtual Point +// get_new_point (const std::vector > &surrounding_points, +// const std::vector &weights) const; /** * Refer to the general documentation of @@ -274,9 +274,9 @@ public: * this class and the documentation of the * base class. */ - virtual Point - get_new_point (const std::vector > &surrounding_points, - const std::vector &weights) const; +// virtual Point +// get_new_point (const std::vector > &surrounding_points, +// const std::vector &weights) const; /** @@ -418,9 +418,9 @@ public: * this class and the documentation of the * base class. */ - virtual Point - get_new_point (const std::vector > &surrounding_points, - const std::vector &weights) const; +// virtual Point +// get_new_point (const std::vector > &surrounding_points, +// const std::vector &weights) const; /** @@ -604,9 +604,9 @@ public: * this class and the documentation of the * base class. */ - virtual Point - get_new_point (const std::vector > &surrounding_points, - const std::vector &weights) const; +// virtual Point +// get_new_point (const std::vector > &surrounding_points, +// const std::vector &weights) const; /** @@ -724,9 +724,9 @@ public: * this class and the documentation of the * base class. */ - virtual Point - get_new_point (const std::vector > &surrounding_points, - const std::vector &weights) const; +// virtual Point +// get_new_point (const std::vector > &surrounding_points, +// const std::vector &weights) const; /** @@ -820,9 +820,9 @@ public: * this class and the documentation of the * base class. */ - virtual Point - get_new_point (const std::vector > &surrounding_points, - const std::vector &weights) const; +// virtual Point +// get_new_point (const std::vector > &surrounding_points, +// const std::vector &weights) const; /** diff --git a/deal.II/source/grid/tria_boundary_lib.cc b/deal.II/source/grid/tria_boundary_lib.cc index 86d512782c..dfe6410b08 100644 --- a/deal.II/source/grid/tria_boundary_lib.cc +++ b/deal.II/source/grid/tria_boundary_lib.cc @@ -25,8 +25,6 @@ DEAL_II_NAMESPACE_OPEN - - template CylinderBoundary::CylinderBoundary (const double radius, const unsigned int axis) @@ -487,23 +485,23 @@ HyperBallBoundary::HyperBallBoundary (const Point p, compute_radius_automatically(false) {} -template -Point -HyperBallBoundary::get_new_point (const std::vector > &surrounding_points, - const std::vector &weights) const -{ - Assert(surrounding_points.size() == weights.size(), - ExcDimensionMismatch(surrounding_points.size(), weights.size())); - - double radius = 0; - for(unsigned int i=0; i p = FlatManifold::get_new_point(surrounding_points, weights); - p = p-center; - p = p/p.norm()*radius+center; - return p; -} +// template +// Point +// HyperBallBoundary::get_new_point (const std::vector > &surrounding_points, +// const std::vector &weights) const +// { +// Assert(surrounding_points.size() == weights.size(), +// ExcDimensionMismatch(surrounding_points.size(), weights.size())); + +// double radius = 0; +// for(unsigned int i=0; i p = FlatManifold::get_new_point(surrounding_points, weights); +// p = p-center; +// p = p/p.norm()*radius+center; +// return p; +// } template