mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 11:42:49 -06:00
modernized and completed Minimal for absbnf testing
This commit is contained in:
@@ -6,8 +6,11 @@ abstract MinLexicon = Cat ** {
|
|||||||
big_A : A ;
|
big_A : A ;
|
||||||
break_V2 : V2 ;
|
break_V2 : V2 ;
|
||||||
brother_N2 : N2 ;
|
brother_N2 : N2 ;
|
||||||
|
distance_N3 : N3 ;
|
||||||
|
married_A2 : A2 ;
|
||||||
paint_V2A : V2A ;
|
paint_V2A : V2A ;
|
||||||
-- paris_PN : PN ;
|
paris_PN : PN ;
|
||||||
|
say_VS : VS ;
|
||||||
sleep_V : V ;
|
sleep_V : V ;
|
||||||
wonder_VQ : VQ ;
|
wonder_VQ : VQ ;
|
||||||
|
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
concrete MinLexiconEng of MinLexicon = MinLexiconI with
|
concrete MinLexiconEng of MinLexicon = CatEng ** MinLexiconI with
|
||||||
(Lexicon = LexiconEng) ;
|
(Lexicon = LexiconEng) ;
|
||||||
|
|||||||
@@ -8,8 +8,10 @@ incomplete concrete MinLexiconI of MinLexicon = Cat ** open Lexicon in {
|
|||||||
big_A = big_A ;
|
big_A = big_A ;
|
||||||
break_V2 = break_V2 ;
|
break_V2 = break_V2 ;
|
||||||
brother_N2 = brother_N2 ;
|
brother_N2 = brother_N2 ;
|
||||||
|
distance_N3 = distance_N3 ;
|
||||||
|
married_A2 = married_A2 ;
|
||||||
paint_V2A = paint_V2A ;
|
paint_V2A = paint_V2A ;
|
||||||
-- paris_PN = paris_PN ;
|
paris_PN = paris_PN ;
|
||||||
say_VS = say_VS ;
|
say_VS = say_VS ;
|
||||||
sleep_V = sleep_V ;
|
sleep_V = sleep_V ;
|
||||||
wonder_VQ = wonder_VQ ;
|
wonder_VQ = wonder_VQ ;
|
||||||
|
|||||||
@@ -4,18 +4,6 @@
|
|||||||
-- This is useful for treebank generation.
|
-- This is useful for treebank generation.
|
||||||
|
|
||||||
abstract Minimal =
|
abstract Minimal =
|
||||||
Noun,
|
Grammar,
|
||||||
Verb,
|
|
||||||
Adjective,
|
|
||||||
Adverb,
|
|
||||||
Numeral,
|
|
||||||
Sentence,
|
|
||||||
Question,
|
|
||||||
Relative,
|
|
||||||
Conjunction,
|
|
||||||
Phrase,
|
|
||||||
Text,
|
|
||||||
MinStructural,
|
|
||||||
Idiom,
|
|
||||||
MinLexicon
|
MinLexicon
|
||||||
** {} ;
|
** {} ;
|
||||||
|
|||||||
@@ -1,20 +1,8 @@
|
|||||||
--# -path=.:../english:../abstract:../common:prelude
|
--# -path=.:../english:../abstract:../common:prelude
|
||||||
|
|
||||||
concrete MinimalEng of Minimal =
|
concrete MinimalEng of Minimal =
|
||||||
NounEng,
|
GrammarEng,
|
||||||
VerbEng,
|
MinLexiconEng
|
||||||
AdjectiveEng,
|
|
||||||
AdverbEng,
|
|
||||||
NumeralEng,
|
|
||||||
SentenceEng,
|
|
||||||
QuestionEng,
|
|
||||||
RelativeEng,
|
|
||||||
ConjunctionEng,
|
|
||||||
PhraseEng,
|
|
||||||
TextX,
|
|
||||||
StructuralEng,
|
|
||||||
IdiomEng,
|
|
||||||
LexiconEng
|
|
||||||
** {
|
** {
|
||||||
|
|
||||||
flags startcat = Phr ; -- unlexer = text ; lexer = text ;
|
flags startcat = Phr ; -- unlexer = text ; lexer = text ;
|
||||||
|
|||||||
Reference in New Issue
Block a user