This file is indexed.

/usr/include/rheolef/rheolef.h is in librheolef-dev 6.5-1+b1.

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
#ifndef _RHEOLEF_H
#define _RHEOLEF_H
///
/// This file is part of Rheolef.
///
/// Copyright (C) 2000-2009 Pierre Saramito <Pierre.Saramito@imag.fr>
///
/// Rheolef is free software; you can redistribute it and/or modify
/// it under the terms of the GNU General Public License as published by
/// the Free Software Foundation; either version 2 of the License, or
/// (at your option) any later version.
///
/// Rheolef 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 General Public License for more details.
///
/// You should have received a copy of the GNU General Public License
/// along with Rheolef; if not, write to the Free Software
/// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
/// 
/// =========================================================================

/*Class:rheolef
NAME: @code{rheolef} -- The finite element library (@PACKAGE@-@VERSION@)
DESCRIPTION:
  @noindent
  The @code{Rheolef} is a computer environment that serves as a
  convenient laboratory for computations involving
  finite element methods.
  It provides a set of unix commands and C++ algorithms and containers.
  In particular, this environment
  allows the user to express a partial derivative problem
  in terms of finite element @code{space},
  discrete @code{field}, bilinear @code{form},
  and @code{geo}, describing geometries and meshes.

  This set of data structure is completed by the most
  up-to-date algorithms:
  preconditioned solvers for incompressible elasticity,
  Stokes and Navier-Stokes flows, characteristic method
  for convection dominated heat problems,...

  The pdf file of the user's manual, with many examples,
  is located on your distribution in the documentation
  directory. This directory is given by the following unix command:
  @example
    rheolef-config --docdir
  @end example
  All examples presented along the user's manual
  are available in the @code{example/} directory of the
  @code{Rheolef} source distribution:
  the directory, where all source code of examples are available,
  is given by the following unix command:
  @example
    rheolef-config --exampledir
  @end example
SEE ALSO: "geo"(3), "space"(3)
AUTHORS:
   LMC-IMAG, 38041 Grenoble cedex 9, France
   Pierre.Saramito@imag.fr
DATE:   14 december 2010
End:
*/

// for simplicity: include alls
# include "rheolef/field_expr_ops.h"
# include "rheolef/rheostream.h"
# include "rheolef/iorheo.h"
# include "rheolef/skit.h"
# include "rheolef/pcg.h"
# include "rheolef/eye.h"
# include "rheolef/geo.h"
# include "rheolef/geo_domain_indirect.h"
# include "rheolef/geo_domain.h"
# include "rheolef/space_mult.h"
# include "rheolef/space_component.h"
# include "rheolef/adapt.h"
# include "rheolef/level_set.h"
# include "rheolef/test.h"
# include "rheolef/characteristic.h"
# include "rheolef/field.h"
# include "rheolef/field_indirect.h"
# include "rheolef/field_expr.h"
# include "rheolef/field_functor.h"
# include "rheolef/field_nonlinear_expr.h"
# include "rheolef/field_nonlinear_expr_terminal.h"
# include "rheolef/field_nonlinear_expr_ops.h"
# include "rheolef/field_vf_expr.h"
# include "rheolef/field_vf_expr_dg.h"
# include "rheolef/field_vf_expr_ops.h"
# include "rheolef/field_vf_assembly.h"
# include "rheolef/field_concat.h"
# include "rheolef/field_valarray.h"
# include "rheolef/operators2.h"
# include "rheolef/rounder.h"
# include "rheolef/form.h"
# include "rheolef/form_weighted.h"
# include "rheolef/form_field_expr.h"
# include "rheolef/form_vf_expr.h"
# include "rheolef/form_vf_expr_ops_v0.h"
# include "rheolef/form_vf_expr_ops.h"
# include "rheolef/form_vf_assembly.h"
# include "rheolef/form_concat.h"
# include "rheolef/interpolate.h"
# include "rheolef/integrate.h"
# include "rheolef/catchmark.h"
# include "rheolef/branch.h"
# include "rheolef/band.h"
# include "rheolef/newton.h"
# include "rheolef/damped_newton.h"

// obsolete: for backward compat.
# include "rheolef/riesz.h"

#endif // _RHEOLEF_H