This file is indexed.

/usr/include/adolc/lie/drivers.h is in libadolc-dev 2.6.3-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
/*----------------------------------------------------------------------------
 ADOL-C -- Automatic Differentiation by Overloading in C++
 File:     lie/drivers.h
 Revision: $Id$
 Contents: functions for computation of Lie derivatives
 

 Copyright (c) Siquian Wang, Klaus Röbenack, Jan Winkler, Mirko Franke

 This file is part of ADOL-C. This software is provided as open source.
 Any use, reproduction, or distribution of the software constitutes 
 recipient's acceptance of the terms of the accompanying license file.  
  
----------------------------------------------------------------------------*/
#if !defined(ADOLC_LIE_DRIVER_H)
#define ADOLC_LIE_DRIVER_H

#include "adolc/internal/common.h"


// C++ declarations available only when compiling with C++
#if defined(__cplusplus)

ADOLC_DLL_EXPORT int lie_scalar(short, short, short, double*, short, double*);
ADOLC_DLL_EXPORT int lie_scalar(short, short, short, short, double*, short, double**);
ADOLC_DLL_EXPORT int lie_gradient(short, short, short, double*, short, double**);
ADOLC_DLL_EXPORT int lie_gradient(short, short, short, short, double*, short, double***);

#endif



// C-declarations
#if defined (__cplusplus)
extern "C" {
#endif
 
ADOLC_DLL_EXPORT int lie_scalarc(short, short, short, double*, short, double*);
ADOLC_DLL_EXPORT int lie_scalarcv(short, short, short, short, double*, short, double**);
ADOLC_DLL_EXPORT int lie_gradientc(short, short, short, double*, short, double**);
ADOLC_DLL_EXPORT int lie_gradientcv(short, short, short, short, double*, short, double***);
ADOLC_DLL_EXPORT int lie_covector(short, short, short, double*, short, double**);
ADOLC_DLL_EXPORT int lie_bracket(short, short, short, double*, short, double**);

#if defined (__cplusplus)
}
#endif



#endif