This file is indexed.

/usr/include/osl/rating/group/bigramGroup.h is in libosl-dev 0.4.2-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
/* bigramGroup.h
 */
#ifndef _BIGRAMGROUP_H
#define _BIGRAMGROUP_H

#include "osl/rating/group.h"
#include "osl/rating/feature/bigramAttack.h"

namespace osl
{
  namespace rating
  {
    class BigramAttackGroup : public Group
    {
      bool same, focus_x;
    public:
      static std::string name(bool same, bool focus_x);
      BigramAttackGroup(bool same, bool focus_x);

      void show(std::ostream& os, int name_width, const range_t& range, 
		const vector<double>& weights) const
      {
	showTopN(os, name_width, range, weights, 3);
      }
      int findMatch(const NumEffectState& state, Move m, const RatingEnv& env) const;
    };
  }
}


#endif /* _BIGRAMGROUP_H */
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End: