CYK algorithm: Difference between revisions

Content deleted Content added
top: mention CKY, which links here
Using \mathit to tighten up spacing in multi-letter non-terminals in grammar example.
Line 38:
 
:<math>\begin{array}{lcl}
S &\to& \mathit{NP} \;\; \mathit{VP}\\
\mathit{VP} &\to& \mathit{VP} \;\; \mathit{PP}\\
\mathit{VP} &\to& V \;\; \mathit{NP}\\
\mathit{VP} &\to& \textit{eats}\\
\mathit{PP} &\to& P \;\; \mathit{NP}\\
\mathit{NP} &\to& \mathit{Det} \;\; N\\
\mathit{NP} &\to& \textit{she}\\
V &\to& \textit{eats}\\
P &\to& \textit{with}\\