summaryrefslogtreecommitdiff
path: root/examples/discourse/DiscourseFin.gf
diff options
context:
space:
mode:
authorjohn.j.camilleri <john.j.camilleri@chalmers.se>2013-09-16 07:17:27 +0000
committerjohn.j.camilleri <john.j.camilleri@chalmers.se>2013-09-16 07:17:27 +0000
commitf5461eb3d4eb2605b546a4ed202c12bcdaa1f4e4 (patch)
tree946c9e8542b8e8271b6b529a95c0400fa6613cb4 /examples/discourse/DiscourseFin.gf
parent8e1c6cca407c82fc09569d80c231b8d256735989 (diff)
Remove contribs and examples
Everything has now been moved to a separate repository at https://github.com/GrammaticalFramework/gf-contrib The contents of the examples folder are build during SetupWeb
Diffstat (limited to 'examples/discourse/DiscourseFin.gf')
-rw-r--r--examples/discourse/DiscourseFin.gf40
1 files changed, 0 insertions, 40 deletions
diff --git a/examples/discourse/DiscourseFin.gf b/examples/discourse/DiscourseFin.gf
deleted file mode 100644
index 59e730f22..000000000
--- a/examples/discourse/DiscourseFin.gf
+++ /dev/null
@@ -1,40 +0,0 @@
---# -path=.:present
-
-concrete DiscourseFin of Discourse =
- LexiconFin,
- NounFin, VerbFin - [SlashV2VNP,SlashVV, Slash2V3, Slash3V3],
- AdjectiveFin, AdverbFin,
- StructuralFin - [nobody_NP,nothing_NP],
- TenseX
-** open SyntaxFin, (P = ParadigmsFin), (R = ParamX), (E = ExtraFin), Prelude in {
-
-lincat
- Clause = E.ClPlus ;
- Marker = E.Part ;
-
-lin
- PreSubjS marker temp pol cl =
- E.S_SVO marker temp pol cl ;
- PreVerbS marker temp pol cl =
- E.S_VSO marker temp pol cl ;
- PreObjS marker temp pol cl =
- E.S_OSV marker temp pol cl ;
- PreAdvS marker temp pol cl =
- E.S_ASV marker temp pol cl ;
-
- NoFocClause np vps obj adv =
- E.PredClPlus np (mkVP (mkVP vps obj) adv) ;
- FocSubjClause np vps obj adv =
- E.PredClPlusFocSubj np (mkVP (mkVP vps obj) adv) ;
- FocVerbClause np vps obj adv =
- E.PredClPlusFocVerb np (mkVP (mkVP vps obj) adv) ;
--- FocObjClause np vps obj adv =
--- lin ClPlus (E.PredClPlusFocObj np (mkVP vps adv) obj) ;
- FocAdvClause np vps obj adv =
- lin ClPlus (E.PredClPlusFocAdv np (mkVP vps obj) adv) ;
-
- neutralMarker = E.noPart ;
- remindMarker = E.han_Part ;
- contrastMarker = E.pas_Part ;
-
-}