This file is indexed.

/usr/include/dune/pdelab/multistep/parameter.hh is in libdune-pdelab-dev 2.0.0-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
// -*- tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=8 sw=2 sts=2:
#ifndef DUNE_PDELAB_MULTISTEP_PARAMETER_HH
#define DUNE_PDELAB_MULTISTEP_PARAMETER_HH

#include <sstream>
#include <string>

namespace Dune {
  namespace PDELab {

    //! \addtogroup MultiStepMethods
    //! \{

    //////////////////////////////////////////////////////////////////////
    //
    //  Base class
    //

    //! Base parameter class for multi step time schemes
    /**
     * \tparam value_type_ C++ type of the floating point parameters
     * \tparam order_      Order of the ODE's this scheme is apropriate for.
     */
    template<typename value_type_, unsigned order_>
    class MultiStepParameterInterface
    {
    public:
      //! export type of the parameters
      typedef value_type_ value_type;

      //! Order of the problems this method is apropriate for
      static const unsigned order = order_;

      //! Return number of steps of the method
      virtual unsigned steps () const = 0;

      //! Return alpha coefficients
      /**
       * Return \f$\alpha_{\text{\tt step}, \text{\tt deriv}}\f$.
       *
       * \note step ∈ [0,...,steps()] and deriv ∈ [0,...,order]
       *
       * \note If a coefficient is numerically zero (\f$\alpha_{\text{\tt
       *       step}, \text{\tt deriv}}=0\f$), the MultiStepGridOperatorSpace
       *       may skip certain loops.  To take advantage of this, a
       *       particular Parameters implementation should take care to force
       *       a parameter to exactly zero before returning it, if it is
       *       practically zero and if it is calculated in a way that may
       *       result in slightly off-zero values.  This way, the meaning of
       *       "practically zero" is up to the Parameters implementation.
       */
      virtual value_type alpha(int step, int deriv) const = 0;

      //! Return name of the scheme
      virtual std::string name () const = 0;

      //! every abstract base class has a virtual destructor
      virtual ~MultiStepParameterInterface () {}
    };

    //////////////////////////////////////////////////////////////////////
    //
    //  Central Differences
    //

    //! Parameter class for the central differences scheme
    /**
     * \tparam value_type C++ type of the floating point parameters
     */
    template<typename value_type>
    class CentralDifferencesParameters
      : public MultiStepParameterInterface<value_type, 2>
    {
      static const value_type a[3][3];

    public:
      //! Return number of steps of the method
      /**
       * \returns 2 for central differences
       */
      virtual unsigned steps () const { return 2; }

      //! Return alpha coefficients
      /**
       * Return \f$\alpha_{\text{\tt step}, \text{\tt deriv}}\f$:
       * \f{align*}{
       *   \alpha_{00}&=0 & \alpha_{01}&=\frac12 & \alpha_{02}&=1 \\
       *   \alpha_{10}&=1 & \alpha_{11}&=0       & \alpha_{12}&=-2 \\
       *   \alpha_{20}&=0 & \alpha_{21}&=\frac12 & \alpha_{22}&=1
       * \f}
       *
       * \note step ∈ [0,...,steps()] and deriv ∈ [0,...,order]
       */
      virtual value_type alpha(int step, int deriv) const {
        return a[step][deriv];
      }

      //! Return name of the scheme
      virtual std::string name () const {
        return "Central Differences";
      }
    };

    template<typename value_type>
    const value_type CentralDifferencesParameters<value_type>::a[3][3] = {
      {0,  0.5,  1},
      {1,  0,   -2},
      {0, -0.5,  1}
    };

    //////////////////////////////////////////////////////////////////////
    //
    //  Newmark-β scheme
    //

    //! Parameter class for the Newmark-β scheme
    /**
     * \tparam value_type C++ type of the floating point parameters
     */
    template<typename value_type>
    class NewmarkBetaParameters
      : public MultiStepParameterInterface<value_type, 2>
    {
      value_type a[3][3];
      std::string name_;

    public:
      NewmarkBetaParameters(value_type beta) {
        a[0][0]=beta;     a[0][1]=0.5; a[0][2]=1;
        a[1][0]=1-2*beta; a[1][1]=0;   a[1][2]=-2;
        a[2][0]=beta;     a[2][1]=0.5; a[2][2]=1;

        std::ostringstream s;
        s << "Newmark-β (β=" << beta << ")";
        name_ = s.str();
      }

      //! Return number of steps of the method
      /**
       * \returns 2 for Newmark-β
       */
      virtual unsigned steps () const { return 2; }

      //! Return alpha coefficients
      /**
       * Return \f$\alpha_{\text{\tt step}, \text{\tt deriv}}\f$:
       * \f{align*}{
       *   \alpha_{00}&=\beta    & \alpha_{01}&=\frac12 & \alpha_{02}&=1 \\
       *   \alpha_{10}&=1-2\beta & \alpha_{11}&=0       & \alpha_{12}&=-2 \\
       *   \alpha_{20}&=\beta    & \alpha_{21}&=\frac12 & \alpha_{22}&=1
       * \f}
       *
       * \note step ∈ [0,...,steps()] and deriv ∈ [0,...,order]
       */
      virtual value_type alpha(int step, int deriv) const {
        return a[step][deriv];
      }

      //! Return name of the scheme
      virtual std::string name () const {
        return name_;
      }
    };

    //! \} group MultiStepMethods
  } // namespace PDELab
} // namespace Dune

#endif // DUNE_PDELAB_MULTISTEP_PARAMETER_HH