1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
--# -path=.:prelude
concrete GrammarEng of Grammar = open Prelude, MorphoEng in {
lincat
Phr = {s : Str} ;
S = {s : Str} ;
QS = {s : Str} ;
Cl = {s : Order => Bool => Str} ;
QCl = {s : Order => Bool => Str} ;
NP = NounPhrase ;
IP = NounPhrase ;
CN = Noun ;
Det = {s : Str ; n : Number} ;
IDet = {s : Str ; n : Number} ;
AP = {s : Str} ;
Adv = {s : Str} ;
AdA = {s : Str} ;
VP = VerbPhrase ;
N = Noun ;
A = {s : Str} ;
V = Verb ;
V2 = Verb2 ;
Conj = {s : Str} ;
Subj = {s : Str} ;
Pol = {s : Str ; p : Bool} ;
lin
PhrS = postfixSS "." ;
PhrQS = postfixSS "?" ;
UseCl pol cl = {s = pol.s ++ cl.s ! Dir ! pol.p} ;
UseQCl pol qcl = {s = pol.s ++ qcl.s ! Inv ! pol.p} ;
QuestCl cl = cl ;
SubjS subj s = {s = subj.s ++ s.s} ;
PredVP = predVP ;
QuestVP ip vp = let cl = predVP ip vp in {s = \\_ => cl.s ! Dir};
QuestV2 ip np v2 = {
s = \\ord,pol =>
let
vp : VerbPhrase = predVerb v2
in
bothWays (ip.s ++ (predVP np vp).s ! ord ! pol) v2.c
} ;
ComplV2 v np = insertObject (v.c ++ np.s) (predVerb v) ;
ComplAP ap = {
s = \\_,b,n => {
fin = copula b n ;
inf = ap.s
}
} ;
DetCN det cn = {s = det.s ++ cn.s ! det.n ; n = det.n} ;
ModCN ap cn = {s = \\n => ap.s ++ cn.s ! n} ;
AdVP adv = insertObject adv.s ;
AdAP ada ap = {s = ada.s ++ ap.s} ;
IDetCN det cn = {s = det.s ++ cn.s ! det.n ; n = det.n} ;
ConjS c a b = {s = a.s ++ c.s ++ b.s} ;
ConjNP c a b = {s = a.s ++ c.s ++ b.s ; n = Pl} ;
UseN n = n ;
UseA a = a ;
UseV = predVerb ;
this_Det = {s = "this" ; n = Sg} ;
that_Det = {s = "that" ; n = Sg} ;
these_Det = {s = "these" ; n = Pl} ;
those_Det = {s = "those" ; n = Pl} ;
every_Det = {s = "every" ; n = Sg} ;
theSg_Det = {s = "the" ; n = Sg} ;
thePl_Det = {s = "the" ; n = Pl} ;
indef_Det = {s = artIndef ; n = Sg} ;
plur_Det = {s = [] ; n = Pl} ;
two_Det = {s = "two" ; n = Pl} ;
today_Adv = {s = "today"} ;
very_AdA = {s = "very"} ;
which_IDet = {s = "which" ; n = Sg} ;
and_Conj = {s = "and"} ;
because_Subj = {s = "because"} ;
PPos = {s = [] ; p = True} ;
PNeg = {s = [] ; p = False} ;
param
Order = Dir | Inv ;
oper
NounPhrase = {s : Str ; n : Number} ;
VerbPhrase = {s : Order => Bool => Number => {fin,inf : Str}} ;
predVP : NounPhrase -> VerbPhrase -> {s : Order => Bool => Str} =
\np,vp -> {
s = \\q,p =>
let vps = vp.s ! q ! p ! np.n
in case q of {
Dir => np.s ++ vps.fin ++ vps.inf ;
Inv => vps.fin ++ np.s ++ vps.inf
}
} ;
copula : Bool -> Number -> Str = \b,n -> case n of {
Sg => posneg b "is" ;
Pl => posneg b "are"
} ;
do : Bool -> Number -> Str = \b,n ->
posneg b ((mkV "do").s ! n) ;
predVerb : Verb -> VerbPhrase = \verb -> {
s = \\q,b,n =>
let
inf = verb.s ! Pl ;
fin = verb.s ! n ;
aux = do b n
in
case <q,b> of {
<Dir,True> => {fin = [] ; inf = fin} ;
_ => {fin = aux ; inf = inf}
}
} ;
insertObject : Str -> VerbPhrase -> VerbPhrase =
\obj,vp -> {
s = \\q,b,n => let vps = vp.s ! q ! b! n in {
fin = vps.fin ;
inf = vps.inf ++ obj
}
} ;
posneg : Bool -> Str -> Str = \b,do -> case b of {
True => do ;
False => do + "n't"
} ;
artIndef : Str =
pre {"a" ; "an" / strs {"a" ; "e" ; "i" ; "o"}} ;
}
|