Add more unit tests for missing lin functions

This commit is contained in:
John J. Camilleri
2021-08-10 11:32:51 +02:00
parent 42bdee1e5f
commit b96fa7e08a
5 changed files with 156 additions and 18 deletions

View File

@@ -1,7 +1,12 @@
abstract Missing = {
cat S; NP; V2;
cat S; Det; N; NP; V2; -- A;
fun
Pred: NP -> V2 -> NP -> S;
John, Dogs, Fish: NP ;
ASg, {- APl, TheSg, -} ThePl : Det ;
Dog, Fish: N ;
Love, Eat: V2 ;
-- Big, Red: A ;
mkNP : Det -> N -> NP ;
-- mkANP : Det -> A -> N -> NP ;
}