This file is indexed.

/usr/share/link-grammar/any/README.md is in link-grammar-dictionaries-en 5.3.16-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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Defintion of the "ANY" language.
--------------------------------
The dictionary define here will parse "any" language, exploring all
combinatoric possibilities.  It is used for certain machine-learning
tasks, when one wants to iterate over all possible parse trees in
every possible way.

Some important design notes to be kept in mind.

* The code implicitly assumes that white-space is a word-separator.
  This works great for just about all modern langauges, but can
  present difficulties for ancient and academic texts.

  In particular, Chinese texts are NOT written with white-space
  separated words, and word segmentation is outside the bounds
  of what can be supported here.

* Punctuation: the `4.0.affix` file defines a set of leading and
  trailing punctuation that is automatically stripped from the
  beginings and endings of words. The list of punctuation in manually
  assembled, and is more-or-less complete and appropriate for most
  modern lanuages.  Again, this assumption can be problematic.

  In a truly purist approach to language-learning, the learning process
  should be able to discern punctuation on it's own, without needing
  to have it be pre-specified. However, this is currently impractical,
  and so the short-term hack is that punctuation is stripped, manually,
  here.

* Root words: The current dictionary allows the identification of
  multiple "root" words, e.g. of words that could be interpreted as
  root-verbs and root-nouns (subjects).  This may come as a surprise
  to some linguists, as there is only one root in the Chomskian
  tradition, and many dependency grammars share this tradition and
  only link to a single root, usually the root verb.

  This is accomplished by having LEFT-WALL attach with `@ANY+`.