This file is indexed.

/usr/include/dune/grid-glue/common/crossproduct.hh is in libdune-grid-glue-dev 2.4.0-1build1.

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
#ifndef DUNE_GRIDGLUE_COMMON_CROSSPRODUCT_HH
#define DUNE_GRIDGLUE_COMMON_CROSSPRODUCT_HH 1

namespace Dune {
namespace GridGlue {

/**
 * \brief compute cross product
 *
 * \return <code>a × b</code>
 */
template <class T, int dim>
static Dune::FieldVector<T,dim> crossProduct(const Dune::FieldVector<T,dim>& a,
                                             const Dune::FieldVector<T,dim>& b)
{
  if (dim!=3)
    DUNE_THROW(Dune::NotImplemented, "crossProduct does not work for dimension " << dim);

  Dune::FieldVector<T,dim> c;
  c[0] = a[1]*b[2] - a[2]*b[1];
  c[1] = a[2]*b[0] - a[0]*b[2];
  c[2] = a[0]*b[1] - a[1]*b[0];

  return c;
}

} /* namespace GridGlue */
} /* namespace Dune */

#endif