mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
started ExtEng
This commit is contained in:
7
lib/resource-1.0/english/English.gf
Normal file
7
lib/resource-1.0/english/English.gf
Normal file
@@ -0,0 +1,7 @@
|
||||
--# -path=.:../abstract:../common:prelude
|
||||
|
||||
concrete English of EnglishAbs =
|
||||
LangEng,
|
||||
-- IrregEng,
|
||||
ExtEng
|
||||
** {} ;
|
||||
5
lib/resource-1.0/english/EnglishAbs.gf
Normal file
5
lib/resource-1.0/english/EnglishAbs.gf
Normal file
@@ -0,0 +1,5 @@
|
||||
abstract EnglishAbs =
|
||||
Lang,
|
||||
--- IrregEngAbs,
|
||||
ExtEngAbs
|
||||
** {} ;
|
||||
26
lib/resource-1.0/english/ExtEng.gf
Normal file
26
lib/resource-1.0/english/ExtEng.gf
Normal file
@@ -0,0 +1,26 @@
|
||||
concrete ExtEng of ExtEngAbs = CatEng ** open ResEng in {
|
||||
|
||||
lincat
|
||||
|
||||
Aux = {s : Polarity => Str} ;
|
||||
|
||||
lin
|
||||
|
||||
PredAux np aux vp = mkS (np.s ! Nom) np.a
|
||||
(\\t,ant,b,ord,agr =>
|
||||
let
|
||||
fin = aux.s ! b ;
|
||||
vf : Str -> Str -> {fin, inf : Str} = \x,y ->
|
||||
{fin = x ; inf = y} ;
|
||||
in
|
||||
case ant of {
|
||||
Simul => vf fin [] ;
|
||||
Anter => vf fin "have"
|
||||
}
|
||||
)
|
||||
(\\agr => infVP vp agr) ;
|
||||
|
||||
can_Aux = {s = \\p => posneg p "can"} ; ---- cannt
|
||||
must_Aux = {s = \\p => posneg p "must"} ;
|
||||
|
||||
}
|
||||
15
lib/resource-1.0/english/ExtEngAbs.gf
Normal file
15
lib/resource-1.0/english/ExtEngAbs.gf
Normal file
@@ -0,0 +1,15 @@
|
||||
abstract ExtEngAbs = Cat ** {
|
||||
|
||||
cat
|
||||
Aux ; -- auxiliary verbs: "can", "must", etc
|
||||
|
||||
-- Notice that $Aux$ cannot form $VP$ with infinitive, imperative, etc.
|
||||
|
||||
fun
|
||||
PredAux : NP -> Aux -> VP -> Cl ;
|
||||
QuestAux : IP -> Aux -> VP -> QCl ;
|
||||
|
||||
can_Aux : Aux ;
|
||||
must_Aux : Aux ;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user