This file is indexed.

/usr/lib/R/site-library/fastcluster/NEWS is in r-cran-fastcluster 1.1.13-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
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
fastcluster: Fast hierarchical clustering routines for R and Python

Copyright © 2011 Daniel Müllner
<http://danifold.net>


Version history
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
Version 1.0.0, 03/14/2011:

  • Initial release, dependent on Rcpp. Not available on CRAN.

Version 1.0.1, 03/15/2011:

  • Removed the dependence on Rcpp; only R's original C interface is used.

Version 1.0.2, 03/17/2011:

  • File DESCRIPTION: Fixed a typo

Version 1.0.3, 03/20/2011:

  • File README: Removed the warning about false results from the flashClust
    package since the new flashClust version 1.01 has this error corrected.

  • Cleaned the test file fastcluster_test.R up. (No dependence on the MASS
    package any more)

Version 1.0.4, 03/21/2011:

  • Changed the name of the external function from the outdated "Rcpp_linkage"
    to "fastcluster".

  • Registered the external function "fastcluster" in R.

  • Configured the C header inclusions to work on Fedora (thanks to Peter
    Langfelder).

Version 1.1.0, 08/21/2011

  • Routines for clustering vector data.

  • Added a User's manual

  • Revision of all files

Version 1.1.1, 10/08/2011

  • Fixed test scripts, which indicated an error on some architectures, even
    if results were correct. (The assumption was that ties in single linkage
    clustering are resolved in the same way, both for dissimilarity input and
    for vector input. This is not necessarily true if the floating point unit
    uses "excess precision". Now the test scripts are content with arbitrary
    resolution of ties and do not assume a specific scheme.)

  • Bug fix: uninitialized function pointer in Version 1.1.0

Version 1.1.2, 10/11/2011

  • Fix for Solaris: replaced ssize_t by ptrdiff_t in the C++ code.

  • Removed the NN-chain algorithm for vector input: it was not clear that
    it would work under all circumstances with the intricacies of floating-
    point arithmetic. Especially the effects of the excess precision on the
    x87 are impossible to control in a portable way. Now, the memory-saving
    routines for the “Ward” linkage use the generic algorithm, as “centroid”
    and “median” linkage do.

Version 1.1.3, 12/10/2011

  • Replaced ptrdiff_t by std::ptrdiff_t, as GCC 4.6.1 complains about this.

Version 1.1.4, 02/01/2012

  • Release the GIL in the Python package, so that it can be used efficiently
    in multithreaded applications.

  • Improved performance for the "Ward" method with vector input.

  • The "members" parameter in the R interface is now treated as a double
    array, not an integer array as before. This was a slight incompatibility
    with the stats::hclust function. Thanks to Matthias Studer, University of
    Geneva, for pointing this out.

Version 1.1.5, 02/14/2012

  • Updated the "members" specification in the User's manual to reflect the
    recent change.

Version 1.1.6, 03/12/2012

  • Bug fix related to GIL release in the Python wrapper. Thanks to Massimo
    Di Stefano for the bug report.

  • Small compatibility changes in the Python test scripts (again thanks to
    Massimo Di Stefano for the report).

Version 1.1.7, 09/17/2012

  • Scipy import is now optional (suggested by Forest Gregg)

  • Compatibility fix for NumPy 1.7. Thanks to Semihcan Doken for the bug
    report.

Version 1.1.8, 08/28/2012

  • Test for NaN dissimilarity values: Now the algorithms produce an error
    message instead of silently giving false results. The documentation was
    updated accordingly. This is the final design as intended: the fastcluster
    package handles infinity values correctly but complains about NaNs.

  • The Python interface now works with both Python 2 and Python 3.

  • Changed the license to BSD.

Version 1.1.9, 03/15/2013

  • Compatibility fix for the MSVC compilers on Windows.

  • Simplified GIL release in the Python interface.

Version 1.1.10, 05/22/2013

  • Updated citation information (JSS paper).

  • Suppress warnings where applicable. Compilation with GCC should
    not produce any warning at all, even if all compiler warnings
    are enabled. (The switch -pedantic still does not work, but this
    is due to the Python headers.)

  • Optimization: Hidden symbols. Only the interface functions are
    exported to the symbol table with GCC.

Version 1.1.11, 05/23/2013

  • Compatibility fix for Solaris.

Version 1.1.12, 12/10/2013

  • Tiny maintenance updates: new author web page and e-mail address,
    new location for R vignette.

Version 1.1.13, 12/17/2013

  • Moved the python directory due to CRAN requirements.