Skip to content

Commit

Permalink
Merge pull request aimacode#44 from articuno12/articuno12
Browse files Browse the repository at this point in the history
Fixed a typo in CYK-Parse
  • Loading branch information
ctjoreilly authored Mar 20, 2017
2 parents 5807841 + 4280a3b commit c3229a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion md/CYK-Parse.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## AIMA3e
__function__ CYK-Parse(_words_, _grammar_) __returns__ _P_, a table of probabilities
 _N_ ← Length(_words_)
 _M_ ← the number of nonterminal sumbols in _grammar_
 _M_ ← the number of nonterminal symbols in _grammar_
 _P_ ← an array of size [_M_, _N_, _N_], initially all 0
 /\* insert lexical rules for each word \*/
 __for__ _i_ = 1 __to__ _N_ __do__
Expand Down

0 comments on commit c3229a9

Please sign in to comment.