summaryrefslogtreecommitdiff
path: root/examples/peacekeeping/PeaceSyntax.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/peacekeeping/PeaceSyntax.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/peacekeeping/PeaceSyntax.gf')
-rw-r--r--examples/peacekeeping/PeaceSyntax.gf56
1 files changed, 0 insertions, 56 deletions
diff --git a/examples/peacekeeping/PeaceSyntax.gf b/examples/peacekeeping/PeaceSyntax.gf
deleted file mode 100644
index 2cc7a8c93..000000000
--- a/examples/peacekeeping/PeaceSyntax.gf
+++ /dev/null
@@ -1,56 +0,0 @@
-abstract PeaceSyntax = PeaceCat ** {
-
- fun
- PhrPos : Sent -> Phrase ;
- PhrNeg : Sent -> Phrase ;
- PhrQuest : Quest -> Phrase ;
- PhrImp : Imp -> Phrase ;
- PhrImpNeg : Imp -> Phrase ;
-
- PhrYes : Phrase ;
- PhrNo : Phrase ;
-
- QuestSent : Sent -> Quest ;
-
- QuestIP_V : V -> IP -> Quest ;
- QuestIP_V2 : V2 -> IP -> NP -> Quest ;
- QuestIP_V2Mass : V2 -> IP -> MassCN -> Quest ;
- QuestIP_V3 : V3 -> IP -> NP -> NP -> Quest ;
- QuestIP_V3Mass : V3 -> IP -> MassCN -> NP -> Quest ;
- QuestIP_A : A -> IP -> Quest ;
- QuestIAdv_V : V -> NP -> IAdv -> Quest ;
- QuestIAdv_V2 : V2 -> NP -> NP -> IAdv -> Quest ;
- QuestIAdv_NP : NP -> IAdv -> Quest ;
-
- SentV : V -> NP -> Sent ;
- SentV2 : V2 -> NP -> NP -> Sent ;
- SentV2Mass : V2 -> NP -> MassCN -> Sent ;
- SentV3 : V3 -> NP -> NP -> NP -> Sent ;
- SentV3Mass : V3 -> NP -> MassCN -> NP -> Sent ;
- SentA : A -> NP -> Sent ;
- SentNP : NP -> NP -> Sent ;
-
- SentAdvV : V -> NP -> Adv -> Sent ;
- SentAdvV2 : V2 -> NP -> NP -> Adv -> Sent ;
-
- ImpV : V -> Imp ;
- ImpV2 : V2 -> NP -> Imp ;
- ImpV2Mass : V2 -> MassCN -> Imp ;
- ImpV3 : V3 -> NP -> NP -> Imp ;
- ImpV3Mass : V3 -> MassCN -> NP -> Imp ;
-
- UsePron : Pron -> NP ;
- PossPronCNSg : Pron -> CN -> NP ;
- PossPronCNPl : Pron -> CN -> NP ;
- ArtCNSg : Art -> CN -> NP ; --a
- ArtCNPl : Art -> CN -> NP ; --a
- DetCN : Det -> CN -> NP ;
- NumCN : Card -> CN -> NP ; --a
-
- UseN : N -> CN ;
- ModCN : A -> CN -> CN ;
-
- UseMassN : MassN -> MassCN ;
- ModMass : A -> MassCN -> MassCN ;
-
-}