diff --git a/lib/doc/api-examples.txt b/lib/doc/api-examples.txt index a78e9e92f..295c515a9 100644 --- a/lib/doc/api-examples.txt +++ b/lib/doc/api-examples.txt @@ -325,19 +325,24 @@ mkNum (mkNumeral (tenfoldSub100 n2_Unit)) mkNum : Digits -> Num -- 21 mkNum (mkDigits n2_Dig (mkDigits n1_Dig)) -- mkNum : Digit -> Num -- five --- mkNum : Card -> Num -- almost ten --- mkNum : AdN -> Card -> Num -- almost ten + mkNum : Card -> Num -- almost ten +mkNum (mkCard almost_AdN (mkCard (mkNumeral n5_Unit))) + mkNum : AdN -> Card -> Num -- almost ten +mkNum (mkCard almost_AdN (mkCard (mkNumeral n5_Unit))) -- singularNum : Num -- singular -- pluralNum : Num -- plural -- mkCard : Str -> Card -- thirty-five (given as "35") --- mkCard : Numeral -> Card -- twenty + mkCard : Numeral -> Card -- twenty +mkCard (mkNumeral n7_Unit) -- mkCard : Digits -> Card -- 51 -- mkCard : AdN -> Card -> Card -- almost fifty -- mkOrd : Numeral -> Ord -- twentieth -- mkOrd : Digits -> Ord -- 51st -- mkOrd : Digit -> Ord -- fifth --- mkOrd : A -> Ord -- largest --- mkAdN : CAdv -> AdN -- more than + mkOrd : A -> Ord -- largest +mkOrd small_A + mkAdN : CAdv -> AdN -- more than +mkAdN more_CAdv -- mkNumeral : Sub1000 -> Numeral -- coerce 1..999 -- mkNumeral : Sub1000 -> Sub1000 -> Numeral -- 1000m + n -- mkNumeral : Str -> Numeral -- thirty-five (given by "35") @@ -410,12 +415,18 @@ mkCN (mkCN old_A man_N) (mkRS (mkRCl which_RP she_NP love_V2)) mkCN house_N (mkAdv on_Prep (mkNP the_Det hill_N)) mkCN : CN -> Adv -> CN -- big house on the hill mkCN (mkCN big_A house_N) (mkAdv on_Prep (mkNP the_Det hill_N)) --- mkCN : CN -> S -> CN -- rule that she sleeps --- mkCN : CN -> QS -> CN -- question if she sleeps --- mkCN : CN -> VP -> CN -- reason to sleep --- mkCN : CN -> SC -> CN -- reason to sleep --- mkCN : N -> NP -> CN -- king John --- mkCN : CN -> NP -> CN -- old king John + mkCN : CN -> S -> CN -- rule that she sleeps +mkNum (mkCard almost_AdN (mkCard (mkNumeral n5_Unit))) + mkCN : CN -> QS -> CN -- question if she sleeps +mkNum (mkCard almost_AdN (mkCard (mkNumeral n5_Unit))) + mkCN : CN -> VP -> CN -- reason to sleep +mkCN (mkCN reason_N) (mkVP sleep_V) + mkCN : CN -> SC -> CN -- reason to sleep +mkCN (mkCN reason_N) (mkVP sleep_V) + mkCN : N -> NP -> CN -- king John +mkCN king_N (mkNP john_PN) + mkCN : CN -> NP -> CN -- old king John +mkCN (mkCN old_A king_N) (mkNP john_PN) mkAP : A -> AP -- warm mkAP warm_A mkAP : A -> NP -> AP -- warmer than Paris @@ -426,17 +437,22 @@ mkAP married_A2 she_NP mkAP married_A2 mkAP : AP -> S -> AP -- probable that she sleeps mkCl (mkVP (mkAP (mkAP good_A) (mkS (mkCl she_NP sleep_V)))) --- mkAP : AP -> QS -> AP -- uncertain who sleeps --- mkAP : AP -> VP -> AP -- ready to go + mkAP : AP -> QS -> AP -- uncertain who sleeps +mkCl (mkVP (mkAP (mkAP uncertain_A) (mkQS (mkQCl who_IP sleep_V)))) + mkAP : AP -> VP -> AP -- ready to go +mkCl she_NP (mkAP (mkAP ready_A) (mkVP sleep_V)) -- mkAP : AP -> SC -> AP -- ready to go mkAP : AdA -> A -> AP -- very old mkAP very_AdA old_A mkAP : AdA -> AP -> AP -- very very old mkAP very_AdA (mkAP very_AdA old_A) --- mkAP : Conj -> AP -> AP -> AP -- old and big --- mkAP : Conj -> ListAP -> AP -- old, big and warm --- mkAP : Ord -> AP -- oldest --- mkAP : CAdv -> AP -> NP -> AP -- as old as she + mkAP : Conj -> AP -> AP -> AP -- old and big +mkAP or_Conj (mkAP old_A) (mkAP young_A) + mkAP : Conj -> ListAP -> AP -- old, big and warm +mkAP and_Conj (mkListAP (mkAP old_A) (mkListAP (mkAP big_A) (mkAP warm_A))) + mkAP : Ord -> AP -- oldest +mkAP (mkOrd old_A) + mkAP : CAdv -> AP -> NP -> AP -- as old as she mkAP as_CAdv (mkAP old_A) she_NP reflAP : A2 -> AP -- married to himself mkUtt (reflAP married_A2) @@ -474,41 +490,41 @@ mkQCl who_IP love_V2 she_NP mkQCl who_IP send_V3 it_NP she_NP mkQCl : IP -> VV -> VP -> QCl -- who wants to sleep mkQCl who_IP want_VV (mkVP sleep_V) - mkQCl : IP -> VS -> S -> Cl -- who says that I sleep + mkQCl : IP -> VS -> S -> QCl -- who says that I sleep mkQCl who_IP say_VS (mkS (mkCl i_NP sleep_V)) - mkQCl : IP -> VQ -> QS -> Cl -- who wonders who sleeps + mkQCl : IP -> VQ -> QS -> QCl -- who wonders who sleeps mkQCl who_IP wonder_VQ (mkQS (mkQCl who_IP sleep_V)) - mkQCl : IP -> VA -> A -> Cl -- who becomes old + mkQCl : IP -> VA -> A -> QCl -- who becomes old mkQCl who_IP become_VA old_A - mkQCl : IP -> VA -> AP -> Cl -- who becomes very old + mkQCl : IP -> VA -> AP -> QCl -- who becomes very old mkQCl who_IP become_VA (mkAP very_AdA old_A) - mkQCl : IP -> V2A -> NP -> A -> Cl -- who paints it red + mkQCl : IP -> V2A -> NP -> A -> QCl -- who paints it red mkQCl who_IP paint_V2A it_NP red_A - mkQCl : IP -> V2A -> NP -> AP -> Cl -- who paints it very red + mkQCl : IP -> V2A -> NP -> AP -> QCl -- who paints it very red mkQCl who_IP paint_V2A it_NP (mkAP very_AdA red_A) - mkQCl : IP -> V2S -> NP -> S -> Cl -- who answers to him that we sleep + mkQCl : IP -> V2S -> NP -> S -> QCl -- who answers to him that we sleep mkQCl who_IP answer_V2S he_NP (mkS (mkCl we_NP sleep_V)) - mkQCl : IP -> V2Q -> NP -> QS -> Cl -- who asks him who sleeps + mkQCl : IP -> V2Q -> NP -> QS -> QCl -- who asks him who sleeps mkQCl who_IP ask_V2Q he_NP (mkQS (mkQCl who_IP sleep_V)) - mkQCl : IP -> V2V -> NP -> VP -> Cl -- who begs him to sleep + mkQCl : IP -> V2V -> NP -> VP -> QCl -- who begs him to sleep mkQCl who_IP beg_V2V he_NP (mkVP sleep_V) - mkQCl : IP -> A -> Cl -- who is old + mkQCl : IP -> A -> QCl -- who is old mkQCl who_IP old_A - mkQCl : IP -> A -> NP -> Cl -- who is older than he + mkQCl : IP -> A -> NP -> QCl -- who is older than he mkQCl who_IP old_A he_NP - mkQCl : IP -> A2 -> NP -> Cl -- who is married to him + mkQCl : IP -> A2 -> NP -> QCl -- who is married to him mkQCl who_IP married_A2 he_NP - mkQCl : IP -> AP -> Cl -- who is very old + mkQCl : IP -> AP -> QCl -- who is very old mkQCl who_IP (mkAP very_AdA old_A) - mkQCl : IP -> NP -> Cl -- who is the woman + mkQCl : IP -> NP -> QCl -- who is the woman mkQCl who_IP (mkNP the_Det woman_N) - mkQCl : IP -> N -> Cl -- who is a woman + mkQCl : IP -> N -> QCl -- who is a woman mkQCl who_IP woman_N - mkQCl : IP -> CN -> Cl -- who is an old woman + mkQCl : IP -> CN -> QCl -- who is an old woman mkQCl who_IP (mkCN old_A woman_N) - mkQCl : IP -> Adv -> Cl -- who is here + mkQCl : IP -> Adv -> QCl -- who is here mkQCl who_IP here_Adv - mkQCl : IP -> VP -> Cl -- who always sleeps + mkQCl : IP -> VP -> QCl -- who always sleeps mkQCl who_IP (mkVP always_AdV (mkVP sleep_V)) mkQCl : IAdv -> Cl -> QCl -- why does she sleep mkQCl why_IAdv (mkCl she_NP sleep_V) @@ -612,19 +628,32 @@ mkRCl which_RP (mkClSlash (mkClSlash she_NP love_V2) today_Adv) which_RP mkRP : Prep -> NP -> RP -> RP -- all the cities in which mkRP in_Prep (mkNP all_Predet (mkNP the_Quant pluralNum city_N)) which_RP ---. mkSSlash : Temp -> Pol -> ClSlash -> SSlash +mkSSlash (mkTemp pastTense anteriorAnt) negativePol (mkClSlash she_NP (mkVPSlash see_V2)) mkClSlash : NP -> VPSlash -> ClSlash -- (whom) he sees here +mkQCl who_IP (mkClSlash she_NP (mkVPSlash see_V2)) mkClSlash : NP -> V2 -> ClSlash -- (whom) he sees - mkClSlash : NP -> VV -> V2 -> ClSlash -- (whom) he wants to see - mkClSlash : Cl -> Prep -> ClSlash -- (with whom) he sleeps +mkQCl who_IP (mkClSlash she_NP see_V2) + mkClSlash : NP -> VV -> V2 -> ClSlash -- (whom) he wants to see +mkQCl who_IP (mkClSlash she_NP want_VV see_V2) + mkClSlash : Cl -> Prep -> ClSlash -- (with whom) he sleeps +mkQCl who_IP (mkClSlash (mkCl she_NP sleep_V) with_Prep) mkClSlash : ClSlash -> Adv -> ClSlash -- (whom) he sees tomorrow - mkClSlash : NP -> VS -> SSlash -> ClSlash -- (whom) she says that he loves +mkQCl who_IP (mkClSlash (mkClSlash she_NP see_V2) today_Adv) + mkClSlash : NP -> VS -> SSlash -> ClSlash -- (whom)she says that he s +mkQCl who_IP (mkClSlash she_NP know_VS (mkSSlash (mkTemp pastTense anteriorAnt) negativePol (mkClSlash we_NP (mkVPSlash see_V2)))) +--. mkVPSlash : V2 -> VPSlash -- (whom) (she) loves - mkVPSlash : V3 -> NP -> VPSlash -- (whom) (she) gives an apple - mkVPSlash : V2A -> AP -> VPSlash -- (whom) (she) paints red - mkVPSlash : V2Q -> QS -> VPSlash -- (whom) (she) asks who sleeps - mkVPSlash : V2S -> S -> VPSlash -- (whom) (she) tells that we sleep +mkQCl who_IP (mkClSlash she_NP (mkVPSlash see_V2)) + mkVPSlash : V3 -> NP -> VPSlash -- (whom) (she) gives an apple +mkQCl who_IP (mkClSlash she_NP (mkVPSlash send_V3 it_NP)) + mkVPSlash : V2A -> AP -> VPSlash -- (whom) (she) paints red +mkQCl who_IP (mkClSlash she_NP (mkVPSlash paint_V2A (mkAP red_A))) + mkVPSlash : V2Q -> QS -> VPSlash -- (whom) (she) asks who sleeps +mkQCl who_IP (mkClSlash she_NP (mkVPSlash ask_V2Q (mkQS (mkQCl where_IAP (mkCl i_NP sleep_V))))) + mkVPSlash : V2S -> S -> VPSlash -- (whom) (she) tells that we sleep +mkQCl who_IP (mkClSlash she_NP (mkVPSlash answer_V2S (mkS (mkCl i_NP sleep_V)))) mkVPSlash : V2V -> VP -> VPSlash -- (whom) (she) forces to sleep +mkQCl who_IP (mkClSlash she_NP (mkVPSlash beg_V2V (mkVP sleep_V))) mkVPSlash : VV -> VPSlash -> VPSlash -- want always to buy mkVPSlash : V2V -> NP -> VPSlash -> VPSlash -- beg me always to buy diff --git a/lib/doc/synopsis.html b/lib/doc/synopsis.html index 5c219c0b2..ef233888b 100644 --- a/lib/doc/synopsis.html +++ b/lib/doc/synopsis.html @@ -87,7 +87,7 @@ of C that takes D as an argument. What the constructors exactly ar and what other arguments they take, is described by separate tables for each category.

- +
@@ -152,7 +152,7 @@ also in the Paradigms modules.

Explanations

-
+
@@ -497,7 +497,7 @@ Lexical category, constructors given in

AP - adjectival phrase

-
Category Explanation
+
@@ -536,12 +536,12 @@ Lexical category, constructors given in - + - + @@ -561,33 +561,33 @@ Lexical category, constructors given in - + - + - + - + - +
Function Type
mkAP AP -> QS -> APuncertain if she sleeps
it is uncertain who sleeps
mkAP AP -> VP -> APready to go
she is ready to sleep
mkAP
mkAP Conj -> AP -> AP -> APold and big
old or young
mkAP Conj -> ListAP -> APold, big and warm
old , big and warm
mkAP Ord -> APoldest
oldest
mkAP CAdv -> AP -> NP -> APas old as she
as old as she
reflAP A2 -> APmarried to himself
married to itself

AdA - adjective-modifying adverb

- +
@@ -622,7 +622,7 @@ Lexical category, constructors given in

AdN - numeral-modifying adverb

-
Function Type
+
@@ -646,13 +646,13 @@ Lexical category, constructors given in - +
Function Type
mkAdN CAdv -> AdNmore than
AdverbEng.AdnCAdv {s = "more"; p = "than"; lock_CAdv : {} = <>}

AdV - adverb directly attached to verb

- +
@@ -667,7 +667,7 @@ Lexical category, constructors given in

Adv - verb-phrase-modifying adverb

-
Function Type
+
@@ -757,7 +757,7 @@ Lexical category, constructors given in

Ant - anteriority

-
Function Type
+
@@ -777,7 +777,7 @@ Lexical category, constructors given in

CAdv - comparative adverb

-
Function Type
+
@@ -802,7 +802,7 @@ Lexical category, constructors given in

CN - common noun (without determiner)

-
Function Type
+
@@ -876,38 +876,38 @@ Lexical category, constructors given in - + - + - + - + - + - +
Function Type
mkCN CN -> S -> CNrule that she sleeps
almost five
mkCN CN -> QS -> CNquestion if she sleeps
almost five
mkCN CN -> VP -> CNreason to sleep
reason to sleep
mkCN CN -> SC -> CNreason to sleep
reason to sleep
mkCN N -> NP -> CNking John
king John
mkCN CN -> NP -> CNold king John
old king John

Card - cardinal number

- +
@@ -921,7 +921,7 @@ Lexical category, constructors given in - + @@ -937,7 +937,7 @@ Lexical category, constructors given in

Cl - declarative clause, with all tenses

-
Function Type
mkCard Numeral -> Cardtwenty
seven
mkCard
+
@@ -961,7 +961,7 @@ Lexical category, constructors given in - + @@ -1102,7 +1102,7 @@ Lexical category, constructors given in

ClSlash

-
Function Type
mkCl NP -> V3 -> NP -> NP -> Cl
she sends it to him
she sends it to him
mkCl
+
@@ -1111,38 +1111,38 @@ Lexical category, constructors given in - + - + - + - + - + - +
Function Type
mkClSlash NP -> VPSlash -> ClSlash(whom) he sees here
whom does she see
mkClSlash NP -> V2 -> ClSlash(whom) he sees
whom does she see
mkClSlash NP -> VV -> V2 -> ClSlash(whom) he wants to see
whom does she want to see
mkClSlash Cl -> Prep -> ClSlash(with whom) he sleeps
with whom does she sleep
mkClSlash ClSlash -> Adv -> ClSlash(whom) he sees tomorrow
whom does she see today
mkClSlash NP -> VS -> SSlash -> ClSlash(whom) she says that he loves
whom does she know that we hadn't seen

Comp - complement of copula, such as AP

- +
@@ -1167,7 +1167,7 @@ Lexical category, constructors given in

Conj - conjunction

-
Function Type
+
@@ -1202,7 +1202,7 @@ Lexical category, constructors given in

Det - determiner phrase

-
Function Type
+
@@ -1322,7 +1322,7 @@ Lexical category, constructors given in

Dig

-
Function Type
+
@@ -1382,7 +1382,7 @@ Lexical category, constructors given in

Digits - cardinal or ordinal in digits

-
Function Type
+
@@ -1407,7 +1407,7 @@ Lexical category, constructors given in

IAdv - interrogative adverb

-
Function Type
+
@@ -1452,7 +1452,7 @@ Lexical category, constructors given in

IComp - interrogative complement of copula

-
Function Type
+
@@ -1472,7 +1472,7 @@ Lexical category, constructors given in

IDet - interrogative determiner

-
Function Type
+
@@ -1507,7 +1507,7 @@ Lexical category, constructors given in

IP - interrogative pronoun

-
Function Type
+
@@ -1561,7 +1561,7 @@ Lexical category, constructors given in - + @@ -1582,7 +1582,7 @@ Lexical category, constructors given in

IQuant

-
Function Type
what_IP IP
what
what
whoPl_IP
+
@@ -1597,7 +1597,7 @@ Lexical category, constructors given in

Imp - imperative

-
Function Type
+
@@ -1622,7 +1622,7 @@ Lexical category, constructors given in

ImpForm

-
Function Type
+
@@ -1653,7 +1653,7 @@ Lexical category, constructors given in

ListAP

-
Function Type
+
@@ -1673,7 +1673,7 @@ Lexical category, constructors given in

ListAdv

-
Function Type
+
@@ -1693,7 +1693,7 @@ Lexical category, constructors given in

ListNP

-
Function Type
+
@@ -1713,7 +1713,7 @@ Lexical category, constructors given in

ListRS

-
Function Type
+
@@ -1733,7 +1733,7 @@ Lexical category, constructors given in

ListS

-
Function Type
+
@@ -1771,7 +1771,7 @@ Lexical category, constructors given in

NP - noun phrase (subject or object)

-
Function Type
+
@@ -1991,7 +1991,7 @@ Lexical category, constructors given in

Num - number determining element

-
Function Type
+
@@ -2020,12 +2020,12 @@ Lexical category, constructors given in - + - + @@ -2041,7 +2041,7 @@ Lexical category, constructors given in

Numeral - cardinal or ordinal in words

-
Function Type
mkNum Card -> Numalmost ten
almost five
mkNum AdN -> Card -> Numalmost ten
almost five
pluralNum
+
@@ -2081,7 +2081,7 @@ Lexical category, constructors given in

Ord - ordinal number (used in Det)

-
Function Type
+
@@ -2105,13 +2105,13 @@ Lexical category, constructors given in - +
Function Type
mkOrd A -> Ordlargest
smallest

PConj - phrase-beginning conjunction

- +
@@ -2147,7 +2147,7 @@ Lexical category, constructors given in

Phr - phrase in a text

-
Function Type
+
@@ -2182,7 +2182,7 @@ Lexical category, constructors given in

Pol - polarity

-
Function Type
+
@@ -2202,7 +2202,7 @@ Lexical category, constructors given in

Predet - predeterminer (prefixed Quant)

-
Function Type
+
@@ -2232,7 +2232,7 @@ Lexical category, constructors given in

Prep - preposition, or just case

-
Function Type
+
@@ -2347,7 +2347,7 @@ Lexical category, constructors given in

Pron - personal pronoun

-
Function Type
+
@@ -2402,7 +2402,7 @@ Lexical category, constructors given in

Punct

-
Function Type
+
@@ -2427,7 +2427,7 @@ Lexical category, constructors given in

QCl - question clause, with all tenses

-
Function Type
+
@@ -2441,7 +2441,7 @@ Lexical category, constructors given in - + @@ -2456,7 +2456,7 @@ Lexical category, constructors given in - + @@ -2466,87 +2466,87 @@ Lexical category, constructors given in - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2587,7 +2587,7 @@ Lexical category, constructors given in

QS - question

-
Function Type
mkQCl IP -> VP -> QCl
who sleeps here
who always sleeps
mkQCl
mkQCl IP -> V3 -> NP -> NP -> QCl
who sends it to her
who sends it to her
mkQCl
mkQCl IP -> VS -> S -> QClwho says that she sleeps
who says that I sleep
mkQCl IP -> VQ -> QS -> QClwho wonders who sleeps
who wonders who sleeps
mkQCl IP -> VA -> A -> QClwho becomes old
who becomes old
mkQCl IP -> VA -> AP -> QClwho becomes old
who becomes very old
mkQCl IP -> V2A -> NP -> A -> QClwho paints it red
who paints it red
mkQCl IP -> V2A -> NP -> AP -> QClwho paints it red
who paints it very red
mkQCl IP -> V2S -> NP -> S -> QClwho tells her that we sleep
who answers to him that we sleep
mkQCl IP -> V2Q -> NP -> QS -> QClwho asks her who sleeps
who asks him who sleeps
mkQCl IP -> V2V -> NP -> VP -> QClwho forces her to sleep
who begs him to sleep
mkQCl IP -> A -> QClwho is old
who is old
mkQCl IP -> A -> NP -> QClwho is older than her
who is older than he
mkQCl IP -> A2 -> NP -> QClwho is married to her
who is married to him
mkQCl IP -> AP -> QClwho is very old
who is very old
mkQCl IP -> NP -> QClwho is the man
who is the woman
mkQCl IP -> N -> QClwho is a man
who is a woman
mkQCl IP -> CN -> QClwho is an old man
who is an old woman
mkQCl IP -> Adv -> QClwho is here
who is here
mkQCl
+
@@ -2607,7 +2607,7 @@ Lexical category, constructors given in

Quant - quantifier ('nucleus' of Det)

-
Function Type
+
@@ -2647,7 +2647,7 @@ Lexical category, constructors given in

RCl - relative clause, with all tenses

-
Function Type
+
@@ -2671,7 +2671,7 @@ Lexical category, constructors given in - + @@ -2782,7 +2782,7 @@ Lexical category, constructors given in

RP - relative pronoun

-
Function Type
mkRCl RP -> V3 -> NP -> NP -> RCl
who send it to her
who send it to her
mkRCl
+
@@ -2802,7 +2802,7 @@ Lexical category, constructors given in

RS - relative

-
Function Type
+
@@ -2827,7 +2827,7 @@ Lexical category, constructors given in

S - declarative sentence

-
Function Type
+
@@ -2857,7 +2857,7 @@ Lexical category, constructors given in

SC - embedded sentence or question

-
Function Type
+
@@ -2882,7 +2882,7 @@ Lexical category, constructors given in

SSlash

-
Function Type
+
@@ -2897,7 +2897,7 @@ Lexical category, constructors given in

Sub100

-
Function Type
+
@@ -2922,7 +2922,7 @@ Lexical category, constructors given in

Sub1000

-
Function Type
+
@@ -2947,7 +2947,7 @@ Lexical category, constructors given in

Subj - subjunction

-
Function Type
+
@@ -2982,13 +2982,22 @@ Lexical category, constructors given in

Temp - temporal and aspectual features

-

-Lexical category, constructors given in -lexical paradigms. -

+
Function Type
+ + + + + + + + + + +
FunctionTypeExample
mkTempTense -> Ant -> TempmkTemp
+

Tense - tense

- +
@@ -3018,7 +3027,7 @@ Lexical category, constructors given in

Text - text consisting of several phrases

-
Function Type
+
@@ -3068,7 +3077,7 @@ Lexical category, constructors given in

Unit

-
Function Type
+
@@ -3123,7 +3132,7 @@ Lexical category, constructors given in

Utt - sentence, question, word...

-
Function Type
+
@@ -3219,7 +3228,7 @@ Lexical category, constructors given in

V2 - two-place verb

-
Function Type
+
@@ -3270,7 +3279,7 @@ Lexical category, constructors given in

VP - verb phrase

-
Function Type
+
@@ -3289,7 +3298,7 @@ Lexical category, constructors given in - + @@ -3425,7 +3434,7 @@ Lexical category, constructors given in

VPSlash - verb phrase missing complement

-
Function Type
mkVP V3 -> NP -> NP -> VP
to send it to him
to send it to him
mkVP
+
@@ -3487,7 +3496,7 @@ Lexical category, constructors given in

VV - verb-phrase-complement verb

-
Function Type
+
@@ -3517,7 +3526,7 @@ Lexical category, constructors given in

Voc - vocative or "please"

-
Function Type
+
@@ -3545,7 +3554,7 @@ Lexical category, constructors given in

source http://www.grammaticalframework.org/lib/resource/src/bulgarian/ParadigmsBul.gf

-
Function Type
+
@@ -4406,7 +4415,7 @@ source http://www.grammaticalfr

source http://www.grammaticalframework.org/lib/resource/src/catalan/ParadigmsCat.gf

-
Function Type
+
@@ -4657,7 +4666,7 @@ source http://www.grammaticalfram

source http://www.grammaticalframework.org/lib/resource/src/danish/ParadigmsDan.gf

-
Function Type
+
@@ -4883,7 +4892,7 @@ source http://www.grammaticalframe

source http://www.grammaticalframework.org/lib/resource/src/dutch/ParadigmsDut.gf

-
Function Type
+
@@ -5074,7 +5083,7 @@ source http://www.grammaticalframew

source http://www.grammaticalframework.org/lib/resource/src/english/ParadigmsEng.gf

-
Function Type
+
@@ -5335,7 +5344,7 @@ source http://www.grammaticalfram

source http://www.grammaticalframework.org/lib/resource/src/finnish/ParadigmsFin.gf

-
Function Type
+
@@ -5661,7 +5670,7 @@ source http://www.grammaticalfram

source http://www.grammaticalframework.org/lib/resource/src/french/ParadigmsFre.gf

-
Function Type
+
@@ -5892,7 +5901,7 @@ source http://www.grammaticalframe

source http://www.grammaticalframework.org/lib/resource/src/german/ParadigmsGer.gf

-
Function Type
+
@@ -6203,7 +6212,7 @@ source http://www.grammaticalframe

source http://www.grammaticalframework.org/lib/resource/src/italian/ParadigmsIta.gf

-
Function Type
+
@@ -6484,7 +6493,7 @@ source http://www.grammaticalfram

source http://www.grammaticalframework.org/lib/resource/src/norwegian/ParadigmsNor.gf

-
Function Type
+
@@ -6735,7 +6744,7 @@ source http://www.grammaticalfr

source http://www.grammaticalframework.org/lib/resource/src/polish/ParadigmsPol.gf

-
Function Type
+
@@ -7346,7 +7355,7 @@ source http://www.grammaticalframe

source http://www.grammaticalframework.org/lib/resource/src/romanian/ParadigmsRon.gf

-
Function Type
+
@@ -7597,7 +7606,7 @@ source http://www.grammaticalfra

source http://www.grammaticalframework.org/lib/resource/src/russian/ParadigmsRus.gf

-
Function Type
+
@@ -7768,7 +7777,7 @@ source http://www.grammaticalfram

source http://www.grammaticalframework.org/lib/resource/src/spanish/ParadigmsSpa.gf

-
Function Type
+
@@ -8029,7 +8038,7 @@ source http://www.grammaticalfram

source http://www.grammaticalframework.org/lib/resource/src/swedish/ParadigmsSwe.gf

-
Function Type
+
@@ -8270,7 +8279,7 @@ source http://www.grammaticalfram

source http://www.grammaticalframework.org/lib/resource/src/urdu/ParadigmsUrd.gf

-
Function Type
+
@@ -8674,6 +8683,6 @@ For each language, an instantiation of the functor:

- +
Function Type