mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-22 01:22:51 -06:00
cleaned up in multimodal and dialogue
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
--# -path=.:present:prelude
|
--# -path=.:multimodal:alltenses:prelude
|
||||||
|
|
||||||
concrete AgendaEng of Agenda =
|
concrete AgendaEng of Agenda =
|
||||||
DialogueEng, WeekdayEng ** open LangEng, ParadigmsEng in {
|
DialogueEng, WeekdayEng ** open MultiEng, ParadigmsEng in {
|
||||||
|
|
||||||
lin
|
lin
|
||||||
Day = UseN (regN "day") ;
|
Day = UseN (regN "day") ;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
--# -path=.:present:prelude
|
--# -path=.:multimodal:alltenses:prelude
|
||||||
|
|
||||||
concrete AgendaFin of Agenda =
|
concrete AgendaFin of Agenda =
|
||||||
DialogueFin, WeekdayFin ** open LangFin, ParadigmsFin in {
|
DialogueFin, WeekdayFin ** open MultiFin, ParadigmsFin in {
|
||||||
|
|
||||||
lin
|
lin
|
||||||
Day = UseN (regN "päivä") ;
|
Day = UseN (regN "päivä") ;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
--# -path=.:present:prelude
|
--# -path=.:multimodal:alltenses:prelude
|
||||||
|
|
||||||
concrete AgendaFre of Agenda =
|
concrete AgendaFre of Agenda =
|
||||||
DialogueFre, WeekdayFre ** open LangFre, ParadigmsFre, IrregFre in {
|
DialogueFre, WeekdayFre ** open MultiFre, ParadigmsFre, IrregFre in {
|
||||||
|
|
||||||
lin
|
lin
|
||||||
Day = UseN (regN "jour") ;
|
Day = UseN (regN "jour") ;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
--# -path=.:present:prelude
|
--# -path=.:multimodal:alltenses:prelude
|
||||||
|
|
||||||
concrete AgendaSwe of Agenda =
|
concrete AgendaSwe of Agenda =
|
||||||
DialogueSwe, WeekdaySwe ** open LangSwe, ParadigmsSwe, IrregSwe in {
|
DialogueSwe, WeekdaySwe ** open MultiSwe, ParadigmsSwe, IrregSwe in {
|
||||||
|
|
||||||
lin
|
lin
|
||||||
Day = UseN (regN "dag") ;
|
Day = UseN (regN "dag") ;
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
instance AuxFin of AuxDialogue = open LangFin in {
|
instance AuxFin of AuxDialogue = open MultiFin in {
|
||||||
}
|
}
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
instance AuxFre of AuxDialogue = open LangFre in {
|
instance AuxFre of AuxDialogue = open MultiFre in {
|
||||||
}
|
}
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
instance AuxSwe of AuxDialogue = open LangSwe in {
|
instance AuxSwe of AuxDialogue = open MultiSwe in {
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
--# -path=.:present:prelude
|
--# -path=.:multimodal:alltenses:prelude
|
||||||
|
|
||||||
concrete DialogueFin of Dialogue = DialogueI with
|
concrete DialogueFin of Dialogue = DialogueI with
|
||||||
(Lang = LangFin) ;
|
(Multi = MultiFin) ;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
--# -path=.:present:prelude
|
--# -path=.:multimodal:alltenses:prelude
|
||||||
|
|
||||||
concrete DialogueFre of Dialogue = DialogueI with
|
concrete DialogueFre of Dialogue = DialogueI with
|
||||||
(Lang = LangFre) ;
|
(Multi = MultiFre) ;
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
incomplete concrete DialogueI of Dialogue = open Multi, Prelude in {
|
incomplete concrete DialogueI of Dialogue = open Multi, Prelude in {
|
||||||
|
|
||||||
|
flags optimize = all_subs ;
|
||||||
|
|
||||||
lincat
|
lincat
|
||||||
Move = Phr ;
|
Move = Phr ;
|
||||||
Action = {s : ActType => Str ; point : Str} ;
|
Action = {s : ActType => Str ; point : Str} ;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
--# -path=.:present:prelude
|
--# -path=.:multimodal:alltenses:prelude
|
||||||
|
|
||||||
concrete DialogueSwe of Dialogue = DialogueI with
|
concrete DialogueSwe of Dialogue = DialogueI with
|
||||||
(Lang = LangSwe) ;
|
(Multi = MultiSwe) ;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
--# -path=.:present:prelude
|
--# -path=.:multimodal:alltenses:prelude
|
||||||
|
|
||||||
concrete LightsFin of Lights =
|
concrete LightsFin of Lights =
|
||||||
DialogueFin ** open LangFin, ParadigmsFin, AuxFin in {
|
DialogueFin ** open MultiFin, ParadigmsFin, AuxFin in {
|
||||||
|
|
||||||
lin
|
lin
|
||||||
Light = UseN (regN "valo") ;
|
Light = UseN (regN "valo") ;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
--# -path=.:present:prelude
|
--# -path=.:multimodal:alltenses:prelude
|
||||||
|
|
||||||
concrete LightsFre of Lights =
|
concrete LightsFre of Lights =
|
||||||
DialogueFre ** open LangFre, ParadigmsFre, IrregFre, AuxFre in {
|
DialogueFre ** open MultiFre, ParadigmsFre, IrregFre, AuxFre in {
|
||||||
|
|
||||||
lin
|
lin
|
||||||
Light = UseN (regN "lampe") ;
|
Light = UseN (regN "lampe") ;
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
--# -path=.:present:prelude
|
--# -path=.:multimodal:alltenses:prelude
|
||||||
|
|
||||||
|
|
||||||
concrete LightsSwe of Lights =
|
concrete LightsSwe of Lights =
|
||||||
DialogueSwe ** open LangSwe, ParadigmsSwe, AuxSwe in {
|
DialogueSwe ** open MultiSwe, ParadigmsSwe, AuxSwe in {
|
||||||
|
|
||||||
lin
|
lin
|
||||||
Light = UseN (regN "lampa") ;
|
Light = UseN (regN "lampa") ;
|
||||||
|
|||||||
@@ -2,6 +2,9 @@ Dialogue system grammars using GF resource.
|
|||||||
|
|
||||||
AR 16/5/2006
|
AR 16/5/2006
|
||||||
|
|
||||||
|
|
||||||
|
24/5 Added multimodality.
|
||||||
|
|
||||||
==Functionality and purpose==
|
==Functionality and purpose==
|
||||||
|
|
||||||
Dialogue system abstract syntax + concrete syntaxes for
|
Dialogue system abstract syntax + concrete syntaxes for
|
||||||
|
|||||||
Reference in New Issue
Block a user