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 14d3ffa2f5
commit 1595e31a28
9 changed files with 11 additions and 22 deletions

View File

@@ -4,7 +4,7 @@ abstract Adverb = Cat ** {
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.
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"
IP ; -- interrogative pronoun e.g. "who"
IAdv ; -- interrogative adverb e.g. "why"
IComp ; -- interrogative complement of copula e.g. "where"
IDet ; -- interrogative determiner e.g. "which"
@@ -68,16 +67,6 @@ abstract Cat = Common ** {
Num ; -- cardinal number (used with QuantPl) e.g. "seven"
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
-- Constructed in [Numeral Numeral.html].

View File

@@ -4,7 +4,7 @@
--
-- Here we have some words belonging to closed classes and appearing
-- 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.
abstract Structural = Cat ** {

View File

@@ -1,6 +1,6 @@
--1 Texts
abstract Text = Cat ** {
abstract Text = Common ** {
fun
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.