diff options
| author | ramona.enache <ramona.enache@chalmers.se> | 2010-05-08 13:39:44 +0000 |
|---|---|---|
| committer | ramona.enache <ramona.enache@chalmers.se> | 2010-05-08 13:39:44 +0000 |
| commit | 204614a76da09bd9c85b4aecbf1fc22f3c51c415 (patch) | |
| tree | af9eacf12afb972c39b0c42d29781f09f9555530 /examples/SUMO/RGLExt | |
| parent | 9afeae5154484e387098325585184298cbc42cdb (diff) | |
fixed SUMORon according to changes in the resource grammar
Diffstat (limited to 'examples/SUMO/RGLExt')
| -rw-r--r-- | examples/SUMO/RGLExt/ExtensionRon.gf | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/SUMO/RGLExt/ExtensionRon.gf b/examples/SUMO/RGLExt/ExtensionRon.gf index e8e12ba10..50a94e88b 100644 --- a/examples/SUMO/RGLExt/ExtensionRon.gf +++ b/examples/SUMO/RGLExt/ExtensionRon.gf @@ -36,16 +36,17 @@ sentToNoun ps = heavyNP {s = \\_ => "\"" ++ ps.s ! Indep ! Pos ++ "\""; };
ConjCN conj ss = conjunctDistrTable3 Number Species ACase conj ss ** {
- g = ss.g; a = ss.a; isComp = ss.isComp
+ g = ss.g; a = ss.a; isComp = ss.isComp; needsRefForm = False
};
BaseCN x y ={
s1 = \\n,sp,c => x.s ! n ! sp ! c ;
s2 = \\n,sp,c => y.s ! n ! sp ! c ;
- g = x.g; a = x.a ; isComp = x.isComp};
+ g = x.g; a = x.a ; isComp = x.isComp;
+ needsRefForm = False};
-ConsCN xs x = consrTable3 Number Species ACase comma xs x ** {g = x.g; a = x.a; isComp = x.isComp} ;
+ConsCN xs x = consrTable3 Number Species ACase comma xs x ** {g = x.g; a = x.a; isComp = x.isComp; needsRefForm = False} ;
at_Prep = mkPrep "la" Ac True;
per_Prep = mkPrep "per" Ac True;
|
