This file is indexed.

/usr/include/libbasis/combinate.h is in libpsi3-dev 3.4.0-6+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
/*! \file
    \ingroup BASIS
    \brief Enter brief description of file here 
*/

// I know "combinate" is not a word

#ifndef _psi_src_lib_libbasis_combinate_h_
#define _psi_src_lib_libbasis_combinate_h_

#include <stdexcept>
#include <psitypes.h>

namespace psi {

/** Class StatCombData contains static data of combinatorial type -
    factorials, binomial coefficients, etc. */
class StatCombData {

  int imax_;
  PSI_FLOAT* Fact_;        // Factorial
  PSI_FLOAT* Fact2_;       // Double factorial
  PSI_FLOAT** BinomC_;      // Binomial coefficients

  void check_index(int i) const
    {
      if (i < 0 || i > imax_)
	throw std::runtime_error("ERROR: StatCombData::check_index() -- index out of bounds");
    };

  // No default constructor
  StatCombData();
  // No copy constructor
  StatCombData(const StatCombData&);
  // No assignment operator
  StatCombData& operator=(const StatCombData&);

 public:
  StatCombData(int imax);
  ~StatCombData();

  /// Return n!
  PSI_FLOAT fact(int n) const { check_index(n); return Fact_[n]; };
  /// Return n!!
  PSI_FLOAT fact2(int n) const { check_index(n); return Fact2_[n]; };
  /// Return binomial coefficient (n, m), where n>=m
  PSI_FLOAT binomc(int n, int m) const { check_index(n); check_index(m); return BinomC_[n][m]; };
};

} // end of namespace psi

#endif