Generalise testsuite script to use treebank files, add FoodEng

This commit is contained in:
John J. Camilleri
2021-02-02 21:22:36 +01:00
parent 2a5850023b
commit c94bffe435
7 changed files with 214 additions and 74 deletions

15
testsuite/lpgf/Foods.gf Normal file
View File

@@ -0,0 +1,15 @@
-- (c) 2009 Aarne Ranta under LGPL
abstract Foods = {
flags startcat = Comment ;
cat
Comment ; Item ; Kind ; Quality ;
fun
Pred : Item -> Quality -> Comment ;
This, That, These, Those : Kind -> Item ;
Mod : Quality -> Kind -> Kind ;
Wine, Cheese, Fish, Pizza : Kind ;
Very : Quality -> Quality ;
Fresh, Warm, Italian,
Expensive, Delicious, Boring : Quality ;
}