This file is indexed.

/usr/include/trilinos/AbstractLinAlgPack_MultiVectorMutableDense.hpp is in libtrilinos-dev 10.4.0.dfsg-1ubuntu2.

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
// @HEADER
// ***********************************************************************
// 
// Moocho: Multi-functional Object-Oriented arCHitecture for Optimization
//                  Copyright (2003) Sandia Corporation
// 
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
// license for use of this work by or on behalf of the U.S. Government.
// 
// This library 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA
// Questions? Contact Roscoe A. Bartlett (rabartl@sandia.gov) 
// 
// ***********************************************************************
// @HEADER

#ifndef MULTI_VECTOR_MUTABLE_DENSE_H
#define MULTI_VECTOR_MUTABLE_DENSE_H

#include "AbstractLinAlgPack_MatrixOpSerial.hpp"
#include "AbstractLinAlgPack_MatrixOpGetGMSMutable.hpp"
#include "AbstractLinAlgPack_MultiVectorMutable.hpp"
#include "DenseLinAlgPack_DMatrixClass.hpp"
#include "ReleaseResource.hpp"

namespace AbstractLinAlgPack {

/** \brief <tt>MultiVectorMutable</tt> "Adapter" subclass for <tt>DenseLinAlgPack::DMatrixSlice</tt>
 * or <tt>DenseLinAlgPack::DMatrix</tt> object.
 *
 * This class can be used either as a view of a <tt>DenseLinAlgPack::DMatrixSlice</tt> object
 * or as a storage type for a <tt>DenseLinAlgPack::DMatrix</tt> object.
 *
 * To create a storage type with the dimensions of <tt>rows x cols</tt> just call the
 * constructor <tt>MatrixWithOpMutableDense(rows,cols)</tt> or after construction you
 * can call <tt>this->initialize(rows,cols)</tt>.
 *
 * To simply create a view of a matrix or its transpose, say \c M, without ownership
 * just call <tt>MatrixWithOpMutableDense(M(),M_trans,NULL)</tt> or after construction call
 * <tt>this->initialize(M(),M_trans,NULL)</tt>.
 *
 * Alternately, \c this can be given a matrix with the responsibility to delete any associated
 * memory by calling <tt>this->initialize()</tt> with a <tt>ReleaseResource</tt> object to
 * perform the deallocation.
 *
 * If \c this has been initialized by <tt>this->initialize(rows,cols)</tt> and
 * if the client really needs to get at the <tt>DenseLinAlgPack::DMatrix</tt> object
 * itself, then it can be obtained as:
 \code
 DMatrix* f( MultiVectorMutableDense* M )
 {
     return dynamic_cast<MemMngPack::ReleaseResource_ref_count_ptr<DMatrix&> >(*M.gms_release()).ptr.get();
 }
 \endcode
 * This is not pretty but it is not supposed to be.  Of course the above function will return NULL
 * the <tt>dynamic_cast<></tt> fails or if there is no allocated <tt>DMatrix</tt> object to get.
 */
class MultiVectorMutableDense
  : public AbstractLinAlgPack::MultiVectorMutable   // doxygen needs the full path
  , public MatrixOpSerial
  , public MatrixOpGetGMS
{
public:

  /** \brief . */
  typedef Teuchos::RCP<
    MemMngPack::ReleaseResource>  release_resource_ptr_t;

  /** @name Constructors / initializers */
  //@{

  /** \brief Calls <tt>this->initialize(rows,cols)</tt>.
   */
  MultiVectorMutableDense(
    const size_type                    rows = 0
    ,const size_type                   cols = 0
    );
  /** \brief Calls <tt>this->initialize(gms,gms_trans,gms_release)</tt>.
   */
  MultiVectorMutableDense(
    DMatrixSlice                       gms
    ,BLAS_Cpp::Transp                  gms_trans
    ,const release_resource_ptr_t&     gms_release
    );
  /** \brief Call <tt>this->initialize(v,v_release)</tt> with an allocated <tt>DenseLinAlgPack::DVector</tt>
   * object.
   */
  void initialize(
    const size_type                    rows
    ,const size_type                   cols
    );
  /** \brief Initialize with a dense matrix slice.
   *
   * Note that solve of the method overrides have to allocate a temporary memory
   * if <tt>gms_trans != no_trans</tt> (see \c get_gms_view() and \c output()).
   *
   * Postconditions:<ul>
   * <li> <tt>this->rows() = ( gms_trans = no_trans ? gms.rows() : gms.cols())</tt>
   * <li> <tt>this->cols() = ( gms_trans = no_trans ? gms.cols() : gms.rows())</tt>
   * </ul>
   */
  void initialize(
    DMatrixSlice                       gms
    ,BLAS_Cpp::Transp                  gms_trans
    ,const release_resource_ptr_t&     gms_release
    );

  //@}

  /** @name Access */
  //@{
  
  /** \brief Return the non-const dense matrix.
   *
   * Note that calling this method may result in the matrix implementation
   * being modified.  Therefore, no other methods on \c this object should be
   * called until the <tt>DMatrixSlice</tt> returned from this method is
   * discarded.
   */
  DMatrixSlice set_gms();
  /** \brief Return a const dense matrix.
   */
  const DMatrixSlice get_gms() const;
  /** \brief Return if underlying matrix is being viewed as the transpose or non-transposed.
   */
  BLAS_Cpp::Transp gms_trans() const;
  /** \brief Return a <tt>RCP<></tt> pointer to the object that will
   * release the associated resource.
   */
  const release_resource_ptr_t& gms_release() const;

  //@}

  /** @name Overridden from MatrixOpGetGMS */
  //@{

  /** \brief . */
  const DMatrixSlice get_gms_view() const;
  /** \brief . */
  void free_gms_view(const DMatrixSlice* gms_view) const;

  //@}

  /** @name Overridden from MatrixOpGetGMSMutable */
  //@{

  /** \brief . */
  DMatrixSlice get_gms_view();
  /** \brief . */
  void commit_gms_view(DMatrixSlice* gms_view);

  //@}
  
  /** @name Overridden from MatrixBase */
  //@{

  /** \brief . */
  size_type rows() const;
  /** \brief . */
  size_type cols() const;

  //@}

  /** @name Overridden from MatrixOp */
  //@{

  /** \brief . */
  void zero_out();
  /** \brief . */
  void Mt_S( value_type alpha );
  /** \brief . */
  MatrixOp& operator=(const MatrixOp& mwo_rhs);
  /** \brief . */
  std::ostream& output(std::ostream& out) const;
  /** \brief . */
  bool Mp_StM(
    MatrixOp* mwo_lhs, value_type alpha
    ,BLAS_Cpp::Transp trans_rhs
    ) const;
  /** \brief . */
  bool Mp_StM(
    value_type alpha,const MatrixOp& M_rhs, BLAS_Cpp::Transp trans_rhs
    );
  /** \brief . */
  bool syrk(
     BLAS_Cpp::Transp M_trans, value_type alpha
    ,value_type beta, MatrixSymOp* sym_lhs
    ) const;
  /** \brief . */
  bool Mp_StMtM(
    MatrixOp* mwo_lhs, value_type alpha
    ,const MatrixOp& mwo_rhs1, BLAS_Cpp::Transp trans_rhs1
    ,BLAS_Cpp::Transp trans_rhs2
    ,value_type beta ) const;
  /** \brief . */
  bool Mp_StMtM(
    MatrixOp* mwo_lhs, value_type alpha
    ,BLAS_Cpp::Transp trans_rhs1
    ,const MatrixOp& mwo_rhs2, BLAS_Cpp::Transp trans_rhs2
    ,value_type beta ) const;

  //@}

  /** @name Overridden from MultiVector */
  //@{

  /** \brief . */
  access_by_t access_by() const;

  //@}

  /** @name Overridden from MultiVectorMutable */
  //@{

  /** \brief . */
  vec_mut_ptr_t col(index_type j);
  /** \brief . */
  vec_mut_ptr_t row(index_type i);
  /** \brief . */
  vec_mut_ptr_t diag(int k);
  /** \brief . */
  multi_vec_mut_ptr_t mv_sub_view(const Range1D& row_rng, const Range1D& col_rng);

  //@}

  /** @name Overridden from MatrixOpSerial */
  //@{

  /** \brief . */
  void Vp_StMtV(
    DVectorSlice* vs_lhs, value_type alpha, BLAS_Cpp::Transp trans_rhs1
    , const DVectorSlice& vs_rhs2, value_type beta) const;
  /** \brief . */
  void Vp_StMtV(
    DVectorSlice* vs_lhs, value_type alpha, BLAS_Cpp::Transp trans_rhs1
    , const SpVectorSlice& sv_rhs2, value_type beta) const;

  // ToDo: Add more overrides as they are needed!

  //@}

protected:

  /** @name Overridden from MultiVector */
  //@{

  /** \brief . */
  void apply_op(
    EApplyBy apply_by, const RTOpPack::RTOp& primary_op
    ,const size_t num_multi_vecs,      const MultiVector**   multi_vecs
    ,const size_t num_targ_multi_vecs, MultiVectorMutable**  targ_multi_vecs
    ,RTOpPack::ReductTarget* reduct_objs[]
    ,const index_type primary_first_ele   , const index_type primary_sub_dim   , const index_type primary_global_offset
    ,const index_type secondary_first_ele , const index_type secondary_sub_dim 
    ) const;
  /** \brief . */
  void apply_op(
    EApplyBy apply_by, const RTOpPack::RTOp& primary_op, const RTOpPack::RTOp& secondary_op
    ,const size_t num_multi_vecs,      const MultiVector**   multi_vecs
    ,const size_t num_targ_multi_vecs, MultiVectorMutable**  targ_multi_vecs
    ,RTOpPack::ReductTarget *reduct_obj
    ,const index_type primary_first_ele   , const index_type primary_sub_dim   , const index_type primary_global_offset
    ,const index_type secondary_first_ele , const index_type secondary_sub_dim 
    ) const;

  //@}

private:

  // ///////////////////////////////////////
  // Private data members
  
  DMatrixSlice              gms_;
  BLAS_Cpp::Transp          gms_trans_;
  release_resource_ptr_t    gms_release_;

}; // end class MultiVectorMutableDense			

// //////////////////////////////////////
// Inline members

inline
DMatrixSlice
MultiVectorMutableDense::set_gms()
{
  return gms_;
}

inline
const DMatrixSlice
MultiVectorMutableDense::get_gms() const
{
  return gms_;
}

inline
BLAS_Cpp::Transp
MultiVectorMutableDense::gms_trans() const
{
  return gms_trans_;
}

inline
const MultiVectorMutableDense::release_resource_ptr_t&
MultiVectorMutableDense::gms_release() const
{
  return gms_release_;
}

} // end namespace AbstractLinAlgPack

#endif // MULTI_VECTOR_MUTABLE_DENSE_H