From e1470ef24e07e4afd90e852bc00d84ea360f33f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Kl=C3=B6fkorn?= <robertk@mathematik.uni-stuttgart.de> Date: Mon, 1 Aug 2005 15:15:53 +0000 Subject: [PATCH] Added check for oppositeVertex, to use only when the vertices are set correctly. git-svn-id: https://dune.mathematik.uni-freiburg.de/svn/alugrid/trunk@330 0d966ed9-3843-0410-af09-ebfb50bd7c74 --- src/serial/gitter_impl.h | 32 ++++++++++++-------------------- 1 file changed, 12 insertions(+), 20 deletions(-) diff --git a/src/serial/gitter_impl.h b/src/serial/gitter_impl.h index 5e7623dd4..819db78ee 100644 --- a/src/serial/gitter_impl.h +++ b/src/serial/gitter_impl.h @@ -50,26 +50,6 @@ class GitterBasis : public virtual Gitter, public Gitter :: Geometric { int _idn ; } ; -#if 0 - // organizes the indices for boundary faces and - // the opposite vertices for ghost cells - class Dune_hbndDefault - { - protected: - int _index; - - public: - inline Dune_hbndDefault (); - - inline int getIndex () const; - inline void setIndex ( int idx ); - - protected: - inline void splitGhost () {} - inline void setGhost (Gitter::helement_STI *) {} - }; -#endif - class Dune_Hbnd3Default { protected: @@ -402,8 +382,14 @@ inline void GitterBasis :: Objects :: Dune_Hbnd3Default inline const double (& GitterBasis :: Objects :: Dune_Hbnd3Default ::oppositeVertex (int i) const) [3] { +#ifdef __USE_INTERNAL_FACES__ assert((i >= 0) && (i < _dimvx)); return _oppVx; +#else + cerr << "Dune_Hbnd3Default ::oppositeVertex is not supported when compiled without the '__USE_INTERNAL_FACES__' cpp variable! in: "<<__FILE__<<" line: " <<__LINE__<<endl; + abort(); + return _oppVx; +#endif } inline int GitterBasis :: Objects :: Dune_Hbnd3Default :: dimVx () const { return _dimvx; } @@ -427,8 +413,14 @@ inline void GitterBasis :: Objects :: Dune_Hbnd4Default inline const double (& GitterBasis :: Objects :: Dune_Hbnd4Default ::oppositeVertex (int i) const) [3] { +#ifdef __USE_INTERNAL_FACES__ assert((i >= 0) && (i < _dimvx)); return _oppVx[i]; +#else + cerr << "Dune_Hbnd4Default ::oppositeVertex is not supported when compiled without the '__USE_INTERNAL_FACES__' cpp variable! in: "<<__FILE__<<" line: " <<__LINE__<<endl; + abort(); + return _oppVx[i]; +#endif } inline int GitterBasis :: Objects :: Dune_Hbnd4Default :: dimVx () const { return _dimvx; } -- GitLab