Disabled stoneage conjunction. Added optimize=share to stoneage grammars.

This commit is contained in:
bringert
2005-03-10 13:29:47 +00:00
parent 03b2d09e79
commit e8d082fb82
3 changed files with 8 additions and 8 deletions

View File

@@ -9,11 +9,11 @@ fun
-- Sentence conjunction
AndS : S -> S -> S ;
-- AndS : S -> S -> S ;
-- NP conjunction
AndNP : NP -> NP -> NP ;
-- AndNP : NP -> NP -> NP ;
-- Actions with an object

View File

@@ -4,7 +4,7 @@ concrete StoneageEng of Stoneage
StoneageResEng in {
flags
startcat=S;
startcat=S; optimize=share;
lincat
S = Phr ;
@@ -16,11 +16,11 @@ lin
-- Sentence conjunction
AndS s1 s2 = { s = s1.s ++ and_Conj.s ++ s2.s } ** { lock_Phr = <> } ;
-- AndS s1 s2 = { s = s1.s ++ and_Conj.s ++ s2.s } ** { lock_Phr = <> } ;
-- NP conjunction
AndNP n1 n2 = ConjNP and_Conj (TwoNP n1 n2);
-- AndNP n1 n2 = ConjNP and_Conj (TwoNP n1 n2);
Drink = PresV2 (dirV2 drink_V) ;

View File

@@ -3,7 +3,7 @@ concrete StoneageSwe of Stoneage
= open SyntaxSwe, ResourceSwe, ParadigmsSwe, VerbsSwe, SwadeshLexSwe, StoneageResSwe in {
flags
startcat=S;
startcat=S; optimize=share;
lincat
S = Phr ;
@@ -15,11 +15,11 @@ lin
-- Sentence conjunction
AndS s1 s2 = { s = s1.s ++ and_Conj.s ++ s2.s } ** { lock_Phr = <> } ;
-- AndS s1 s2 = { s = s1.s ++ and_Conj.s ++ s2.s } ** { lock_Phr = <> } ;
-- NP conjunction
AndNP n1 n2 = ConjNP and_Conj (TwoNP n1 n2);
-- AndNP n1 n2 = ConjNP and_Conj (TwoNP n1 n2);
Drink = PresVasV2 drink_V ;
Eat = PresVasV2 eat_V ;