This file is indexed.

/usr/include/osl/container/pieceValues.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
#ifndef _PIECE_VALUES_H
#define _PIECE_VALUES_H
#include "osl/piece.h"
#include "osl/misc/carray.h"
#include <iosfwd>

namespace osl
{
  namespace state
  {
    class SimpleState;
  } // namespace state
  
  namespace container
  {
    /**
     * 駒番号->intの配列. 局面に対する駒の価値など
     */
    class PieceValues : public CArray<int,Piece::SIZE>
    {
    public:
      PieceValues();
      ~PieceValues();
      
      int sum() const;
      void showValues(std::ostream&, const state::SimpleState&) const;
    };
  } // namespace container
  using container::PieceValues;
} // namespace osl
#endif // _PIECE_VALUES_H
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End: