summaryrefslogtreecommitdiff
path: root/next-lib/src/french/IdiomFre.gf
diff options
context:
space:
mode:
authoraarne <aarne@chalmers.se>2009-06-22 15:39:08 +0000
committeraarne <aarne@chalmers.se>2009-06-22 15:39:08 +0000
commite89fdae2fa1626348d8025824a7469252fa85e42 (patch)
treec7d46bbd0494043b4bd6f917a25a7687517d0547 /next-lib/src/french/IdiomFre.gf
parent3049b59b35b25381a7c6787444165c200d66e08b (diff)
next-lib renamed to lib, lib to old-lib
Diffstat (limited to 'next-lib/src/french/IdiomFre.gf')
-rw-r--r--next-lib/src/french/IdiomFre.gf45
1 files changed, 0 insertions, 45 deletions
diff --git a/next-lib/src/french/IdiomFre.gf b/next-lib/src/french/IdiomFre.gf
deleted file mode 100644
index e8abaac21..000000000
--- a/next-lib/src/french/IdiomFre.gf
+++ /dev/null
@@ -1,45 +0,0 @@
-concrete IdiomFre of Idiom = CatFre **
- open (P = ParamX), PhonoFre, MorphoFre, ParadigmsFre, Prelude in {
-
- flags optimize=all_subs ;
-
- lin
- ImpersCl vp = mkClause "il" True (agrP3 Masc Sg) vp ;
- GenericCl vp = mkClause "on" True (agrP3 Masc Sg) vp ;
-
- ExistNP np =
- mkClause "il" True (agrP3 Masc Sg)
- (insertClit3 "y" (insertComplement (\\_ => (np.s ! Acc).ton) (predV avoir_V))) ;
-
- ExistIP ip = {
- s = \\t,a,p,_ =>
- ip.s ! Nom ++
- (mkClause "il" True (agrP3 Masc Sg)
- (insertClit3 "y" (predV avoir_V))).s
- ! DDir ! t ! a ! p ! Indic ---- DInv
- } ;
-
- CleftNP np rs = mkClause elisCe True (agrP3 Masc Sg)
- (insertComplement (\\_ => rs.s ! Indic ! np.a)
- (insertComplement (\\_ => (np.s ! rs.c).ton) (predV copula))) ;
-
- CleftAdv ad s = mkClause elisCe True (agrP3 Masc Sg)
- (insertComplement (\\_ => conjThat ++ s.s ! Indic)
- (insertComplement (\\_ => ad.s) (predV copula))) ;
-
-
- ProgrVP vp =
- insertComplement
- (\\a => "en" ++ "train" ++ elisDe ++ infVP vp a)
- (predV copula) ;
-
- ImpPl1 vpr = let vp = useVP vpr in {s =
- (mkImperative False P1 vp).s ! Pos ! {n = Pl ; g = Masc} --- fem
- } ;
-
- oper
- elisCe = elision "c" ;
-
-}
-
-