This file is indexed.

/usr/include/kytea/feature-vector.h is in libkytea-dev 0.4.6+dfsg-2.

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
#ifndef FEATURE_VECTOR_H__
#define FEATURE_VECTOR_H__

#include <kytea/config.h>
#include <stdint.h>

namespace kytea {
// Define the size of the feature values and sums
#if DISABLE_QUANTIZE
    typedef double FeatVal;
    typedef double FeatSum;
#else
    typedef int16_t FeatVal;
    typedef int32_t FeatSum;
#endif
typedef std::vector<FeatVal> FeatVec;
}

#endif