summaryrefslogtreecommitdiff
path: root/examples/tram0/TramI.gf
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2008-06-25 16:54:35 +0000
committeraarne <aarne@cs.chalmers.se>2008-06-25 16:54:35 +0000
commite9e80fc389365e24d4300d7d5390c7d833a96c50 (patch)
treef0b58473adaa670bd8fc52ada419d8cad470ee03 /examples/tram0/TramI.gf
parentb96b36f43de3e2f8b58d5f539daa6f6d47f25870 (diff)
changed names of resource-1.3; added a note on homepage on release
Diffstat (limited to 'examples/tram0/TramI.gf')
-rw-r--r--examples/tram0/TramI.gf44
1 files changed, 0 insertions, 44 deletions
diff --git a/examples/tram0/TramI.gf b/examples/tram0/TramI.gf
deleted file mode 100644
index 384cdbf3b..000000000
--- a/examples/tram0/TramI.gf
+++ /dev/null
@@ -1,44 +0,0 @@
-incomplete concrete TramI of Tram = open Multimodal, Math in {
-
-flags startcat=Query ; lexer=textlit ;
-
-lincat
- Dep, Dest = DAdv ;
- Query = Phr ; -- top level, plain string
- Input = MS ; -- two parallel sequences (text and clicks)
- Click = Point ;
-
-lin
- QInput i = SentMS PPos i ;
-
- GoFromTo x y =
- ModDemV want_VV go_V (DemNP i_NP)
- (ConsDAdv x (ConsDAdv y BaseDAdv)) ;
-
- GoToFrom x y =
- ModDemV want_VV go_V (DemNP i_NP)
- (ConsDAdv x (ConsDAdv y BaseDAdv)) ;
-
- ComeFrom x =
- ModDemV want_VV come_V (DemNP i_NP)
- (ConsDAdv x BaseDAdv) ;
-
- GoTo x =
- ModDemV want_VV go_V (DemNP i_NP)
- (ConsDAdv x BaseDAdv) ;
-
- DepClick c = here7from_DAdv c ;
- DestClick c = here7to_DAdv c ;
- DepHere = DemAdv here7from_Adv ;
- DestHere = DemAdv here7to_Adv ;
- DepNamed s = PrepDNP from_Prep (DemNP (UsePN (SymbPN s))) ;
- DestNamed s = PrepDNP to_Prep (DemNP (UsePN (SymbPN s))) ;
-
- CCoord x y = {s5 = "(" ++ x.s ++ "," ++ y.s ++ ")" ; lock_Point = <>} ;
-
--- Place = DNP ; -- name + click - not possible for "here"
--- PClick c = this_DNP c ;
--- PHere = DemNP this_NP ;
--- PNamed s = DemNP (UsePN (SymbPN s)) ;
-
-}