This file is indexed.

/usr/include/deal.II/base/sacado_product_type.h is in libdeal.ii-dev 8.4.2-2+b1.

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
// ---------------------------------------------------------------------
//
// Copyright (C) 2015 by the deal.II authors
//
// This file is part of the deal.II library.
//
// The deal.II library is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the deal.II distribution.
//
// ---------------------------------------------------------------------

#ifndef dealii__sacado_product_type_h
#define dealii__sacado_product_type_h

#include <deal.II/base/config.h>
#include <deal.II/base/tensor.h>
#include <deal.II/base/symmetric_tensor.h>
#include <deal.II/base/template_constraints.h>

#ifdef DEAL_II_WITH_TRILINOS
#include "Sacado.hpp"

DEAL_II_NAMESPACE_OPEN

template <typename T>
struct ProductType<Sacado::Fad::DFad<T>, float>
{
  typedef Sacado::Fad::DFad<T> type;
};

template <typename T>
struct ProductType<float, Sacado::Fad::DFad<T> >
{
  typedef Sacado::Fad::DFad<T> type;
};

template <typename T>
struct ProductType<Sacado::Fad::DFad<T>, double>
{
  typedef Sacado::Fad::DFad<T> type;
};

template <typename T>
struct ProductType<double, Sacado::Fad::DFad<T> >
{
  typedef Sacado::Fad::DFad<T> type;
};

template <typename T>
struct ProductType<Sacado::Fad::DFad<T>, int>
{
  typedef Sacado::Fad::DFad<T> type;
};

template <typename T>
struct ProductType<int, Sacado::Fad::DFad<T> >
{
  typedef Sacado::Fad::DFad<T> type;
};

template <typename T, typename U>
struct ProductType<Sacado::Fad::DFad<T>, Sacado::Fad::DFad<U> >
{
  typedef Sacado::Fad::DFad<typename ProductType<T,U>::type > type;
};

template <typename T>
struct EnableIfScalar<Sacado::Fad::DFad<T> >
{
  typedef Sacado::Fad::DFad<T> type;
};



/**
 * Compute the scalar product $a:b=\sum_{i,j} a_{ij}b_{ij}$ between two
 * tensors $a,b$ of rank 2. We don't use <code>operator*</code> for this
 * operation since the product between two tensors is usually assumed to be
 * the contraction over the last index of the first tensor and the first index
 * of the second tensor, for example $(a\cdot b)_{ij}=\sum_k a_{ik}b_{kj}$.
 *
 * @relates Tensor @relates SymmetricTensor
 */
template <int dim, typename Number, typename T>
inline
Sacado::Fad::DFad<T>
scalar_product (const SymmetricTensor<2,dim,Sacado::Fad::DFad<T> > &t1,
                const Tensor<2,dim,Number> &t2)
{
  Sacado::Fad::DFad<T> s = 0;
  for (unsigned int i=0; i<dim; ++i)
    for (unsigned int j=0; j<dim; ++j)
      s += t1[i][j] * t2[i][j];
  return s;
}


/**
 * Compute the scalar product $a:b=\sum_{i,j} a_{ij}b_{ij}$ between two
 * tensors $a,b$ of rank 2. We don't use <code>operator*</code> for this
 * operation since the product between two tensors is usually assumed to be
 * the contraction over the last index of the first tensor and the first index
 * of the second tensor, for example $(a\cdot b)_{ij}=\sum_k a_{ik}b_{kj}$.
 *
 * @relates Tensor @relates SymmetricTensor
 */
template <int dim, typename Number, typename T >
inline
Sacado::Fad::DFad<T>
scalar_product (const Tensor<2,dim,Number> &t1,
                const SymmetricTensor<2,dim,Sacado::Fad::DFad<T> > &t2)
{
  return scalar_product(t2, t1);
}


/**
 * Compute the scalar product $a:b=\sum_{i,j} a_{ij}b_{ij}$ between two
 * tensors $a,b$ of rank 2. We don't use <code>operator*</code> for this
 * operation since the product between two tensors is usually assumed to be
 * the contraction over the last index of the first tensor and the first index
 * of the second tensor, for example $(a\cdot b)_{ij}=\sum_k a_{ik}b_{kj}$.
 *
 * @relates Tensor @relates SymmetricTensor
 */
template <int dim, typename Number, typename T>
inline
Sacado::Fad::DFad<T>
scalar_product (const SymmetricTensor<2,dim,Number> &t1,
                const Tensor<2,dim,Sacado::Fad::DFad<T> > &t2)
{
  Sacado::Fad::DFad<T> s = 0;
  for (unsigned int i=0; i<dim; ++i)
    for (unsigned int j=0; j<dim; ++j)
      s += t1[i][j] * t2[i][j];
  return s;
}


/**
 * Compute the scalar product $a:b=\sum_{i,j} a_{ij}b_{ij}$ between two
 * tensors $a,b$ of rank 2. We don't use <code>operator*</code> for this
 * operation since the product between two tensors is usually assumed to be
 * the contraction over the last index of the first tensor and the first index
 * of the second tensor, for example $(a\cdot b)_{ij}=\sum_k a_{ik}b_{kj}$.
 *
 * @relates Tensor @relates SymmetricTensor
 */
template <int dim, typename Number, typename T >
inline
Sacado::Fad::DFad<T>
scalar_product (const Tensor<2,dim,Sacado::Fad::DFad<T> > &t1,
                const SymmetricTensor<2,dim,Number> &t2)
{
  return scalar_product(t2, t1);
}

DEAL_II_NAMESPACE_CLOSE

#endif // DEAL_II_WITH_TRILINOS

#endif