/usr/include/dune/pdelab/backend/istlmatrixbackend.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 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 | // -*- tab-width: 4; indent-tabs-mode: nil -*-
#ifndef DUNE_PDELAB_BACKEND_ISTLMATRIXBACKEND_HH
#define DUNE_PDELAB_BACKEND_ISTLMATRIXBACKEND_HH
#include <dune/common/typetraits.hh>
#include <dune/pdelab/backend/tags.hh>
#include <dune/pdelab/backend/common/uncachedmatrixview.hh>
#include <dune/pdelab/backend/istl/matrixhelpers.hh>
#include <dune/pdelab/backend/istl/descriptors.hh>
namespace Dune {
namespace PDELab {
template<typename GFSV, typename GFSU, typename C, typename Stats>
class ISTLMatrixContainer
{
public:
typedef typename C::field_type ElementType;
typedef ElementType E;
typedef C Container;
typedef C BaseT;
typedef typename C::field_type field_type;
typedef typename C::block_type block_type;
typedef typename C::size_type size_type;
typedef GFSU TrialGridFunctionSpace;
typedef GFSV TestGridFunctionSpace;
typedef typename GFSV::Ordering::Traits::ContainerIndex RowIndex;
typedef typename GFSU::Ordering::Traits::ContainerIndex ColIndex;
typedef typename istl::build_pattern_type<C,GFSV,GFSU,typename GFSV::Ordering::ContainerAllocationTag>::type Pattern;
typedef Stats PatternStatistics;
#ifndef DOXYGEN
// some trickery to avoid exposing average users to the fact that there might
// be multiple statistics objects
typedef typename conditional<
(C::blocklevel > 2),
std::vector<PatternStatistics>,
PatternStatistics
>::type StatisticsReturnType;
#endif // DOXYGEN
#if HAVE_TEMPLATE_ALIASES
template<typename RowCache, typename ColCache>
using LocalView = UncachedMatrixView<ISTLMatrixContainer,RowCache,ColCache>;
template<typename RowCache, typename ColCache>
using ConstLocalView = ConstUncachedMatrixView<const ISTLMatrixContainer,RowCache,ColCache>;
#else
template<typename RowCache, typename ColCache>
struct LocalView
: public UncachedMatrixView<ISTLMatrixContainer,RowCache,ColCache>
{
LocalView()
{}
LocalView(ISTLMatrixContainer& mc)
: UncachedMatrixView<ISTLMatrixContainer,RowCache,ColCache>(mc)
{}
};
template<typename RowCache, typename ColCache>
struct ConstLocalView
: public ConstUncachedMatrixView<const ISTLMatrixContainer,RowCache,ColCache>
{
ConstLocalView()
{}
ConstLocalView(const ISTLMatrixContainer& mc)
: ConstUncachedMatrixView<const ISTLMatrixContainer,RowCache,ColCache>(mc)
{}
};
#endif // HAVE_TEMPLATE_ALIASES
template<typename GO>
ISTLMatrixContainer (const GO& go)
: _container(make_shared<Container>())
{
_stats = go.matrixBackend().buildPattern(go,*this);
}
/** \brief Construct matrix container using an externally given matrix as storage
*
* \tparam GO GridOperator type used to assemble into the matrix
*
* \param go GridOperator object used to assemble into the matrix
* \param container ISTL matrix type that stores the actual data
*
* This ISTLMatrixContainer constructor will reassemble the matrix occupation pattern.
*/
template<typename GO>
ISTLMatrixContainer (const GO& go, Container& container)
: _container(Dune::stackobject_to_shared_ptr(container))
{
_stats = go.matrixBackend().buildPattern(go,*this);
}
template<typename GO>
ISTLMatrixContainer (const GO& go, const E& e)
: _container(make_shared<Container>())
{
_stats = go.matrixBackend().buildPattern(go,*this);
(*_container) = e;
}
//! Creates an ISTLMatrixContainer without allocating an underlying ISTL matrix.
explicit ISTLMatrixContainer (tags::unattached_container = tags::unattached_container())
{}
//! Creates an ISTLMatrixContainer with an empty underlying ISTL matrix.
explicit ISTLMatrixContainer (tags::attached_container)
: _container(make_shared<Container>())
{}
ISTLMatrixContainer(const ISTLMatrixContainer& rhs)
: _container(make_shared<Container>(*(rhs._container)))
{}
ISTLMatrixContainer& operator=(const ISTLMatrixContainer& rhs)
{
if (this == &rhs)
return *this;
_stats.clear();
if (attached())
{
(*_container) = (*(rhs._container));
}
else
{
_container = make_shared<Container>(*(rhs._container));
}
return *this;
}
//! Returns pattern statistics for all contained BCRSMatrix objects.
const StatisticsReturnType& patternStatistics() const
{
return patternStatistics(integral_constant<bool,(C::blocklevel > 2)>());
}
#ifndef DOXYGEN
private:
const PatternStatistics& patternStatistics(false_type multiple) const
{
if (_stats.empty())
DUNE_THROW(InvalidStateException,"no pattern statistics available");
return _stats[0];
}
const std::vector<PatternStatistics>& patternStatistics(true_type multiple) const
{
if (_stats.empty())
DUNE_THROW(InvalidStateException,"no pattern statistics available");
return _stats;
}
public:
#endif
void detach()
{
_container.reset();
_stats.clear();
}
void attach(shared_ptr<Container> container)
{
_container = container;
}
bool attached() const
{
return bool(_container);
}
const shared_ptr<Container>& storage() const
{
return _container;
}
size_type N() const
{
return _container->N();
}
size_type M() const
{
return _container->M();
}
ISTLMatrixContainer& operator= (const E& e)
{
(*_container) = e;
return *this;
}
ISTLMatrixContainer& operator*= (const E& e)
{
(*_container) *= e;
return *this;
}
E& operator()(const RowIndex& ri, const ColIndex& ci)
{
return istl::access_matrix_element(istl::container_tag(*_container),*_container,ri,ci,ri.size()-1,ci.size()-1);
}
const E& operator()(const RowIndex& ri, const ColIndex& ci) const
{
return istl::access_matrix_element(istl::container_tag(*_container),*_container,ri,ci,ri.size()-1,ci.size()-1);
}
const Container& base() const
{
return *_container;
}
Container& base()
{
return *_container;
}
void flush()
{}
void finalize()
{}
void clear_row(const RowIndex& ri, const E& diagonal_entry)
{
istl::clear_matrix_row(istl::container_tag(*_container),*_container,ri,ri.size()-1);
(*this)(ri,ri) = diagonal_entry;
}
private:
shared_ptr<Container> _container;
std::vector<PatternStatistics> _stats;
};
} // namespace PDELab
} // namespace Dune
#endif // DUNE_PDELAB_BACKEND_ISTLMATRIXBACKEND_HH
|