1
0
forked from GitHub/gf-rgl

bug fix in with-modules and gr checker; factoring out cats to Common

This commit is contained in:
aarne
2006-05-23 22:20:00 +00:00
parent 84e629aa28
commit 8d0a0b4b22
5 changed files with 4 additions and 15 deletions

View File

@@ -4,7 +4,7 @@ abstract Adverb = Cat ** {
fun fun
-- The two main ways of formins adverbs is from adjectives and by -- The two main ways of forming adverbs are from adjectives and by
-- prepositions from noun phrases. -- prepositions from noun phrases.
PositAdvAdj : A -> Adv ; -- quickly PositAdvAdj : A -> Adv ; -- quickly

View File

@@ -24,7 +24,6 @@ abstract Cat = Common ** {
QCl ; -- question clause, with all tenses e.g. "why does she walk" QCl ; -- question clause, with all tenses e.g. "why does she walk"
IP ; -- interrogative pronoun e.g. "who" IP ; -- interrogative pronoun e.g. "who"
IAdv ; -- interrogative adverb e.g. "why"
IComp ; -- interrogative complement of copula e.g. "where" IComp ; -- interrogative complement of copula e.g. "where"
IDet ; -- interrogative determiner e.g. "which" IDet ; -- interrogative determiner e.g. "which"
@@ -68,16 +67,6 @@ abstract Cat = Common ** {
Num ; -- cardinal number (used with QuantPl) e.g. "seven" Num ; -- cardinal number (used with QuantPl) e.g. "seven"
Ord ; -- ordinal number (used in Det) e.g. "seventh" Ord ; -- ordinal number (used in Det) e.g. "seventh"
--2 Adverbs
-- Constructed in [Adverb Adverb.html].
-- Many adverbs are constructed in [Structural Structural.html].
Adv ; -- verb-phrase-modifying adverb, e.g. "in the house"
AdV ; -- adverb directly attached to verb e.g. "always"
AdA ; -- adjective-modifying adverb, e.g. "very"
AdN ; -- numeral-modifying adverb, e.g. "more than"
--2 Numerals --2 Numerals
-- Constructed in [Numeral Numeral.html]. -- Constructed in [Numeral Numeral.html].

View File

@@ -4,7 +4,7 @@
-- --
-- Here we have some words belonging to closed classes and appearing -- Here we have some words belonging to closed classes and appearing
-- in all languages we have considered. -- in all languages we have considered.
-- Sometimes they are not really meaningful, e.g. $we_NP$ in Spanish -- Sometimes they are not really meaningful, e.g. $we_Pron$ in Spanish
-- should be replaced by masculine and feminine variants. -- should be replaced by masculine and feminine variants.
abstract Structural = Cat ** { abstract Structural = Cat ** {

View File

@@ -1,6 +1,6 @@
--1 Texts --1 Texts
abstract Text = Cat ** { abstract Text = Common ** {
fun fun
TEmpty : Text ; TEmpty : Text ;

View File

@@ -1,4 +1,4 @@
concrete TextX of Text = { concrete TextX of Text = CommonX ** {
-- This will work for almost all languages except Spanish. -- This will work for almost all languages except Spanish.