Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For example if you have the following graph:

[v1]V----[President]----[v2]V


And then you apply the CaseAnalysis Stage to this graph, you will get:

[v1]V----[President]----[v2]V
 ^------[president-]----^


In this example, the first "President" token will have the TITLE_CASE flag, and the second (normalized) "president" token will have the ALL_LOWER_CASE flag. There is no flag which says "I was derived from some other token which was TITLE_CASE".

...