/usr/include/linbox/blackbox/submatrix.h is in liblinbox-dev 1.1.6~rc0-4.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 | /* -*- mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* linbox/blackbox/submatrix.h
* Copyright (C) 2001 Bradford Hovinen
*
* Written by Bradford Hovinen <hovinen@cis.udel.edu>
*
* ------------------------------------
* Modified by Dmitriy Morozov <linbox@foxcub.org>. May 27, 2002.
*
* Added parametrization of VectorCategory tags by VectorTraits. See
* vector-traits.h for more details.
*
* ------------------------------------
* Modified by Zhendong Wan
*
* Added specialization for DenseMatrix.
*
* -------
*
* See COPYING for license information.
*/
#ifndef __SUBMATRIX_H
#define __SUBMATRIX_H
#include "linbox/vector/vector-traits.h"
#include "linbox/util/debug.h"
#include "linbox/util/error.h"
#include <linbox/matrix/dense-submatrix.h>
#include <linbox/vector/vector-domain.h>
#include <linbox/blackbox/blackbox-interface.h>
// Namespace in which all LinBox library code resides
namespace LinBox
{
/** \brief leading principal minor of existing matrix without copying.
\ingroup blackbox
* leading principal minor of an existing matrix in a black box fashion.
*
* The matrix itself is not stored in memory. Rather, its apply
* methods use a vector of {@link Fields field} elements, which are
* used to "multiply" the matrix to a vector.
*
* This class has three template parameters. The first is the field in
* which the arithmetic is to be done. The second is the type of
* \ref{LinBox} vector to which to apply the matrix. The
* third is chosen be default to be the \ref{LinBox} vector trait
* of the vector. This class is then specialized for dense and sparse
* vectors.
*
* @param Field \ref{LinBox} field
* @param Vector \ref{LinBox} dense or sparse vector of field elements
* @param Trait Marker whether to use dense or sparse LinBox vector
* implementation. This is chosen by a default parameter
* and partial template specialization. */
//@{
// Basic declaration.
template <class Blackbox, class Trait = typename VectorTraits<typename LinBox::Vector<typename Blackbox::Field>::Dense >::VectorCategory>
class Submatrix : public BlackboxInterface {
private:
Submatrix() {}
};
/** Specialization for dense vectors */
template <class Blackbox>
class Submatrix<Blackbox, VectorCategories::DenseVectorTag >
: public BlackboxInterface {
public:
typedef typename Blackbox::Field Field;
typedef typename Field::Element Element;
/** Constructor from field and dense vector of field elements.
* @param BB Black box from which to extract the submatrix
* @param row First row of the submatrix to extract (1.._BB->rowdim ())
* @param col First column of the submatrix to extract (1.._BB->coldim ())
* @param rowdim Row dimension
* @param coldim Column dimension
*/
Submatrix (const Blackbox *BB,
size_t row,
size_t col,
size_t rowdim,
size_t coldim)
: _BB (BB),
_row (row), _col (col), _rowdim (rowdim), _coldim (coldim),
_z (_BB->coldim ()), _y (_BB->rowdim ())
{
linbox_check (row + rowdim <= _BB->rowdim ());
linbox_check (col + coldim <= _BB->coldim ());
BB->field().init (_zero, 0);
}
/** Destructor
*/
virtual ~Submatrix () {}
/** Application of BlackBox matrix.
* y= A*x.
* Requires one vector conforming to the \ref{LinBox}
* vector {@link Archetypes archetype}.
* Required by abstract base class.
* @return reference to vector y containing output.
* @param x constant reference to vector to contain input
*/
template<class OutVector, class InVector>
OutVector& apply (OutVector &y, const InVector& x) const
{
std::fill (_z.begin (), _z.begin () + _col, _zero);
std::fill (_z.begin () + _col + _coldim, _z.end (), _zero);
copy (x.begin (), x.end (), _z.begin () + _col); // Copying. Yuck.
_BB->apply (_y, _z);
copy (_y.begin () + _row, _y.begin () + _row + _rowdim, y.begin ());
return y;
}
/** Application of BlackBox matrix transpose.
* y= transpose(A)*x.
* Requires one vector conforming to the \ref{LinBox}
* vector {@link Archetypes archetype}.
* Required by abstract base class.
* @return reference to vector y containing output.
* @param x constant reference to vector to contain input
*/
template<class OutVector, class InVector>
OutVector& applyTranspose (OutVector &y, const InVector& x) const
{
std::fill (_y.begin (), _y.begin () + _row, _zero);
std::fill (_y.begin () + _row + _rowdim, _y.end (), _zero);
copy (x.begin (), x.end (), _y.begin () + _row); // Copying. Yuck.
_BB->applyTranspose (_z, _y);
copy (_z.begin () + _col, _z.begin () + _col + _coldim, y.begin ());
return y;
}
template<typename _Tp1>
struct rebind
{ typedef Submatrix< typename Blackbox::template rebind<_Tp1>::other, VectorCategories::DenseVectorTag> other; };
/** Retreive _row dimensions of BlackBox matrix.
* This may be needed for applying preconditioners.
* Required by abstract base class.
* @return integer number of _rows of black box matrix.
*/
size_t rowdim (void) const
{ return _rowdim; }
/** Retreive _column dimensions of BlackBox matrix.
* Required by abstract base class.
* @return integer number of _columns of black box matrix.
*/
size_t coldim (void) const
{ return _coldim; }
const Field& field() const {return _BB->field();}
private:
const Blackbox *_BB;
size_t _row;
size_t _col;
size_t _rowdim;
size_t _coldim;
// Temporaries for reducing the amount of memory allocation we do
mutable std::vector<Element> _z;
mutable std::vector<Element> _y;
typename Field::Element _zero;
}; // template <Vector> class Submatrix
template <class Field>
class DenseMatrix;
/** special case for the submatrix of a dense matrix
*/
template<class _Field>
class Submatrix<DenseMatrix<_Field>, VectorCategories::DenseVectorTag>
: public DenseSubmatrix<typename _Field::Element> {
public:
typedef _Field Field;
private:
Field f;
VectorDomain<Field> vd;
public:
typedef typename Field::Element Element;
/** Constructor from an existing @ref{DenseMatrix} and dimensions
* @param M Pointer to @ref{DenseMatrix} of which to construct submatrix
* @param row Starting row
* @param col Starting column
* @param rowdim Row dimension
* @param coldim Column dimension
*/
Submatrix (const DenseMatrix<Field> *M,
size_t row,
size_t col,
size_t rowdim,
size_t coldim)
: DenseSubmatrix<Element>(const_cast<DenseMatrix<Field>& >(*M), row, col, rowdim, coldim),
f(M -> field()), vd(M -> field()) {
}
/** Constructor from an existing @ref{DenseMatrix} and dimensions
* @param M reference to @ref{DenseMatrix} of which to construct submatrix
* @param row Starting row
* @param col Starting column
* @param rowdim Row dimension
* @param coldim Column dimension
*/
Submatrix (const DenseMatrix<Field> &M,
size_t row,
size_t col,
size_t rowdim,
size_t coldim)
: DenseSubmatrix<Element>(const_cast<DenseMatrix<Field>& >(M), row, col, rowdim, coldim),
f(M.field()), vd(M.field()) {
}
/** Constructor from an existing submatrix and dimensions
* @param SM pointer to Submatrix from which to
* construct submatrix
* @param row Starting row
* @param col Starting column
* @param rowdim Row dimension
* @param coldim Column dimension
*/
Submatrix (const Submatrix<DenseMatrix<Field> > *SM,
size_t row,
size_t col,
size_t rowdim,
size_t coldim )
: DenseSubmatrix<Element> (const_cast<Submatrix<DenseMatrix<Field> >&>(*SM), row, col, rowdim, coldim),
f (SM -> field()), vd(SM -> field()){
}
/** Constructor from an existing submatrix and dimensions
* @param SM reference to Submatrix from which to
* construct submatrix
* @param row Starting row
* @param col Starting column
* @param rowdim Row dimension
* @param coldim Column dimension
*/
Submatrix (const Submatrix<DenseMatrix<Field> >& SM,
size_t row,
size_t col,
size_t rowdim,
size_t coldim )
: DenseSubmatrix<Element> (const_cast<Submatrix<DenseMatrix<Field> >&>(SM), row, col, rowdim, coldim),
f (SM. field()), vd(SM. field()){
}
const Field& field() const {
return f;
}
std::istream& read (std::istream& is) {
DenseSubmatrix<Element>::read (is, f);
return is;
}
std::ostream& write (std::ostream& os) const {
DenseSubmatrix<Element>::write (os, f);
return os;
}
/** Generic matrix-vector apply
* y = A * x.
* This version of apply allows use of arbitrary input and output vector * types.
* @param y Output vector
* @param x Input vector
* @return Reference to output vector
*/
template<class Vect1, class Vect2>
Vect1 &apply (Vect1 &y, const Vect2 &x) const {
typename DenseSubmatrix<Element>::ConstRowIterator p;
typename Vect1::iterator p_y = y.begin ();
for (p = this->rowBegin (); p != this->rowEnd (); ++p, ++p_y)
vd.dot (*p_y, *p, x);
return y;
}
/** Generic matrix-vector transpose apply
* y = A^T * x
* This version of applyTranspose allows use of arbitrary input and
* output vector types
* @param y Output vector
* @param x Input vector
* @return Reference to output vector
*/
template<class Vect1, class Vect2>
Vect1 &applyTranspose (Vect1 &y, const Vect2 &x) const {
typename DenseSubmatrix<Element>::ConstColIterator colp;
typename Vect1::iterator p_y = y.begin ();
for (colp = this->colBegin (); colp != this->colEnd (); ++colp, ++p_y)
vd. dot (*p_y, *colp, x);
return y;
}
template<typename _Tp1>
struct rebind
{ typedef Submatrix<DenseMatrix<_Tp1>, VectorCategories::DenseVectorTag> other; };
};
//@}
} // namespace LinBox
#endif // __SUBMATRIX_H
|