This file is indexed.

/usr/include/dune/grid/test/checkintersectionit.cc is in libdune-grid-dev 2.3.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#ifndef DUNE_CHECK_INTERSECTIONITERATOR_CC
#define DUNE_CHECK_INTERSECTIONITERATOR_CC

#include <cmath>

#include <dune/geometry/quadraturerules.hh>
#include <dune/geometry/referenceelements.hh>

#include "checkgeometry.cc"

/** \file
    \brief Tests for the IntersectionIterator
 */

struct CheckIntersectionIteratorErrorState
{
  unsigned int sumNormalsNonZero;

  CheckIntersectionIteratorErrorState ()
    : sumNormalsNonZero( 0 )
  {}
};


template< class Grid >
struct EnableIntersectionIteratorReverseCheck
{
  static const bool v = true;
};


// Check that normal and normal2 pointing in the same direction
template< class ctype, int dimworld, class String >
inline void checkParallel ( const Dune::FieldVector< ctype, dimworld > &normal,
                            const Dune::FieldVector< ctype, dimworld > &refNormal,
                            const String & name )
{
  if( (normal.two_norm()*refNormal.two_norm() - normal*refNormal) > 1e-8 )
  {
    std::cerr << "Error: " << name << " does not point in the direction of outer normal." << std::endl;
    std::cerr << "       " << name << " = " << normal << ", outer normal = " << refNormal << std :: endl;
    assert( false );
  }
}


// Check whether the normal is orthogonal to the intersection, i.e.,
// whether (J^-1 * n) = 0. Here J is the jacobian of the intersection
// geometry (geometry) and n is a normal.
template< class ctype, int dimworld, class JacobianInverseTransposed, class String >
inline void checkJIn ( const Dune :: FieldVector< ctype, dimworld > &normal,
                       const JacobianInverseTransposed &jit,
                       const String & name )
{
  const int facedim = JacobianInverseTransposed::cols;
  Dune :: FieldVector< ctype, facedim > x( ctype( 0 ) );
  jit.umtv( normal, x );
  if (x.infinity_norm() > 1e-8)
  {
    const Dune::FieldMatrix< ctype, dimworld, facedim > &mjit = jit;
    std :: cerr << "Error:  (J^-1 * n) != 0." << std :: endl;
    std :: cerr << "       " << name << " = " << normal
                << std :: endl;
    std :: cerr << "       J^-1^T = \n" << mjit << std::endl;
    assert( false );
  }
}


template< class GridView >
void checkIntersectionAssignment ( const GridView &view, const typename GridView::template Codim< 0 >::Iterator &l )
{
  typedef typename GridView::template Codim< 0 >::Iterator Iterator;
  typedef typename GridView::IntersectionIterator IntersectionIterator;

  Iterator l1( l );
  Iterator l2( l );
  ++l2;

  if( l2 != view.template end< 0 >() )
  {
    IntersectionIterator it1 = view.ibegin( *l1 );
    IntersectionIterator it2 = view.ibegin( *l2 );

    // verify prerequisites
    assert( l1 != l2 );
    assert( it1 != it2 );
    assert( it1->inside() == l1 );
    assert( it2->inside() == l2 );

    // check assignment
    it1 = it2;
    assert( it1 == it2 );
    assert( it1->inside() == l2 );
  }
}


template< class Intersection >
void checkIntersection ( const Intersection &intersection, bool isCartesian = false )
{
  typedef typename Intersection::ctype ctype;

  typedef typename Intersection::Entity Entity;
  typedef typename Intersection::EntityPointer EntityPointer;
  typedef typename Intersection::LocalGeometry LocalGeometry;
  typedef typename Intersection::Geometry Geometry;

  const int dimension = Intersection::dimension;
  const int mydimension = Intersection::mydimension;

  // check consistency of exported types

  dune_static_assert( (Dune::is_same< ctype, typename Entity::ctype >::value),
                      "Type Intersection::ctype differs from Intersection::Entity::ctype." );
  dune_static_assert( (Dune::is_same< ctype, typename LocalGeometry::ctype >::value),
                      "Type Intersection::ctype differs from Intersection::LocalGeometry::ctype." );
  dune_static_assert( (Dune::is_same< ctype, typename Geometry::ctype >::value),
                      "Type Intersection::ctype differs from Intersection::Geometry::ctype." );
  dune_static_assert( (Dune::is_same< Entity, typename EntityPointer::Entity >::value),
                      "Type Intersection::EntityPointer::Entity differs from Intersection::Entity." );

  // cache some information on the intersection

  const int indexInInside = intersection.indexInInside();

  const LocalGeometry geometryInInside = intersection.geometryInInside();
  const Dune::ReferenceElement< ctype, mydimension > &refFace
    = Dune::ReferenceElements< ctype, mydimension >::general( intersection.type() );

  // create quadrature rule as a set of test points

  const Dune::QuadratureType::Enum qt = Dune::QuadratureType::Gauss;
  const Dune::QuadratureRule< ctype, mydimension > &quadrature
    = Dune::QuadratureRules< ctype, mydimension >::rule( intersection.type(), 3, qt );

  // obtain inside entity, its geometry and reference element

  const EntityPointer pInside = intersection.inside();
  const Entity &inside = *pInside;
  const typename Entity::Geometry insideGeometry = inside.geometry();
  const Dune::ReferenceElement< ctype, dimension > &refElement
    = Dune::ReferenceElements< ctype, dimension >::general( inside.type() );

  // check that boundary id has positive value and that intersection is conforming

  if( intersection.boundary() )
  {
    if( !intersection.conforming() && !intersection.neighbor() )
      DUNE_THROW( Dune::GridError, "Boundary intersections must be conforming." );
  }

  // check the geometry

  const Geometry geometry = intersection.geometry();
  checkGeometry( geometry );

  if( geometry.type() != intersection.type() )
  {
    std::cerr << "Error: Reference geometry type for intersection and its global geometry differ." << std::endl;
    assert( false );
  }

  // check the geometryInInside

  checkLocalGeometry( geometryInInside, inside.type(), "geometryInInside" );

  if( geometryInInside.corners() != geometry.corners() )
    DUNE_THROW( Dune::GridError, "Intersection's geometry is inconsistent with concatenation of inside entity's geometry and intersection's geometryInInside.");

  for( std::size_t i = 0; i < quadrature.size(); ++i )
  {
    const Dune::FieldVector< ctype, mydimension > &pt = quadrature[ i ].position();

    typename Geometry::GlobalCoordinate globalPos = geometry.global( pt );
    typename Geometry::GlobalCoordinate localPos = insideGeometry.global( geometryInInside.global( pt ) );

    if( (globalPos - localPos).infinity_norm() > 1e-6 )
    {
      std::cerr << "Error: Intersection's geometry is inconsistent with concatenation of inside entity's geometry and intersection's geometryInInside." << std::endl;

      std::cerr << "       inside()->geometry().global( intersection.geometryInInside().global( x ) ) != intersection.geometry().global( x )" << std::endl;
      std::cerr << "       x = " << pt << std::endl;
      std::cerr << "       interesction.geometry() = " << geometry.corner( 0 );
      for( int i = 1; i < geometry.corners(); ++i )
        std::cerr << " | " << geometry.corner( i );
      std::cerr << std::endl;

      std::cerr << "       intersection.geometryInInside() = " << geometryInInside.corner( 0 );
      for( int i = 1; i < geometryInInside.corners(); ++i )
        std::cerr << " | " << geometryInInside.corner( i );
      std::cerr << std::endl;

      std::cerr << "       inside()->geometry() = " << insideGeometry.corner( 0 );
      for( int i = 1; i < insideGeometry.corners(); ++i )
        std::cerr << " | " << insideGeometry.corner( i );
      std::cerr << std::endl;

      assert( false );
    }
  }

  // check geometryInOutside

  if( intersection.neighbor() )
  {
    const EntityPointer pOutside = intersection.outside();
    const Entity &outside = *pOutside;

    const LocalGeometry geometryInOutside = intersection.geometryInOutside();
    checkLocalGeometry( geometryInOutside, outside.type(), "geometryInOutside" );

    if( geometryInOutside.corners() != geometry.corners() )
      DUNE_THROW( Dune::GridError, "Intersection's geometry is inconsistent with concatenation of outside entity's geometry and intersection's geometryInOutside.");

    if( !intersection.boundary() )
    {
      const typename Entity::Geometry outsideGeometry = outside.geometry();

      for( std::size_t i = 0; i < quadrature.size(); ++i )
      {
        const Dune::FieldVector< ctype, mydimension > &pt = quadrature[ i ].position();

        typename Geometry::GlobalCoordinate globalPos = geometry.global( pt );
        typename Geometry::GlobalCoordinate localPos = outsideGeometry.global( geometryInOutside.global( pt ) );

        if( (globalPos - localPos).infinity_norm() > 1e-6 )
        {
          std::cerr << "Error: Intersection's geometry is inconsistent with concatenation of outside entity's geometry and intersection's geometryInOutside." << std::endl;

          std::cerr << "       outside()->geometry().global( intersection.geometryInOutside().global( x ) ) != intersection.geometry().global( x )" << std::endl;
          std::cerr << "       x = " << pt << std::endl;
          std::cerr << "       interesction.geometry() = " << geometry.corner( 0 );
          for( int i = 1; i < geometry.corners(); ++i )
            std::cerr << " | " << geometry.corner( i );
          std::cerr << std::endl;

          std::cerr << "       intersection.geometryOutInside() = " << geometryInOutside.corner( 0 );
          for( int i = 1; i < geometryInOutside.corners(); ++i )
            std::cerr << " | " << geometryInOutside.corner( i );
          std::cerr << std::endl;

          std::cerr << "       outside()->geometry() = " << outsideGeometry.corner( 0 );
          for( int i = 1; i < outsideGeometry.corners(); ++i )
            std::cerr << " | " << outsideGeometry.corner( i );
          std::cerr << std::endl;

          assert( false );
        }
      }
    }
  }

  // check normal vectors

  for( std::size_t i = 0; i < quadrature.size(); ++i )
  {
    const Dune::FieldVector< ctype, mydimension > &pt = quadrature[ i ].position();
    const typename Geometry::JacobianInverseTransposed &jit = geometry.jacobianInverseTransposed( pt );

    // independently calculate the integration outer normal for the inside entity
    const typename LocalGeometry::GlobalCoordinate xInside = geometryInInside.global( pt );
    const typename LocalGeometry::GlobalCoordinate &refNormal = refElement.integrationOuterNormal( indexInInside );
    typename Geometry::GlobalCoordinate refIntNormal;
    insideGeometry.jacobianInverseTransposed( xInside ).mv( refNormal, refIntNormal );

    // note: refElement.template geometry< 1 >( indexInInside ) is affine,
    //       hence we may use any point to obtain the integrationElement.
    refIntNormal *= insideGeometry.integrationElement( xInside ) * geometryInInside.integrationElement( pt )
                    / refElement.template geometry< 1 >( indexInInside ).integrationElement( pt );

    // check outer normal
    const typename Intersection::GlobalCoordinate normal
      = intersection.outerNormal( pt );
    checkParallel( normal, refIntNormal, "outerNormal" );

    // check normal vector is orthogonal to all vectors connecting the vertices
    // note: This only makes sense for non-curved faces. As there is no method
    //       to check curvature, we only check this for affine surface.
    if( geometry.affine() )
    {
      for( int c = 1; c < geometry.corners(); ++c )
      {
        typename Geometry::GlobalCoordinate x = geometry.corner( c-1 );
        x -= geometry.corner( c );
        if( x*normal >= 1e3*std::numeric_limits< ctype >::epsilon() )
        {
          std::cerr << "outerNormal not orthogonal to line between corner "
                    << (c-1) << " and corner " << c << "." << std::endl;
          assert( false );
        }
      }
    }

    // check consistency with JacobianInverseTransposed (J^-1 * n) = 0,
    // where J denotes the Jacobian of the intersection's geometry and n is a
    // normal.
    checkJIn( normal, jit, "outerNormal" );

    // check integration outer normal

    const typename Intersection::GlobalCoordinate intNormal = intersection.integrationOuterNormal( pt );
    const ctype det = geometry.integrationElement( pt );
    if( std::abs( det - intNormal.two_norm() ) > 1e-8 )
    {
      std::cerr << "Error: integrationOuterNormal yields wrong length." << std::endl;
      std::cerr << "       |integrationOuterNormal| = " << intNormal.two_norm()
                << ", integrationElement = " << det << std::endl;
      assert( false );
    }

    checkJIn( intNormal, jit, "integrationOuterNormal" );
    checkParallel( intNormal, refIntNormal, "integrationOuterNormal" );

    if( (intNormal - refIntNormal).two_norm() > 1e-8 )
    {
      std::cerr << "Error: Wrong integration outer normal (" << intNormal
                << ", should be " << refIntNormal << ")." << std::endl;
      std::cerr << "       Intersection: " << geometry.corner( 0 );
      for( int c = 1; c < geometry.corners(); ++c )
        std::cerr << ", " << geometry.corner( c );
      std::cerr << "." << std::endl;
      assert( false );
    }

    // check unit outer normal

    const typename Intersection::GlobalCoordinate unitNormal = intersection.unitOuterNormal( pt );
    if( std::abs( ctype( 1 ) - unitNormal.two_norm() ) > 1e-8 )
    {
      std::cerr << "Error: unitOuterNormal yields wrong length." << std::endl;
      std::cerr << "       |unitOuterNormal| = " << unitNormal.two_norm() << std::endl;
      assert( false );
    }

    checkJIn( unitNormal, jit, "unitOuterNormal" );
    checkParallel( unitNormal, refIntNormal, "unitOuterNormal" );

    // check normal for Cartesian grids

    if( isCartesian )
    {
      if( !geometry.affine() )
        DUNE_THROW( Dune::GridError, "Intersection's geometry is not affine, although isCartesian is true" );

      // check that unit normal of Cartesian grid is given in a specific way
      typename Intersection::GlobalCoordinate normal( 0 );
      normal[ indexInInside / 2 ] = 2 * (indexInInside % 2) - 1;

      if( (normal - unitNormal).infinity_norm() > 1e-8 )
        DUNE_THROW( Dune::GridError, "Unit normal is not in Cartesian format, although isCartesian is true" );
    }
  }

  // check center unit outer normal

  if( (intersection.centerUnitOuterNormal() - intersection.unitOuterNormal( refFace.position( 0, 0 ) )).two_norm() > 1e-8 )
  {
    std::cerr << "Error: centerUnitOuterNormal() does not match unitOuterNormal( "
              << refFace.position( 0, 0 ) << " )." << std::endl;
    std::cerr << "       centerUnitOuterNormal = " << intersection.centerUnitOuterNormal()
              << ", unitOuterNormal( " << refFace.position( 0, 0 ) << " ) = "
              << intersection.unitOuterNormal( refFace.position( 0, 0 ) ) << std::endl;
    assert( false );
  }
}


/** \brief Test the IntersectionIterator
 */
template< class GridViewType, class ErrorState >
void checkIntersectionIterator ( const GridViewType &view,
                                 const typename GridViewType::template Codim< 0 >::Iterator &eIt,
                                 ErrorState &errorState )
{
  typedef typename GridViewType::Grid GridType;
  typedef typename GridViewType::IntersectionIterator IntersectionIterator;
  typedef typename GridViewType::Intersection Intersection;

  typedef typename GridType::ctype ctype;

  typedef typename Intersection::EntityPointer EntityPointer;
  typedef typename Intersection::Entity Entity;

  const bool isCartesian = Dune::Capabilities::isCartesian< GridType >::v;
  const bool checkOutside = EnableIntersectionIteratorReverseCheck< GridType >::v;

  // check consistency of exported types

  dune_static_assert( (Dune::is_same< ctype, typename Intersection::ctype >::value),
                      "Type GridView::Grid::ctype differs from GridView::Intersection::ctype." );

  dune_static_assert( (Dune::is_same< Intersection, typename IntersectionIterator::Intersection >::value),
                      "Type GridView::Intersection differs from GridView::IntersectionIterator::Intersection." );

  dune_static_assert((static_cast<int>(Intersection::dimension)
                      == static_cast<int>(GridType::dimension)),"IntersectionIterator has wrong dimension");

  dune_static_assert((static_cast<int>(Intersection::dimensionworld)
                      == static_cast<int>(GridType::dimensionworld)),"IntersectionIterator has wrong dimensionworld");

  // initialize variables for element checks

  bool hasBoundaryIntersection = false;
  typename Intersection::GlobalCoordinate sumNormal( ctype( 0 ) );

  const IntersectionIterator iend = view.iend( *eIt );
  for( IntersectionIterator iIt = view.ibegin( *eIt ); iIt != iend; ++iIt )
  {
    const Intersection &intersection = *iIt;

    // perform intersection check

    checkIntersection( intersection, isCartesian );

    // check correctness of inside entity

    if( eIt != intersection.inside() )
    {
      std::cerr << "Error: Intersection's inside entity does not equal the entity the intersection iterator was started on." << std::endl;
      assert( false );
    }

    // check if conforming() method is compatible with static information on grid view
    if( GridViewType::conforming && !intersection.conforming() )
      DUNE_THROW( Dune::GridError, "Non-conforming intersection found in a conforming grid view." );

    // check symmetry of 'has-intersection-with'-relation

    if( intersection.neighbor() && checkOutside )
    {
      EntityPointer pOutside = intersection.outside();
      const Entity &outside = *pOutside;

      bool insideFound = false;

      const IntersectionIterator oiend = view.iend( outside );
      for( IntersectionIterator oiit = view.ibegin( outside ); oiit != oiend; ++oiit )
      {
        if( !oiit->neighbor() || (oiit->outside() != intersection.inside()) )
          continue;

        insideFound = true;

        if( oiit->indexInInside() != intersection.indexInOutside() )
        {
          std::cerr << "Error: symmetric intersection found, but with incorrect numbering." << std::endl;
          std::cerr << "       (from inside: indexInOutside = " << intersection.indexInOutside()
                    << ", from outside: indexInInside = " << oiit->indexInInside() << ")." << std::endl;
          assert( false );
        }
        if( oiit->indexInOutside() != intersection.indexInInside() )
        {
          std::cerr << "Error: symmetric intersection found, but with incorrect numbering." << std::endl;
          std::cerr << "       (from inside: indexInInside = " << intersection.indexInInside()
                    << ", from outside: indexInOutside = " << oiit->indexInOutside() << ")." << std::endl;
          assert( false );
        }

        if( oiit->boundary() != intersection.boundary() )
        {
          std::cerr << "Error: symmetric intersection found, but with incorrect boudary flag." << std::endl;
          std::cerr << "       (from inside: boundary = " << intersection.boundary()
                    << ", from outside: boundary = " << oiit->boundary() << ")." << std::endl;
          assert( false );
        }
      }

      if( !insideFound )
        DUNE_THROW( Dune::GridError, "Could not find inside entity through intersection iterator on outside entity." );
    }
    else if( !checkOutside )
    {
      static bool called = false;
      if( !called )
      {
        Dune::derr << "Warning: Skipping reverse intersection iterator check." << std::endl;
        called = true;
      }
    }

    // check consistency of conforming intersection

    if( intersection.conforming() && intersection.neighbor() && !intersection.boundary() )
    {
      EntityPointer pOutside = intersection.outside();
      const Entity &outside = *pOutside;

      const int indexInInside = intersection.indexInInside();
      const int indexInOutside = intersection.indexInOutside();

      const typename GridViewType::IndexSet &indexSet = view.indexSet();
      if( indexSet.subIndex( *eIt, indexInInside, 1 ) != indexSet.subIndex( outside, indexInOutside, 1 ) )
      {
        std::cerr << "Error: Index of conforming intersection differs when "
                  << "obtained from inside and outside." << std::endl;
        std::cerr << "       inside index = " << indexSet.subIndex( *eIt, indexInInside, 1 )
                  << ", outside index = " << indexSet.subIndex( outside, indexInOutside, 1 ) << std::endl;
        assert( false );
      }

      const typename GridType::LocalIdSet &localIdSet = view.grid().localIdSet();
      if( localIdSet.subId( *eIt, indexInInside, 1 ) != localIdSet.subId( outside, indexInOutside, 1 ) )
      {
        std::cerr << "Error: Local id of conforming intersection differs when "
                  << "obtained from inside and outside." << std::endl;
        std::cerr << "       inside id = " << localIdSet.subId( *eIt, indexInInside, 1 )
                  << ", outside id = " << localIdSet.subId( outside, indexInOutside, 1 ) << std::endl;
        assert( false );
      }

      const typename GridType::GlobalIdSet &globalIdSet = view.grid().globalIdSet();
      if( globalIdSet.subId( *eIt, indexInInside, 1 ) != globalIdSet.subId( outside, indexInOutside, 1 ) )
      {
        std::cerr << "Error: Global id of conforming intersection differs when "
                  << "obtained from inside and outside." << std::endl;
        std::cerr << "       inside id = " << globalIdSet.subId( *eIt, indexInInside, 1 )
                  << ", outside id = " << globalIdSet.subId( outside, indexInOutside, 1 ) << std::endl;
        assert( false );
      }
    }

    // update variables for element checks

    if( intersection.boundary() )
      hasBoundaryIntersection = true;

    const Dune::QuadratureType::Enum qt = Dune::QuadratureType::Gauss;
    const Dune::QuadratureRule< ctype, Intersection::mydimension > &quadrature
      = Dune::QuadratureRules< ctype, Intersection::mydimension >::rule( intersection.type(), 3, qt );
    for( std::size_t i = 0; i < quadrature.size(); ++i )
      sumNormal.axpy( quadrature[ i ].weight(), intersection.integrationOuterNormal( quadrature[ i ].position() ) );
  }

  // check implementation of hasBoundaryIntersections
  if( hasBoundaryIntersection != eIt->hasBoundaryIntersections() )
  {
    if( !hasBoundaryIntersection )
    {
      std::cerr << "Entity::hasBoundaryIntersections has a false positive." << std::endl;
      assert( false );
    }
    else
      DUNE_THROW( Dune::GridError, "Entity::hasBoundaryIntersections has a false negative." );
  }

  // check whether integral over the outer normals is zero
  // note: This is wrong on curved surfaces (take, e.g., the upper half sphere).
  //       Therefore we only enforce this check on affine elements.
  if( (sumNormal.two_norm() > 1e-8) && (eIt->partitionType() != Dune::GhostEntity) )
  {
    if( eIt->geometry().affine() )
      DUNE_THROW( Dune::GridError, "Integral over outer normals on affine entity is nonzero: " << sumNormal );
    ++errorState.sumNormalsNonZero;
  }

  // check assignment operator for IntersectionIterator
  checkIntersectionAssignment( view, eIt );
}

/** \brief Test both IntersectionIterators
 */
template <class GridViewType>
void checkViewIntersectionIterator(const GridViewType& view) {

  using namespace Dune;

  typedef typename GridViewType ::template Codim<0>::Iterator
  ElementIterator;
  ElementIterator eIt    = view.template begin<0>();
  ElementIterator eEndIt = view.template end<0>();

  CheckIntersectionIteratorErrorState errorState;
  for (; eIt!=eEndIt; ++eIt)
    checkIntersectionIterator( view, eIt, errorState );

  if( errorState.sumNormalsNonZero > 0 )
  {
    std :: cerr << "Warning: Integral over outer normals is not always zero."
                << std :: endl;
    std :: cerr << "         This behaviour may be correct for entities with"
                << " nonzero curvature." << std :: endl;;
  }
}

template <class GridType>
void checkIntersectionIterator(const GridType& grid, bool skipLevelIntersectionTest = false) {

  using namespace Dune;

  // Loop over all levels
  if(skipLevelIntersectionTest)
  {
    std::cerr<<"WARNING: skip test of LevelIntersectionIterator! \n";
  }
  else
  {
    for (int i=0; i<=grid.maxLevel(); i++)
      checkViewIntersectionIterator(grid.levelGridView(i));
  }

  // test leaf intersection iterator
  {
    checkViewIntersectionIterator(grid.leafView());
  }

}

#endif