summaryrefslogtreecommitdiff
path: root/examples/tram/Tram.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/tram/Tram.gf
parentb96b36f43de3e2f8b58d5f539daa6f6d47f25870 (diff)
changed names of resource-1.3; added a note on homepage on release
Diffstat (limited to 'examples/tram/Tram.gf')
-rw-r--r--examples/tram/Tram.gf36
1 files changed, 0 insertions, 36 deletions
diff --git a/examples/tram/Tram.gf b/examples/tram/Tram.gf
deleted file mode 100644
index 5392d1c73..000000000
--- a/examples/tram/Tram.gf
+++ /dev/null
@@ -1,36 +0,0 @@
-abstract Tram = PredefAbs ** {
-
-cat
- Dep ; -- from here, from Angered
- Dest ; -- to here, to Angered
- Query ; -- message sent to the dialogue manager: sequentialized
- Input ; -- user input: parallel text and clicks
- Click ; -- map clicks
-
-fun
- QInput : Input -> Query ; -- sequentialize user input
-
-fun
- GoFromTo : Dep -> Dest -> Input ; -- user input "want to go from a to b"
- ComeToFrom: Dest -> Dep -> Input ; -- user input "want to come to a from b"
- ComeFrom : Dep -> Input ; -- user input "want to come from x (to where I'm now)
- GoTo : Dest -> Input ; -- user input "want to go to x (from where I'm now)
-
- DepClick : Click -> Dep ; -- "from here" with click
- DestClick : Click -> Dest ; -- "to here" with click
- DepHere : Dep ; -- "from here" indexical
- DestHere : Dest ; -- "to here" indexical
- DepNamed : String -> Dep ; -- from a place name
- DestNamed : String -> Dest ; -- to a place name
-
- CCoord : Int -> Int -> Click ;
-
---- the syntax of here (prep + adverb, not prep + np) prevent these
--- Place ; -- any way to identify a place: name, click, or indexical "here"
--- PClick : Click -> Place ; -- click associated with a "here"
--- PHere : Place ; -- indexical "here", without a click
-
--- FromThisPlace : Dep ; -- "from this place"
--- ToThisPlace : Dest ; -- "to this place"
-
-}