Changes between Version 3 and Version 4 of Clauses


Ignore:
Timestamp:
Apr 30, 2015, 3:09:00 PM (9 years ago)
Author:
Miloš Jakubíček
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Clauses

    v3 v4  
    1616
    1717http://nlp.fi.muni.cz/projekty/wwwajka/WwwAjkaSkripty/morph.cgi?jazyk=0
     18
     19
     20{{{
     21start -> ss ends
     22  depends(root,$1)
     23  depends(root,$2)
     24start -> ss
     25  depends(root,$1)
     26
     27ss -> clause
     28ss -> conjc clause
     29  depends($1,$2)
     30  add_conjunction($1,$2)
     31  propagate_all($2)
     32ss -> ss conj clause
     33  head($2)
     34  depends($2,$1,$3)
     35  add_conjunction($2,$3)
     36  sentence_rule_schema($1,$3)
     37# vzdy nizsi level nez inter -> commachar inter comma
     3870:ss -> ss bracket clause bracket
     39  head($1)
     40  test_comma_bracketing($2,$4)
     41  depends($1,$2,$3,$4)
     42ss -> commachar ss commachar
     43  head($2)
     44  depends($2,$1,$3)
     45  propagate_all($2)
     46ss -> commachar ss
     47  head($2)
     48  depends($2,$1)
     49  propagate_all($2)
     50
     51ends -> '.'
     52ends -> '?'
     53ends -> '!'
     54ends -> ':'
     55
     56/* ale|tedy - enclitics */
     57conjc -> CONJENCL
     58/* (jina spojka) - non-enclitics */
     59conjc -> CONJ
     60}}}