summaryrefslogtreecommitdiff
path: root/examples/slowApp/App.gf
diff options
context:
space:
mode:
authorodanoburu <bcclaro@gmail.com>2018-06-20 12:33:05 -0300
committerodanoburu <bcclaro@gmail.com>2018-06-20 12:33:05 -0300
commitf0672679535e59c53ed68729bbb5a201ce507b02 (patch)
tree839216d85c207fc4d8fc0565466899ff4a41d5b1 /examples/slowApp/App.gf
parent8b05ed9469a970590e1b11cc4e83320d8b94e846 (diff)
parent427f8d84788fc3757fb4dacda931c878bf253fa1 (diff)
Merge remote-tracking branch 'upstream/master' into por
Diffstat (limited to 'examples/slowApp/App.gf')
-rw-r--r--examples/slowApp/App.gf37
1 files changed, 0 insertions, 37 deletions
diff --git a/examples/slowApp/App.gf b/examples/slowApp/App.gf
deleted file mode 100644
index 24f4bb67c..000000000
--- a/examples/slowApp/App.gf
+++ /dev/null
@@ -1,37 +0,0 @@
-abstract App =
- Translate - [
- -- Verb
- SlashV2V, -- replaced by more efficient inlined versions
- Slash2V3, Slash3V3, SlashV2S, SlashV2Q, SlashV2A,
- SlashVV, SlashV2VNP,
- AdvVPSlash, AdVVPSlash, VPSlashPrep,
- -- Sentence
- PredSCVP,
- AdvSlash, SlashPrep, SlashVS,
- EmbedS, EmbedQS, EmbedVP, RelS,
- -- Question
- ComplSlashIP,AdvQVP,AddAdvQVP,QuestQVP,
- -- Idiom
- CleftNP, CleftAdv,
- ImpP3
- -- Construction
- -- Extensions
- ]
- ,Phrasebook
-
- ** {
-flags
- startcat=Phr ;
- heuristic_search_factor=0.80; -- doesn't seem to affect speed or quality much
-
-fun
- PhrasePhr : Phrase -> Phr ;
- Phrase_Chunk : Phrase -> Chunk ;
-
- ComplV2V : V2V -> NP -> VP -> VP ;
- ComplV2A : V2A -> NP -> AP -> VP ;
- ComplV2Q : V2Q -> NP -> QS -> VP ;
- ComplV2S : V2S -> NP -> S -> VP ;
- ComplV3 : V3 -> NP -> NP -> VP ;
-
-}