summaryrefslogtreecommitdiff
path: root/examples/fracas/src/FraCaS.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/fracas/src/FraCaS.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/fracas/src/FraCaS.gf')
-rw-r--r--examples/fracas/src/FraCaS.gf59
1 files changed, 0 insertions, 59 deletions
diff --git a/examples/fracas/src/FraCaS.gf b/examples/fracas/src/FraCaS.gf
deleted file mode 100644
index 756c07c6c..000000000
--- a/examples/fracas/src/FraCaS.gf
+++ /dev/null
@@ -1,59 +0,0 @@
---# -path=.:alltenses
-
-abstract FraCaS = Grammar, Additions, FraCaSLex ** {
-
-flags
- startcat = Phr ;
-
--- language independent functions
-
-fun
- ComparAsAs : A -> NP -> AP;
-
-fun
- Adverbial : Adv -> Phr;
- PAdverbial : PConj -> Adv -> Phr;
- Nounphrase : NP -> Phr;
- PNounphrase : PConj -> NP -> Phr;
- Question : QS -> Phr;
- PQuestion : PConj -> QS -> Phr;
- Sentence : S -> Phr;
- PSentence : PConj -> S -> Phr;
-
-fun
- Past : Temp;
- PastPerfect : Temp;
- Present : Temp;
- PresentPerfect : Temp;
- Future : Temp;
- FuturePerfect : Temp;
- Conditional : Temp;
-
-fun
- ConjCN2 : Conj -> CN -> CN -> CN;
- ConjNP2 : Conj -> NP -> NP -> NP;
- ConjNP3 : Conj -> NP -> NP -> NP -> NP;
- ConjQS2 : Conj -> QS -> QS -> QS;
- ConjS2 : Conj -> S -> S -> S;
- ConjVPI2 : Conj -> VP -> VP -> VPI;
- ConjVPS2 : Conj -> Temp -> Pol -> VP -> Temp -> Pol -> VP -> VPS;
-
--- language dependent functions
-
-fun
- UncNeg : Pol ;
-
-fun
- ComplVSa : VS -> S -> VP ;
- ProgrVPa : VP -> VP ;
-
-fun
- elliptic_V : V ;
- elliptic_NP_Sg, elliptic_NP_Pl : NP ;
- elliptic_CN : CN ;
- elliptic_VP : VP ;
- elliptic_Cl : Cl ;
- elliptic_VPSlash : VPSlash ;
- elliptic_V2V : V2V ;
-
-}