moved lib/next-resource to next-lib/src, to enable linking with next-lib as value of GF_LIB_PATH

This commit is contained in:
aarne
2008-09-22 11:49:15 +00:00
parent 4862018f14
commit 98665df78b
441 changed files with 125291 additions and 5 deletions

12
next-lib/src/demo/Add.gf Normal file
View File

@@ -0,0 +1,12 @@
PredVS : NP -> VS -> S -> Cl ;
PredVVV2A : NP -> VV -> V2A -> NP -> AP -> Cl ;
RelCNAdvPrep : CN -> NP -> V -> Adv -> Prep -> CN ;
PredVS np vs s = PredVP np (ComplVS vs s) ;
PredVVV2A np vv v2 np2 ap = PredVP np (ComplVV vv (ComplSlash (SlashV2A v2 ap) np2)) ;
RelCNAdvPrep cn np v adv prep = RelCN cn (UseRCl TPast ASimul PPos
(RelSlash IdRP (SlashPrep (PredVP np (AdvVP (UseV v) adv)) prep))) ;