mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-07-02 12:08:34 -06:00
Latin grammar: clean up and update
This patch removes all superfluous files from the directory, especially the binary files in the doc folder. They are still available in the git repository http://github.com/daherb/GF-latin which is still the main repository for the development of the latin grammar. The GF files are updated to a state close to the one at the end of the GF Summer School 2015 where they were extended to support the MUSTE grammar.
This commit is contained in:
@@ -13,10 +13,10 @@
|
||||
|
||||
resource ParadigmsLat = open
|
||||
(Predef=Predef),
|
||||
Prelude,
|
||||
ResLat,
|
||||
Prelude,
|
||||
CatLat,
|
||||
MorphoLat,
|
||||
CatLat
|
||||
ResLat
|
||||
in {
|
||||
|
||||
--2 Parameters
|
||||
@@ -60,7 +60,7 @@ oper
|
||||
mkV : (iacere,iacio,ieci,iactus : Str) -> V
|
||||
= \v,x,y,z -> lin V ( verb_ippp v x y z ) ;
|
||||
mkV : (iacere,iacio,ieci : Str) -> V
|
||||
= \v,x,y -> lin V ( verb_ippp v x y "######" ) ;
|
||||
= \v,x,y -> lin V ( verb_ippp v x y nonExist ) ;
|
||||
} ;
|
||||
|
||||
V0 : Type = V ;
|
||||
@@ -86,9 +86,9 @@ oper
|
||||
mkV2S : V -> Prep -> V2S = \v,p -> lin V2S ( v ** { c = p } ) ;
|
||||
mkV2Q : V -> Prep -> V2Q = \v,p -> lin V2Q ( v ** { c = p } ) ;
|
||||
mkV2V : V -> Str -> Bool -> V2V = \v,s,b -> lin V2V ( v ** { c2 = s ; isAux = b } ) ;
|
||||
mkVV : V -> Bool -> VV = \v,b -> lin VV ( v ** { isAux = b } ) ;
|
||||
mkVV : V -> Bool -> CatLat.VV = \v,b -> lin VV ( v ** { isAux = b } ) ;
|
||||
mkVA : V -> VA = \v -> lin VA v ;
|
||||
mkV3 : V -> Prep -> Prep -> V3 = \v,p1,p2 -> lin V3 ( v ** { c2 = p1; c3 = p2 } ) ;
|
||||
mkV3 : V -> Prep -> Prep -> V3 = \v,p1,p2 -> lin V3 ( v ** { c = p1; c2 = p2 } ) ;
|
||||
mkVQ : V -> VQ = \v -> lin VQ v ;
|
||||
mkVS : V -> VS = \v -> lin VS v ;
|
||||
mkV2A : V -> Prep -> V2A = \v,p -> lin V2A (v ** { c = p } ) ;
|
||||
|
||||
Reference in New Issue
Block a user