This file is indexed.

/usr/include/deal.II/lac/petsc_vector.h is in libdeal.ii-dev 6.3.1-1.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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
//---------------------------------------------------------------------------
//    $Id: petsc_vector.h 20107 2009-11-13 15:40:05Z kronbichler $
//    Version: $Name$
//
//    Copyright (C) 2004, 2005, 2006, 2007, 2009 by the deal.II authors
//
//    This file is subject to QPL and may not be  distributed
//    without copyright and license information. Please refer
//    to the file deal.II/doc/license.html for the  text  and
//    further information on this license.
//
//---------------------------------------------------------------------------
#ifndef __deal2__petsc_vector_h
#define __deal2__petsc_vector_h


#include <base/config.h>

#ifdef DEAL_II_USE_PETSC

#  include <base/subscriptor.h>
#  include <lac/exceptions.h>
#  include <lac/petsc_vector_base.h>
#  include <lac/petsc_parallel_vector.h>
#  include <lac/vector.h>

DEAL_II_NAMESPACE_OPEN


namespace PETScWrappers
{
/*! @addtogroup PETScWrappers
 *@{
 */

/**
 * Implementation of a sequential vector class based on PETSC. All the
 * functionality is actually in the base class, except for the calls to
 * generate a sequential vector. This is possible since PETSc only works on an
 * abstract vector type and internally distributes to functions that do the
 * actual work depending on the actual vector type (much like using virtual
 * functions). Only the functions creating a vector of specific type differ,
 * and are implemented in this particular class.
 *
 * @ingroup Vectors
 * @author Wolfgang Bangerth, 2004
 */
  class Vector : public VectorBase
  {
    public:
                                       /**
                                        * Default constructor. Initialize the
                                        * vector as empty.
                                        */
      Vector ();
      
                                       /**
                                        * Constructor. Set dimension to
                                        * @p n and initialize all
                                        * elements with zero.
                                        *
                                        * The constructor is made explicit to
                                        * avoid accidents like this:
                                        * <tt>v=0;</tt>. Presumably, the user wants
                                        * to set every element of the vector to
                                        * zero, but instead, what happens is
                                        * this call: <tt>v=Vector@<number@>(0);</tt>,
                                        * i.e. the vector is replaced by one of
                                        * length zero.
                                        */
      explicit Vector (const unsigned int n);
    
                                       /**
                                        * Copy-constructor from deal.II
                                        * vectors. Sets the dimension to that
                                        * of the given vector, and copies all
                                        * elements.
                                        */
      template <typename Number>
      explicit Vector (const dealii::Vector<Number> &v);

                                       /**
                                        * Copy-constructor the values from a
                                        * PETSc wrapper vector class.
                                        */
      Vector (const Vector &v);

                                       /**
                                        * Copy-constructor: copy the values
                                        * from a PETSc wrapper parallel vector
                                        * class.
                                        *
                                        * Note that due to the communication
                                        * model of MPI, @em all processes have
                                        * to actually perform this operation,
                                        * even if they do not use the
                                        * result. It is not sufficient if only
                                        * one processor tries to copy the
                                        * elements from the other processors
                                        * over to its own process space.
                                        */
      explicit Vector (const MPI::Vector &v);

                                       /**
                                        * Copy the given vector. Resize the
                                        * present vector if necessary.
                                        */
      Vector & operator = (const Vector &v);

                                       /**
                                        * Copy all the elements of the
                                        * parallel vector @p v into this
                                        * local vector. Note that due to the
                                        * communication model of MPI, @em all
                                        * processes have to actually perform
                                        * this operation, even if they do not
                                        * use the result. It is not sufficient
                                        * if only one processor tries to copy
                                        * the elements from the other
                                        * processors over to its own process
                                        * space.
                                        */
      Vector & operator = (const MPI::Vector &v);

                                       /**
                                        * Set all components of the vector to
                                        * the given number @p s. Simply pass
                                        * this down to the base class, but we
                                        * still need to declare this function
                                        * to make the example given in the
                                        * discussion about making the
                                        * constructor explicit work.
                                        *
                                        * Since the semantics of assigning a
                                        * scalar to a vector are not
                                        * immediately clear, this operator
                                        * should really only be used if you
                                        * want to set the entire vector to
                                        * zero. This allows the intuitive
                                        * notation <tt>v=0</tt>. Assigning
                                        * other values is deprecated and may
                                        * be disallowed in the future.
                                        */
      Vector & operator = (const PetscScalar s);

                                       /**
                                        * Copy the values of a deal.II vector
                                        * (as opposed to those of the PETSc
                                        * vector wrapper class) into this
                                        * object.
                                        */
      template <typename number>
      Vector & operator = (const dealii::Vector<number> &v);

                                       /**
                                        * Change the dimension of the vector
                                        * to @p N. It is unspecified how
                                        * resizing the vector affects the
                                        * memory allocation of this object;
                                        * i.e., it is not guaranteed that
                                        * resizing it to a smaller size
                                        * actually also reduces memory
                                        * consumption, or if for efficiency
                                        * the same amount of memory is used
                                        * for less data.
                                        *
                                        * If @p fast is false, the vector is
                                        * filled by zeros. Otherwise, the
                                        * elements are left an unspecified
                                        * state.
                                        */ 
      void reinit (const unsigned int N,
                   const bool         fast = false);
    
                                       /**
                                        * Change the dimension to that of the
                                        * vector @p v. The same applies as
                                        * for the other reinit() function.
                                        *
                                        * The elements of @p v are not
                                        * copied, i.e.  this function is the
                                        * same as calling <tt>reinit (v.size(),
                                        * fast)</tt>.
                                        */
      void reinit (const Vector &v,
                   const bool    fast = false);

    protected:
                                       /**
                                        * Create a vector of length @p n. For
                                        * this class, we create a sequential
                                        * vector. @p n denotes the total
                                        * size of the vector to be
                                        * created.
                                        */
      void create_vector (const unsigned int n);
  };

/*@}*/

// ------------------ template and inline functions -------------


/**
 * Global function @p swap which overloads the default implementation
 * of the C++ standard library which uses a temporary object. The
 * function simply exchanges the data of the two vectors.
 *
 * @relates PETScWrappers::Vector
 * @author Wolfgang Bangerth, 2004
 */
  inline
  void swap (Vector &u, Vector &v)
  {
    u.swap (v);
  }


#ifndef DOXYGEN

  template <typename number>
  Vector::Vector (const dealii::Vector<number> &v)
  {
    Vector::create_vector (v.size());

    *this = v;
  }

  
  
  inline
  Vector &
  Vector::operator = (const PetscScalar s)
  {
    VectorBase::operator = (s);

    return *this;
  }
  

  inline
  Vector &
  Vector::operator = (const Vector &v)
  {
                                     // if the vectors have different sizes,
                                     // then first resize the present one
    if (size() != v.size())
      reinit (v.size(), true);
    
    const int ierr = VecCopy (v.vector, vector);
    AssertThrow (ierr == 0, ExcPETScError(ierr));
    
    return *this;
  }



  inline
  Vector &
  Vector::operator = (const MPI::Vector &v)
  {
                                     // the petsc function we call wants to
                                     // generate the vector itself, so destroy
                                     // the old one first
    int ierr = VecDestroy (vector);
    AssertThrow (ierr == 0, ExcPETScError(ierr));

                                     // then do the gather
                                     // operation. <rant>petsc has changed its
                                     // interface again, and replaced a single
                                     // function call by several calls that
                                     // are hard to understand. gets me all
                                     // annoyed at their development
                                     // model</rant>
#if (PETSC_VERSION_MAJOR <= 2) && \
    ((PETSC_VERSION_MINOR < 2) ||  \
     ((PETSC_VERSION_MINOR == 2) && (PETSC_VERSION_SUBMINOR == 0)))
    ierr = VecConvertMPIToSeqAll (static_cast<const Vec &>(v),
                                  &vector);
    AssertThrow (ierr == 0, ExcPETScError(ierr));

#else
    
    VecScatter ctx;

    ierr = VecScatterCreateToAll (static_cast<const Vec &>(v), &ctx, &vector);
    AssertThrow (ierr == 0, ExcPETScError(ierr));
    
#if ((PETSC_VERSION_MAJOR == 2) && \
     ((PETSC_VERSION_MINOR < 3) || \
      ((PETSC_VERSION_MINOR == 3) &&		\
       (PETSC_VERSION_SUBMINOR < 3))))
    ierr = VecScatterBegin (static_cast<const Vec &>(v), vector,
                            INSERT_VALUES, SCATTER_FORWARD, ctx);
    AssertThrow (ierr == 0, ExcPETScError(ierr));
   
    ierr = VecScatterEnd (static_cast<const Vec &>(v), vector,
                          INSERT_VALUES, SCATTER_FORWARD, ctx);

#else
    
    ierr = VecScatterBegin (ctx,static_cast<const Vec &>(v), vector,
                            INSERT_VALUES, SCATTER_FORWARD);
    AssertThrow (ierr == 0, ExcPETScError(ierr));

    ierr = VecScatterEnd (ctx, static_cast<const Vec &>(v), vector,
                          INSERT_VALUES, SCATTER_FORWARD);

#endif        
    AssertThrow (ierr == 0, ExcPETScError(ierr));

    ierr = VecScatterDestroy (ctx);
    AssertThrow (ierr == 0, ExcPETScError(ierr));
#endif
    
    return *this;
  }



  template <typename number>
  inline
  Vector &
  Vector::operator = (const dealii::Vector<number> &v) 
  {
    reinit (v.size(), true);
                                     // the following isn't necessarily fast,
                                     // but this is due to the fact that PETSc
                                     // doesn't offer an inlined access
                                     // operator.
                                     //
                                     // if someone wants to contribute some
                                     // code: to make this code faster, one
                                     // could either first convert all values
                                     // to PetscScalar, and then set them all
                                     // at once using VecSetValues. This has
                                     // the drawback that it could take quite
                                     // some memory, if the vector is large,
                                     // and it would in addition allocate
                                     // memory on the heap, which is
                                     // expensive. an alternative would be to
                                     // split the vector into chunks of, say,
                                     // 128 elements, convert a chunk at a
                                     // time and set it in the output vector
                                     // using VecSetValues. since 128 elements
                                     // is small enough, this could easily be
                                     // allocated on the stack (as a local
                                     // variable) which would make the whole
                                     // thing much more efficient.
                                     //
                                     // a second way to make things faster is
                                     // for the special case that
                                     // number==PetscScalar. we could then
                                     // declare a specialization of this
                                     // template, and omit the conversion. the
                                     // problem with this is that the best we
                                     // can do is to use VecSetValues, but
                                     // this isn't very efficient either: it
                                     // wants to see an array of indices,
                                     // which in this case a) again takes up a
                                     // whole lot of memory on the heap, and
                                     // b) is totally dumb since its content
                                     // would simply be the sequence
                                     // 0,1,2,3,...,n. the best of all worlds
                                     // would probably be a function in Petsc
                                     // that would take a pointer to an array
                                     // of PetscScalar values and simply copy
                                     // n elements verbatim into the vector...
    for (unsigned int i=0; i<v.size(); ++i)
      (*this)(i) = v(i);

    compress ();

    return *this;
  }
#endif // DOXYGEN

}

DEAL_II_NAMESPACE_CLOSE

#endif // DEAL_II_USE_PETSC

/*----------------------------   petsc_vector.h     ---------------------------*/

#endif
/*----------------------------   petsc_vector.h     ---------------------------*/