resource howto started

This commit is contained in:
aarne
2005-11-30 15:23:27 +00:00
parent 0c99efe54a
commit 9a711c2a08
9 changed files with 282 additions and 31 deletions

View File

@@ -1,4 +1,4 @@
abstract Conjunction = Sequence ** {
abstract Conjunction = Cat ** {
fun
@@ -12,4 +12,16 @@ abstract Conjunction = Sequence ** {
DConjNP : DConj -> SeqNP -> NP ; -- "either John or Mary"
DConjAdv : DConj -> SeqAdv -> Adv ; -- "both badly and slowly"
-- these are rather uninteresting
TwoS : S -> S -> SeqS ;
AddS : SeqS -> S -> SeqS ;
TwoAdv : Adv -> Adv -> SeqAdv ;
AddAdv : SeqAdv -> Adv -> SeqAdv ;
TwoNP : NP -> NP -> SeqNP ;
AddNP : SeqNP -> NP -> SeqNP ;
TwoAP : AP -> AP -> SeqAP ;
AddAP : SeqAP -> AP -> SeqAP ;
}