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,15 +1,20 @@
--1 Symbolic expressions
-- *Note*. This module is not automatically included in the main
-- grammar [Lang Lang.html].
abstract Math = Cat ** {
--3 Noun phrases with symbols
--2 Noun phrases with symbols
fun
SymbPN : Symb -> PN ; -- "x"
IntPN : Int -> PN ; -- "27"
CNIntNP : CN -> Int -> NP ; -- "level 53"
CNSymbNP : Det -> CN -> [Symb] -> NP ; -- "(the) (2) numbers x and y"
SymbPN : Symb -> PN ; -- x
IntPN : Int -> PN ; -- 27
CNIntNP : CN -> Int -> NP ; -- level 53
CNSymbNP : Det -> CN -> [Symb] -> NP ; -- (the) (2) numbers x and y
--3 Symbol lists
--2 Symbol lists
-- A symbol list has at least two elements. The last two are separated
-- by a conjunction ("and" in English), the others by commas.