This file is indexed.

/usr/include/trilinos/AbstractLinAlgPack_VectorAuxiliaryOps.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
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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
// @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 ABSTRACT_LINALG_PACK_VECTOR_AUXILIARY_OPS_H
#define ABSTRACT_LINALG_PACK_VECTOR_AUXILIARY_OPS_H

#include <utility>

#include "AbstractLinAlgPack_VectorMutable.hpp"

namespace AbstractLinAlgPack {

/** \defgroup VectorAuxiliaryOps_grp Collection of auxiliary useful vector operations.
 */
//@{

/** \defgroup VectorAuxiliaryOps_ROp_grp Reduction operations */
//@{

/** \brief Compute the maximum element in a vector.
 *
 * Returns:
 \verbatim

 max{ v(i), i = 1...n }
 \endverbatim
 */
value_type max_element( const Vector& v ); 

/** \brief Computes the maximum positive and negative step that can be taken
  * that are within the relaxed bounds.
  *
  *	This function computes and returns the maximum (in magnitude) postive
  *	(<tt>return.first >= 0.0</tt>) and negative (<tt>return.second <= 0.0</tt>) steps
  * \c u that can be taken such that the relaxed bounds:
  \verbatim
  xl - max_bnd_viol <= x + u * d <= xu - max_bnd_viol
  \endverbatim
  * are strictly satisfied.
  *
  * If <tt>return.first < 0.0</tt> then this is a flag that \c x is not
  * in the relaxed bounds to begin with.  In this case \c return.second
  * has no meaning.
  */
std::pair<value_type,value_type>
max_near_feas_step(
  const Vector& x, const Vector& d
  ,const Vector& xl, const Vector& xu
  ,value_type max_bnd_viol
  ); 

/** \brief Computes the maximum relative step of <tt>x = x + d</tt>.
  *
  \verbatim

  return = max{ |d|/(1.0+|x(i)|), for i = 1...n }
  \endverbatim
  */
value_type max_rel_step(
  const Vector& x, const Vector& d
  );

/// 
/** Computes alpha_max by the fraction to boundary rule.
 *
 * ToDo: Finish documentation!
 */
value_type fraction_to_boundary(
  const value_type    tau,
  const Vector  &x,
  const Vector  &d,
  const Vector  &xl,
  const Vector  &xu
  );

/// 
/** Computes alpha_max by the fraction to boundary rule
 *   assuming only a lower bound of zero
 *
 * ToDo: Finish documentation!
 */
value_type fraction_to_zero_boundary(
  const value_type    tau,
  const Vector  &x,
  const Vector  &d
  );

/** \brief Count the number of finitly bounded elements in <tt>xl <= x <= xu</tt>.
 *
 * ToDo: Finish documentation!
 */
size_type num_bounded(
  const Vector& xl, const Vector& xu
  ,value_type inf_bound );

/** \brief Computes the log barrier term:
 *
 \verbatim

 sum{ log( x(i) - xl(i) ) + log( xu(i) - x(i) ) , for i = 1...n }
 \endverbatim
 */
value_type log_bound_barrier(
  const Vector    &x
  ,const Vector   &xl
  ,const Vector   &xu
  ); 

/** \brief Computes an estimate of the
 *   complementarity error
 *
 \verbatim
  for every i...
     comp_err = max(comp_err, v(i)*(xu(i)-x(i), -v(i)*(x(i)-xl(i))));
\endverbatim
 */
value_type combined_nu_comp_err(
  const Vector    &v
  ,const Vector   &x
  ,const Vector   &xl
  ,const Vector   &xu
  ); 


/** \brief Computes an estimate of the
 *   complementarity error when only the lower 
 *   bounds are non-infinite
 *
 \verbatim
  for every i...
     comp_err = max(comp_err, v(i)*(xl(i)-x(i))));

NOTE: equivalent to 
     comp_err = max(comp_err, -v(i)*(x(i)-xl(i))));

\endverbatim
 */
value_type combined_nu_comp_err_lower(
  const Vector    &v
  ,const Vector    &x
  ,const Vector   &xl
  );

/** \brief Computes an estimate of the
 *   complementarity error when only the upper
 *   bounds are non-infinite
 *
 \verbatim
  for every i...
     comp_err = max(comp_err, v(i)*(xu(i)-x(i))));
\endverbatim
 */
value_type combined_nu_comp_err_upper(
  const Vector    &v
  ,const Vector   &x
  ,const Vector   &xu
  );


/** \brief Computes the complementarity error
 *   for a primal/dual interior point
 *   algorithm using inf norm.
 *
 \verbatim
  for every i...
     comp_err = max(comp_err, 
                  ( fabs(vu(i)*(xu(i)-x(i)) - mu) ),
          ( fabs(vl(i)*(x(i)-xl(i)) - mu) )
          );
\endverbatim
 */
value_type IP_comp_err_with_mu(
  const value_type    mu
  ,const value_type   inf_bound
  ,const Vector &x
  ,const Vector &xl
  ,const Vector &xu
  ,const Vector &vl
  ,const Vector &vu
  );

/** \brief Compute the maximum violation from a set of inequality constraints <tt>vL <= v <= vU</tt>.
 *
 * @param  v      [in] Inequality value vector.
 * @param  vL     [in] Lower inequality bounds (may be -infinity (i.e. very large negative number))
 * @param  vU     [in] Upper inequality bounds (may be +infinity (i.e. very large positive number))
 * @param  max_viol_i
 *                [out] Gives the index of the inequality with the maximum (scaled) violation.
 *                If <tt>*max_viol_i == 0</tt> on output then no inequality was violated.
 * @param  max_viol
 *                [out] The maximum (scaled violation).
 *                Only significant if <tt>*max_viol_i > 0</tt>.  
 * @param  v_i
 *                [out] Set to <tt>v.get_ele(*max_viol_i)</tt>.
 *                Only significant if <tt>*max_viol_i > 0</tt>.
 * @param  bnd_type
 *                [out] The type of bound with the maximum violation.
 *                <ul>
 *                    <li> -1 : LOWER
 *                    <li>  0 : EQUALITY
 *                    <li> +1 : UPPER
 *                </ul>
 *                Only significant if <tt>*max_viol_i > 0</tt>.
 * @param  vLU_i
 *                [out] Set to:
 *                <ul>
 *                    <li><tt>vL.get_ele(*max_viol_i)</tt> if <tt>*bnd_type <= 0</tt>
 *                    <li><tt>vU.get_ele(*max_viol_i)</tt> if <tt>*bnd_type > 0</tt>
 *                </ul>
 *                Only significant if <tt>*max_viol_i > 0</tt>.  
 *
 * @return Returns <tt>true</tt> if some constraint was violated.
 *
 * Preconditions:<ul>
 * <li> ToDo: Spell these out!
 * </ul>
 *
 * Postconditions:<ul>
 * <li> ToDo: Spell these out!
 * </ul>
 *
 * In order to make the result unique if more than one inequality
 * <tt>vL(i) <= v(i) <= vL(i)</tt> have the same maximum violation
 * then the inequality with the lowest <tt>i</tt> is returned.
 *
 */
bool max_inequ_viol(
  const AbstractLinAlgPack::Vector   &v
  ,const AbstractLinAlgPack::Vector  &vL
  ,const AbstractLinAlgPack::Vector  &vU
  ,AbstractLinAlgPack::size_type     *max_viol_i
  ,AbstractLinAlgPack::value_type    *max_viol
  ,AbstractLinAlgPack::value_type    *v_i
  ,int                               *bnd_type
  ,AbstractLinAlgPack::value_type    *vLU_i
  ); 

//@}

/** \defgroup VectorAuxiliaryOps_TOp_grp Transformation operations */
//@{

/** \brief Force a vector in bounds.
 *
 \verbatim

          / xl(i)  : if x(i) < xl(i)
  x(i) =  | x(i)   : if xl(i) <= x(i) <= xu(i)
          \ xu(i)  : if x(i) > xu(i)

  , for 1 = 1...n
 \endverbatim
 */
void force_in_bounds( const Vector& xl, const Vector& xu, VectorMutable* x );

/** \brief Force a vector sufficiently within bounds according
 *   to a specified absolute and relative buffer
 *
 */
void force_in_bounds_buffer(
  const value_type     rel_push,
  const value_type     abs_push,
  const Vector   &xl, 
  const Vector   &xu, 
  VectorMutable  *x 
  );

/** \brief Computes the inverse of the difference
 *   between two vectors
 *
 \verbatim
 z(i) = alpha/(v0(i) - v1(i));
 \endverbatim
 */
void inv_of_difference(
  const value_type       alpha
  ,const Vector    &v0
  ,const Vector    &v1
  ,VectorMutable   *z
  );

/** \brief Corrects the lower bound multipliers with 
 *   infinite bounds
 *
 \verbatim
 vl(i) = (xl(i) <= inf_bound_limit) ? 0.0 : v(i);
 \endverbatim
 */
void correct_lower_bound_multipliers(
  const Vector      &xl
  ,const value_type       inf_bound_limit
  ,VectorMutable    *vl
  );

/** \brief Corrects the upper bound multipliers with 
 *   infinite bounds
 *
 \verbatim
 vl(i) = (xu(i) >= inf_bound_limit) ? 0.0 : v(i);
 \endverbatim
 */
void correct_upper_bound_multipliers(
  const Vector       &xu
  ,const value_type        inf_bound_limit
  ,VectorMutable     *vu
  );

/** \brief Calculates the multiplier step for lower bounds
 *
\verbatim
dvl(i) = -vl(i) + mu*invXl(i)*e - invXl(i)*Vl(i)*d_k(i)
\endverbatim
*/
void lowerbound_multipliers_step(
  const value_type         mu,
  const Vector       &invXl,
  const Vector       &vl,
  const Vector       &d_k,
  VectorMutable      *dvl
  );

/** \brief Calculates the multiplier step for the upper bounds
 *
 *
\verbatim
dvu(i) = -vu(i) + mu*invXl(i)*e + invXl(i)*Vl(i)*d_k(i)
\endverbatim
*/
void upperbound_multipliers_step(
  const value_type       mu,
  const Vector     &invXu,
  const Vector     &vu,
  const Vector     &d_k,
  VectorMutable    *dvu
  );


/** \brief Calculates the sqrt of each
 *   element in the vector
 * Pre Condition: all elements of z must be positive
 *
 \verbatim
 z(i) = sqrt(z(i));
 \endverbatim
 */
void ele_wise_sqrt(
  VectorMutable* z
    );		

/** \brief Take the maximum value of the vector elements and a scalar.
 *
 \verbatim

 y(i) = max( y(i), min_ele ), for i = 1...n
 \endverbatim
 */
void max_vec_scalar(
  value_type              min_ele
  ,VectorMutable    *y
  );

/** \brief Take the maximum value of the absolute vector elements and a scalar.
 *
 \verbatim

 y(i) = max( fabs(y(i)), min_ele ), for i = 1...n
 \endverbatim
 */
void max_abs_vec_scalar(
  value_type              min_ele
  ,VectorMutable    *y
  );

//@}

//@}

} // end namespace AbstractLinAlgPack

#endif // ABSTRACT_LINALG_PACK_VECTOR_AUXILIARY_OPS_H