home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l217 / 2.ddi / PROGRAMS / SEN_AN.HLP < prev    next >
Encoding:
Text File  |  1990-03-26  |  736 b   |  23 lines

  1.  
  2.                      SENTENCE ANALYZER
  3.                             *****************
  4.  
  5.  SEN_AN can analyze a simple English sentence and draw a tree diagram
  6.  based on sentence structure.
  7.  
  8.  The sentences which can be recognized must conform to the following
  9.  syntax shown in BNF notation: 
  10.  
  11.    <SENTENCE>    ::= <NOUN PHRASE> <VERB PHRASE>
  12.  
  13. where:
  14.  
  15.    <NOUN PHRASE>        ::= <DETERMINER> <noun> <RELATIONAL CLAUSE>
  16.    <DETERMINER>         ::= <> | <determiner>
  17.    <RELATIONAL CLAUSE>  ::= <> | <relative> <VERB PHRASE>
  18.    <VERB PHRASE>        ::= <verb> | <NOUN PHRASE>
  19.  
  20.   Try analyzing the sentence: every man that lives loves a woman
  21.   For more information on SEN_AN please refer to Appendix G in the
  22.   Reference Guide.
  23.