From 750a2639b0f46153c36f6c713f522db5bb2d8587 Mon Sep 17 00:00:00 2001 From: aarne Date: Wed, 27 Jan 2010 17:51:15 +0000 Subject: command eb for example-based grammar conversion; see 'help eb' and the example in examples/animals/QuestionsI.gfe --- examples/animals/Animals.gf | 12 ++++++++++++ examples/animals/AnimalsEng.gf | 16 ++++++++++++++++ examples/animals/AnimalsFre.gf | 15 +++++++++++++++ examples/animals/AnimalsSwe.gf | 15 +++++++++++++++ examples/animals/Questions.gf | 10 ++++++++++ examples/animals/QuestionsEng.gf | 2 ++ examples/animals/QuestionsFre.gf | 2 ++ examples/animals/QuestionsI.gf | 27 +++++++++++++++++++++++++++ examples/animals/QuestionsI.gfe | 15 +++++++++++++++ examples/animals/QuestionsSwe.gf | 2 ++ 10 files changed, 116 insertions(+) create mode 100644 examples/animals/Animals.gf create mode 100644 examples/animals/AnimalsEng.gf create mode 100644 examples/animals/AnimalsFre.gf create mode 100644 examples/animals/AnimalsSwe.gf create mode 100644 examples/animals/Questions.gf create mode 100644 examples/animals/QuestionsEng.gf create mode 100644 examples/animals/QuestionsFre.gf create mode 100644 examples/animals/QuestionsI.gf create mode 100644 examples/animals/QuestionsI.gfe create mode 100644 examples/animals/QuestionsSwe.gf (limited to 'examples') diff --git a/examples/animals/Animals.gf b/examples/animals/Animals.gf new file mode 100644 index 000000000..33b56e740 --- /dev/null +++ b/examples/animals/Animals.gf @@ -0,0 +1,12 @@ +-- The Question grammar specialized to animals. + +abstract Animals = Questions ** { + + flags startcat=Phrase ; + + fun + -- a lexicon of animals and actions among them + Dog, Cat, Mouse, Lion, Zebra : Entity ; + Chase, Eat, See : Action ; +} + diff --git a/examples/animals/AnimalsEng.gf b/examples/animals/AnimalsEng.gf new file mode 100644 index 000000000..22942b735 --- /dev/null +++ b/examples/animals/AnimalsEng.gf @@ -0,0 +1,16 @@ +--# -path=.:present:prelude +--resource/english:resource/abstract:resource/../prelude + +concrete AnimalsEng of Animals = QuestionsEng ** + open LangEng, ParadigmsEng, IrregEng in { + + lin + Dog = regN "dog" ; + Cat = regN "cat" ; + Mouse = mk2N "mouse" "mice" ; + Lion = regN "lion" ; + Zebra = regN "zebra" ; + Chase = dirV2 (regV "chase") ; + Eat = dirV2 eat_V ; + See = dirV2 see_V ; +} diff --git a/examples/animals/AnimalsFre.gf b/examples/animals/AnimalsFre.gf new file mode 100644 index 000000000..198c84ad7 --- /dev/null +++ b/examples/animals/AnimalsFre.gf @@ -0,0 +1,15 @@ +--# -path=.:present:prelude + +concrete AnimalsFre of Animals = QuestionsFre ** + open LangFre, ParadigmsFre, IrregFre in { + + lin + Dog = regN "chien" ; + Cat = regN "chat" ; + Mouse = regGenN "souris" feminine ; + Lion = regN "lion" ; + Zebra = regGenN "zèbre" masculine ; + Chase = dirV2 (regV "chasser") ; + Eat = dirV2 (regV "manger") ; + See = voir_V2 ; +} diff --git a/examples/animals/AnimalsSwe.gf b/examples/animals/AnimalsSwe.gf new file mode 100644 index 000000000..8f256885a --- /dev/null +++ b/examples/animals/AnimalsSwe.gf @@ -0,0 +1,15 @@ +--# -path=.:present:prelude + +concrete AnimalsSwe of Animals = QuestionsSwe ** + open LangSwe, ParadigmsSwe, IrregSwe in { + + lin + Dog = regN "hund" ; + Cat = mk2N "katt" "katter" ; + Mouse = mkN "mus" "musen" "möss" "mössen" ; + Lion = mk2N "lejon" "lejon" ; + Zebra = regN "zebra" ; + Chase = dirV2 (regV "jaga") ; + Eat = dirV2 äta_V ; + See = dirV2 se_V ; +} diff --git a/examples/animals/Questions.gf b/examples/animals/Questions.gf new file mode 100644 index 000000000..bb25e785d --- /dev/null +++ b/examples/animals/Questions.gf @@ -0,0 +1,10 @@ +-- Simple questions and answers, in present tense. + +abstract Questions = { + cat + Phrase ; Entity ; Action ; + fun + Who : Action -> Entity -> Phrase ; -- who chases X + Whom : Entity -> Action -> Phrase ; -- whom does X chase + Answer : Entity -> Action -> Entity -> Phrase ; -- X chases Y +} diff --git a/examples/animals/QuestionsEng.gf b/examples/animals/QuestionsEng.gf new file mode 100644 index 000000000..8a4c5c406 --- /dev/null +++ b/examples/animals/QuestionsEng.gf @@ -0,0 +1,2 @@ +concrete QuestionsEng of Questions = QuestionsI with + (Lang = LangEng) ; diff --git a/examples/animals/QuestionsFre.gf b/examples/animals/QuestionsFre.gf new file mode 100644 index 000000000..dab23b2ba --- /dev/null +++ b/examples/animals/QuestionsFre.gf @@ -0,0 +1,2 @@ +concrete QuestionsFre of Questions = QuestionsI with + (Lang = LangFre) ; diff --git a/examples/animals/QuestionsI.gf b/examples/animals/QuestionsI.gf new file mode 100644 index 000000000..30476ccdb --- /dev/null +++ b/examples/animals/QuestionsI.gf @@ -0,0 +1,27 @@ +-- to compile: echo "eb -file=QuestionsI.gfe" | gf $GF_LIB_PATH/present/LangEng.gfo +-- or use directly gf