This file is indexed.

/usr/include/linbox/matrix/dense-rows-matrix.h is in liblinbox-dev 1.3.2-1.1build2.

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
/* linbox/matrix/dense-rows-matrix.h
 * Copyright (C) 2003 Bradford Hovinen
 *
 * Written by Bradford Hovinen <bghovinen@math.uwaterloo.ca>
 *
 * --------------------------------------------------------
 *
 * 
 * ========LICENCE========
 * This file is part of the library LinBox.
 * 
 * LinBox is free software: you can 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.
 * 
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * ========LICENCE========
 *.
 */

#ifndef __LINBOX_dense_rows_matrix_H
#define __LINBOX_dense_rows_matrix_H

#include <vector>
#include <utility>
#include <iostream>
#include <algorithm>

#include "linbox/blackbox/factory.h"
#include "linbox/vector/vector-traits.h"
#include "linbox/util/debug.h"
#include "linbox/matrix/matrix-domain.h"

namespace LinBox
{

	/** @brief Dense row-wise matrix container
	 *
	 * This class implements a dense matrix, storing the data as a vector of vectors
	 * of the given type, in the same manner as @ref SparseMatrixBase. It provides
	 * only row iterators.
	 *
	 * @param Vector Row vector type
	 */
	template <class _Row>
	class DenseRowsMatrix {
	public:

		typedef _Row Row;
		typedef typename Row::value_type Element;
		typedef typename std::vector<Row> Rep;

		/** Constructor.
		 * Note: the copy constructor and operator= will work as intended
		 *       because of STL's container design
		 * @param  m  row dimension
		 * @param  n  column dimension
		 */
		DenseRowsMatrix (size_t m, size_t n);

		/** Copy constructor.
		*/
		DenseRowsMatrix (const DenseRowsMatrix &A) :
		       	_Mat (A._Mat), _m (A._m), _n (A._n)
		{}

		/** Destructor. */
		~DenseRowsMatrix () {}

		/** Retreive row dimension of the matrix.
		 * @return integer number of rows of DenseRowsMatrix matrix.
		 */
		size_t rowdim () const { return _m; }

		/** Retreive column dimension of matrix.
		 * @return integer number of columns of DenseRowsMatrix matrix.
		 */
		size_t coldim () const { return _n; }

		/** @name Input and output
		*/
		//@{

		/** Read a matrix from the given input stream using field read/write
		 * @param is Input stream from which to read the matrix
		 * @param F Field with which to read
		 */
		template <class Field>
		std::istream &read (std::istream &is, const Field &F);

		/** Read a matrix from the given input stream using standard operators
		 * @param is Input stream from which to read the matrix
		 */
		std::istream &read (std::istream &is);

		/** Write a matrix to the given output stream using field read/write
		 * @param os Output stream to which to write the matrix
		 * @param F Field with which to write
		 */
		template <class Field>
		std::ostream &write (std::ostream &os, const Field &F) const;

		/** Write a matrix to the given output stream using standard operators
		 * @param os Output stream to which to write the matrix
		 */
		std::ostream &write (std::ostream &os) const;

		//@}

		/** @name Access to matrix elements
		*/
		//@{

		/** Set an individual entry
		 * Setting the entry to 0 will remove it from the matrix
		 * @param i Row index of entry
		 * @param j Column index of entry
		 * @param value Value of the new entry
		 */
		void setEntry (size_t i, size_t j, const Element &value)
		{ _Mat[i][j] = value; }

		/** Get a writeable reference to an entry in the matrix
		 * If there is no entry at the position (i, j), then a new entry
		 * with a value of zero is inserted and a reference  to it is
		 * returned.
		 * @param i Row index of entry
		 * @param j Column index of entry
		 * @return Reference to matrix entry
		 */
		Element &refEntry (size_t i, size_t j)
		{ return _Mat[i][j]; }

		/** Get a read-only individual entry from the matrix
		 * @param i Row index
		 * @param j Column index
		 * @return Const reference to matrix entry
		 */
		const Element &getEntry (size_t i, size_t j) const
		{ return _Mat[i][j]; }

		/** Get an entry and store it in the given value
		 * This form is more in the Linbox style and is provided for interface
		 * compatibility with other parts of the library
		 * @param x Element in which to store result
		 * @param i Row index
		 * @param j Column index
		 * @return Reference to x
		 */
		Element &getEntry (Element &x, size_t i, size_t j) const
		{ return x = _Mat[i][j]; }

		/** @name Columns of rows iterator
		 * The columns of row iterator gives each of the rows of the
		 * matrix in ascending order. Dereferencing the iterator yields
		 * a row vector in sparse sequence format
		 */

		typedef typename Rep::iterator RowIterator;
		typedef typename Rep::const_iterator ConstRowIterator;

		///
		RowIterator rowBegin () { return _Mat.begin (); }
		///
		RowIterator rowEnd () { return _Mat.end (); }
		///
		ConstRowIterator rowBegin () const { return _Mat.begin (); }
		///
		ConstRowIterator rowEnd () const { return _Mat.end (); }

		/** @name Raw iterator
		 * The raw iterator is a method for accessing all nonzero
		 * entries in the matrix in some unspecified order. This can be
		 * used, e.g. to reduce all matrix entries modulo a prime before
		 * passing the matrix into an algorithm.
		 */

		///
		class Iterator;
		///
		class ConstIterator;

		/// Begin
		Iterator Begin ();
		/// End
		Iterator End ();
		/// const Begin
		ConstIterator Begin () const;
		/// const End
		ConstIterator End () const;

		/** @name Index iterator
		 * The index iterator gives the row, column indices of all matrix
		 * elements in the same order as the raw iterator above. Its value type
		 * is an STL pair with the row and column indices, starting at 0, in the
		 * first and second positions, respectively.
		 */

		/// IndexedIterator
		class IndexedIterator;
		/// ConstIndexedIterator
		class ConstIndexedIterator;

		/// IndexedBegin
		IndexedIterator IndexedBegin ();
		/// IndexedEnd
		IndexedIterator IndexedEnd ();
		/// const IndexedBegin
		ConstIndexedIterator IndexedBegin () const;
		/// const IndexedEnd
		ConstIndexedIterator IndexedEnd () const;

		/** Retrieve a row as a writeable reference
		 * @param i Row index
		 */
		Row &getRow (size_t i)
		{ return _Mat[i]; }

		/** Construct the transpose of this matrix and place it in the
		 * DenseRowsMatrix given.
		 * @param AT
		 */
		DenseRowsMatrix &transpose (DenseRowsMatrix &AT) const;

		//@}

	protected:

		friend class SparseMatrixWriteHelper<Element, Row>;
		friend class SparseMatrixReadWriteHelper<Element, Row>;

		Rep               _Mat;
		size_t            _m;
		size_t            _n;
	};

	template <class Row>
	struct MatrixTraits< DenseRowsMatrix<Row> >
	{
		typedef DenseRowsMatrix<Row> MatrixType;
		typedef typename MatrixCategories::RowMatrixTag<MatrixTraits<MatrixType> > MatrixCategory;
	};

} // namespace LinBox

#endif // __LINBOX_dense_rows_matrix_H


// vim:sts=8:sw=8:ts=8:noet:sr:cino=>s,f0,{0,g0,(0,:0,t0,+0,=s
// Local Variables:
// mode: C++
// tab-width: 8
// indent-tabs-mode: nil
// c-basic-offset: 8
// End: