structure document for 1.0

This commit is contained in:
aarne
2006-01-18 18:19:33 +00:00
parent 399e92c8f7
commit ecce36b777
40 changed files with 455 additions and 114 deletions

View File

@@ -1,3 +1,13 @@
--1 Tense, Polarity, and Anteriority
-- This module defines the abstract parameters of tense, polarity, and
-- anteriority, which are used in [Tensed Tensed.html] to generate different
-- forms of sentences. Together they give 2 x 4 x 4 = 16 sentence forms.
-- These tenses are defined for all languages in the library. More tenses
-- can be defined in the language extensions, e.g. the "passé simple" of
-- Romance languages.
abstract Tense = {
cat
@@ -6,8 +16,8 @@ abstract Tense = {
Ant ;
fun
PPos, PNeg : Pol ;
TPres, TPast, TFut, TCond : Tense ;
ASimul, AAnter : Ant ;
PPos, PNeg : Pol ; -- I sleep/don't sleep
TPres, TPast, TFut, TCond : Tense ; -- I sleep/slept/will sleep/would sleep
ASimul, AAnter : Ant ; -- I sleep/have slept
}