summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2006-11-08 15:12:35 +0000
committeraarne <aarne@cs.chalmers.se>2006-11-08 15:12:35 +0000
commitc94d5a5f1e4a7e254d0ede33328e958250071c0c (patch)
tree75e8cab4d9e8c0cda8f8b60047eca490f53412ee /examples
parenteb3d750459c5ab6fd0fa2266175e1ad4a4e3d33f (diff)
corrections in finnish tram
Diffstat (limited to 'examples')
-rw-r--r--examples/godis-tram/Tram/TramUserFin.gf12
1 files changed, 9 insertions, 3 deletions
diff --git a/examples/godis-tram/Tram/TramUserFin.gf b/examples/godis-tram/Tram/TramUserFin.gf
index eff07ec22..66287a9bf 100644
--- a/examples/godis-tram/Tram/TramUserFin.gf
+++ b/examples/godis-tram/Tram/TramUserFin.gf
@@ -1,13 +1,19 @@
--# -path=.:../Common:prelude:alltenses:mathematical
concrete TramUserFin of TramUser = TramUserFin0-[stop_dest_stop, stop_dept_stop] **
- open GrammarFin, GodisLangFin, TramLexiconFin in {
+ open GrammarFin, GodisLangFin, TramLexiconFin, ParadigmsFin in {
lin
stop_dest_stop x y =
UttAdv (mkAdv (
- fromStr Adv (PrepNP (casePrep from_Case) x) ++
- fromStr Adv (PrepNP (casePrep to_Case) y)
+ (PrepNP (casePrep from_Case) x).s ++
+ (PrepNP (casePrep to_Case) y).s
+ )
+ ) ;
+ stop_dept_stop x y =
+ UttAdv (mkAdv (
+ (PrepNP (casePrep to_Case) x).s ++
+ (PrepNP (casePrep from_Case) y).s
)
) ;
}