mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-26 11:18:55 -06:00
Chi fixes from René Tobner
This commit is contained in:
@@ -10,7 +10,11 @@ concrete NounChi of Noun = CatChi ** open ResChi, Prelude in {
|
|||||||
UsePN pn = pn ;
|
UsePN pn = pn ;
|
||||||
UsePron p = p ;
|
UsePron p = p ;
|
||||||
|
|
||||||
DetNP det = {s = det.s ++ ge_s} ; ----
|
DetNP det = {s = case det.detType of {
|
||||||
|
DTFull Pl => det.s ++ xie_s ;
|
||||||
|
_ => det.s ++ ge_s
|
||||||
|
} ;
|
||||||
|
} ; ----
|
||||||
|
|
||||||
PredetNP pred np = mkNP (pred.s ++ np.s) ; ---- possessive_s ++ np.s) ;
|
PredetNP pred np = mkNP (pred.s ++ np.s) ; ---- possessive_s ++ np.s) ;
|
||||||
|
|
||||||
|
|||||||
@@ -608,11 +608,11 @@ that
|
|||||||
|
|
||||||
mkUtt these_NP
|
mkUtt these_NP
|
||||||
these
|
these
|
||||||
这个 BAD 这些
|
这些 GOOD
|
||||||
|
|
||||||
mkUtt those_NP
|
mkUtt those_NP
|
||||||
those
|
those
|
||||||
那个 BAD 那些
|
那些 GOOD
|
||||||
|
|
||||||
mkUtt (mkNP (mkDet this_Quant (mkCard (mkNumeral n5_Unit))))
|
mkUtt (mkNP (mkDet this_Quant (mkCard (mkNumeral n5_Unit))))
|
||||||
these five
|
these five
|
||||||
@@ -866,7 +866,7 @@ mkUtt (mkCN (mkCN reason_N) (mkVP sleep_V))
|
|||||||
reason to sleep
|
reason to sleep
|
||||||
睡道理 BAD 睡的理由
|
睡道理 BAD 睡的理由
|
||||||
|
|
||||||
mkUtt (mkCN (mkCN reason_N) (mkVP sleep_V))
|
mkUtt (mkCN (mkCN reason_N) (mkVP sleep_V)) !DUPLICATE
|
||||||
reason to sleep
|
reason to sleep
|
||||||
睡道理 BAD 睡的理由
|
睡道理 BAD 睡的理由
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user