summaryrefslogtreecommitdiff
path: root/examples/app/AppEng.gf
diff options
context:
space:
mode:
authoraarne <aarne@chalmers.se>2015-06-02 12:59:29 +0000
committeraarne <aarne@chalmers.se>2015-06-02 12:59:29 +0000
commit3643e20406abf83d2a41d8d46dd5c66237ef1727 (patch)
tree0256c6bfd6b2a4b356ff5a648763b15d96c2cd48 /examples/app/AppEng.gf
parenteb07e4e8622e11087c5f6c14cd35d1575fcea3a8 (diff)
copied examples/app to examples/slowApp; the new app is a bit scaled down but much faster
Diffstat (limited to 'examples/app/AppEng.gf')
-rw-r--r--examples/app/AppEng.gf7
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/app/AppEng.gf b/examples/app/AppEng.gf
index e08a20185..4096b9042 100644
--- a/examples/app/AppEng.gf
+++ b/examples/app/AppEng.gf
@@ -4,11 +4,13 @@ concrete AppEng of App =
TranslateEng - [
-- Verb
- SlashV2V, -- replaced by more efficient inlined versions
+ SlashV2a,ComplSlash, -- replaced by a more efficient inlined version
+ SlashV2V,
Slash2V3, Slash3V3, SlashV2S, SlashV2Q, SlashV2A,
SlashVV, SlashV2VNP,
AdvVPSlash, AdVVPSlash, VPSlashPrep,
-- Sentence
+ SlashVP, SlashVS,
PredSCVP,
AdvSlash, SlashPrep, SlashVS,
EmbedS, EmbedQS, EmbedVP, RelS,
@@ -42,4 +44,7 @@ lin
ComplV2S v np vp = mkVP v np vp ;
ComplV3 v np vp = mkVP v np vp ;
+
+ComplV2 v np = mkVP v np ;
+
}