forked from GitHub/gf-rgl
Compare commits
1 Commits
20250812
...
optimise-l
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8d40fdf79f |
17
.github/workflows/release.yml
vendored
17
.github/workflows/release.yml
vendored
@@ -8,26 +8,19 @@ on:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-24.04
|
||||
runs-on: ubuntu-18.04
|
||||
env:
|
||||
GF_VERSION: 3.12
|
||||
GF_VERSION: 3.10-1
|
||||
DEST: gf-rgl-${{ github.event.inputs.tag }}
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Download GF
|
||||
uses: dsaltares/fetch-gh-release-asset@1.1.1
|
||||
with:
|
||||
repo: 'GrammaticalFramework/gf-core'
|
||||
version: 'tags/release-${{ env.GF_VERSION }}'
|
||||
file: 'gf-${{ env.GF_VERSION }}-ubuntu-24.04.deb'
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install GF
|
||||
run: |
|
||||
sudo dpkg -i gf-${GF_VERSION}-ubuntu-24.04.deb
|
||||
curl -s https://www.grammaticalframework.org/download/gf_${GF_VERSION}_amd64.deb -o gf.deb
|
||||
sudo dpkg -i gf.deb
|
||||
|
||||
- name: Build RGL
|
||||
run: |
|
||||
|
||||
33
.github/workflows/test.yml
vendored
33
.github/workflows/test.yml
vendored
@@ -1,33 +0,0 @@
|
||||
name: Check that the RGL can successfully build
|
||||
|
||||
on:
|
||||
- push
|
||||
- pull_request
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-24.04
|
||||
env:
|
||||
GF_VERSION: 3.12
|
||||
DEST: gf-rgl
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Download GF
|
||||
uses: dsaltares/fetch-gh-release-asset@1.1.1
|
||||
with:
|
||||
repo: 'GrammaticalFramework/gf-core'
|
||||
version: 'tags/release-${{ env.GF_VERSION }}'
|
||||
file: 'gf-${{ env.GF_VERSION }}-ubuntu-24.04.deb'
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Install GF
|
||||
run: |
|
||||
sudo dpkg -i gf-${GF_VERSION}-ubuntu-24.04.deb
|
||||
|
||||
- name: Build RGL
|
||||
run: |
|
||||
mkdir -p ${DEST}
|
||||
bash Setup.sh --dest=${DEST} --gf=gf --verbose
|
||||
@@ -25,7 +25,6 @@ data LangInfo = LangInfo
|
||||
, langSymbolic :: Bool
|
||||
, langCompatibility :: Bool
|
||||
, langSynopsis :: Bool -- ^ include in RGL synopsis
|
||||
, langMorphodict :: Bool
|
||||
} deriving (Show,Eq)
|
||||
|
||||
-- | Load language information from default config file
|
||||
@@ -56,7 +55,6 @@ loadLangsFrom configFile = do
|
||||
, langSymbolic = boolBit bits 8 True
|
||||
, langCompatibility = boolBit bits 9 False
|
||||
, langSynopsis = boolBit bits 10 False
|
||||
, langMorphodict = boolBit bits 11 False
|
||||
}
|
||||
|
||||
-- | Separate a string on a character
|
||||
|
||||
2
Makefile
2
Makefile
@@ -19,7 +19,6 @@ default: build copy
|
||||
build: src/*/*.gf
|
||||
ifneq (, $(RUNGHC))
|
||||
$(RUNGHC) build
|
||||
$(RUNGHC) build morphodict
|
||||
else
|
||||
./Setup.sh
|
||||
endif
|
||||
@@ -27,7 +26,6 @@ endif
|
||||
copy:
|
||||
ifneq (, $(RUNGHC))
|
||||
$(RUNGHC) copy
|
||||
$(RUNGHC) copy morphodict
|
||||
endif
|
||||
|
||||
install: build copy
|
||||
|
||||
26
Setup.hs
26
Setup.hs
@@ -1,4 +1,4 @@
|
||||
{-# LANGUAGE CPP, LambdaCase #-}
|
||||
{-# LANGUAGE CPP #-}
|
||||
|
||||
-- | Main build script for RGL
|
||||
|
||||
@@ -150,12 +150,11 @@ getRGLBuildSubDir mode =
|
||||
case mode of
|
||||
Present -> "present"
|
||||
AllTenses -> "alltenses"
|
||||
MorphoDict -> "morphodict"
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
-- Build modes
|
||||
|
||||
data Mode = Present | AllTenses | MorphoDict
|
||||
data Mode = Present | AllTenses
|
||||
deriving (Show,Eq)
|
||||
|
||||
all_modes :: [String]
|
||||
@@ -188,7 +187,6 @@ rglCommands =
|
||||
, RGLCommand "lang" False $ gfcp [l,s]
|
||||
, RGLCommand "api" False $ gfcp [t,sc]
|
||||
, RGLCommand "compat" False $ gfcp [c]
|
||||
, RGLCommand "morphodict" False $ gfcp [m]
|
||||
|
||||
-- Special command, invoked when command ends in .gf
|
||||
, RGLCommand "modules" False $ \modes args bi -> do
|
||||
@@ -225,20 +223,14 @@ rglCommands =
|
||||
s mode args = (symbol,optml mode langTry args)
|
||||
c mode args = (compat,optml AllTenses langCompatibility args)
|
||||
t mode args = (try,optml mode langTry args)
|
||||
m mode args = (morphodict,optml mode langMorphodict args)
|
||||
sc mode args = (symbolic,optml mode langSymbolic args)
|
||||
|
||||
optml :: Mode -> (LangInfo -> Bool) -> [String] -> ([LangInfo] -> [LangInfo])
|
||||
optml mode pred args =
|
||||
\langsAll ->
|
||||
let langsDefault = filter (mode2langinfo mode) (filter pred langsAll)
|
||||
let langsDefault = filter (if mode == Present then langPresent else const True) (filter pred langsAll)
|
||||
in getOptLangs langsAll langsDefault args
|
||||
|
||||
mode2langinfo = \case
|
||||
Present -> langPresent
|
||||
MorphoDict -> langMorphodict
|
||||
_ -> const True
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
-- Getting module paths/names
|
||||
|
||||
@@ -268,9 +260,6 @@ syntax l = sourceDir </> "api" </> ("Syntax" ++ langCode l ++ ".gf")
|
||||
symbolic :: LangInfo -> FilePath
|
||||
symbolic l = sourceDir </> "api" </> ("Symbolic" ++ langCode l ++ ".gf")
|
||||
|
||||
morphodict :: LangInfo -> FilePath
|
||||
morphodict l = sourceDir </> "morphodict" </> ("MorphoDict" ++ langCode l ++ ".gf")
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
-- Argument helpers
|
||||
|
||||
@@ -313,9 +302,8 @@ getOptMode args =
|
||||
else explicit_modes
|
||||
where
|
||||
explicit_modes =
|
||||
[Present | have "present"] ++
|
||||
[AllTenses | have "alltenses"] ++
|
||||
[MorphoDict | have "morphodict"]
|
||||
[Present|have "present"]++
|
||||
[AllTenses|have "alltenses"]
|
||||
have mode = mode `elem` args
|
||||
|
||||
-- | List of languages overriding the default definitions
|
||||
@@ -378,8 +366,8 @@ gfcn :: Info -> Mode -> String -> [FilePath] -> IO ()
|
||||
gfcn bi mode summary files = do
|
||||
let dir = getRGLBuildDir bi mode
|
||||
preproc = case mode of
|
||||
Present -> "--preproc=mkPresent"
|
||||
_ -> ""
|
||||
Present -> "--preproc=mkPresent"
|
||||
AllTenses -> ""
|
||||
createDirectoryIfMissing True dir
|
||||
if length files > 0
|
||||
then do
|
||||
|
||||
13
Setup.sh
13
Setup.sh
@@ -59,7 +59,6 @@ gfc="${gf} --batch --quiet --gf-lib-path=${dist}"
|
||||
mkdir -p "${dist}/prelude"
|
||||
mkdir -p "${dist}/present"
|
||||
mkdir -p "${dist}/alltenses"
|
||||
mkdir -p "${dist}/morphodict"
|
||||
|
||||
# Build: prelude
|
||||
echo "Building [prelude]"
|
||||
@@ -69,7 +68,6 @@ ${gfc} --gfo-dir="${dist}"/prelude "${src}"/prelude/*.gf
|
||||
# Gather all language modules for building
|
||||
modules_present=
|
||||
modules_alltenses=
|
||||
modules_morphodict=
|
||||
for lang in $langs; do
|
||||
for mod in $modules_langs $modules_api; do
|
||||
if [ $mod == "Compatibility" ] && [[ "$langs_compat" != *"$lang"* ]]; then continue; fi
|
||||
@@ -82,12 +80,8 @@ for lang in $langs; do
|
||||
modules_alltenses="${modules_alltenses} ${file}"
|
||||
done
|
||||
done
|
||||
file="${src}/morphodict/MorphoDict${lang}.gf"
|
||||
if [ ! -f "$file" ]; then continue; fi
|
||||
modules_morphodict="${modules_morphodict} ${file}"
|
||||
done
|
||||
|
||||
|
||||
# Build: present
|
||||
echo "Building [present]"
|
||||
if [ $verbose = true ]; then echo $modules_present; fi
|
||||
@@ -102,13 +96,6 @@ for module in $modules_alltenses; do
|
||||
${gfc} --no-pmcfg --gfo-dir="${dist}"/alltenses "${module}"
|
||||
done
|
||||
|
||||
# Build: morphodict
|
||||
echo "Building [morphodict]"
|
||||
if [ $verbose = true ]; then echo $modules_morphodict; fi
|
||||
for module in $modules_morphodict; do
|
||||
${gfc} --no-pmcfg --gfo-dir="${dist}"/morphodict "${module}"
|
||||
done
|
||||
|
||||
# Copy
|
||||
if [ $dest == $dist ]; then exit 0; fi
|
||||
echo "Copying to ${dest}"
|
||||
|
||||
112
languages.csv
112
languages.csv
@@ -1,58 +1,54 @@
|
||||
Code,Name,Directory,Functor,Unlexer,Present,All,Try,Symbolic,Compatibility,Synopsis,MorphoDict
|
||||
Afr,Afrikaans,afrikaans,,,,,,n,,y,n
|
||||
Amh,Amharic,amharic,,,,,n,n,,n,n
|
||||
Ara,Arabic,arabic,,,,,,y,,y,y
|
||||
Bul,Bulgarian,bulgarian,,,y,,,,,y,n
|
||||
Cat,Catalan,catalan,Romance,,y,,,,y,y,n
|
||||
Cgg,Rukiga,rukiga,,,y,y,n,n,y,y,n
|
||||
Chi,Chinese (simplified),chinese,,,,,,,,y,y
|
||||
Cze,Czech,czech,,,,,,n,,y,n
|
||||
Dan,Danish,danish,Scand,,y,,,,,y,n
|
||||
Dut,Dutch,dutch,,,y,,,,,y,n
|
||||
Eng,English,english,,,y,,,,y,y,y
|
||||
Est,Estonian,estonian,,,,,,,,y,n
|
||||
Eus,Basque,basque,,,,,,,,y,n
|
||||
Fin,Finnish,finnish,,,y,,,,y,y,y
|
||||
Fre,French,french,Romance,,y,,,,y,y,y
|
||||
Ger,German,german,,,y,,,,,y,y
|
||||
Grc,Ancient Greek,ancient_greek,,,y,,n,n,,n,n
|
||||
Gre,Greek,greek,,,,,,,,y,n
|
||||
Heb,Hebrew,hebrew,,,,,n,n,,n,n
|
||||
Hin,Hindi,hindi,Hindustani,to_devanagari,y,,,,,y,n
|
||||
Hrv,Croatian,croatian,,,,,,y,,n,n
|
||||
Hun,Hungarian,hungarian,,,n,y,y,y,n,n,n
|
||||
Ice,Icelandic,icelandic,,,,,,n,,y,n
|
||||
Ina,Interlingua,interlingua,,,y,,n,n,,n,n
|
||||
Ita,Italian,italian,Romance,,y,,,,y,y,y
|
||||
Jpn,Japanese,japanese,,,,,,,,y,n
|
||||
Kaz,Kazakh,kazakh,,,,y,n,n,n,y,n
|
||||
Kor,Korean,korean,,,n,y,y,y,n,n,n
|
||||
Lat,Latin,latin,,,,,y,y,n,y,n
|
||||
Lav,Latvian,latvian,,,,,,,y,y,n
|
||||
Mkd,Macedonian,macedonian,,,,y,n,n,n,y,n
|
||||
May,Malay,malay,,,y,,,,n,y,n
|
||||
Mlt,Maltese,maltese,,,,,,,,y,n
|
||||
Mon,Mongolian,mongolian,,,,,,n,,y,n
|
||||
Nep,Nepali,nepali,,,,,,n,,y,n
|
||||
Nno,Norwegian (nynorsk),nynorsk,,,y,,,,,y,n
|
||||
Nor,Norwegian (bokmål),norwegian,Scand,,y,,,,,y,n
|
||||
Pes,Persian,persian,,,,,,,,y,n
|
||||
Pnb,Punjabi,punjabi,,,y,,,,,y,n
|
||||
Pol,Polish,polish,,,,,,,,y,n
|
||||
Por,Portuguese,portuguese,Romance,,y,,,,y,y,y
|
||||
Ron,Romanian,romanian,,,y,,,,,y,n
|
||||
Rus,Russian,russian,,,y,,,,,y,n
|
||||
Slo,Slovak,slovak,,,,,,n,,y,n
|
||||
Slv,Slovenian,slovenian,,,,,n,n,,n,n
|
||||
Snd,Sindhi,sindhi,,,,,,,,y,n
|
||||
Spa,Spanish,spanish,Romance,,y,,,,y,y,y
|
||||
Sqi,Albanian,albanian,,,,y,n,n,n,y,n
|
||||
Swa,Swahili,swahili,Bantu,,,y,n,n,n,n,n
|
||||
Swe,Swedish,swedish,Scand,,y,,,,y,y,y
|
||||
Tam,Tamil,tamil,n,n,n,n,n,n,n,n,n
|
||||
Tel,Telugu,telugu,,,y,n,n,n,,n,n
|
||||
Tha,Thai,thai,,to_thai,,,,,,y,n
|
||||
Tur,Turkish,turkish,,,y,,,n,,n,n
|
||||
Urd,Urdu,urdu,Hindustani,,,,,,,y,n
|
||||
Som,Somali,somali,,,,,n,n,,n,n
|
||||
Zul,Zulu,zulu,,,,,n,n,,n,n
|
||||
Code,Name,Directory,Functor,Unlexer,Present,All,Try,Symbolic,Compatibility,Synopsis
|
||||
Afr,Afrikaans,afrikaans,,,,,,n,,y
|
||||
Amh,Amharic,amharic,,,,,n,n,,n
|
||||
Ara,Arabic,arabic,,,,,,y,,y
|
||||
Bul,Bulgarian,bulgarian,,,y,,,,,y
|
||||
Cat,Catalan,catalan,Romance,,y,,,,y,y
|
||||
Cgg,Rukiga,rukiga,,,y,y,n,n,y,y
|
||||
Chi,Chinese (simplified),chinese,,,,,,,,y
|
||||
Cze,Czech,czech,,,,,,n,,y
|
||||
Dan,Danish,danish,Scand,,y,,,,,y
|
||||
Dut,Dutch,dutch,,,y,,,,,y
|
||||
Eng,English,english,,,y,,,,y,y
|
||||
Est,Estonian,estonian,,,,,,,,y
|
||||
Eus,Basque,basque,,,,,,,,y
|
||||
Fin,Finnish,finnish,,,y,,,,y,y
|
||||
Fre,French,french,Romance,,y,,,,y,y
|
||||
Ger,German,german,,,y,,,,,y
|
||||
Grc,Ancient Greek,ancient_greek,,,y,,n,n,,n
|
||||
Gre,Greek,greek,,,,,,,,y
|
||||
Heb,Hebrew,hebrew,,,,,n,n,,n
|
||||
Hin,Hindi,hindi,Hindustani,to_devanagari,y,,,,,y
|
||||
Hrv,Croatian,croatian,,,,,,y,,n
|
||||
Hun,Hungarian,hungarian,,,n,y,y,y,n,n
|
||||
Ice,Icelandic,icelandic,,,,,,n,,y
|
||||
Ina,Interlingua,interlingua,,,y,,n,n,,n
|
||||
Ita,Italian,italian,Romance,,y,,,,y,y
|
||||
Jpn,Japanese,japanese,,,,,,,,y
|
||||
Kor,Korean,korean,,,n,y,y,y,n,n
|
||||
Lat,Latin,latin,,,,,y,y,n,y
|
||||
Lav,Latvian,latvian,,,,,,,y,y
|
||||
May,Malay,malay,,,y,,,,n,y
|
||||
Mlt,Maltese,maltese,,,,,,,,y
|
||||
Mon,Mongolian,mongolian,,,,,,n,,y
|
||||
Nep,Nepali,nepali,,,,,,n,,y
|
||||
Nno,Norwegian (nynorsk),nynorsk,,,y,,,,,y
|
||||
Nor,Norwegian (bokmål),norwegian,Scand,,y,,,,,y
|
||||
Pes,Persian,persian,,,,,,,,y
|
||||
Pnb,Punjabi,punjabi,,,y,,,,,y
|
||||
Pol,Polish,polish,,,,,,,,y
|
||||
Por,Portuguese,portuguese,Romance,,y,,,,y,y
|
||||
Ron,Romanian,romanian,,,y,,,,,y
|
||||
Rus,Russian,russian,,,y,,,,,y
|
||||
Slo,Slovak,slovak,,,,,,n,,y
|
||||
Slv,Slovenian,slovenian,,,,,n,n,,n
|
||||
Snd,Sindhi,sindhi,,,,,,,,y
|
||||
Spa,Spanish,spanish,Romance,,y,,,,y,y
|
||||
Swa,Swahili,swahili,Bantu,,,y,n,n,n,n
|
||||
Swe,Swedish,swedish,Scand,,y,,,,y,y
|
||||
Tam,Tamil,tamil,n,n,n,n,n,n,n,n
|
||||
Tel,Telugu,telugu,,,y,n,n,n,,n
|
||||
Tha,Thai,thai,,to_thai,,,,,,y
|
||||
Tur,Turkish,turkish,,,y,,,n,,n
|
||||
Urd,Urdu,urdu,Hindustani,,,,,,,y
|
||||
Som,Somali,somali,,,,,n,n,,n
|
||||
|
||||
|
@@ -14,29 +14,9 @@ This Readme was written by Nemo and edited by Inari on 14th August 2022.
|
||||
|
||||
If you are working on an RGL for a new language, you will need to run "Clone.hs" in the "src" folder so that you can clone a project from another language to your language to give you a basis to start with.
|
||||
|
||||
### From an existing RGL language
|
||||
As per the instructions, the syntax is "Clone fromdir todir fromlang tolang", e.g. "runghc Clone swedish danish Swe Dan". You may want to add the option --comment-body after the word "Clone" to comment out every line in the body of the files to start fresh.
|
||||
|
||||
If your language already has a close relative in the RGL, then you can clone your language from that one, in order reuse the same structures with only minor modifications. As per the instructions, the syntax is `Clone fromdir todir fromlang tolang`.Suppose you want to clone Slovak from Czech, then do as follows:
|
||||
|
||||
```bash
|
||||
$ runghc Clone czech slovak Cze Slo
|
||||
```
|
||||
|
||||
You may want to add the option `--comment-body` after the word `Clone` to comment out every line in the body of the files.
|
||||
|
||||
```bash
|
||||
$ runghc Clone --comment-body czech slovak Cze Slo
|
||||
```
|
||||
|
||||
### From a generic template
|
||||
|
||||
Often it is easier to start from a rather clean slate, so the recommended way is to clone the [TEMPLATE](TEMPLATE/) module. So suppose you want to start a resource grammar for Albanian, do it as follows:
|
||||
|
||||
```bash
|
||||
$ runghc Clone TEMPLATE albanian TMP Sqi
|
||||
```
|
||||
|
||||
You will see more detailed instructions on how to continue from the cloned template in the [README file](template/README.md).
|
||||
This is especially useful if your new language has very little in common with the language you are copying from because they come from different language families.
|
||||
|
||||
# File hierarchy
|
||||
|
||||
|
||||
@@ -1,68 +0,0 @@
|
||||
concrete AdjectiveTMP of Adjective = CatTMP ** open ResTMP, Prelude in {
|
||||
|
||||
flags optimize=all_subs ;
|
||||
|
||||
lin
|
||||
|
||||
-- : AP -> Adv -> AP ; -- warm by nature
|
||||
AdvAP ap adv = ap ** {
|
||||
s = ap.s ++ adv.s ;
|
||||
} ;
|
||||
|
||||
-- : A -> AP ;
|
||||
PositA a = a ** {
|
||||
compar = [] ;
|
||||
} ;
|
||||
|
||||
-- : A -> NP -> AP ;
|
||||
ComparA a np = a ** {
|
||||
compar = np.s
|
||||
} ;
|
||||
|
||||
-- : A2 -> NP -> AP ; -- married to her
|
||||
-- ComplA2 a2 np = a2 ** { } ;
|
||||
|
||||
-- : A2 -> AP ; -- married to itself
|
||||
-- ReflA2 a2 = a2 ** { } ;
|
||||
|
||||
-- : A2 -> AP ; -- married
|
||||
UseA2 = PositA ;
|
||||
|
||||
-- : A -> AP ; -- warmer
|
||||
-- UseComparA a = a ** {
|
||||
-- s = \\af => "???" ++ a.s ! af ;
|
||||
-- compar = []
|
||||
-- } ;
|
||||
|
||||
|
||||
-- : CAdv -> AP -> NP -> AP ; -- as cool as John
|
||||
-- CAdvAP adv ap np = ap ** { } ;
|
||||
|
||||
-- The superlative use is covered in $Ord$.
|
||||
|
||||
-- : Ord -> AP ; -- warmest
|
||||
-- AdjOrd ord = ord ** {
|
||||
-- compar = []
|
||||
-- } ;
|
||||
-- AdjOrd : Ord -> AP =
|
||||
AdjOrd ord = ord ;
|
||||
|
||||
-- Sentence and question complements defined for all adjectival
|
||||
-- phrases, although the semantics is only clear for some adjectives.
|
||||
|
||||
-- : AP -> SC -> AP ; -- good that she is here
|
||||
-- SentAP ap sc = ap ** {
|
||||
-- s = \\af => ap.s ! af ++ sc.s
|
||||
-- } ;
|
||||
|
||||
-- An adjectival phrase can be modified by an *adadjective*, such as "very".
|
||||
|
||||
-- : AdA -> AP -> AP ;
|
||||
-- AdAP ada ap = ap ** { } ;
|
||||
|
||||
|
||||
-- It can also be postmodified by an adverb, typically a prepositional phrase.
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -1,39 +0,0 @@
|
||||
concrete AdverbTMP of Adverb = CatTMP ** open ResTMP, ParadigmsTMP, Prelude in {
|
||||
{-
|
||||
lin
|
||||
|
||||
-- : A -> Adv ;
|
||||
PositAdvAdj adj =
|
||||
|
||||
-- : CAdv -> A -> NP -> Adv ; -- more warmly than John
|
||||
ComparAdvAdj cadv a np =
|
||||
|
||||
-- : CAdv -> A -> S -> Adv ; -- more warmly than he runs
|
||||
ComparAdvAdjS cadv a s =
|
||||
|
||||
-- : Prep -> NP -> Adv ;
|
||||
PrepNP prep np = ;
|
||||
|
||||
-- Adverbs can be modified by 'adadjectives', just like adjectives.
|
||||
|
||||
-- : AdA -> Adv -> Adv ; -- very quickly
|
||||
AdAdv ada adv = adv **
|
||||
|
||||
-- Like adverbs, adadjectives can be produced by adjectives.
|
||||
|
||||
-- : A -> AdA ; -- extremely
|
||||
PositAdAAdj a =
|
||||
|
||||
-- Subordinate clauses can function as adverbs.
|
||||
|
||||
-- : Subj -> S -> Adv ;
|
||||
SubjS subj s = {s = subj.s ++ s.s} ;
|
||||
|
||||
-- Comparison adverbs also work as numeral adverbs.
|
||||
|
||||
-- : CAdv -> AdN ; -- less (than five)
|
||||
AdnCAdv cadv = ;
|
||||
|
||||
-}
|
||||
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
--# -path=.:../abstract:../common:../prelude
|
||||
|
||||
concrete AllTMP of AllTMPAbs =
|
||||
LangTMP,
|
||||
ExtendTMP
|
||||
;
|
||||
@@ -1,5 +0,0 @@
|
||||
--# -path=.:../abstract:../common:prelude
|
||||
|
||||
abstract AllTMPAbs =
|
||||
Lang,
|
||||
Extend ;
|
||||
@@ -1,121 +0,0 @@
|
||||
concrete CatTMP of Cat = CommonX ** open ResTMP, Coordination, Prelude in {
|
||||
|
||||
flags optimize=all_subs ;
|
||||
|
||||
lincat
|
||||
|
||||
--2 Sentences and clauses
|
||||
-- Constructed in SentenceTMP, and also in IdiomTMP
|
||||
S = SS ;
|
||||
QS = SS ;
|
||||
RS = SS ;
|
||||
-- relative sentence. Tense and polarity fixed,
|
||||
-- but agreement may depend on the CN/NP it modifies.
|
||||
|
||||
Cl = ResTMP.LinCl ;
|
||||
ClSlash = SS ;
|
||||
SSlash = SS ; -- sentence missing NP; e.g. "she has looked at"
|
||||
Imp = SS ; -- imperative e.g. "look at this"
|
||||
|
||||
--2 Questions and interrogatives
|
||||
|
||||
-- Constructed in QuestionTMP.
|
||||
QCl = SS ;
|
||||
IComp = SS ; -- interrogative complement of copula e.g. "where"
|
||||
IDet = SS ; -- interrogative determiner e.g. "how many"
|
||||
IQuant = SS ; -- interrogative quantifier e.g. "which"
|
||||
IP = SS ; -- interrogative pronoun e.g. "who"
|
||||
|
||||
--2 Subord clauses and pronouns
|
||||
|
||||
RCl = SS ;
|
||||
RP = SS ;
|
||||
|
||||
--2 Verb phrases
|
||||
|
||||
-- Constructed in VerbTMP.
|
||||
VP = ResTMP.LinVP ;
|
||||
VPSlash = SS ;
|
||||
Comp = SS ;
|
||||
|
||||
--2 Adjectival phrases
|
||||
|
||||
-- Constructed in AdjectiveTMP.
|
||||
AP = SS ;
|
||||
|
||||
--2 Nouns and noun phrases
|
||||
|
||||
-- Constructed in NounTMP.
|
||||
-- Many atomic noun phrases e.g. "everybody"
|
||||
-- are constructed in StructuralTMP.
|
||||
|
||||
CN = ResTMP.LinCN ;
|
||||
NP = ResTMP.LinNP ;
|
||||
Pron = SS ; -- NB. Pronouns need enough info to become NP or Quant.
|
||||
Det = ResTMP.LinDet ; -- s : Str , n : Number
|
||||
Predet = SS ;
|
||||
Quant = ResTMP.LinQuant ; -- s : Number => Str
|
||||
Num = ResTMP.LinDet ;
|
||||
Card = ResTMP.LinDet ;
|
||||
ACard = SS ;
|
||||
Ord = SS ;
|
||||
DAP = SS ;
|
||||
|
||||
|
||||
--2 Numerals
|
||||
|
||||
-- Constructed in NumeralTMP.
|
||||
|
||||
Numeral = ResTMP.LinNumeral ;
|
||||
Digits = ResTMP.LinNumeral ;
|
||||
|
||||
--2 Structural words
|
||||
|
||||
-- Constructed in StructuralTMP.
|
||||
Conj = Coordination.ConjunctionDistr ** {
|
||||
n : Number -- The number of the NP that results from
|
||||
-- coordinating a list of NPs with that Conj.
|
||||
} ; -- "[Ann and Bob] are children" → and_Conj.n = Pl
|
||||
Subj = SS ;
|
||||
Prep = SS ;
|
||||
|
||||
|
||||
|
||||
--2 Words of open classes
|
||||
|
||||
-- These are constructed in LexiconTMP and in
|
||||
-- additional lexicon modules.
|
||||
|
||||
-- TODO: eventually different lincats
|
||||
VS, -- sentence-complement verb e.g. "claim"
|
||||
VQ, -- question-complement verb e.g. "wonder"
|
||||
VA, -- adjective-complement verb e.g. "look"
|
||||
V = ResTMP.LinV ;
|
||||
|
||||
VV -- verb-phrase-complement verb e.g. "want"
|
||||
= SS ;
|
||||
|
||||
V2A, -- verb with NP and AP complement e.g. "paint"
|
||||
V2V, -- verb with NP and V complement e.g. "cause"
|
||||
V2S, -- verb with NP and S complement e.g. "tell"
|
||||
V2Q, -- verb with NP and Q complement e.g. "ask"
|
||||
V2 = SS ;
|
||||
V3 = SS ;
|
||||
|
||||
A = SS ;
|
||||
A2 = SS ;
|
||||
|
||||
N = ResTMP.LinN ;
|
||||
N2 = ResTMP.LinN ;
|
||||
N3 = ResTMP.LinN ;
|
||||
PN = SS ;
|
||||
|
||||
-- From the Names module, not in the official API as of 2023-08
|
||||
GN = SS ; -- Given name, e.g. "George"
|
||||
SN = SS ; -- Second name, e.g. "Washington"
|
||||
LN = SS ; -- Location name, e.g. "Sweden"
|
||||
|
||||
linref
|
||||
Cl = linCl ;
|
||||
|
||||
}
|
||||
@@ -1,147 +0,0 @@
|
||||
concrete ConjunctionTMP of Conjunction =
|
||||
CatTMP ** open ResTMP, Coordination, Prelude in {
|
||||
|
||||
flags optimize=all_subs ;
|
||||
|
||||
{- Conjunction for category X needs four things:
|
||||
lincat [X]
|
||||
lin BaseX
|
||||
lin ConsX
|
||||
lin ConjX
|
||||
|
||||
For example, if X is defined as
|
||||
|
||||
lincat X = {s : Number => Str ; g : Gender} ;
|
||||
|
||||
then [X] will split its s field into two, and retain its other fields as is:
|
||||
|
||||
lincat [X] = {s1,s2 : Number => Str ; g : Gender} ;
|
||||
|
||||
Let us look at a simple case: Adv is of type {s : Str}
|
||||
Then [Adv] is {s1,s2 : Str}.
|
||||
BaseAdv, ConsAdv and ConjAdv can all use functions defined in prelude/Coordination:
|
||||
|
||||
BaseAdv = twoSS ;
|
||||
ConsAdv = consrSS comma ;
|
||||
ConjAdv = conjunctSS ;
|
||||
|
||||
--}
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
-- Adverb and other simple {s : Str} types.
|
||||
lincat
|
||||
[Adv],[AdV],[IAdv] = {s1,s2 : Str} ;
|
||||
|
||||
lin
|
||||
BaseAdv, BaseAdV, BaseIAdv = twoSS ;
|
||||
ConsAdv, ConsAdV, ConsIAdv = consrSS comma ;
|
||||
ConjAdv, ConjAdV, ConjIAdv = conjunctDistrSS ;
|
||||
|
||||
{-
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
-- S is sometimes already {s : Str}, sometimes open for mood or word order.
|
||||
-- Simply take the lincat of S, and split the s field into s1 and s2.
|
||||
-- Then make sure that all of the other fields are retained.
|
||||
|
||||
lincat
|
||||
[S] = {s1, s2 : …} ;
|
||||
|
||||
lin
|
||||
-- : S -> S -> ListS ; -- John walks, Mary runs
|
||||
BaseS x y =
|
||||
|
||||
-- : S -> ListS -> ListS ; -- John walks, Mary runs, Bill swims
|
||||
ConsS x xs =
|
||||
|
||||
-- : Conj -> ListS -> S ; -- he walks and she runs
|
||||
ConjS conj xs =
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
-- RS is variable on … and has inherent …
|
||||
-- RS can modify CNs, which are open for …, and have inherent …
|
||||
|
||||
lincat
|
||||
[RS] = {s1,s2 : … => Str} ;
|
||||
|
||||
lin
|
||||
|
||||
-- : RS -> RS -> ListRS ; -- who walks, whom I know
|
||||
BaseRS x y =
|
||||
|
||||
-- : RS -> ListRS -> ListRS ; -- who wals, whom I know, who is here
|
||||
ConsRS x xs =
|
||||
|
||||
-- : Conj -> ListRS -> RS ; -- who walks and whose mother runs
|
||||
ConjRS conj xs =
|
||||
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
-- NP is variable on … and has inherent …
|
||||
|
||||
lincat
|
||||
[NP] = {s1, s2 : …} ;
|
||||
|
||||
lin
|
||||
-- : NP -> NP -> ListNP ; -- John, Mary
|
||||
BaseNP x y =
|
||||
|
||||
-- : NP -> ListNP -> ListNP ; -- John, Mary, Bill
|
||||
ConsNP x xs =
|
||||
|
||||
-- : Conj -> ListNP -> NP ; -- she or we
|
||||
ConjNP conj xs =
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
-- AP is variable on … and has an inherent …
|
||||
|
||||
lincat
|
||||
[AP] = {s1, s2 : …} ;
|
||||
|
||||
lin
|
||||
-- : AP -> AP -> ListAP ; -- red, white
|
||||
BaseAP x y =
|
||||
|
||||
-- : AP -> ListAP -> ListAP ; -- red, white, blue
|
||||
ConsAP x xs =
|
||||
|
||||
-- : Conj -> ListAP -> AP ; -- cold and warm
|
||||
ConjAP conj xs =
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
-- CN is variable on …
|
||||
-- CN conjunction is not in the API, so this can be lower prio
|
||||
|
||||
lincat
|
||||
[CN] = {s1, s2 : …} ;
|
||||
|
||||
lin
|
||||
-- : CN -> CN -> ListCN ; -- man, woman
|
||||
BaseCN x y =
|
||||
|
||||
-- : CN -> ListCN -> ListCN ; -- man, woman, child
|
||||
ConsCN x xs =
|
||||
|
||||
-- : Conj -> ListCN -> CN ; -- man and woman
|
||||
ConjCN conj xs =
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
-- Det and DAP
|
||||
-- Note that there is no [Det], the way to coordinate Dets is to make them
|
||||
-- into DAP first, using Noun.DetDAP : Det -> DAP ;
|
||||
-- DAP ("three small") isn't used in any API functions, so lower prio.
|
||||
|
||||
lincat
|
||||
[DAP] = {s1, s2 : …} ;
|
||||
|
||||
lin
|
||||
-- : DAP -> DAP -> ListDAP ;
|
||||
BaseDAP x y =
|
||||
|
||||
-- : DAP -> ListDAP -> ListDAP ;
|
||||
ConsDAP xs x =
|
||||
|
||||
-- : Conj -> ListDAP -> Det ; -- his or her
|
||||
ConjDet conj xs =
|
||||
-}
|
||||
}
|
||||
@@ -1,117 +0,0 @@
|
||||
concrete ConstructionTMP of Construction = CatTMP ** open ParadigmsTMP in {
|
||||
|
||||
lincat
|
||||
Timeunit = N ;
|
||||
Weekday = N ;
|
||||
Monthday = NP ;
|
||||
Month = N ;
|
||||
Year = NP ;
|
||||
{-
|
||||
lin
|
||||
|
||||
timeunitAdv n time =
|
||||
let n_card : Card = n ;
|
||||
n_hours_NP : NP = mkNP n_card time ;
|
||||
in SyntaxTMP.mkAdv for_Prep n_hours_NP | mkAdv (n_hours_NP.s ! R.npNom) ;
|
||||
|
||||
weekdayPunctualAdv w = ; -- on Sunday
|
||||
weekdayHabitualAdv w = ; -- on Sundays
|
||||
weekdayNextAdv w = -- next Sunday
|
||||
weekdayLastAdv w = -- last Sunday
|
||||
|
||||
monthAdv m = mkAdv in_Prep (mkNP m) ;
|
||||
yearAdv y = mkAdv in_Prep y ;
|
||||
dayMonthAdv d m = ; -- on 17 TMP
|
||||
monthYearAdv m y = ; -- in TMP 2012
|
||||
dayMonthYearAdv d m y = ; -- on 17 TMP 2013
|
||||
|
||||
intYear = symb ;
|
||||
intMonthday = symb ;
|
||||
|
||||
lincat Language = N ;
|
||||
|
||||
lin InLanguage l = mkAdv ???_Prep (mkNP l) ;
|
||||
|
||||
lin
|
||||
weekdayN w = w ;
|
||||
monthN m = m ;
|
||||
|
||||
weekdayPN w = mkPN w ;
|
||||
monthPN m = mkPN m ;
|
||||
|
||||
languageCN l = mkCN l ;
|
||||
languageNP l = mkNP l ;
|
||||
|
||||
|
||||
oper mkLanguage : Str -> N = \s -> mkN s ;
|
||||
|
||||
----------------------------------------------
|
||||
---- lexicon of special names
|
||||
|
||||
lin second_Timeunit = mkN "second" ;
|
||||
lin minute_Timeunit = mkN "minute" ;
|
||||
lin hour_Timeunit = mkN "hour" ;
|
||||
lin day_Timeunit = mkN "day" ;
|
||||
lin week_Timeunit = mkN "week" ;
|
||||
lin month_Timeunit = mkN "month" ;
|
||||
lin year_Timeunit = mkN "year" ;
|
||||
|
||||
lin monday_Weekday = mkN "Monday" ;
|
||||
lin tuesday_Weekday = mkN "Tuesday" ;
|
||||
lin wednesday_Weekday = mkN "Wednesday" ;
|
||||
lin thursday_Weekday = mkN "Thursday" ;
|
||||
lin friday_Weekday = mkN "Friday" ;
|
||||
lin saturday_Weekday = mkN "Saturday" ;
|
||||
lin sunday_Weekday = mkN "Sunday" ;
|
||||
|
||||
lin january_Month = mkN "January" ;
|
||||
lin february_Month = mkN "February" ;
|
||||
lin march_Month = mkN "March" ;
|
||||
lin april_Month = mkN "April" ;
|
||||
lin may_Month = mkN "May" ;
|
||||
lin june_Month = mkN "June" ;
|
||||
lin july_Month = mkN "July" ;
|
||||
lin august_Month = mkN "August" ;
|
||||
lin september_Month = mkN "September" ;
|
||||
lin october_Month = mkN "October" ;
|
||||
lin november_Month = mkN "November" ;
|
||||
lin december_Month = mkN "December" ;
|
||||
|
||||
lin afrikaans_Language = mkLanguage "Afrikaans" ;
|
||||
lin amharic_Language = mkLanguage "Amharic" ;
|
||||
lin arabic_Language = mkLanguage "Arabic" ;
|
||||
lin bulgarian_Language = mkLanguage "Bulgarian" ;
|
||||
lin catalan_Language = mkLanguage "Catalan" ;
|
||||
lin chinese_Language = mkLanguage "Chinese" ;
|
||||
lin danish_Language = mkLanguage "Danish" ;
|
||||
lin dutch_Language = mkLanguage "Dutch" ;
|
||||
lin english_Language = mkLanguage "Euslish" ;
|
||||
lin estonian_Language = mkLanguage "Estonian" ;
|
||||
lin finnish_Language = mkLanguage "Finnish" ;
|
||||
lin french_Language = mkLanguage "French" ;
|
||||
lin german_Language = mkLanguage "German" ;
|
||||
lin greek_Language = mkLanguage "Greek" ;
|
||||
lin hebrew_Language = mkLanguage "Hebrew" ;
|
||||
lin hindi_Language = mkLanguage "Hindi" ;
|
||||
lin japanese_Language = mkLanguage "Japanese" ;
|
||||
lin italian_Language = mkLanguage "Italian" ;
|
||||
lin latin_Language = mkLanguage "Latin" ;
|
||||
lin latvian_Language = mkLanguage "Latvian" ;
|
||||
lin maltese_Language = mkLanguage "Maltese" ;
|
||||
lin nepali_Language = mkLanguage "Nepali" ;
|
||||
lin norwegian_Language = mkLanguage "Norwegian" ;
|
||||
lin persian_Language = mkLanguage "Persian" ;
|
||||
lin polish_Language = mkLanguage "Polish" ;
|
||||
lin punjabi_Language = mkLanguage "Punjabi" ;
|
||||
lin romanian_Language = mkLanguage "Romanian" ;
|
||||
lin russian_Language = mkLanguage "Russian" ;
|
||||
lin sindhi_Language = mkLanguage "Sindhi" ;
|
||||
lin spanish_Language = mkLanguage "Spanish" ;
|
||||
lin swahili_Language = mkLanguage "Swahili" ;
|
||||
lin swedish_Language = mkLanguage "Swedish" ;
|
||||
lin thai_Language = mkLanguage "Thai" ;
|
||||
lin turkish_Language = mkLanguage "Turkish" ;
|
||||
lin urdu_Language = mkLanguage "Urdu" ;
|
||||
|
||||
-}
|
||||
}
|
||||
@@ -1,35 +0,0 @@
|
||||
--# -path=.:../common:../abstract
|
||||
|
||||
concrete ExtendTMP of Extend = CatTMP
|
||||
** ExtendFunctor - [
|
||||
VPS -- finite VP's with tense and polarity
|
||||
, ListVPS
|
||||
, VPI
|
||||
, ListVPI -- infinitive VP's (TODO: with anteriority and polarity)
|
||||
, MkVPS
|
||||
, PredVPS
|
||||
|
||||
-- excluded because RGL funs needed for them not implemented yet
|
||||
, SlashBareV2S
|
||||
, PredAPVP
|
||||
, ComplBareVS
|
||||
, AdvIsNP, AdvIsNPAP
|
||||
, CompBareCN
|
||||
, CompIQuant
|
||||
, ComplSlashPartLast
|
||||
, ComplDirectVQ
|
||||
, ComplDirectVS
|
||||
, DetNPFem, DetNPMasc
|
||||
, ExistCN, ExistMassCN, ExistPluralCN, ExistsNP
|
||||
, ExistIPQS, ExistNPQS, ExistS
|
||||
, PredIAdvVP
|
||||
, PrepCN
|
||||
, ReflPossPron
|
||||
, UttVP, UttVPShort, UttAccNP, UttDatNP, UttAccIP, UttDatIP
|
||||
, EmptyRelSlash, StrandQuestSlash, StrandRelSlash
|
||||
, SubjRelNP
|
||||
, UseComp_ser, UseComp_estar
|
||||
, iFem_Pron, weFem_Pron, youFem_Pron, youPlFem_Pron, youPolFem_Pron, youPolPlFem_Pron, youPolPl_Pron, theyFem_Pron, theyNeutr_Pron
|
||||
, GenModNP
|
||||
|
||||
] with (Grammar=GrammarTMP) ;
|
||||
@@ -1,17 +0,0 @@
|
||||
concrete GrammarTMP of Grammar =
|
||||
NounTMP
|
||||
, VerbTMP
|
||||
, AdjectiveTMP
|
||||
, AdverbTMP
|
||||
, NumeralTMP
|
||||
, SentenceTMP
|
||||
, QuestionTMP
|
||||
, RelativeTMP
|
||||
, ConjunctionTMP
|
||||
, PhraseTMP
|
||||
, TextX
|
||||
, StructuralTMP
|
||||
, IdiomTMP
|
||||
, TenseX
|
||||
, NamesTMP -- Not part of original Grammar, here to trigger compilation
|
||||
;
|
||||
@@ -1,56 +0,0 @@
|
||||
|
||||
--1 Idiom: Idiomatic Expressions
|
||||
|
||||
concrete IdiomTMP of Idiom = CatTMP ** open Prelude, ResTMP, VerbTMP, QuestionTMP, NounTMP, StructuralTMP in {
|
||||
|
||||
-- This module defines constructions that are formed in fixed ways,
|
||||
-- often different even in closely related languages.
|
||||
|
||||
{-
|
||||
lin
|
||||
|
||||
|
||||
-- ImpersCl : VP -> Cl ; -- it is hot
|
||||
ImpersCl vp = {
|
||||
} ;
|
||||
|
||||
-- : NP -> Cl ; -- there is a house
|
||||
ExistNP np =
|
||||
|
||||
-- ExistIP : IP -> QCl ; -- which houses are there
|
||||
ExistIP ip =
|
||||
|
||||
-- GenericCl : VP -> Cl ; -- one sleeps
|
||||
GenericCl vp =
|
||||
|
||||
CleftNP : NP -> RS -> Cl ; -- it is I who did it
|
||||
CleftAdv : Adv -> S -> Cl ; -- it is here she slept
|
||||
|
||||
-- : NP -> Cl ; -- there is a house
|
||||
ExistNP np =
|
||||
|
||||
ExistIP : IP -> QCl ; -- which houses are there
|
||||
|
||||
-- 7/12/2012 generalizations of these
|
||||
|
||||
ExistNPAdv : NP -> Adv -> Cl ; -- there is a house in Paris
|
||||
ExistIPAdv : IP -> Adv -> QCl ; -- which houses are there in Paris
|
||||
|
||||
-- : VP -> VP ;
|
||||
ProgrVP vp = vp ** {
|
||||
} ;
|
||||
|
||||
|
||||
-- : VP -> Utt ; -- let's go
|
||||
ImpPl1 vp = { } ;
|
||||
|
||||
ImpP3 : NP -> VP -> Utt ; -- let John walk
|
||||
|
||||
-- 3/12/2013 non-reflexive uses of "self"
|
||||
|
||||
SelfAdvVP : VP -> VP ; -- is at home himself
|
||||
SelfAdVVP : VP -> VP ; -- is himself at home
|
||||
SelfNP : NP -> NP ; -- the president himself (is at home)
|
||||
-}
|
||||
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
--# -path=.:../abstract:../common:../prelude:../api
|
||||
concrete LangTMP of Lang =
|
||||
GrammarTMP,
|
||||
LexiconTMP,
|
||||
ConstructionTMP ;
|
||||
@@ -1,419 +0,0 @@
|
||||
concrete LexiconTMP of Lexicon = CatTMP **
|
||||
open ParadigmsTMP, ResTMP in {
|
||||
|
||||
----
|
||||
-- A
|
||||
{-
|
||||
lin add_V3 = mkV3 (mkV "") ;
|
||||
lin airplane_N = mkN "" ;
|
||||
lin alas_Interj = mkInterj "" ;
|
||||
lin already_Adv = mkA "" ;
|
||||
lin animal_N = mkN "" ;
|
||||
lin answer_V2S = mkV2S (mkV "") ;
|
||||
lin apartment_N = mkN "" ;
|
||||
lin apple_N = mkN "" ;
|
||||
lin art_N = mkN "" ;
|
||||
lin ashes_N = mkN "" ;
|
||||
lin ask_V2Q = mkV2Q (mkV "") ;
|
||||
|
||||
----
|
||||
-- B
|
||||
|
||||
lin baby_N = mkN "" ;
|
||||
lin back_N = mkN "" ;
|
||||
lin bad_A = mkA "" ;
|
||||
lin bank_N = mkN "" ;
|
||||
lin bark_N = mkN "" ;
|
||||
lin beautiful_A = mkA "" ;
|
||||
lin become_VA = mkVA (mkV "") ;
|
||||
lin beer_N = mkN "" ;
|
||||
lin beg_V2V = mkV2V (mkV "") ;
|
||||
lin belly_N = mkN "" ;
|
||||
lin big_A = mkA "" ;
|
||||
lin bike_N = mkN "" ;
|
||||
lin bird_N = mkN "" ;
|
||||
lin bite_V2 = mkV2 "" ;
|
||||
lin black_A = mkA "" ; -}
|
||||
lin blood_N = mkN "blood" ;
|
||||
{-lin blow_V = mkV "" ;
|
||||
lin blue_A = mkA "" ;
|
||||
lin boat_N = mkN "" ;
|
||||
lin bone_N = mkN "" ;
|
||||
lin boot_N = mkN "" ;
|
||||
lin boss_N = mkN "" ;
|
||||
lin book_N = mkN "" ;
|
||||
lin boy_N = mkN "" ;
|
||||
lin bread_N = mkN "" ;
|
||||
lin break_V2 = mkV2 "" ;
|
||||
lin breast_N = mkN "" ;
|
||||
lin breathe_V = mkV "" ;
|
||||
lin broad_A = mkA "" ;
|
||||
lin brother_N2 = mkN "" ;
|
||||
lin brown_A = mkA "" ;
|
||||
lin burn_V = mkV "" ;
|
||||
lin butter_N = mkN "" ;
|
||||
lin buy_V2 = mkV2 "" ;
|
||||
|
||||
----
|
||||
-- C
|
||||
|
||||
lin camera_N = mkN "" ;
|
||||
lin cap_N = mkN "" ;
|
||||
lin car_N = mkN "" ;
|
||||
lin carpet_N = mkN "" ;
|
||||
lin cat_N = mkN "" ;
|
||||
lin ceiling_N = mkN "" ;
|
||||
lin chair_N = mkN "" ;
|
||||
lin cheese_N = mkN "" ;
|
||||
lin child_N = mkN "" ;
|
||||
lin church_N = mkN "" ;
|
||||
lin city_N = mkN "" ;
|
||||
lin clean_A = mkA "" ;
|
||||
lin clever_A = mkA "" ;
|
||||
lin close_V2 = mkV2 "" ;
|
||||
lin cloud_N = mkN "" ;
|
||||
lin coat_N = mkN "" ;
|
||||
lin cold_A = mkA "" ;
|
||||
lin come_V = mkV "" ;
|
||||
lin computer_N = mkN "" ;
|
||||
lin correct_A = mkA "" ;
|
||||
lin count_V2 = mkV2 "" ;
|
||||
lin country_N = mkN "" ;
|
||||
lin cousin_N = mkN "" ;
|
||||
lin cow_N = mkN "" ;
|
||||
lin cut_V2 = mkV2 "" ;
|
||||
|
||||
----
|
||||
-- D
|
||||
|
||||
lin day_N = mkN "" ; -}
|
||||
lin die_V = mkV "die" ;
|
||||
{-lin dig_V = mkV "" ;
|
||||
lin dirty_A = mkA "" ;
|
||||
lin distance_N3 = mkN3 (mkN "") ;
|
||||
lin do_V2 = mkV2 "" ;
|
||||
lin doctor_N = mkN "" ;
|
||||
lin dog_N = mkN "" ;
|
||||
lin door_N = mkN "" ;
|
||||
lin drink_V2 = mkV2 "" ;
|
||||
lin dry_A = mkA "" ;
|
||||
lin dull_A = mkA "" ;
|
||||
lin dust_N = mkN "" ;
|
||||
|
||||
----
|
||||
-- E
|
||||
|
||||
lin ear_N = mkN "" ;
|
||||
lin earth_N = mkN "" ;
|
||||
lin eat_V2 = mkV "" ;
|
||||
lin egg_N = mkN "" ;
|
||||
lin empty_A = mkA "" ;
|
||||
lin enemy_N = mkN "" ;
|
||||
lin eye_N = mkN "" ;
|
||||
|
||||
----
|
||||
-- F
|
||||
|
||||
lin factory_N = mkN "" ;
|
||||
lin fall_V = mkV "" ;
|
||||
lin far_Adv = mkA "" ;
|
||||
lin fat_N = mkN "" ;
|
||||
lin father_N2 = mkN2 (mkN "") ;
|
||||
lin fear_V2 = mkV2 "" ;
|
||||
lin fear_VS = mkVS (mkV "") ;
|
||||
lin feather_N = mkN "" ;
|
||||
lin fight_V2 = mkV2 "" ;
|
||||
lin find_V2 = mkV2 "" ;
|
||||
lin fingernail_N = mkN "" ;
|
||||
lin fire_N = mkN "" ;
|
||||
lin fish_N = mkN "" ;
|
||||
lin float_V = mkV "" ;
|
||||
lin floor_N = mkN "" ;
|
||||
lin flow_V = mkV "" ;
|
||||
lin flower_N = mkN "" ;
|
||||
lin fly_V = mkV "" ;
|
||||
lin fog_N = mkN "" ;
|
||||
lin foot_N = mkN "" ;
|
||||
lin forest_N = mkN "" ;
|
||||
lin forget_V2 = mkV2 "" ;
|
||||
lin freeze_V = mkV "" ;
|
||||
lin fridge_N = mkN "" ;
|
||||
lin friend_N = mkN "" ;
|
||||
lin fruit_N = mkN "" ;
|
||||
lin full_A = mkA "" ;
|
||||
--lin fun_AV
|
||||
|
||||
----
|
||||
-- G
|
||||
|
||||
lin garden_N = mkN "" ;
|
||||
lin girl_N = mkN "" ;
|
||||
lin give_V3 = mkV3 (mkV "") ;
|
||||
lin glove_N = mkN "" ;
|
||||
lin go_V = mkV "" ;
|
||||
lin gold_N = mkN "" ;
|
||||
lin good_A = mkA "" ;
|
||||
lin grammar_N = mkN "" ;
|
||||
lin grass_N = mkN "" ;
|
||||
lin green_A = mkA "" ;
|
||||
|
||||
----
|
||||
-- H
|
||||
|
||||
lin hair_N = mkN "" ;
|
||||
lin hand_N = mkN "" ;
|
||||
lin harbour_N = mkN "" ;
|
||||
lin hat_N = mkN "" ;
|
||||
lin hate_V2 = mkV2 "" ;
|
||||
lin head_N = mkN "" ;
|
||||
lin hear_V2 = mkV2 "" ;
|
||||
lin heart_N = mkN "" ;
|
||||
lin heavy_A = mkA "" ;
|
||||
lin hill_N = mkN "" ;
|
||||
lin hit_V2 = mkV2 "" ;
|
||||
lin hold_V2 = mkV2 "" ;
|
||||
lin hope_VS = mkV "" ;
|
||||
lin horn_N = mkN "" ;
|
||||
lin horse_N = mkN "" ;
|
||||
lin hot_A = mkA "" ;
|
||||
lin house_N = mkN "" ;
|
||||
lin hunt_V2 = mkV2 "" ;
|
||||
lin husband_N = mkN "" ;
|
||||
|
||||
--------
|
||||
-- I - K
|
||||
|
||||
lin ice_N = mkN "" ;
|
||||
lin industry_N = mkN "" ;
|
||||
lin iron_N = mkN "" ;
|
||||
lin john_PN = mkPN "" ;
|
||||
lin jump_V = mkV "" ;
|
||||
lin kill_V2 = mkV2 "" ;
|
||||
lin king_N = mkN "" ;
|
||||
lin knee_N = mkN "" ;
|
||||
lin know_V2 = mkV2 "" ;
|
||||
lin know_VQ = mkVQ (mkV "") ;
|
||||
lin know_VS = mkV "" ;
|
||||
|
||||
|
||||
----
|
||||
-- L
|
||||
|
||||
lin lake_N = mkN "" ;
|
||||
lin lamp_N = mkN "" ;
|
||||
lin language_N = mkN "" ;
|
||||
lin laugh_V = mkV "" ;
|
||||
lin leaf_N = mkN "" ;
|
||||
lin learn_V2 = mkV2 "" ;
|
||||
lin leather_N = mkN "" ;
|
||||
lin leave_V2 = mkV2 "" ;
|
||||
lin leg_N = mkN "" ;
|
||||
lin lie_V = mkV "" ;
|
||||
lin like_V2 = mkV2 "" ;
|
||||
lin listen_V2 = mkV2 "" ;
|
||||
lin live_V = mkV "";
|
||||
lin liver_N = mkN "" ;
|
||||
lin long_A = mkA "" ;
|
||||
lin lose_V2 = mkV2 "" ;
|
||||
lin louse_N = mkN "" ;
|
||||
lin love_N = mkN "" ;
|
||||
lin love_V2 = mkV2 "" ;
|
||||
|
||||
----
|
||||
-- M
|
||||
|
||||
lin man_N = mkN "" ;
|
||||
lin married_A2 = mkA2 (mkA "") ;
|
||||
lin meat_N = mkN "" ;
|
||||
lin milk_N = mkN "" ;
|
||||
lin moon_N = mkN "" ;
|
||||
lin mother_N2 = mkN2 (mkN "") ;
|
||||
lin mountain_N = mkN "" ;
|
||||
lin mouth_N = mkN "" ;
|
||||
lin music_N = mkN "" ;
|
||||
|
||||
----
|
||||
-- N
|
||||
|
||||
lin name_N = mkN "" ;
|
||||
lin narrow_A = mkA "" ;
|
||||
lin near_A = mkA "" ;
|
||||
lin neck_N = mkN "" ;
|
||||
lin new_A = mkA "" ;
|
||||
lin newspaper_N = mkN "" ;
|
||||
lin night_N = mkN "" ;
|
||||
lin nose_N = mkN "" ;
|
||||
lin now_Adv = mkAdv "" ;
|
||||
lin number_N = mkN "" ;
|
||||
|
||||
--------
|
||||
-- O - P
|
||||
|
||||
|
||||
lin oil_N = mkN "" ;
|
||||
lin old_A = mkA "" ;
|
||||
lin open_V2 = mkV2 "" ;
|
||||
lin paint_V2A = mkV2A (mkV "") ;
|
||||
lin paper_N = mkN "" ;
|
||||
lin paris_PN = mkPN "Paris" ;
|
||||
lin peace_N = mkN "" ;
|
||||
lin pen_N = mkN "" ;
|
||||
lin person_N = mkN "" ;
|
||||
lin planet_N = mkN "" ;
|
||||
lin plastic_N = mkN "" ;
|
||||
lin play_V = mkV "" ;
|
||||
lin policeman_N = mkN "" ;
|
||||
lin priest_N = mkN "" ;
|
||||
lin pull_V2 = mkV2 "" ;
|
||||
lin push_V2 = mkV2 "" ;
|
||||
lin put_V2 = mkV2 "" ;
|
||||
|
||||
--------
|
||||
-- Q - R
|
||||
|
||||
|
||||
lin queen_N = mkN "" ;
|
||||
lin question_N = mkN "" ;
|
||||
lin radio_N = mkN "" ;
|
||||
lin rain_N = mkN "" ;
|
||||
lin rain_V0 = mkV "" ;
|
||||
lin read_V2 = mkV2 "" ;
|
||||
lin ready_A = mkA "" ;
|
||||
lin reason_N = mkN "" ;
|
||||
lin red_A = mkA "" ;
|
||||
lin religion_N = mkN "" ;
|
||||
lin restaurant_N = mkN "" ;
|
||||
lin river_N = mkN "" ;
|
||||
lin road_N = mkN "" ;
|
||||
lin rock_N = mkN "" ;
|
||||
lin roof_N = mkN "" ;
|
||||
lin root_N = mkN "" ;
|
||||
lin rope_N = mkN "" ;
|
||||
lin rotten_A = mkA "" ;
|
||||
lin round_A = mkA "" ;
|
||||
lin rub_V2 = mkV2 "" ;
|
||||
lin rubber_N = mkN "" ;
|
||||
lin rule_N = mkN "" ;
|
||||
lin run_V = mkV "" ;
|
||||
|
||||
----
|
||||
-- S
|
||||
|
||||
lin salt_N = mkN "" ;
|
||||
lin sand_N = mkN "" ;
|
||||
lin say_VS = mkVS (mkV "") ;
|
||||
lin school_N = mkN "" ;
|
||||
lin science_N = mkN "" ;
|
||||
lin scratch_V2 = mkV2 "" ;
|
||||
lin sea_N = mkN "" ;
|
||||
lin see_V2 = mkV2 "" ;
|
||||
lin seed_N = mkN "" ;
|
||||
lin seek_V2 = mkV2 "" ;
|
||||
lin sell_V3 = mkV3 (mkV "" Meng) emptyPrep emptyPrep ; -- TODO
|
||||
lin send_V3 = mkV3 (mkV "") ;
|
||||
lin sew_V = mkV "" ;
|
||||
lin sharp_A = mkA "" ;
|
||||
lin sheep_N = mkN "" fem ;
|
||||
lin ship_N = mkN "" ;
|
||||
lin shirt_N = mkN "" ;
|
||||
lin shoe_N = mkN "" ;
|
||||
lin shop_N = mkN "" ;
|
||||
lin short_A = mkA "" ;
|
||||
lin silver_N = mkN "" ;
|
||||
lin sing_V = mkV "" ;
|
||||
lin sister_N = mkN "" ;
|
||||
lin sit_V = mkV "" ;
|
||||
lin skin_N = mkN "" ;
|
||||
lin sky_N = mkN "" ;
|
||||
lin sleep_V = mkV "" ;
|
||||
lin small_A = mkA "" ;
|
||||
lin smell_V = mkV "" ;
|
||||
lin smoke_N = mkN "" ;
|
||||
lin smooth_A = mkA "" ;
|
||||
lin snake_N = mkN "" ;
|
||||
lin snow_N = mkN "" ;
|
||||
lin sock_N = mkN "" ;
|
||||
lin song_N = mkN "" ;
|
||||
lin speak_V2 = mkV2 "" ;
|
||||
lin spit_V = mkV "" ;
|
||||
lin split_V2 = mkV2 "" ;
|
||||
lin squeeze_V2 = mkV2 "" ;
|
||||
lin stab_V2 = mkV2 "" ;
|
||||
lin stand_V = mkV "" ;
|
||||
lin star_N = mkN "" ;
|
||||
lin steel_N = mkN "" ;
|
||||
lin stick_N = mkN "" ;
|
||||
lin stone_N = mkN "" ;
|
||||
lin stop_V = mkV "" ;
|
||||
lin stove_N = mkN "" ;
|
||||
lin straight_A = mkA "" ;
|
||||
lin student_N = mkN "" ;
|
||||
lin stupid_A = mkA "" ;
|
||||
lin suck_V2 = mkV2 "" ;
|
||||
lin sun_N = mkN "" ;
|
||||
lin swell_V = mkV "" ;
|
||||
lin swim_V = mkV "" ;
|
||||
|
||||
----
|
||||
-- T
|
||||
|
||||
|
||||
lin table_N = mkN "" ;
|
||||
lin tail_N = mkN "" ;
|
||||
lin talk_V3 = mkV3 (mkV "" Ber) (mkPrep "") (mkPrep "") ;
|
||||
lin teach_V2 = mkV2 "" ;
|
||||
lin teacher_N = mkN "" ;
|
||||
lin television_N = mkN "" ;
|
||||
lin thick_A = mkA "" ;
|
||||
lin thin_A = mkA "" ;
|
||||
lin think_V = mkV "" ;
|
||||
lin throw_V2 = mkV2 "" ;
|
||||
lin tie_V2 = mkV2 "" ;
|
||||
lin today_Adv = mkA "" ;
|
||||
lin tongue_N = mkN "" ;
|
||||
lin tooth_N = mkN "" ;
|
||||
lin train_N = mkN "" ;
|
||||
lin travel_V = mkV "" ;
|
||||
lin tree_N = mkN "" ;
|
||||
lin turn_V = mkV "" ;
|
||||
|
||||
--------
|
||||
-- U - V
|
||||
|
||||
lin ugly_A = mkA "" ;
|
||||
lin uncertain_A = mkA "" ;
|
||||
lin understand_V2 = mkV2 "" ;
|
||||
lin university_N = mkN "" ;
|
||||
lin village_N = mkN "" ;
|
||||
lin vomit_V = mkV2 "" ;
|
||||
|
||||
--------
|
||||
-- W - Y
|
||||
|
||||
lin wait_V2 = mkV2 "" ;
|
||||
lin walk_V = mkV "" ;
|
||||
lin war_N = mkN "" ;
|
||||
lin warm_A = mkA "" ;
|
||||
lin wash_V2 = mkV2 "" ;
|
||||
lin watch_V2 = mkV2 "" ;
|
||||
lin water_N = mkNoun "" ;
|
||||
lin wet_A = mkA "" ;
|
||||
lin white_A = mkA "" ;
|
||||
lin wide_A = mkA "" ;
|
||||
lin wife_N = mkN "" ;
|
||||
lin win_V2 = mkV2 "" ;
|
||||
lin wind_N = mkN "" ;
|
||||
lin window_N = mkN "" ;
|
||||
lin wine_N = mkN "" ;
|
||||
lin wing_N = mkN "" ;
|
||||
lin wipe_V2 = mkV2 "" ;
|
||||
lin woman_N = mkN "" ;
|
||||
lin wonder_VQ = mkVQ (mkV "") ;
|
||||
lin wood_N = mkN "" ;
|
||||
lin worm_N = mkN "" ;
|
||||
lin write_V2 = mkV2 "" ;
|
||||
lin year_N = mkN "" ;
|
||||
lin yellow_A = mkA "" ;
|
||||
lin young_A = mkA "" ;
|
||||
-}
|
||||
}
|
||||
@@ -1,313 +0,0 @@
|
||||
resource MissingTMP = open GrammarTMP, Prelude in {
|
||||
-- temporary definitions to enable the compilation of RGL API
|
||||
oper AdAP : AdA -> AP -> AP = notYet "AdAP" ;
|
||||
oper AdAdv : AdA -> Adv -> Adv = notYet "AdAdv" ;
|
||||
oper AdNum : AdN -> Card -> Card = notYet "AdNum" ;
|
||||
oper AdVVP : AdV -> VP -> VP = notYet "AdVVP" ;
|
||||
oper AdVVPSlash : AdV -> VPSlash -> VPSlash = notYet "AdVVPSlash" ;
|
||||
oper AddAdvQVP : QVP -> IAdv -> QVP = notYet "AddAdvQVP" ;
|
||||
oper AdjCN : AP -> CN -> CN = notYet "AdjCN" ;
|
||||
oper AdjDAP : DAP -> AP -> DAP = notYet "AdjDAP" ;
|
||||
oper AdjOrd : Ord -> AP = notYet "AdjOrd" ;
|
||||
oper AdnCAdv : CAdv -> AdN = notYet "AdnCAdv" ;
|
||||
oper AdvAP : AP -> Adv -> AP = notYet "AdvAP" ;
|
||||
oper AdvCN : CN -> Adv -> CN = notYet "AdvCN" ;
|
||||
oper AdvIAdv : IAdv -> Adv -> IAdv = notYet "AdvIAdv" ;
|
||||
oper AdvIP : IP -> Adv -> IP = notYet "AdvIP" ;
|
||||
oper AdvImp : Adv -> Imp -> Imp = notYet "AdvImp" ;
|
||||
oper AdvNP : NP -> Adv -> NP = notYet "AdvNP" ;
|
||||
oper AdvQVP : VP -> IAdv -> QVP = notYet "AdvQVP" ;
|
||||
oper AdvS : Adv -> S -> S = notYet "AdvS" ;
|
||||
oper AdvSlash : ClSlash -> Adv -> ClSlash = notYet "AdvSlash" ;
|
||||
oper AdvVP : VP -> Adv -> VP = notYet "AdvVP" ;
|
||||
oper AdvVPSlash : VPSlash -> Adv -> VPSlash = notYet "AdvVPSlash" ;
|
||||
oper ApposCN : CN -> NP -> CN = notYet "ApposCN" ;
|
||||
oper BaseAP : AP -> AP -> ListAP = notYet "BaseAP" ;
|
||||
oper BaseAdV : AdV -> AdV -> ListAdV = notYet "BaseAdV" ;
|
||||
oper BaseAdv : Adv -> Adv -> ListAdv = notYet "BaseAdv" ;
|
||||
oper BaseCN : CN -> CN -> ListCN = notYet "BaseCN" ;
|
||||
oper BaseIAdv : IAdv -> IAdv -> ListIAdv = notYet "BaseIAdv" ;
|
||||
oper BaseNP : NP -> NP -> ListNP = notYet "BaseNP" ;
|
||||
oper BaseRS : RS -> RS -> ListRS = notYet "BaseRS" ;
|
||||
oper BaseS : S -> S -> ListS = notYet "BaseS" ;
|
||||
oper CAdvAP : CAdv -> AP -> NP -> AP = notYet "CAdvAP" ;
|
||||
oper CleftAdv : Adv -> S -> Cl = notYet "CleftAdv" ;
|
||||
oper CleftNP : NP -> RS -> Cl = notYet "CleftNP" ;
|
||||
oper CompAP : AP -> Comp = notYet "CompAP" ;
|
||||
oper CompAdv : Adv -> Comp = notYet "CompAdv" ;
|
||||
oper CompCN : CN -> Comp = notYet "CompCN" ;
|
||||
oper CompIAdv : IAdv -> IComp = notYet "CompIAdv" ;
|
||||
oper CompIP : IP -> IComp = notYet "CompIP" ;
|
||||
oper CompNP : NP -> Comp = notYet "CompNP" ;
|
||||
oper ComparA : A -> NP -> AP = notYet "ComparA" ;
|
||||
oper ComparAdvAdj : CAdv -> A -> NP -> Adv = notYet "ComparAdvAdj" ;
|
||||
oper ComparAdvAdjS : CAdv -> A -> S -> Adv = notYet "ComparAdvAdjS" ;
|
||||
oper ComplA2 : A2 -> NP -> AP = notYet "ComplA2" ;
|
||||
oper ComplN2 : N2 -> NP -> CN = notYet "ComplN2" ;
|
||||
oper ComplN3 : N3 -> NP -> N2 = notYet "ComplN3" ;
|
||||
oper ComplSlash : VPSlash -> NP -> VP = notYet "ComplSlash" ;
|
||||
oper ComplSlashIP : VPSlash -> IP -> QVP = notYet "ComplSlashIP" ;
|
||||
oper ComplVA : VA -> AP -> VP = notYet "ComplVA" ;
|
||||
oper ComplVQ : VQ -> QS -> VP = notYet "ComplVQ" ;
|
||||
oper ComplVS : VS -> S -> VP = notYet "ComplVS" ;
|
||||
oper ComplVV : VV -> VP -> VP = notYet "ComplVV" ;
|
||||
oper ConjAP : Conj -> ListAP -> AP = notYet "ConjAP" ;
|
||||
oper ConjAdV : Conj -> ListAdV -> AdV = notYet "ConjAdV" ;
|
||||
oper ConjAdv : Conj -> ListAdv -> Adv = notYet "ConjAdv" ;
|
||||
oper ConjCN : Conj -> ListCN -> CN = notYet "ConjCN" ;
|
||||
oper ConjDet : Conj -> ListDAP -> Det = notYet "ConjDet" ;
|
||||
oper ConjIAdv : Conj -> ListIAdv -> IAdv = notYet "ConjIAdv" ;
|
||||
oper ConjNP : Conj -> ListNP -> NP = notYet "ConjNP" ;
|
||||
oper ConjRS : Conj -> ListRS -> RS = notYet "ConjRS" ;
|
||||
oper ConjS : Conj -> ListS -> S = notYet "ConjS" ;
|
||||
oper ConsAP : AP -> ListAP -> ListAP = notYet "ConsAP" ;
|
||||
oper ConsAdV : AdV -> ListAdV -> ListAdV = notYet "ConsAdV" ;
|
||||
oper ConsAdv : Adv -> ListAdv -> ListAdv = notYet "ConsAdv" ;
|
||||
oper ConsCN : CN -> ListCN -> ListCN = notYet "ConsCN" ;
|
||||
oper ConsIAdv : IAdv -> ListIAdv -> ListIAdv = notYet "ConsIAdv" ;
|
||||
oper ConsNP : NP -> ListNP -> ListNP = notYet "ConsNP" ;
|
||||
oper ConsRS : RS -> ListRS -> ListRS = notYet "ConsRS" ;
|
||||
oper ConsS : S -> ListS -> ListS = notYet "ConsS" ;
|
||||
oper CountNP : Det -> NP -> NP = notYet "CountNP" ;
|
||||
oper DetCN : Det -> CN -> NP = notYet "DetCN" ;
|
||||
oper DetDAP : Det -> DAP = notYet "DetDAP" ;
|
||||
oper DetNP : Det -> NP = notYet "DetNP" ;
|
||||
oper DetQuantOrd : Quant -> Num -> Ord -> Det = notYet "DetQuantOrd" ;
|
||||
oper EmbedQS : QS -> SC = notYet "EmbedQS" ;
|
||||
oper EmbedS : S -> SC = notYet "EmbedS" ;
|
||||
oper EmbedVP : VP -> SC = notYet "EmbedVP" ;
|
||||
oper ExistIP : IP -> QCl = notYet "ExistIP" ;
|
||||
oper ExistIPAdv : IP -> Adv -> QCl = notYet "ExistIPAdv" ;
|
||||
oper ExistNP : NP -> Cl = notYet "ExistNP" ;
|
||||
oper ExistNPAdv : NP -> Adv -> Cl = notYet "ExistNPAdv" ;
|
||||
oper ExtAdvS : Adv -> S -> S = notYet "ExtAdvS" ;
|
||||
oper ExtAdvVP : VP -> Adv -> VP = notYet "ExtAdvVP" ;
|
||||
oper FunRP : Prep -> NP -> RP -> RP = notYet "FunRP" ;
|
||||
oper GenericCl : VP -> Cl = notYet "GenericCl" ;
|
||||
oper IdRP : RP = notYet "IdRP" ;
|
||||
oper IdetCN : IDet -> CN -> IP = notYet "IdetCN" ;
|
||||
oper IdetIP : IDet -> IP = notYet "IdetIP" ;
|
||||
oper IdetQuant : IQuant -> Num -> IDet = notYet "IdetQuant" ;
|
||||
oper ImpP3 : NP -> VP -> Utt = notYet "ImpP3" ;
|
||||
oper ImpPl1 : VP -> Utt = notYet "ImpPl1" ;
|
||||
oper ImpVP : VP -> Imp = notYet "ImpVP" ;
|
||||
oper ImpersCl : VP -> Cl = notYet "ImpersCl" ;
|
||||
oper MassNP : CN -> NP = notYet "MassNP" ;
|
||||
oper NumCard : Card -> Num = notYet "NumCard" ;
|
||||
oper NumDigits : Digits -> Card = notYet "NumDigits" ;
|
||||
oper NumNumeral : Numeral -> Card = notYet "NumNumeral" ;
|
||||
oper OrdDigits : Digits -> Ord = notYet "OrdDigits" ;
|
||||
oper OrdNumeral : Numeral -> Ord = notYet "OrdNumeral" ;
|
||||
oper OrdNumeralSuperl : Numeral -> A -> Ord = notYet "OrdNumeralSuperl" ;
|
||||
oper OrdSuperl : A -> Ord = notYet "OrdSuperl" ;
|
||||
oper PConjConj : Conj -> PConj = notYet "PConjConj" ;
|
||||
oper PPartNP : NP -> V2 -> NP = notYet "PPartNP" ;
|
||||
oper PartNP : CN -> NP -> CN = notYet "PartNP" ;
|
||||
oper PassV2 : V2 -> VP = notYet "PassV2" ;
|
||||
oper PhrUtt : PConj -> Utt -> Voc -> Phr = notYet "PhrUtt" ;
|
||||
oper PositA : A -> AP = notYet "PositA" ;
|
||||
oper PositAdAAdj : A -> AdA = notYet "PositAdAAdj" ;
|
||||
oper PositAdvAdj : A -> Adv = notYet "PositAdvAdj" ;
|
||||
oper PossNP : CN -> NP -> CN = notYet "PossNP" ;
|
||||
oper PossPron : Pron -> Quant = notYet "PossPron" ;
|
||||
oper PredSCVP : SC -> VP -> Cl = notYet "PredSCVP" ;
|
||||
oper PredVP : NP -> VP -> Cl = notYet "PredVP" ;
|
||||
oper PredetNP : Predet -> NP -> NP = notYet "PredetNP" ;
|
||||
oper PrepIP : Prep -> IP -> IAdv = notYet "PrepIP" ;
|
||||
oper PrepNP : Prep -> NP -> Adv = notYet "PrepNP" ;
|
||||
oper ProgrVP : VP -> VP = notYet "ProgrVP" ;
|
||||
oper QuestCl : Cl -> QCl = notYet "QuestCl" ;
|
||||
oper QuestIAdv : IAdv -> Cl -> QCl = notYet "QuestIAdv" ;
|
||||
oper QuestIComp : IComp -> NP -> QCl = notYet "QuestIComp" ;
|
||||
oper QuestQVP : IP -> QVP -> QCl = notYet "QuestQVP" ;
|
||||
oper QuestSlash : IP -> ClSlash -> QCl = notYet "QuestSlash" ;
|
||||
oper QuestVP : IP -> VP -> QCl = notYet "QuestVP" ;
|
||||
oper ReflA2 : A2 -> AP = notYet "ReflA2" ;
|
||||
oper ReflVP : VPSlash -> VP = notYet "ReflVP" ;
|
||||
oper RelCN : CN -> RS -> CN = notYet "RelCN" ;
|
||||
oper RelCl : Cl -> RCl = notYet "RelCl" ;
|
||||
oper RelNP : NP -> RS -> NP = notYet "RelNP" ;
|
||||
oper RelS : S -> RS -> S = notYet "RelS" ;
|
||||
oper RelSlash : RP -> ClSlash -> RCl = notYet "RelSlash" ;
|
||||
oper RelVP : RP -> VP -> RCl = notYet "RelVP" ;
|
||||
oper SSubjS : S -> Subj -> S -> S = notYet "SSubjS" ;
|
||||
oper SelfAdVVP : VP -> VP = notYet "SelfAdVVP" ;
|
||||
oper SelfAdvVP : VP -> VP = notYet "SelfAdvVP" ;
|
||||
oper SelfNP : NP -> NP = notYet "SelfNP" ;
|
||||
oper SentAP : AP -> SC -> AP = notYet "SentAP" ;
|
||||
oper SentCN : CN -> SC -> CN = notYet "SentCN" ;
|
||||
oper Slash2V3 : V3 -> NP -> VPSlash = notYet "Slash2V3" ;
|
||||
oper Slash3V3 : V3 -> NP -> VPSlash = notYet "Slash3V3" ;
|
||||
oper SlashPrep : Cl -> Prep -> ClSlash = notYet "SlashPrep" ;
|
||||
oper SlashV2A : V2A -> AP -> VPSlash = notYet "SlashV2A" ;
|
||||
oper SlashV2Q : V2Q -> QS -> VPSlash = notYet "SlashV2Q" ;
|
||||
oper SlashV2S : V2S -> S -> VPSlash = notYet "SlashV2S" ;
|
||||
oper SlashV2V : V2V -> VP -> VPSlash = notYet "SlashV2V" ;
|
||||
oper SlashV2VNP : V2V -> NP -> VPSlash -> VPSlash = notYet "SlashV2VNP" ;
|
||||
oper SlashV2a : V2 -> VPSlash = notYet "SlashV2a" ;
|
||||
oper SlashVP : NP -> VPSlash -> ClSlash = notYet "SlashVP" ;
|
||||
oper SlashVS : NP -> VS -> SSlash -> ClSlash = notYet "SlashVS" ;
|
||||
oper SlashVV : VV -> VPSlash -> VPSlash = notYet "SlashVV" ;
|
||||
oper SubjS : Subj -> S -> Adv = notYet "SubjS" ;
|
||||
oper TFullStop : Phr -> Text -> Text = notYet "TFullStop" ;
|
||||
oper Use2N3 : N3 -> N2 = notYet "Use2N3" ;
|
||||
oper Use3N3 : N3 -> N2 = notYet "Use3N3" ;
|
||||
oper UseA2 : A2 -> AP = notYet "UseA2" ;
|
||||
oper UseCl : Temp -> Pol -> Cl -> S = notYet "UseCl" ;
|
||||
oper UseComp : Comp -> VP = notYet "UseComp" ;
|
||||
oper UseComparA : A -> AP = notYet "UseComparA" ;
|
||||
oper UseCopula : VP = notYet "UseCopula" ;
|
||||
oper UseN : N -> CN = notYet "UseN" ;
|
||||
oper UseN2 : N2 -> CN = notYet "UseN2" ;
|
||||
oper UsePN : PN -> NP = notYet "UsePN" ;
|
||||
oper UsePron : Pron -> NP = notYet "UsePron" ;
|
||||
oper UseQCl : Temp -> Pol -> QCl -> QS = notYet "UseQCl" ;
|
||||
oper UseRCl : Temp -> Pol -> RCl -> RS = notYet "UseRCl" ;
|
||||
oper UseSlash : Temp -> Pol -> ClSlash -> SSlash = notYet "UseSlash" ;
|
||||
oper UseV : V -> VP = notYet "UseV" ;
|
||||
oper UttAP : AP -> Utt = notYet "UttAP" ;
|
||||
oper UttAdv : Adv -> Utt = notYet "UttAdv" ;
|
||||
oper UttCN : CN -> Utt = notYet "UttCN" ;
|
||||
oper UttCard : Card -> Utt = notYet "UttCard" ;
|
||||
oper UttIAdv : IAdv -> Utt = notYet "UttIAdv" ;
|
||||
oper UttIP : IP -> Utt = notYet "UttIP" ;
|
||||
oper UttImpPl : Pol -> Imp -> Utt = notYet "UttImpPl" ;
|
||||
oper UttImpPol : Pol -> Imp -> Utt = notYet "UttImpPol" ;
|
||||
oper UttImpSg : Pol -> Imp -> Utt = notYet "UttImpSg" ;
|
||||
oper UttInterj : Interj -> Utt = notYet "UttInterj" ;
|
||||
oper UttNP : NP -> Utt = notYet "UttNP" ;
|
||||
oper UttQS : QS -> Utt = notYet "UttQS" ;
|
||||
oper UttS : S -> Utt = notYet "UttS" ;
|
||||
oper UttVP : VP -> Utt = notYet "UttVP" ;
|
||||
oper VPSlashPrep : VP -> Prep -> VPSlash = notYet "VPSlashPrep" ;
|
||||
oper VocNP : NP -> Voc = notYet "VocNP" ;
|
||||
oper above_Prep : Prep = notYet "above_Prep" ;
|
||||
oper active2passive : Cl -> Cl = notYet "active2passive" ;
|
||||
oper after_Prep : Prep = notYet "after_Prep" ;
|
||||
oper alas_Interj : Interj = notYet "alas_Interj" ;
|
||||
oper all_Predet : Predet = notYet "all_Predet" ;
|
||||
oper almost_AdA : AdA = notYet "almost_AdA" ;
|
||||
oper almost_AdN : AdN = notYet "almost_AdN" ;
|
||||
oper already_Adv : Adv = notYet "already_Adv" ;
|
||||
oper although_Subj : Subj = notYet "although_Subj" ;
|
||||
oper always_AdV : AdV = notYet "always_AdV" ;
|
||||
oper as_CAdv : CAdv = notYet "as_CAdv" ;
|
||||
oper at_least_AdN : AdN = notYet "at_least_AdN" ;
|
||||
oper at_most_AdN : AdN = notYet "at_most_AdN" ;
|
||||
oper because_Subj : Subj = notYet "because_Subj" ;
|
||||
oper before_Prep : Prep = notYet "before_Prep" ;
|
||||
oper behind_Prep : Prep = notYet "behind_Prep" ;
|
||||
oper between_Prep : Prep = notYet "between_Prep" ;
|
||||
oper both7and_DConj : Conj = notYet "both7and_DConj" ;
|
||||
oper but_PConj : PConj = notYet "but_PConj" ;
|
||||
oper by8agent_Prep : Prep = notYet "by8agent_Prep" ;
|
||||
oper by8means_Prep : Prep = notYet "by8means_Prep" ;
|
||||
oper dconcat : Digits -> Digits -> Digits = notYet "dconcat" ;
|
||||
oper digits2num : Digits -> Numeral = notYet "digits2num" ;
|
||||
oper digits2numeral : Card -> Card = notYet "digits2numeral" ;
|
||||
oper dn : Dig -> Digit = notYet "dn" ;
|
||||
oper dn10 : Dig -> Sub10 = notYet "dn10" ;
|
||||
oper dn100 : Dig -> Dig -> Sub100 = notYet "dn100" ;
|
||||
oper dn1000 : Dig -> Dig -> Dig -> Sub1000 = notYet "dn1000" ;
|
||||
oper dn1000000a : Dig -> Dig -> Dig -> Dig -> Sub1000000 = notYet "dn1000000a" ;
|
||||
oper dn1000000b : Dig -> Dig -> Dig -> Dig -> Dig -> Sub1000000 = notYet "dn1000000b" ;
|
||||
oper dn1000000c : Dig -> Dig -> Dig -> Dig -> Dig -> Dig -> Sub1000000 = notYet "dn1000000c" ;
|
||||
oper during_Prep : Prep = notYet "during_Prep" ;
|
||||
oper either7or_DConj : Conj = notYet "either7or_DConj" ;
|
||||
oper every_Det : Det = notYet "every_Det" ;
|
||||
oper everybody_NP : NP = notYet "everybody_NP" ;
|
||||
oper everything_NP : NP = notYet "everything_NP" ;
|
||||
oper everywhere_Adv : Adv = notYet "everywhere_Adv" ;
|
||||
oper except_Prep : Prep = notYet "except_Prep" ;
|
||||
oper few_Det : Det = notYet "few_Det" ;
|
||||
oper for_Prep : Prep = notYet "for_Prep" ;
|
||||
oper from_Prep : Prep = notYet "from_Prep" ;
|
||||
oper he_Pron : Pron = notYet "he_Pron" ;
|
||||
oper here7from_Adv : Adv = notYet "here7from_Adv" ;
|
||||
oper here7to_Adv : Adv = notYet "here7to_Adv" ;
|
||||
oper here_Adv : Adv = notYet "here_Adv" ;
|
||||
oper how8many_IDet : IDet = notYet "how8many_IDet" ;
|
||||
oper how8much_IAdv : IAdv = notYet "how8much_IAdv" ;
|
||||
oper how_IAdv : IAdv = notYet "how_IAdv" ;
|
||||
oper i_Pron : Pron = notYet "i_Pron" ;
|
||||
oper if_Subj : Subj = notYet "if_Subj" ;
|
||||
oper if_then_Conj : Conj = notYet "if_then_Conj" ;
|
||||
oper in8front_Prep : Prep = notYet "in8front_Prep" ;
|
||||
oper in_Prep : Prep = notYet "in_Prep" ;
|
||||
oper it_Pron : Pron = notYet "it_Pron" ;
|
||||
oper john_PN : PN = notYet "john_PN" ;
|
||||
oper language_title_Utt : Utt = notYet "language_title_Utt" ;
|
||||
oper left_Ord : Ord = notYet "left_Ord" ;
|
||||
oper less_CAdv : CAdv = notYet "less_CAdv" ;
|
||||
oper many_Det : Det = notYet "many_Det" ;
|
||||
oper more_CAdv : CAdv = notYet "more_CAdv" ;
|
||||
oper most_Predet : Predet = notYet "most_Predet" ;
|
||||
oper much_Det : Det = notYet "much_Det" ;
|
||||
oper nd : Digit -> Dig = notYet "nd" ;
|
||||
oper nd10 : Sub10 -> Digits = notYet "nd10" ;
|
||||
oper nd100 : Sub100 -> Digits = notYet "nd100" ;
|
||||
oper nd1000 : Sub1000 -> Digits = notYet "nd1000" ;
|
||||
oper nd1000000 : Sub1000000 -> Digits = notYet "nd1000000" ;
|
||||
oper no_Quant : Quant = notYet "no_Quant" ;
|
||||
oper no_Utt : Utt = notYet "no_Utt" ;
|
||||
oper nobody_NP : NP = notYet "nobody_NP" ;
|
||||
oper not_Predet : Predet = notYet "not_Predet" ;
|
||||
oper nothing_NP : NP = notYet "nothing_NP" ;
|
||||
oper num : Sub1000000 -> Numeral = notYet "num" ;
|
||||
oper num2digits : Numeral -> Digits = notYet "num2digits" ;
|
||||
oper on_Prep : Prep = notYet "on_Prep" ;
|
||||
oper only_Predet : Predet = notYet "only_Predet" ;
|
||||
oper or_Conj : Conj = notYet "or_Conj" ;
|
||||
oper otherwise_PConj : PConj = notYet "otherwise_PConj" ;
|
||||
oper part_Prep : Prep = notYet "part_Prep" ;
|
||||
oper please_Voc : Voc = notYet "please_Voc" ;
|
||||
oper possess_Prep : Prep = notYet "possess_Prep" ;
|
||||
oper pot01 : Sub10 = notYet "pot01" ;
|
||||
oper pot1 : Digit -> Sub100 = notYet "pot1" ;
|
||||
oper pot110 : Sub100 = notYet "pot110" ;
|
||||
oper pot111 : Sub100 = notYet "pot111" ;
|
||||
oper pot1plus : Digit -> Sub10 -> Sub100 = notYet "pot1plus" ;
|
||||
oper pot1to19 : Digit -> Sub100 = notYet "pot1to19" ;
|
||||
oper pot2 : Sub10 -> Sub1000 = notYet "pot2" ;
|
||||
oper pot2plus : Sub10 -> Sub100 -> Sub1000 = notYet "pot2plus" ;
|
||||
oper pot3 : Sub1000 -> Sub1000000 = notYet "pot3" ;
|
||||
oper pot3plus : Sub1000 -> Sub1000 -> Sub1000000 = notYet "pot3plus" ;
|
||||
oper quite_Adv : AdA = notYet "quite_Adv" ;
|
||||
oper right_Ord : Ord = notYet "right_Ord" ;
|
||||
oper she_Pron : Pron = notYet "she_Pron" ;
|
||||
oper so_AdA : AdA = notYet "so_AdA" ;
|
||||
oper somePl_Det : Det = notYet "somePl_Det" ;
|
||||
oper someSg_Det : Det = notYet "someSg_Det" ;
|
||||
oper somebody_NP : NP = notYet "somebody_NP" ;
|
||||
oper something_NP : NP = notYet "something_NP" ;
|
||||
oper somewhere_Adv : Adv = notYet "somewhere_Adv" ;
|
||||
oper that_Quant : Quant = notYet "that_Quant" ;
|
||||
oper that_Subj : Subj = notYet "that_Subj" ;
|
||||
oper there7from_Adv : Adv = notYet "there7from_Adv" ;
|
||||
oper there7to_Adv : Adv = notYet "there7to_Adv" ;
|
||||
oper there_Adv : Adv = notYet "there_Adv" ;
|
||||
oper therefore_PConj : PConj = notYet "therefore_PConj" ;
|
||||
oper they_Pron : Pron = notYet "they_Pron" ;
|
||||
oper this_Quant : Quant = notYet "this_Quant" ;
|
||||
oper through_Prep : Prep = notYet "through_Prep" ;
|
||||
oper to_Prep : Prep = notYet "to_Prep" ;
|
||||
oper too_AdA : AdA = notYet "too_AdA" ;
|
||||
oper under_Prep : Prep = notYet "under_Prep" ;
|
||||
oper very_AdA : AdA = notYet "very_AdA" ;
|
||||
oper we_Pron : Pron = notYet "we_Pron" ;
|
||||
oper whatPl_IP : IP = notYet "whatPl_IP" ;
|
||||
oper whatSg_IP : IP = notYet "whatSg_IP" ;
|
||||
oper when_IAdv : IAdv = notYet "when_IAdv" ;
|
||||
oper when_Subj : Subj = notYet "when_Subj" ;
|
||||
oper where_IAdv : IAdv = notYet "where_IAdv" ;
|
||||
oper which_IQuant : IQuant = notYet "which_IQuant" ;
|
||||
oper whoPl_IP : IP = notYet "whoPl_IP" ;
|
||||
oper whoSg_IP : IP = notYet "whoSg_IP" ;
|
||||
oper why_IAdv : IAdv = notYet "why_IAdv" ;
|
||||
oper with_Prep : Prep = notYet "with_Prep" ;
|
||||
oper without_Prep : Prep = notYet "without_Prep" ;
|
||||
oper yes_Utt : Utt = notYet "yes_Utt" ;
|
||||
oper youPl_Pron : Pron = notYet "youPl_Pron" ;
|
||||
oper youPol_Pron : Pron = notYet "youPol_Pron" ;
|
||||
oper youSg_Pron : Pron = notYet "youSg_Pron" ;
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
concrete NamesTMP of Names = CatTMP ** open Prelude in {
|
||||
|
||||
-- An API layer to deal with names
|
||||
-- Not part of the RGL API, but used in the AW project
|
||||
-- So depends on your goals whether this is high or low priority to implement.
|
||||
{-
|
||||
lin
|
||||
-- : GN -> NP ;
|
||||
GivenName gn =
|
||||
|
||||
-- : SN -> NP ;
|
||||
MaleSurname sn =
|
||||
|
||||
-- : SN -> NP ;
|
||||
FemaleSurname sn =
|
||||
|
||||
-- : SN -> NP ;
|
||||
PlSurname sn =
|
||||
|
||||
-- : GN -> SN -> NP ;
|
||||
FullName gn sn =
|
||||
|
||||
lin
|
||||
-- : LN -> NP ;
|
||||
UseLN ln =
|
||||
|
||||
-- : LN -> NP ;
|
||||
PlainLN ln =
|
||||
|
||||
-- : LN -> Adv ;
|
||||
InLN ln =
|
||||
|
||||
-- : AP -> LN -> LN ;
|
||||
AdjLN ap ln =
|
||||
-}
|
||||
}
|
||||
@@ -1,210 +0,0 @@
|
||||
concrete NounTMP of Noun = CatTMP ** open ResTMP, Prelude in {
|
||||
|
||||
flags optimize=all_subs ;
|
||||
|
||||
lin
|
||||
|
||||
--2 Noun phrases
|
||||
|
||||
-- : Det -> CN -> NP
|
||||
DetCN det cn = emptyNP ** {
|
||||
s = det.s ++ cn.s ! det.n
|
||||
} ;
|
||||
{-
|
||||
-- : PN -> NP ;
|
||||
-- Assuming that lincat PN = lincat NP
|
||||
UsePN pn = pn ;
|
||||
|
||||
-- : Pron -> NP ;
|
||||
-- Assuming that lincat Pron = lincat NP
|
||||
UsePron pron = pron ;
|
||||
|
||||
-- : Predet -> NP -> NP ; -- only the man
|
||||
PredetNP predet np =
|
||||
|
||||
-- A noun phrase can also be postmodified by the past participle of a
|
||||
-- verb, by an adverb, or by a relative clause
|
||||
|
||||
-- low prio
|
||||
-- : NP -> V2 -> NP ; -- the man seen
|
||||
-- PPartNP np v2 = np ** {
|
||||
-- s =
|
||||
-- } ;
|
||||
|
||||
-- : NP -> Adv -> NP ; -- Paris today
|
||||
AdvNP np adv = np ** {
|
||||
s = np.s ++ "," ++ adv.s
|
||||
} ;
|
||||
|
||||
-- : NP -> Adv -> NP ; -- boys, such as ..
|
||||
ExtAdvNP np adv = AdvNP np {s = "," ++ adv.s} ;
|
||||
|
||||
-- : NP -> RS -> NP ; -- Paris, which is here
|
||||
RelNP np rs = np ** {
|
||||
|
||||
} ;
|
||||
|
||||
-- Determiners can form noun phrases directly.
|
||||
|
||||
-- : Det -> NP ;
|
||||
DetNP det = emptyNP ** {
|
||||
s = \\_ => linDet det ;
|
||||
} ;
|
||||
-}
|
||||
-- MassNP : CN -> NP ;
|
||||
MassNP cn = emptyNP ** {
|
||||
s = linCN cn
|
||||
} ;
|
||||
|
||||
|
||||
--2 Determiners
|
||||
|
||||
-- The determiner has a fine-grained structure, in which a 'nucleus'
|
||||
-- quantifier and an optional numeral can be discerned.
|
||||
|
||||
-- : Quant -> Num -> Det ;
|
||||
DetQuant quant num = quant ** {
|
||||
s = quant.s ! num.n ++ num.s ;
|
||||
n = num.n ;
|
||||
} ;
|
||||
|
||||
-- : Quant -> Num -> Ord -> Det ;
|
||||
-- DetQuantOrd quant num ord = quant ** {
|
||||
|
||||
-- } ;
|
||||
|
||||
-- Whether the resulting determiner is singular or plural depends on the
|
||||
-- cardinal.
|
||||
|
||||
-- All parts of the determiner can be empty, except $Quant$, which is
|
||||
-- the "kernel" of a determiner. It is, however, the $Num$ that determines
|
||||
-- the inherent number.
|
||||
|
||||
NumSg = {s = [] ; n = Sg} ;
|
||||
NumPl = {s = [] ; n = Pl} ;
|
||||
|
||||
{-
|
||||
-- : Card -> Num ; -- two
|
||||
NumCard card = card ;
|
||||
|
||||
-- : Digits -> Card ;
|
||||
NumDigits dig = -- probably like OrdDigits, but choose the NCard form
|
||||
|
||||
-- : Numeral -> Card ;
|
||||
NumNumeral num = {
|
||||
s = num.s ! NCard ;
|
||||
n = num.n -- inherits grammatical number (Sg, Pl, …) from the Numeral
|
||||
} ;
|
||||
|
||||
-- : AdN -> Card -> Card ;
|
||||
AdNum adn card = card ** { s = adn.s ++ card.s } ;
|
||||
|
||||
-- : Digits -> Ord ;
|
||||
OrdDigits digs = digs ** { s = digs.s ! NOrd } ;
|
||||
|
||||
-- : Numeral -> Ord ;
|
||||
OrdNumeral num = {
|
||||
s = num.s ! NOrd
|
||||
} ;
|
||||
|
||||
-- : A -> Ord ;
|
||||
OrdSuperl a = {
|
||||
s = "most" ++ a.s ! Superl
|
||||
} ;
|
||||
|
||||
-- One can combine a numeral and a superlative.
|
||||
|
||||
-- : Numeral -> A -> Ord ; -- third largest
|
||||
OrdNumeralSuperl num a = {
|
||||
s = num.s ! NOrd ++ a.s ! Superl
|
||||
} ;
|
||||
-}
|
||||
|
||||
-- : Quant
|
||||
DefArt = mkQuant "the" "the" ;
|
||||
|
||||
-- : Quant
|
||||
IndefArt = mkQuant "a" [] ;
|
||||
|
||||
{-
|
||||
-- : Pron -> Quant -- my
|
||||
PossPron pron = mkQuant pron.s ** {
|
||||
|
||||
} ;
|
||||
-}
|
||||
|
||||
--2 Common nouns
|
||||
|
||||
-- : N -> CN
|
||||
UseN n = n ;
|
||||
|
||||
{-
|
||||
-- : N2 -> CN ;
|
||||
UseN2 n2 =
|
||||
|
||||
-- : N2 -> NP -> CN ;
|
||||
ComplN2 n2 np =
|
||||
|
||||
-- : N3 -> NP -> N2 ; -- distance from this city (to Paris)
|
||||
ComplN3 n3 np =
|
||||
|
||||
-- : N3 -> N2 ; -- distance (from this city)
|
||||
Use2N3 n3 = lin N2 n3 ** { c2 = n3.c3 } ;
|
||||
|
||||
-- : N3 -> N2 ; -- distance (to Paris)
|
||||
Use3N3 n3 = lin N2 n3 ;
|
||||
|
||||
-- : AP -> CN -> CN
|
||||
AdjCN ap cn =
|
||||
|
||||
-- : CN -> RS -> CN ;
|
||||
RelCN cn rs =
|
||||
|
||||
|
||||
-- : CN -> Adv -> CN ;
|
||||
AdvCN cn adv =
|
||||
|
||||
-- Nouns can also be modified by embedded sentences and questions.
|
||||
-- For some nouns this makes little sense, but we leave this for applications
|
||||
-- to decide. Sentential complements are defined in VerbTMP.
|
||||
|
||||
-- : CN -> SC -> CN ; -- question where she sleeps
|
||||
SentCN cn sc =
|
||||
|
||||
--2 Apposition
|
||||
|
||||
-- This is certainly overgenerating.
|
||||
|
||||
-- : CN -> NP -> CN ; -- city Paris (, numbers x and y)
|
||||
ApposCN cn np = cn ** {
|
||||
s =
|
||||
} ;
|
||||
|
||||
--2 Possessive and partitive constructs
|
||||
-- NB. Below this, the functions are not in the API, so lower prio to implement
|
||||
|
||||
-- : PossNP : CN -> NP -> CN ;
|
||||
-- in English: book of someone; point is that we can add a determiner to the CN,
|
||||
-- so it can become "a book of someone" or "the book of someone"
|
||||
PossNP cn np =
|
||||
|
||||
|
||||
-- : Det -> NP -> NP ; -- three of them, some of the boys
|
||||
CountNP det np = -- Nonsense for DefArt or IndefArt, but don't worry about that! RGL can contain weird sentences, as long as it contains the non-weird stuff we want
|
||||
|
||||
|
||||
-- : CN -> NP -> CN ; -- glass of wine / two kilos of red apples
|
||||
PartNP cn np =
|
||||
|
||||
--3 Conjoinable determiners and ones with adjectives
|
||||
|
||||
-- : DAP -> AP -> DAP ; -- the large (one)
|
||||
AdjDAP dap ap = dap ** {
|
||||
|
||||
} ;
|
||||
|
||||
-- : Det -> DAP ; -- this (or that)
|
||||
DetDAP det = det ;
|
||||
-}
|
||||
|
||||
}
|
||||
@@ -1,115 +0,0 @@
|
||||
concrete NumeralTMP of Numeral = CatTMP [Numeral,Digits] **
|
||||
open Prelude, ResTMP in {
|
||||
|
||||
lincat
|
||||
Digit = LinNumeral ; -- 2..9
|
||||
Sub10, -- 1..9
|
||||
Sub100, -- 1..99
|
||||
Sub1000, -- 1..999
|
||||
Sub1000000, -- 1..999999
|
||||
Sub1000000000, -- 1..999999999
|
||||
Sub1000000000000 -- 1..999999999999
|
||||
= LinNumeral ;
|
||||
|
||||
-- param CardOrd defined in ResTMP
|
||||
-- type LinNumeral -""-
|
||||
|
||||
|
||||
lin
|
||||
-- : Sub1000000 -> Numeral ; -- 123456 [coercion to top category]
|
||||
num x = x ;
|
||||
|
||||
-- : Digit ;
|
||||
n2 = mkNumeral "two" ;
|
||||
n3 = mkNumeral "three" ;
|
||||
n4 = mkNumeral "four" ;
|
||||
n5 = mkNumeral "five" ;
|
||||
n6 = mkNumeral "six" ;
|
||||
n7 = mkNumeral "seven" ;
|
||||
n8 = mkNumeral "eight" ;
|
||||
n9 = mkNumeral "nine" ;
|
||||
|
||||
-- : Sub10 ; -- 1
|
||||
-- pot01 =
|
||||
|
||||
-- : Digit -> Sub10 ; -- d * 1
|
||||
pot0 d = d ;
|
||||
|
||||
-- : Sub100 ; -- 10
|
||||
-- pot110 = mkNum "ten" ;
|
||||
|
||||
-- : Sub100 ; -- 11
|
||||
-- pot111 = mkNum "eleven" ;
|
||||
|
||||
-- : Digit -> Sub100 ; -- 10 + d
|
||||
-- pot1to19 d =
|
||||
|
||||
-- : Sub10 -> Sub100 ; -- coercion of 1..9
|
||||
pot0as1 n = n ;
|
||||
|
||||
-- : Digit -> Sub100 ; -- d * 10
|
||||
-- pot1 d =
|
||||
|
||||
-- : Digit -> Sub10 -> Sub100 ; -- d * 10 + n
|
||||
-- pot1plus d e =
|
||||
|
||||
-- : Sub100 -> Sub1000 ; -- coercion of 1..99
|
||||
pot1as2 n = n ;
|
||||
|
||||
-- : Sub10 -> Sub1000 ; -- m * 100
|
||||
-- pot2 d =
|
||||
|
||||
-- : Sub10 -> Sub100 -> Sub1000 ; -- m * 100 + n
|
||||
-- pot2plus d e =
|
||||
|
||||
-- : Sub1000 -> Sub1000000 ; -- coercion of 1..999
|
||||
pot2as3 n = n ;
|
||||
|
||||
-- : Sub1000 -> Sub1000000 ; -- m * 1000
|
||||
-- pot3 d =
|
||||
|
||||
-- : Sub1000 -> Sub1000 -> Sub1000000 ; -- m * 1000 + n
|
||||
-- pot3plus d e =
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
-- Numerals as sequences of digits have a separate, simpler grammar
|
||||
--
|
||||
|
||||
lincat
|
||||
Dig = LinDig ; -- single digit 0..9
|
||||
|
||||
lin
|
||||
-- : Dig -> Digits ; -- 8
|
||||
IDig d = d ;
|
||||
|
||||
-- : Dig -> Digits -> Digits ; -- 876
|
||||
IIDig d e = {
|
||||
s = table {
|
||||
NCard => glue (d.s ! NCard) (e.s ! NCard) ;
|
||||
NOrd => glue (d.s ! NCard) (e.s ! NOrd)
|
||||
} ;
|
||||
n = Pl ;
|
||||
} ;
|
||||
|
||||
-- : Dig ;
|
||||
D_0 = mkDig "0" ;
|
||||
D_1 = mkDig "1" ;
|
||||
D_2 = mkDig "2" ;
|
||||
D_3 = mkDig "3" ;
|
||||
D_4 = mkDig "4" ;
|
||||
D_5 = mkDig "5" ;
|
||||
D_6 = mkDig "6" ;
|
||||
D_7 = mkDig "7" ;
|
||||
D_8 = mkDig "8" ;
|
||||
D_9 = mkDig "9" ;
|
||||
|
||||
oper
|
||||
LinDig : Type = {s : CardOrd => Str ; n : Number} ;
|
||||
mkDig : Str -> LinDig = \s -> {
|
||||
s = table {
|
||||
NCard => s ;
|
||||
NOrd => s + "th"
|
||||
} ;
|
||||
n = Pl ; -- TODO: handle number 1
|
||||
} ;
|
||||
}
|
||||
@@ -1,211 +0,0 @@
|
||||
resource ParadigmsTMP = open CatTMP, ResTMP, NounTMP, Prelude in {
|
||||
|
||||
oper
|
||||
|
||||
--2 Parameters
|
||||
--
|
||||
-- To abstract over number, valency and (some) case names,
|
||||
-- we define the following identifiers. The application programmer
|
||||
-- should always use these constants instead of the constructors
|
||||
-- defined in $ResSom$.
|
||||
|
||||
Prep : Type ;
|
||||
noPrep : Prep ;
|
||||
|
||||
-- Add more overload instances if needed for all categories!
|
||||
|
||||
--2 Nouns
|
||||
|
||||
mkN : overload {
|
||||
mkN : Str -> N ; -- Predictable nouns
|
||||
} ;
|
||||
|
||||
mkPN : overload {
|
||||
mkPN : Str -> PN ; -- Proper nouns
|
||||
} ;
|
||||
|
||||
--2 Adjectives
|
||||
|
||||
mkA : overload {
|
||||
mkA : Str -> A ; -- Predictable adjective
|
||||
} ;
|
||||
|
||||
mkA2 : overload {
|
||||
mkA2 : Str -> A2 ; -- Predictable A2, no preposition
|
||||
mkA2 : A -> Prep -> A2 ; -- A2 made from A and Prep
|
||||
} ;
|
||||
|
||||
--2 Verbs
|
||||
|
||||
-- Verbs
|
||||
mkV : overload {
|
||||
mkV : Str -> V ; -- Predictable verb
|
||||
} ;
|
||||
|
||||
|
||||
mkV2 : overload {
|
||||
mkV2 : Str -> V2 ; -- Predictable transitive verb
|
||||
mkV2 : V -> Prep -> V2 ; -- V2 made from V and Prep
|
||||
} ;
|
||||
|
||||
mkV3 : overload {
|
||||
mkV3 : V -> V3 ; -- No prepositions
|
||||
mkV3 : V -> Prep -> Prep -> V3 ; -- Prepositions for direct and indirect objects given
|
||||
} ;
|
||||
|
||||
mkVV : overload {
|
||||
mkVV : V -> VV ;
|
||||
} ;
|
||||
|
||||
mkVA : overload {
|
||||
mkVA : V -> VA ;
|
||||
} ;
|
||||
|
||||
mkVQ : overload {
|
||||
mkVQ : V -> VQ ;
|
||||
} ;
|
||||
|
||||
mkVS : overload {
|
||||
mkV : V -> VS ;
|
||||
} ;
|
||||
|
||||
-- Etc. do the same for other V subcats (V2A, V2V, V2S, …)
|
||||
|
||||
|
||||
-----
|
||||
|
||||
--2 Structural categories
|
||||
|
||||
-- If prepositions take case, add that as argument to mkPrep
|
||||
mkPrep : overload {
|
||||
mkPrep : Str -> Prep ;
|
||||
} ;
|
||||
|
||||
mkConj : overload {
|
||||
mkConj : (and : Str) -> Conj ; -- (coffee) and (tea)
|
||||
mkConj : (either : Str) -> (or : Str) -> Conj ; -- either (coffee) or (tea)
|
||||
} ;
|
||||
|
||||
mkSubj : overload {
|
||||
mkSubj : Str -> Subj ;
|
||||
} ;
|
||||
|
||||
mkAdv : overload {
|
||||
mkAdv : Str -> Adv ;
|
||||
} ;
|
||||
|
||||
mkAdV : overload {
|
||||
mkAdV : Str -> AdV ;
|
||||
} ;
|
||||
|
||||
mkAdA : overload {
|
||||
mkAdA : Str -> AdA ;
|
||||
} ;
|
||||
|
||||
|
||||
--.
|
||||
-------------------------------------------------------------------------------
|
||||
-- The definitions should not bother the user of the API. So they are
|
||||
-- hidden from the document.
|
||||
|
||||
Prep = CatTMP.Prep ;
|
||||
noPrep = mkPrep [] ;
|
||||
|
||||
-- Add more overload instances if needed for all categories!
|
||||
|
||||
-- For explanation of `lin N`, see
|
||||
-- https://inariksit.github.io/gf/2018/05/25/subtyping-gf.html#lock-fields
|
||||
|
||||
mkN = overload {
|
||||
mkN : Str -> N = \s -> lin N (ResTMP.mkNoun s) ;
|
||||
-- TODO: more overload instances
|
||||
} ;
|
||||
|
||||
{-
|
||||
mkPN = overload {
|
||||
mkPN : Str -> PN = …
|
||||
} ;
|
||||
|
||||
--2 Adjectives
|
||||
|
||||
mkA = overload {
|
||||
mkA : Str -> A = \s -> …
|
||||
} ;
|
||||
|
||||
mkA2 = overload {
|
||||
mkA2 : Str -> A2 = \s -> …
|
||||
mkA2 : A -> Prep -> A2 = \s -> …
|
||||
} ;
|
||||
|
||||
--2 Verbs
|
||||
-}
|
||||
-- Verbs
|
||||
mkV = overload {
|
||||
mkV : Str -> V = \s -> lin V (mkVerb s) ;
|
||||
} ;
|
||||
|
||||
{-
|
||||
|
||||
mkV2 = overload {
|
||||
mkV2 : Str -> V2 = \s -> …
|
||||
mkV2 : V -> Prep -> V2 = \s -> …
|
||||
} ;
|
||||
|
||||
mkV3 = overload {
|
||||
mkV3 : V -> V3 = \s -> …
|
||||
mkV3 : V -> Prep -> Prep -> V3 = \s -> …
|
||||
} ;
|
||||
|
||||
mkVV = overload {
|
||||
mkVV : V -> VV = \s -> …
|
||||
} ;
|
||||
|
||||
mkVA = overload {
|
||||
mkVA : V -> VA = \s -> …
|
||||
} ;
|
||||
|
||||
mkVQ = overload {
|
||||
mkVQ : V -> VQ = \s -> …
|
||||
} ;
|
||||
|
||||
|
||||
mkVS = overload {
|
||||
mkV : V -> VS = \s -> …
|
||||
} ;
|
||||
|
||||
-- Etc. do the same for other V subcats (V2A, V2V, V2S, …)
|
||||
|
||||
|
||||
-----
|
||||
-}
|
||||
|
||||
-- If prepositions take case, add that as argument to mkPrep
|
||||
mkPrep = overload {
|
||||
mkPrep : Str -> Prep = \s -> lin Prep {s = s} ;
|
||||
} ;
|
||||
{-
|
||||
mkConj = overload {
|
||||
mkConj : (and : Str) -> Conj = \s -> …
|
||||
mkConj : (either : Str) -> (or : Str) -> Conj = \s -> …
|
||||
} ;
|
||||
|
||||
mkSubj = overload {
|
||||
mkSubj : Str -> Subj = \s -> …
|
||||
} ;
|
||||
|
||||
mkAdv = overload {
|
||||
mkAdv : Str -> Adv = \s -> …
|
||||
} ;
|
||||
|
||||
mkAdV = overload {
|
||||
mkAdV : Str -> AdV = \s -> …
|
||||
} ;
|
||||
|
||||
mkAdA = overload {
|
||||
mkAdA : Str -> AdA = \s -> …
|
||||
} ;
|
||||
|
||||
-}
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
concrete PhraseTMP of Phrase = CatTMP ** open Prelude, ResTMP in {
|
||||
|
||||
lin
|
||||
PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ;
|
||||
|
||||
UttS s = s ;
|
||||
{-
|
||||
UttQS qs = qs ;
|
||||
UttIAdv iadv = iadv ;
|
||||
UttNP np =
|
||||
UttIP ip =
|
||||
UttImpSg pol imp = { s = pol.s ++ imp.s ! Sg ! pol.p } ;
|
||||
UttImpPl pol imp =
|
||||
UttImpPol pol imp = {s = pol.s ++ imp.s ! Sg ! pol.p} ;
|
||||
UttVP vp = {s = linVP vp} ;
|
||||
UttAP ap = { s = ap.s } ;
|
||||
UttAdv adv = {s = } ;
|
||||
UttCN n = {s = } ;
|
||||
UttCard n = {s = } ;
|
||||
UttInterj i = i ; -}
|
||||
NoPConj = {s = []} ;
|
||||
-- PConjConj conj = {s = conj.s1 ++ conj.s2 ! …} ;
|
||||
|
||||
NoVoc = {s = []} ;
|
||||
-- VocNP np = { s = "," ++ np.s ! … } ;
|
||||
|
||||
}
|
||||
@@ -1,105 +0,0 @@
|
||||
concrete QuestionTMP of Question = CatTMP ** open
|
||||
Prelude, ResTMP, ParadigmsTMP, (V=VerbTMP), (Noun=NounTMP), (S=StructuralTMP) in {
|
||||
|
||||
-- A question can be formed from a clause ('yes-no question') or
|
||||
-- with an interrogative.
|
||||
-- Interrogative pronouns can be formed with interrogative
|
||||
-- determiners, with or without a noun.
|
||||
|
||||
{-
|
||||
lin
|
||||
-- : IDet -> CN -> IP ; -- which five songs
|
||||
IdetCN idet cn = Noun.DetCN idet cn ** {
|
||||
} ;
|
||||
|
||||
-- : IDet -> IP ; -- which five
|
||||
IdetIP idet = Noun.DetNP idet ** {sp = idet.sp};
|
||||
|
||||
-- : IQuant -> Num -> IDet ; -- which (five)
|
||||
IdetQuant iquant num = iquant ** {
|
||||
} ;
|
||||
|
||||
-- : IP -> ClSlash -> QCl ; -- whom does John love
|
||||
QuestSlash ip cls = cls ** {
|
||||
|
||||
} ;
|
||||
|
||||
-- : Cl -> QCl ;
|
||||
QuestCl cl = cl ** {
|
||||
};
|
||||
|
||||
|
||||
-- : IP -> VP -> QCl ;
|
||||
QuestVP ip cl = cl ** {
|
||||
} ;
|
||||
|
||||
-- : IAdv -> Cl -> QCl ; -- why does John walk
|
||||
QuestIAdv iadv cls = {
|
||||
} ;
|
||||
|
||||
-- : IP -> IComp ;
|
||||
CompIP ip = {s = ip.s ! } ; -- who (is it)
|
||||
|
||||
-- : IComp -> NP -> QCl ; -- where is John?
|
||||
QuestIComp icomp np = {
|
||||
} ;
|
||||
|
||||
|
||||
-- Interrogative pronouns can be formed with interrogative
|
||||
-- determiners, with or without a noun.
|
||||
|
||||
-- : IDet -> CN -> IP ; -- which five songs
|
||||
IdetCN idet cn =
|
||||
|
||||
-- : IDet -> IP ; -- which five
|
||||
IdetIP idet =
|
||||
|
||||
-- They can be modified with adverbs.
|
||||
|
||||
-- : IP -> Adv -> IP ; -- who in Paris
|
||||
AdvIP = Noun.AdvNP ;
|
||||
|
||||
-- Interrogative quantifiers have number forms and can take number modifiers.
|
||||
|
||||
-- : IQuant -> Num -> IDet ; -- which (five)
|
||||
IdetQuant = Noun.DetQuant ;
|
||||
|
||||
-- Interrogative adverbs can be formed prepositionally.
|
||||
-- : Prep -> IP -> IAdv ; -- with whom
|
||||
PrepIP prep ip =
|
||||
|
||||
-- They can be modified with other adverbs.
|
||||
|
||||
-- : IAdv -> Adv -> IAdv ; -- where in Paris
|
||||
AdvIAdv iadv adv =
|
||||
|
||||
-- Interrogative complements to copulas can be both adverbs and
|
||||
-- pronouns.
|
||||
|
||||
-- : IAdv -> IComp ;
|
||||
CompIAdv iadv = iadv ; -- where (is it)
|
||||
|
||||
|
||||
-- More $IP$, $IDet$, and $IAdv$ are defined in $Structural$.
|
||||
|
||||
-- Wh questions with two or more question words require a new, special category.
|
||||
|
||||
lincat
|
||||
-- buy what where
|
||||
QVP =
|
||||
lin
|
||||
-- : VPSlash -> IP -> QVP ; -- buys what
|
||||
ComplSlashIP vps ip =
|
||||
|
||||
-- : VP -> IAdv -> QVP ; -- lives where
|
||||
AdvQVP vp iadv =
|
||||
|
||||
-- : QVP -> IAdv -> QVP ; -- buys what where
|
||||
AddAdvQVP qvp iadv =
|
||||
|
||||
-- : IP -> QVP -> QCl ; -- who buys what where
|
||||
QuestQVP ip qvp =
|
||||
-}
|
||||
|
||||
|
||||
}
|
||||
@@ -1,391 +0,0 @@
|
||||
# TEMPLATE
|
||||
|
||||
This is a starting point to clone a new RGL language. It has some pre-populated lincats and lins, mostly in the `Noun` module, but also a few minimal things for verbs and sentences. This README contains a guided tour of lincats and lins to implement first, and the modules also contain comments and suggestions aimed for new grammarians.
|
||||
|
||||
**If you want a 100% just strings template**, you can find that in [github.com/daherb/gf-rgl-template](https://github.com/daherb/gf-rgl-template). If you choose the string-only template, you can still read this document for suggestions about implementation order.
|
||||
|
||||
- [How to use this tutorial](#how-to-use-this-tutorial)
|
||||
- [Guided tour: what to implement first?](#guided-tour-what-to-implement-first)
|
||||
* [1. N-CN-NP(-AP)](#1-n-cn-np-ap)
|
||||
+ [Already implemented](#already-implemented)
|
||||
+ [Next steps](#next-steps)
|
||||
- [More morphology](#more-morphology)
|
||||
- [More syntax](#more-syntax)
|
||||
+ [How about adjectives?](#how-about-adjectives)
|
||||
+ [Side note: a word about MassNP](#side-note-a-word-about-massnp)
|
||||
* [2. V-VP](#2-v-vp)
|
||||
+ [Already implemented](#already-implemented-1)
|
||||
+ [Next steps](#next-steps-1)
|
||||
- [Add morphology](#add-morphology)
|
||||
- [Add syntax](#add-syntax)
|
||||
* [3. Cl-S-Utt-Phr](#3-cl-s-utt-phr)
|
||||
+ [Already implemented](#already-implemented-2)
|
||||
+ [Next steps](#next-steps-2)
|
||||
- [Declarative sentences](#declarative-sentences)
|
||||
- [Imperatives](#imperatives)
|
||||
+ [Unused or nonexistent forms?](#unused-or-nonexistent-forms)
|
||||
- [Choose your own adventure: what to implement next](#choose-your-own-adventure-what-to-implement-next)
|
||||
* [Questions](#questions)
|
||||
* [Adjectives](#adjectives)
|
||||
* [Relative clauses](#relative-clauses)
|
||||
* [Numerals](#numerals)
|
||||
* [Conjunctions](#conjunctions)
|
||||
+ [List without inflection table and single field](#list-without-inflection-table-and-single-field)
|
||||
+ [List with inflection table and multiple fields](#list-with-inflection-table-and-multiple-fields)
|
||||
+ [Inspiration from existing RGL languages](#inspiration-from-existing-rgl-languages)
|
||||
* [Phrases](#phrases)
|
||||
* [Idioms](#idioms)
|
||||
* [Symbol](#symbol)
|
||||
* [Extend](#extend)
|
||||
- [Functions outside the API or otherwise lower priority](#functions-outside-the-api-or-otherwise-lower-priority)
|
||||
# How to use this tutorial
|
||||
|
||||
If you haven't done so yet, clone your language from this template as instructed [here](../README.md#from-a-generic-template). The cloning doesn't include README.md, so there's only one copy of this README document.
|
||||
|
||||
You can open the grammar in a GF shell and see its functions as follows. (I'm using here the `TMP` concrete syntax, but you should have cloned it to some other concrete syntax with a different extension, so substitute as necessary.)
|
||||
|
||||
```
|
||||
$ gf LangTMP.gf
|
||||
Lang> gr -depth=6 | l -treebank
|
||||
Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN blood_N)) (UseV die_V)))) NoVoc
|
||||
LangTMP: the blood die
|
||||
```
|
||||
|
||||
There are also a couple of unit tests in the [`unittest`](/unittest) directory. To see how to use them, see the [instructions](https://github.com/GrammaticalFramework/gf-rgl/tree/master/unittest#readme).
|
||||
|
||||
|
||||
# Guided tour: what to implement first?
|
||||
|
||||
In this section, I group the RGL functions in clusters and suggest an implementation order. If you have different needs, e.g. you're making the resource grammar for a particular application and need specific RGL functions for that, feel free to prioritise your needs. I'm giving this list as a suggestion for people who just want something to start from.
|
||||
|
||||
## 1. N-CN-NP(-AP)
|
||||
|
||||
Most of these are in the Noun module. This is the cluster that has most work done in this template.
|
||||
|
||||
### Already implemented
|
||||
|
||||
With the following functions, it is possible to construct simple noun phrases.
|
||||
|
||||
- `DetCN`
|
||||
- `DetQuant`
|
||||
- `DefArt`, `IndefArt` (no problem if they are empty strings in your language!)
|
||||
- `NumSg`, `NumPl`
|
||||
- `MassNP`
|
||||
- `UseN`
|
||||
- `blood_N` (in Lexicon module)
|
||||
|
||||
You can see all NPs with the following command:
|
||||
|
||||
```bash
|
||||
Lang> gt -cat=NP | l -treebank
|
||||
```
|
||||
|
||||
### Next steps
|
||||
|
||||
#### More morphology
|
||||
Check the categories and params in `ResTMP`: how well do they apply to your language? Is the initial implementation missing inflectional features that your language has, like case, gender/noun class, other numbers like dual?
|
||||
|
||||
If so, then I would suggest adding the missing morphology before implementing any new syntactic functions. Whenever you change a lincat, e.g. by making something that used to be a Str into an inflection table, all the lins that handle that lincat will break. So it's less painful to change the lincats when the amount of lins is still small.
|
||||
|
||||
#### More syntax
|
||||
Once you're happy with the morphology, you can start with other lins and lincats. In addition to nouns, the RGL allows making NPs out of pronouns and proper nouns:
|
||||
- lincat for `Pron`
|
||||
- lin for `UsePron` and `PossPron`
|
||||
- lin for some `Pron`s in Structural
|
||||
- lincat for `PN`
|
||||
- lin for `UsePN`
|
||||
- lin for `john_PN` and `paris_PN` in Lexicon
|
||||
|
||||
You can also make the NPs a bit more varied by adding more quantifiers and modifiers:
|
||||
- lins for more `Quant`s, `Det`s etc. in Structural
|
||||
|
||||
Some things in the Noun module will have to wait for other categories to be done. For instance, `AdjCN` relies on adjectives, `RelCN` on relatives, `NumCard` and `NumNumeral` on numerals, none of which is (properly) implemented in this template. So feel free to postpone the rest.
|
||||
|
||||
### How about adjectives?
|
||||
|
||||
In some languages, adjectives behave like nouns. In other languages, they behave like verbs. In yet other languages, the situation is more complicated. But if your language happens to be one where adjectives are like nouns, it's pretty cheap to just implement adjectives here as well. The minimal set is as follows:
|
||||
|
||||
- lincat for `A` and `AP`
|
||||
- lin for some `A`s from Lexicon
|
||||
- lin for `PositA` and `AdjCN`
|
||||
|
||||
But if adjectives are rather like verbs (e.g. Korean), or there are other complications (e.g. Zulu), just postpone their implementation.
|
||||
|
||||
|
||||
### Side note: a word about MassNP
|
||||
In the Noun module, there is a function called `MassNP : CN -> NP`. This is a *mass construction*, which is usually applied to mass nouns like "water".
|
||||
|
||||
However, the RGL does not contain a semantic distinction between mass and count nouns, and thus the `MassNP` function can be applied to any CN. Sometimes this results in semantically weird results.
|
||||
|
||||
As a resource grammarian, don't worry if `MassNP` applied to count nouns sounds weird. It's the application grammarian's problem to choose when to use MassNP and when DetCN. If `MassNP` sounds good when applied to mass nouns, then you're doing it right.
|
||||
|
||||
## 2. V-VP
|
||||
|
||||
### Already implemented
|
||||
|
||||
For verbs, we have much fewer things implemented: a single intransitive verb, and a function that elevates an intransitive verb into a VP.
|
||||
|
||||
* `UseV`
|
||||
* `die_V` (in Lexicon module)
|
||||
|
||||
You can see all (=1) VPs with the following command.
|
||||
|
||||
```bash
|
||||
Lang> gt -cat=VP | l -treebank
|
||||
Langs: UseV die_V
|
||||
LangTMP: die
|
||||
```
|
||||
|
||||
### Next steps
|
||||
|
||||
#### Add morphology
|
||||
|
||||
Just like with nouns, look at the `VForm` param in the Res module, and add the missing inflectional features. If verbs are very complex in your language, it's fine to start with a smaller subset, e.g. only indicative mood, or only a couple of tenses.
|
||||
|
||||
Again, you should extend the `VForm` param, and change the lincats of `V` and `VP` in other ways, if needed. It is very common that the lincat for `VP` has many fields, so that it
|
||||
|
||||
In addition, you could implement some morphological paradigms, so that you can add some verbs in the lexicon.
|
||||
|
||||
#### Add syntax
|
||||
|
||||
In addition to intransitive verbs (`V`), the GF RGL has a large set of verb subcategories. So now you can start adding lincats to `V2` (direct object), `VV` (verbal complement), `VS` (sentence complement) etc.
|
||||
|
||||
The most important are the following:
|
||||
|
||||
- lincat for `V2` and `VPSlash`
|
||||
- lin for some `V2`s from Lexicon
|
||||
- lin for `SlashV2a` and `ComplSlash`
|
||||
|
||||
If you have done a thorough implementation on noun morphology, you might find it useful here. For instance, if verbs mark their arguments with cases, now is a great time to add those cases as *inherent* argument in the verbs. (For explanation on parametric vs. inherent, see [GF tutorial](https://www.grammaticalframework.org/doc/tutorial/gf-tutorial.html#toc54)).
|
||||
|
||||
Another way to make VPs is to use adjectives, noun phrases and adverbials as complements. If you haven't implemented adjectives yet, feel free to skip them at this step. But the other complements should be in reach already, so the next most important steps are the following:
|
||||
|
||||
- lincat for `Comp`
|
||||
- lin for `CompNP`, (`CompAdv`) and `UseComp`
|
||||
- (If you already have AP: lin for `CompAP`)
|
||||
|
||||
These functions don't care whether your language has an explicit copula or not. Just implement whatever strategy that it uses for non-V❋ predication.
|
||||
|
||||
In terms of word order, you could consider how adverbials attach to verbs.
|
||||
|
||||
## 3. Cl-S-Utt-Phr
|
||||
|
||||
At this level, there is rarely new morphology to be added, but there can be interesting decisions about e.g. word order or subordination.
|
||||
|
||||
### Already implemented
|
||||
|
||||
The following rarely need any changes. By the time an `Utt` is reached, the grammatical decisions should have been already made, and the lincats of `Utt` and `Phr` should be just `{s : Str}`.
|
||||
- `PhrUtt`
|
||||
- `NoPConj`, `NoVoc`
|
||||
- `UttS`
|
||||
|
||||
The following functions, and the lincats they operate on, are implemented in the most naive only-strings way, and they need to be changed.
|
||||
- `UseCl`
|
||||
- `TTAnt`, `TPres`, `TPast`, `TFut`, `TCond`, `ASimul`, `AAnter`
|
||||
- `PPos`, `PNeg`
|
||||
- `PredVP`
|
||||
|
||||
### Next steps
|
||||
|
||||
#### Declarative sentences
|
||||
|
||||
If you have added verb inflection in the V❋ and VP categories, then you need to connect them to the Cl category. `PredVP : NP → VP → Cl` picks the correct person inflection from its VP argument, but any tense and polarity is still open. So in most languages, the lincat of `Cl` should have an inflection table, and only `UseCl : Temp → Pol → Cl → S` will choose the final form.
|
||||
|
||||
Sometimes even the lincat of `S` has an inflection table or it is discontinuous. That's because `S` can be used in a VP or an Adv, and in those cases, it may have a different word order or inflectional form than as standalone sentence.
|
||||
|
||||
If you're not sure whether the lincat of `S` should be still open for something, try to implement the following functions and see if it needs tweaking.
|
||||
|
||||
- `ComplVS : VS → S → VP`
|
||||
- `SubjS : Subj → S → Adv`
|
||||
|
||||
#### Imperatives
|
||||
|
||||
In the Sentence module, there are also functions to construct imperatives. Depending on your language, it could be rather easy to implement them after you've added declarative sentences. But nothing depends on imperatives, so you can as well postpone them.
|
||||
|
||||
### Unused or nonexistent forms?
|
||||
|
||||
What if your language has no form that corresponds to e.g. future anterior negative (*won't have walked*)? That's fine, you can put some other form in that slot and move on.
|
||||
|
||||
What if your language has tenses, aspects, moods, politeness forms or any other inflection that isn't accessible via the core RGL? That's fine too, you can always create a language-specific extra module with functions that do access them. If you're working towards a specific application that needs such forms, then you should of course prioritise them. But if covering the core RGL that is in the API is the most important, feel free to postpone all the verbal inflection that is not accessible via the core.
|
||||
|
||||
# Choose your own adventure: what to implement next
|
||||
|
||||
If you've implemented the first 3 clusters, you already have a nice chunk of the RGL!
|
||||
You have tackled many of the hard decisions, so it's natural that these things can take a long time, and you may need to revise often.
|
||||
|
||||
The following set doesn't have to be followed in any particular order.
|
||||
|
||||
## Questions
|
||||
|
||||
The Question module introduces interrogative noun phrases (`IP`) like *who* or *whose car*, and question clauses (`QCl`) and sentences (`QS`). Their implementation is often similar to that of noun phrases and declarative clauses and sentences.
|
||||
|
||||
Compared to declarative sentences, questions may require more variation in word order. You may need to make some fields discontinuous, e.g. splitting a single `s` field (e.g. *eat porridge*) of a VP into `verb` (*eat*) and `complement` (*porridge*).
|
||||
|
||||
The minimal set to get questions is the following:
|
||||
- lincat for `QCl`
|
||||
- lin for `QuestCl`
|
||||
With these, you get yes/no questions, like "do you walk".
|
||||
|
||||
To get wh-questions, like "who walks", you first need the `IP` category for interrogative noun phrases. Here's a full set for wh-questions with the IP as a subject.
|
||||
- lincat for `IP`, `IDet` and `IQuant`
|
||||
- lin for `IDetCN`, `IdetQuant`
|
||||
- lin for some `IQuant`s and `IP`s in Structural
|
||||
- lin for `QuestVP`
|
||||
|
||||
The next thing to add is `IAdv` for interrogative adverbs, like "why" or "where". With these, you can ask questions like "why do you walk" and "where are you".
|
||||
- lincat for `IAdv`
|
||||
- lin for some `IAdv`s in Structural, and/or `PrepIP` in Question
|
||||
- lin for `QuestIAdv`
|
||||
- lincat for `IComp`
|
||||
- lin for `CompIAdv`, `CompIP` and `QuestIComp`
|
||||
|
||||
Finally, we can also make a question using `IP` as an object, e.g. "who do you like". Where previously we have formed QCls from a normal VP with a special subject (`IP` instead of `NP`), here we introduce a new category `ClSlash`, which is a `Cl` missing an object. So you need the following:
|
||||
- lincat for `ClSlash`
|
||||
- lin for `QuestSlash`
|
||||
|
||||
## Adjectives
|
||||
|
||||
If you haven't implemented adjectives yet, it's about time! If your adjectives are more of the nouny type, I hope it's rather straightforward to do them. The minimal cluster is the following:
|
||||
|
||||
- lincat for `A` and `AP`
|
||||
- lin for `PositA` and `AdjCN`
|
||||
- lin for `CompAP`, check whether you have to update lincat for `Comp`
|
||||
|
||||
If adjectives behave like verbs, then the lincat for `Comp` and lin for `CompAP` can reuse the lincats and lins of the V-VP cluster. But `AdjCN` can be a bit difficult. Based on previous RGL languages that have verby adjectives, you get a lot of synergy with the Relative module. Basically, APs as modifiers behave just like relative clauses, so `AdjCN` and `RelCN` are similar or even identical.
|
||||
|
||||
## Relative clauses
|
||||
|
||||
These may be complicated, so feel free to postpone until further. But if your APs are verby, it makes sense to implement these in parallel with `AdjCN`, because you will need some way of making verby/clause-y things into modifiers.
|
||||
|
||||
## Numerals
|
||||
|
||||
There is a tentative lincat for numerals, and linearisations for the digits `D_0..D_9` and `n2..n9`, as well as the simple coercions `pot0`, `pot0as1`, `pot1as2`, `pot2as3` and `num`. However, it's possible that the simple lincat needs to be changed, and so I haven't implemented any of the lins that do something complex.
|
||||
|
||||
The numeral module the oldest piece of code in the RGL, and hence it looks pretty strange compared to the rest of the RGL. If you don't understand it, don't worry–just leave it aside until you have other parts implemented. Nothing depends on it, and in fact, I would recommend that your N-CN-NP cluster is solid before you do numerals, because then you know better which inflectional features are needed in numerals.
|
||||
|
||||
But eventually the time comes to tackle numerals. First tip is to check in https://github.com/GrammaticalFramework/gf-contrib/tree/master/numerals whether someone has already implemented them for your language, or a close relative that behaves similarly. Second tip is to look at the existing implementation of any RGL language that you know, and try to reverse engineer based on that. But even if these tips don't work, please submit your grammar to gf-rgl anyway! A grammar without full numeral implementation is much better than no grammar at all.
|
||||
|
||||
Once you have some kind of implementation of the Numeral module, you can connect it to the Noun module by implementing the following. The minimal meaningful set is these two:
|
||||
|
||||
- `NumNumeral : Numeral -> Card`
|
||||
- `NumCard : Card -> Num`
|
||||
|
||||
With these, you get a `Num` that can be used in `DetQuant` to make a Det, and that unlocks numerals as determiners, like "two cats".
|
||||
|
||||
## Conjunctions
|
||||
|
||||
Conjunction for category X needs 4 things:
|
||||
|
||||
- lincat for `[X]`
|
||||
- lin for `BaseX`
|
||||
- lin for `ConsX`
|
||||
- lin for `ConjX`
|
||||
|
||||
For example, if `X` is defined as
|
||||
```haskell
|
||||
lincat X = {s : Case => Str ; a : Agr} ;
|
||||
```
|
||||
then `[X]` will split its s field into two, and retain its other fields as is:
|
||||
|
||||
```haskell
|
||||
lincat [X] = {s1,s2 : Case => Str ; a : Agr} ;
|
||||
```
|
||||
|
||||
### List without inflection table and single field
|
||||
|
||||
Let's start with a simple case: Adv is of type `{s : Str}`. Then `[Adv]` is `{s1,s2 : Str}`.
|
||||
`BaseAdv`, `ConsAdv` and `ConjAdv` can all use functions defined in [prelude/Coordination](../prelude/Coordination.gf):
|
||||
|
||||
```haskell
|
||||
lin BaseAdv = twoSS ;
|
||||
lin ConsAdv = consrSS comma ;
|
||||
lin ConjAdv = conjunctSS ;
|
||||
```
|
||||
|
||||
### List with inflection table and multiple fields
|
||||
|
||||
Let's take the previous example and call it NP. Our lincats are as follows:
|
||||
```haskell
|
||||
lincat
|
||||
NP = {s : Case => Str ; a : Agr} ; -- in Cat
|
||||
[NP] = {s1,s2 : Case => Str ; a : Agr} ; -- in Conjunction
|
||||
```
|
||||
|
||||
Now we need to do a bit more work in our linearisations.
|
||||
```haskell
|
||||
lin
|
||||
BaseNP x y = twoTable Case x y ** {a = conjAgr x.a y.a} ;
|
||||
|
||||
oper
|
||||
conjAgr : Agr -> Agr -> Agr ;
|
||||
conjAgr agr1 agr2 = -- TODO actual implementation
|
||||
```
|
||||
First, we use the [twoTable](https://github.com/GrammaticalFramework/gf-rgl/blob/master/src/prelude/Coordination.gf#L57-L60) oper from Coordination, which puts the right values in the right fields.
|
||||
|
||||
But it doesn't deal with the rest of the fields, `g : Agr` in our case, and so we need to put it in manually. That's what happens in the *record extension* with the two stars. To combine two Agrs into one Agr, we define an oper `conjAgr`, that takes two Agrs and returns their combination.
|
||||
|
||||
Then let's do the rest of the linearisations.
|
||||
|
||||
```haskell
|
||||
lin
|
||||
ConsNP x xs = consrTable NPCase comma x xs ** {a = conjAgr xs.a x.a} ;
|
||||
ConjNP conj xs = conjunctDistrTable NPCase conj xs ** {
|
||||
a = -- xs.a, with possible Number input from the Conj
|
||||
} ;
|
||||
```
|
||||
ConsNP is similar to BaseNP, except that we will now include the separator character. `comma` is defined as the string "," in Prelude, but other languages use other characters, e.g. **、** in Chinese.
|
||||
|
||||
ConjNP puts together a NP from the list of NPs, using a conjunction: "Inari, Krasimir and Aarne". This resulting NP has to also have an `a` field, and in this final stage, we are putting together the `conjAgr` from all the arguments, and also taking into account the Conj itself. For instance, in [English style guides](https://editorsmanual.com/articles/compound-subject-singular-or-plural/),
|
||||
|
||||
> Two or more nouns joined by and form a plural compound subject, which takes plural verbs. But when a compound subject contains or or nor, the verb should agree with the part of the subject closest to it.
|
||||
|
||||
So in the English resource grammar, `and_Conj` has an inherent number Pl, and `or_Conj` has an inherent number Sg. If your language doesn't do that, then it's just the list of NPs that determines the agreement of the resulting coordinated NP.
|
||||
|
||||
### Inspiration from existing RGL languages
|
||||
|
||||
Most existing RGL languages use the Coordination module and its opers that are rather cryptic. Sometimes you can copy and paste an existing RGL language, just adjust the arity of the opers (e.g. call `twoTable3` instead of `twoTable2`) and which `param`s are given to those opers as argument. Other times you need to do more manual tweaking.
|
||||
|
||||
Here are some examples of [coordination strategies that are more complex than English](https://inariksit.github.io/gf/2021/02/22/lists.html#natural-language-strategies-beyond-a-b-and-c). The more your language differs from English, the more work you need to do in the internal params.
|
||||
|
||||
Some of the categories that have list instances may not be able to coordinate in your language. In such a case, you can decide whether to leave it unimplemented (thus trying to use it via the API gives an exception), or linearise something ungrammatical.
|
||||
|
||||
## Phrases
|
||||
|
||||
In the Phrase module, there are functions that create standalone utterances of multiple RGL categories. They are usually rather easy to implement: the `Utt` category should be just a `{s : Str}`, and the task is to decide which of the inflection forms is the standalone form.
|
||||
|
||||
## Idioms
|
||||
|
||||
The Idiom module defines constructions that are formed in idiosyncratic ways. Examples of its constructions are impersonal and generic clauses ("it is warm") and clefts ("it is John who sleeps"). This module is not a dependency of any other module, and its constructions are less frequent than the core modules like Noun and Verb. So this can be done whenever you like.
|
||||
|
||||
|
||||
## Symbol
|
||||
|
||||
The Symbol module (exported in the API as Symbolic) is used for embedding symbolic notation in natural-language text, e.g. "level 4". This module is not a dependency of any other, and it mostly depends on Noun. So it can be done any time after the N-CN-NP cluster is solid.
|
||||
|
||||
## Extend
|
||||
|
||||
As the name suggests, this is an extension and not in the API. See [here](https://inariksit.github.io/gf/2021/02/15/rgl-api-core-extensions.html#extend) for more explanation.
|
||||
|
||||
In my experience, the generalisations of VP are useful: `VPS` (VP with a tense and polarity), `VPI` (infinitival VP) and their transitive counterparts `VPS2` and `VPI2`. With these, you can do VP conjunctions, like "she runs and sings", "to eat and sleep".
|
||||
|
||||
Extend is a rather large module, and not all funs have meaningful lins in all languages. So don't feel pressured to fill Extend all at once; often grammarians just add linearisations when the need arises for a particular structure.
|
||||
|
||||
# Functions outside the API or otherwise lower priority
|
||||
|
||||
What is low or high priority depends on the application. But if you want some general guidelines, these are usually less used, or not in the API at all.
|
||||
|
||||
### Not in the API
|
||||
|
||||
- The category DAP + its functions
|
||||
- CountNP, PossNP, PartNP
|
||||
- OrdNumeralSuperl
|
||||
- List instance for CN
|
||||
TODO: continue the list
|
||||
|
||||
### Expensive
|
||||
|
||||
- `SlashV2VNP` is often expensive, because it has so many arguments.
|
||||
|
||||
For any function that turns out to be expensive, you can comment it out when implementing other parts of the grammar.
|
||||
|
||||
###
|
||||
@@ -1,24 +0,0 @@
|
||||
concrete RelativeTMP of Relative = CatTMP ** open
|
||||
ResTMP, Prelude in {
|
||||
|
||||
{-
|
||||
lin
|
||||
-- : Cl -> RCl ; -- such that John loves her
|
||||
RelCl cl = cl ** {
|
||||
} ;
|
||||
|
||||
-- : RP -> VP -> RCl ;
|
||||
RelVP rp vp = {
|
||||
} ;
|
||||
|
||||
-- : RP -> ClSlash -> RCl ; -- who I went with
|
||||
RelSlash rp cls = {
|
||||
} ;
|
||||
|
||||
-- : RP ;
|
||||
IdRP = {s = "that"} ;
|
||||
|
||||
-- : Prep -> NP -> RP -> RP ; -- the mother of whom
|
||||
FunRP prep np rp =
|
||||
-}
|
||||
}
|
||||
@@ -1,296 +0,0 @@
|
||||
resource ResTMP = open Prelude, Predef in {
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
-- General notes
|
||||
|
||||
-- ** Naming **
|
||||
{-
|
||||
I'm using the naming scheme for lincats and opers as explained here:
|
||||
https://inariksit.github.io/gf/2018/08/28/gf-gotchas.html#my-naming-scheme-for-lincats-and-opers
|
||||
-}
|
||||
|
||||
-- ** File structure **
|
||||
-- The rest of this module is organised as follows:
|
||||
|
||||
-----------------------------
|
||||
-- Grammatical categor(y|ies)
|
||||
|
||||
{-
|
||||
General comments on the cat(s)
|
||||
|
||||
params related to the cat(s)
|
||||
|
||||
opers related to the cat(s)
|
||||
-}
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
-- Nouns
|
||||
|
||||
{-The param Number comes from common/ParamX, and has the values Sg and Pl.
|
||||
* If your language doesn't have number, remove Number from all records.
|
||||
* If your language has number with more than 2 values, define your own number in this module
|
||||
(e.g. uncomment line 56) and use that Number instead of Number.
|
||||
|
||||
The param Gender is defined here, and has the values Gender1 and Gender2.
|
||||
Currently it's only as a suggestion to be an inherent field in LinN.
|
||||
* If your language doesn't have gender, remove Gender from all records.
|
||||
* If your language has genders/noun classes, replace the placeholder Gender1 and Gender1
|
||||
with the actual values of your language (there can be more than 2!), and uncomment
|
||||
the g : Gender field from the definition of LinN.
|
||||
|
||||
If your nouns inflect in more things, like case, you can do one of the following
|
||||
* Replace the placeholder cases on line 53 and make the table 2-dimensional, like this:
|
||||
oper LinN : Type = {s : Number => Case => Str ; …} ;
|
||||
* Make your own parameter that combines all the relevant features, like this:
|
||||
param NForm = Whatever | You | Need | For | Noun | Inflection ;
|
||||
oper LinN : Type = {s : NForm => Str ; …} ;
|
||||
This can be a good idea, if your inflection table has some gaps, i.e. not all combinations are in use
|
||||
See https://gist.github.com/inariksit/708ab9df2498e88bc63aedf5fc7be2f3#file-tables-gf-L48-L122 for explanation
|
||||
-}
|
||||
|
||||
param
|
||||
Gender = Gender1 | Gender2 ; -- Just a placeholder, see lines 34-39 above
|
||||
Case = Case1 | Case2 | Case3 ; -- Just a placeholder, see lines 41-48 above
|
||||
Number = Sg
|
||||
| Pl
|
||||
-- | Dual -- If your language has numbers other than Sg and Pl, add them to the parameter
|
||||
;
|
||||
Person = P1 | P2 | P3 ;
|
||||
|
||||
oper
|
||||
LinN : Type = {
|
||||
s :
|
||||
-- Case => -- uncomment if your language has case
|
||||
Number => -- variable number: table {Sg => "house" ; Pl => "houses"}
|
||||
Str ;
|
||||
-- g : Gender ; -- inherent gender/noun class, if your language has that
|
||||
} ;
|
||||
|
||||
-- Most often, the lincat for CN is the same as N, with possibly some additional fields.
|
||||
-- However, sometimes you need more fields than just the s field, e.g. to keep word order flexible, or to add clitics and make sure they attach to the head, not modifiers.
|
||||
-- If you don't know what the previous line means, you can get started with just a single s field.
|
||||
-- You'll notice later whether you need such a field or not.
|
||||
LinCN : Type = LinN
|
||||
-- ** {postmod/premod/… : Str} -- if needed
|
||||
;
|
||||
|
||||
LinPN : Type = {
|
||||
s : Str ;
|
||||
n : Number ; -- Proper nouns often have already an inherent number; you don't usually say "a Paris / many Parises"
|
||||
-- g : Gender ; -- inherent gender/noun class, if your language has that
|
||||
} ;
|
||||
|
||||
-- For inflection paradigms, see http://www.grammaticalframework.org/doc/tutorial/gf-tutorial.html#toc56
|
||||
mkNoun : Str -> LinN = \str -> {
|
||||
s = table {
|
||||
_ => str -- TODO: actual morphology
|
||||
} ;
|
||||
-- If your nouns have gender, it should come here as inherent field.
|
||||
-- Usually you need to give the gender as an argument to mkNoun.
|
||||
} ;
|
||||
|
||||
linCN : LinCN -> Str = \cn -> cn.s ! Sg
|
||||
-- ++ cn.postmod -- If there is another field, use here
|
||||
;
|
||||
|
||||
---------------------------------------------
|
||||
-- Numeral
|
||||
|
||||
-- Used in NumeralTMP
|
||||
param
|
||||
CardOrd = NCard | NOrd ;
|
||||
|
||||
oper
|
||||
LinNumeral : Type = {s : CardOrd => Str ; n : Number} ;
|
||||
|
||||
mkNumeral : Str -> LinNumeral = \s -> {
|
||||
s = table {
|
||||
NCard => s ;
|
||||
NOrd => s + "th"
|
||||
} ;
|
||||
n = Pl ; -- NB. probably singular for number 1
|
||||
} ;
|
||||
|
||||
---------------------------------------------
|
||||
-- Pronoun
|
||||
|
||||
{-The param Person comes from common/ParamX, and has the values P1, P2 and P3.
|
||||
* If your language doesn't inflect in person, you may be able to remove Person from all records.
|
||||
- However, consider if it's really never present? How about e.g. reflexive ("myself", "yourself" etc?)
|
||||
* If your language is more fine-grained than {P1,P2,P3} x {Sg,Pl} (for instance gender and familiarity),
|
||||
you can define your own param. We provide an example called Agr to take inspiration from—remove if
|
||||
not needed, or use and refine if needed.
|
||||
-}
|
||||
|
||||
param
|
||||
-- These params are just for inspiration, not used anywhere currently.
|
||||
Agr = SgP1 -- I
|
||||
| SgP2 Politeness -- e.g. tū, tum, āp (Hindi) — note that the verb really inflects differently for all three!
|
||||
| SgP3 Gender -- e.g. he, she (verb inflects the same, but distinction in reflexive: himself / herself)
|
||||
| FillInTheRestYourself ;
|
||||
Politeness = Intimate | Familiar | Polite ;
|
||||
|
||||
oper
|
||||
LinPron : Type = {
|
||||
s : Str ;
|
||||
-- Alternative if your language has case and pronouns inflect in case (e.g. English I/me/my, she/her/hers)
|
||||
-- s : Case => Str ;
|
||||
n : Number ;
|
||||
p : Person ;
|
||||
-- Alternative to the `n` and `p` fields:
|
||||
-- a : Agr -- sketched above, lines 97-103
|
||||
} ;
|
||||
|
||||
mkPron : (_ : Str) -> Person -> Number -> LinPron = \str,per,num -> {
|
||||
s = str ;
|
||||
{- If there is case inflection, you need a table here
|
||||
table {
|
||||
_ => str -- Pronoun inflection is often irregular, so possibly this constructor requires several forms as argument, even if mkNoun is nice and regular
|
||||
} ;
|
||||
-}
|
||||
p = per ;
|
||||
n = num
|
||||
} ;
|
||||
|
||||
---------------------------------------------
|
||||
-- NP
|
||||
|
||||
{-
|
||||
In the RGL, a NP may come from a common noun, proper noun or pronoun.
|
||||
Pronouns are the only ones that have an inherent person (nouns are almost always 3rd person! please give me counterexamples if you can think of any.)
|
||||
So we can often say that NP's lincat is the same as Prons.
|
||||
|
||||
NB. for later, when you want to make Pron into possessives, you may need more fields in LinPron than in LinNP.
|
||||
That's why I'm copying over the definition below, instead of the neater `LinNP : Type = LinPron`.
|
||||
-}
|
||||
|
||||
LinNP : Type = {
|
||||
s : Str ;
|
||||
-- Alternative: If anything inflects in case (nouns, pronouns), NP has to also inflect in case!
|
||||
-- s : Case => Str ;
|
||||
n : Number ;
|
||||
p : Person ;
|
||||
-- Alternative to the `n` and `p` fields:
|
||||
-- a : Agr -- sketched on lines 97-101
|
||||
} ;
|
||||
|
||||
linNP : LinNP -> Str = \np -> np.s ; -- Change when you change LinNP
|
||||
|
||||
emptyNP : LinNP = { -- Change when you change LinNP
|
||||
s = [] ;
|
||||
n = Sg ;
|
||||
p = P3 ;
|
||||
} ;
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
-- Det, Quant, Card, Ord
|
||||
|
||||
-- If your language has a number, it is very very very likely that
|
||||
-- Quant has a variable number and Det has inherent number.
|
||||
|
||||
LinQuant : Type = {
|
||||
s, -- quantifier in a context, e.g. 'this (cat) (is nice)'
|
||||
sp -- quantifier as standalone, e.g. 'this (is nice)'
|
||||
: Number => Str ;
|
||||
} ;
|
||||
|
||||
LinDet : Type = {
|
||||
s : Str ;
|
||||
n : Number ;
|
||||
} ;
|
||||
|
||||
-- Can you reuse your mkNoun? Do nouns and quantifiers inflect the same way?
|
||||
mkQuant : Str -> Str -> LinQuant = \this, these -> {
|
||||
s,
|
||||
sp = table {
|
||||
Sg => this ;
|
||||
Pl => these } ;
|
||||
};
|
||||
|
||||
mkDet : Str -> Number -> LinDet = \str, num -> {
|
||||
s = str ;
|
||||
n = num
|
||||
} ;
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
-- Adpositions
|
||||
|
||||
{- The main use of Prep is in the fun
|
||||
|
||||
PrepNP : Prep -> NP -> Adv
|
||||
|
||||
Despite the name of the RGL category, a 'Prep' can be a preposition, postposition,
|
||||
or just an instruction to choose a particular case from the NP.
|
||||
A language may use one, two or all these strategies.
|
||||
|
||||
-}
|
||||
|
||||
oper
|
||||
LinPrep : Type = {
|
||||
s : Str ;
|
||||
|
||||
-- If your language has cases, and different prepositions choose different cases.
|
||||
-- c2 : Case ;
|
||||
|
||||
-- If your language has both pre- and postpositions, you need an inherent parameter in Prep to record which one a given Prep is.
|
||||
-- position : PreOrPost ;
|
||||
} ;
|
||||
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
-- Adjectives
|
||||
|
||||
LinA : Type = SS ;
|
||||
LinA2 : Type = LinA ;
|
||||
|
||||
mkAdj : Str -> LinA = \str -> {s = str} ;
|
||||
|
||||
AdjPhrase : Type = LinA ; -- ** {compar : Str} ;
|
||||
--------------------------------------------------------------------------------
|
||||
-- Verbs
|
||||
|
||||
param
|
||||
VForm = TODOVF Number Person ;
|
||||
|
||||
oper
|
||||
LinV : Type = {
|
||||
s : VForm => Str
|
||||
} ;
|
||||
|
||||
LinV2 : Type = LinV ** {
|
||||
c2 : LinPrep ;
|
||||
} ;
|
||||
|
||||
mkVerb : Str -> LinV = \str -> {
|
||||
s = table {
|
||||
_ => str
|
||||
}
|
||||
} ;
|
||||
|
||||
copula : LinV = {s = \\_ => "TODO: copula"} ; -- often useful
|
||||
|
||||
------------------
|
||||
-- VP
|
||||
|
||||
LinVP : Type = {
|
||||
s : VForm => Str ;
|
||||
} ;
|
||||
|
||||
LinVPSlash : Type = LinVP ** {
|
||||
c2 : LinPrep ;
|
||||
} ;
|
||||
|
||||
linVP : LinVP -> Str = \vp -> vp.s ! TODOVF Sg P3 ;
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
-- Cl, S
|
||||
|
||||
-- Operations for clauses, sentences
|
||||
LinCl : Type = {
|
||||
subj : Str ;
|
||||
pred : Str ; -- TODO: depend on Temp and Pol
|
||||
} ;
|
||||
|
||||
linCl : LinCl -> Str = \cl -> cl.subj ++ cl.pred ;
|
||||
|
||||
}
|
||||
@@ -1,76 +0,0 @@
|
||||
|
||||
concrete SentenceTMP of Sentence = CatTMP ** open
|
||||
TenseX, ResTMP, (AM=AdverbTMP), Prelude in {
|
||||
|
||||
flags optimize=all_subs ;
|
||||
|
||||
lin
|
||||
|
||||
--2 Clauses
|
||||
|
||||
-- : NP -> VP -> Cl
|
||||
PredVP np vp = {
|
||||
subj = np.s ; -- ! Nom, if there are cases
|
||||
pred =
|
||||
-- table {something with tense+polarity =>
|
||||
vp.s ! TODOVF np.n np.p
|
||||
-- TODO: all of the VP's tense and polarity should be open here!
|
||||
-- PredVP only decides the subject.
|
||||
-- }
|
||||
} ;
|
||||
|
||||
{-
|
||||
-- : SC -> VP -> Cl ; -- that she goes is good
|
||||
PredSCVP sc vp = ;
|
||||
|
||||
--2 Clauses missing object noun phrases
|
||||
-- : NP -> VPSlash -> ClSlash ;
|
||||
SlashVP =
|
||||
|
||||
-- : ClSlash -> Adv -> ClSlash ; -- (whom) he sees today
|
||||
AdvSlash cls adv =
|
||||
|
||||
-- : Cl -> Prep -> ClSlash ; -- (with whom) he walks
|
||||
SlashPrep cl prep = cl ** {c2 = prep} ;
|
||||
|
||||
-- Imperatives
|
||||
-- : VP -> Imp ;
|
||||
ImpVP vp =
|
||||
|
||||
--2 Embedded sentences
|
||||
|
||||
-- : S -> SC ;
|
||||
EmbedS s =
|
||||
|
||||
-- : QS -> SC ;
|
||||
EmbedQS qs =
|
||||
|
||||
-- : VP -> SC ;
|
||||
EmbedVP vp =
|
||||
-}
|
||||
--2 Sentences
|
||||
|
||||
-- : Temp -> Pol -> Cl -> S ;
|
||||
UseCl t p cl = {
|
||||
s = cl.subj ++ t.s ++ p.s ++ cl.pred -- ! t.t ! p.p -- eventually
|
||||
} ;
|
||||
{-
|
||||
-- : Temp -> Pol -> QCl -> QS ;
|
||||
UseQCl t p cl =
|
||||
|
||||
-- : Temp -> Pol -> RCl -> RS ;
|
||||
UseRCl t p cl =
|
||||
|
||||
-- AdvS : Adv -> S -> S ; -- then I will go home
|
||||
AdvS adv s =
|
||||
|
||||
-- ExtAdvS : Adv -> S -> S ; -- next week, I will go home
|
||||
ExtAdvS adv s =
|
||||
|
||||
-- : S -> Subj -> S -> S ;
|
||||
SSubjS s1 subj s2 =
|
||||
|
||||
-- : S -> RS -> S ; -- she sleeps, which is good
|
||||
RelS sent rs =
|
||||
-}
|
||||
}
|
||||
@@ -1,171 +0,0 @@
|
||||
concrete StructuralTMP of Structural = CatTMP **
|
||||
open Prelude, ResTMP, (Noun=NounTMP), ParadigmsTMP in {
|
||||
|
||||
-------
|
||||
-- Ad*
|
||||
{-
|
||||
lin almost_AdA =
|
||||
lin almost_AdN =
|
||||
lin at_least_AdN =
|
||||
lin at_most_AdN =
|
||||
lin so_AdA =
|
||||
lin too_AdA =
|
||||
lin very_AdA =
|
||||
|
||||
lin as_CAdv =
|
||||
lin less_CAdv =
|
||||
lin more_CAdv =
|
||||
|
||||
lin how8much_IAdv =
|
||||
lin when_IAdv =
|
||||
|
||||
lin how_IAdv =
|
||||
lin where_IAdv =
|
||||
lin why_IAdv =
|
||||
|
||||
lin always_AdV = ss "" ;
|
||||
|
||||
lin everywhere_Adv = ss "" ;
|
||||
lin here7from_Adv = ss "" ;
|
||||
lin here7to_Adv = ss "" ;
|
||||
lin here_Adv = ss "" ;
|
||||
lin quite_Adv = ss "" ;
|
||||
lin somewhere_Adv = ss "" ;
|
||||
lin there7from_Adv = ss "" ;
|
||||
lin there7to_Adv = ss "" ;
|
||||
lin there_Adv = ss "" ;
|
||||
|
||||
-}
|
||||
-------
|
||||
-- Conj
|
||||
|
||||
-- The lincat of Conj is Coordination.ConjunctionDistr ** {n:Number}
|
||||
-- which means that there are two fields for the strings, and
|
||||
-- n:Number which specifies the number of the resulting NP.
|
||||
|
||||
lin and_Conj = {s1 = [] ; s2 = "and" ; n = Pl} ;
|
||||
-- lin or_Conj =
|
||||
-- lin if_then_Conj =
|
||||
lin both7and_DConj = {s1 = "both" ; s2 = "and" ; n = Pl} ;
|
||||
-- lin either7or_DConj =
|
||||
|
||||
-- lin but_PConj =
|
||||
-- lin otherwise_PConj =
|
||||
-- lin therefore_PConj =
|
||||
|
||||
|
||||
-----------------
|
||||
-- *Det and Quant
|
||||
{-
|
||||
lin how8many_IDet =
|
||||
lin every_Det =
|
||||
|
||||
lin all_Predet = {s = ""} ;
|
||||
lin not_Predet = { s = "" } ;
|
||||
lin only_Predet = { s = "" } ;
|
||||
lin most_Predet = {s = ""} ;
|
||||
|
||||
lin few_Det = R.indefDet "" pl ;
|
||||
lin many_Det = R.indefDet "" pl ;
|
||||
lin much_Det = R.indefDet "" sg ;
|
||||
|
||||
lin somePl_Det =
|
||||
lin someSg_Det =
|
||||
|
||||
lin no_Quant =
|
||||
lin that_Quant = mkQuant "" ;
|
||||
lin this_Quant = mkQuant "" ;
|
||||
lin which_IQuant = mkQuant "" ;
|
||||
|
||||
-----
|
||||
-- NP
|
||||
|
||||
lin somebody_NP =
|
||||
|
||||
|
||||
lin everybody_NP =
|
||||
lin everything_NP =
|
||||
lin nobody_NP =
|
||||
lin nothing_NP =
|
||||
lin somebody_NP =
|
||||
lin something_NP =
|
||||
|
||||
-------
|
||||
-- Prep
|
||||
|
||||
lin above_Prep = mkPrep "" ;
|
||||
lin after_Prep = mkPrep "" ;
|
||||
lin before_Prep = mkPrep "" ;
|
||||
lin behind_Prep = mkPrep "" ;
|
||||
lin between_Prep = = mkPrep "" ;
|
||||
lin by8agent_Prep = mkPrep "" ;
|
||||
lin by8means_Prep = mkPrep "" ;
|
||||
lin during_Prep = mkPrep "" ;
|
||||
lin except_Prep = mkPrep "" ;
|
||||
lin for_Prep = mkPrep "" ;
|
||||
lin from_Prep = mkPrep "" ;
|
||||
lin in8front_Prep = mkPrep "" ;
|
||||
lin in_Prep = mkPrep "" ;
|
||||
lin on_Prep = mkPrep "" ;
|
||||
lin part_Prep = mkPrep ;
|
||||
lin possess_Prep = mkPrep "" ;
|
||||
lin through_Prep = mkPrep "" ;
|
||||
lin to_Prep = mkPrep "k" ;
|
||||
lin under_Prep = mkPrep "" ;
|
||||
lin with_Prep = mkPrep "" ;
|
||||
lin without_Prep = mkPrep "" ;
|
||||
|
||||
-------
|
||||
-- Pron
|
||||
|
||||
-- Pronouns are closed class, no constructor in ParadigmsTMP.
|
||||
lin it_Pron =
|
||||
lin i_Pron =
|
||||
lin youPol_Pron =
|
||||
lin youSg_Pron =
|
||||
lin he_Pron =
|
||||
lin she_Pron =
|
||||
lin we_Pron =
|
||||
lin youPl_Pron =
|
||||
lin they_Pron =
|
||||
|
||||
lin whatPl_IP =
|
||||
lin whatSg_IP =
|
||||
lin whoPl_IP =
|
||||
lin whoSg_IP =
|
||||
|
||||
-------
|
||||
-- Subj
|
||||
|
||||
lin although_Subj =
|
||||
lin because_Subj =
|
||||
lin if_Subj =
|
||||
lin that_Subj =
|
||||
lin when_Subj =
|
||||
|
||||
|
||||
------
|
||||
-- Utt
|
||||
|
||||
lin language_title_Utt = ss "" ;
|
||||
lin no_Utt = ss "" ;
|
||||
lin yes_Utt = ss "" ;
|
||||
|
||||
|
||||
-------
|
||||
-- Verb
|
||||
|
||||
lin have_V2 =
|
||||
|
||||
lin can8know_VV = -- can (capacity)
|
||||
lin can_VV = -- can (possibility)
|
||||
lin must_VV =
|
||||
lin want_VV =
|
||||
|
||||
------
|
||||
-- Voc
|
||||
|
||||
lin please_Voc = ss "" ;
|
||||
-}
|
||||
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
--# -path=.:../abstract:../common:../prelude
|
||||
|
||||
concrete SymbolTMP of Symbol = CatTMP **
|
||||
open Prelude, ParadigmsTMP, ResTMP, (Noun=NounTMP) in {
|
||||
|
||||
lin
|
||||
|
||||
-- : Symb -> PN ; -- x
|
||||
SymbPN i = mkPN_onRuntimeToken i.s ;
|
||||
|
||||
-- : Int -> PN ; -- 27
|
||||
IntPN i = mkPN_onRuntimeToken i.s ;
|
||||
|
||||
-- : Float -> PN ; -- 3.14159
|
||||
FloatPN i = mkPN_onRuntimeToken i.s ;
|
||||
|
||||
-- : Card -> PN ; -- twelve [as proper name]
|
||||
NumPN i = mkPN_onRuntimeToken (i.s ! NCard) ;
|
||||
|
||||
lin
|
||||
-- CNIntNP cn i = {} ;
|
||||
|
||||
-- : Det -> CN -> [Symb] -> NP ; -- (the) (2) numbers x and y
|
||||
CNSymbNP det cn xs =
|
||||
let cnSymb : CN = cn ** {postmod = cn.postmod ++ xs.s}
|
||||
in Noun.DetCN det cnSymb ;
|
||||
|
||||
-- : CN -> Card -> NP ; -- level five ; level 5
|
||||
CNNumNP cn i =
|
||||
let cnSymb : CN = cn ** {postmod = cn.postmod ++ i.s}
|
||||
in Noun.MassNP cnSymb ;
|
||||
|
||||
-- : Symb -> S ;
|
||||
SymbS sy = sy ;
|
||||
|
||||
-- : Symb -> Card ;
|
||||
SymbNum sy = mkNumeral_onRuntimeToken sy.s ;
|
||||
|
||||
-- : Symb -> Ord ;
|
||||
SymbOrd sy = sy ; ---- TODO: nothing added to it. Lincat of Ord is just SS from the beginning.
|
||||
|
||||
oper
|
||||
-- To make Card or PN from a runtime argument, cannot use the single + operation.
|
||||
-- See https://inariksit.github.io/gf/2018/08/28/gf-gotchas.html#unsupported-token-gluing
|
||||
|
||||
mkNumeral_onRuntimeToken : Str -> LinNumeral = \str -> {
|
||||
s = table {
|
||||
NCard => str ;
|
||||
NOrd => str ++ BIND ++ "th"
|
||||
} ;
|
||||
n = Pl ; -- NB. probably singular for number 1
|
||||
} ;
|
||||
|
||||
mkPN_onRuntimeToken : Str -> LinPN = \str -> {
|
||||
s =
|
||||
-- table {_ => -- If lincat of PN changes so that it's an inflection table, uncomment this
|
||||
str
|
||||
-- }
|
||||
;
|
||||
n = Sg ;
|
||||
} ;
|
||||
|
||||
lincat
|
||||
Symb, [Symb] = SS ;
|
||||
|
||||
lin
|
||||
MkSymb s = s ;
|
||||
|
||||
BaseSymb = infixSS "and" ; -- this comes between the last two ones
|
||||
ConsSymb = infixSS "," ;
|
||||
|
||||
|
||||
}
|
||||
@@ -1,114 +0,0 @@
|
||||
concrete VerbTMP of Verb = CatTMP ** open ResTMP, AdverbTMP, Prelude in {
|
||||
|
||||
|
||||
lin
|
||||
|
||||
-----
|
||||
-- VP
|
||||
-- : V -> VP
|
||||
-- NB. assumes that lincat V = lincat VP
|
||||
-- This will most likely change when you start working with VPs
|
||||
UseV v = v ;
|
||||
|
||||
{-
|
||||
-- : V2 -> VP ;
|
||||
PassV2 v2 =
|
||||
|
||||
-- : VPSlash -> VP ;
|
||||
ReflVP vps =
|
||||
|
||||
-- : VV -> VP -> VP ;
|
||||
ComplVV vv vp =
|
||||
|
||||
-- : VS -> S -> VP ;
|
||||
ComplVS vs s =
|
||||
|
||||
-- : VQ -> QS -> VP ;
|
||||
ComplVQ vq qs =
|
||||
|
||||
-- : VA -> AP -> VP ;
|
||||
ComplVA va ap =
|
||||
|
||||
-- : Comp -> VP ;
|
||||
UseComp comp =
|
||||
-}
|
||||
--------
|
||||
-- Slash
|
||||
{-
|
||||
-- : V2 -> VPSlash
|
||||
SlashV2a v2 =
|
||||
|
||||
-- : V3 -> NP -> VPSlash ; -- give it (to her)
|
||||
Slash2V3 v3 dobj =
|
||||
|
||||
-- : V3 -> NP -> VPSlash ; -- give (it) to her
|
||||
Slash3V3 v3 iobj =
|
||||
|
||||
SlashV2A v2 adj =
|
||||
|
||||
-- : V2S -> S -> VPSlash ; -- answer (to him) that it is good
|
||||
SlashV2S v2s s =
|
||||
|
||||
-- : V2V -> VP -> VPSlash ; -- beg (her) to go
|
||||
SlashV2V v2v vp = ;
|
||||
|
||||
-- : V2Q -> QS -> VPSlash ; -- ask (him) who came
|
||||
SlashV2Q v2q qs = ;
|
||||
|
||||
-- : V2A -> AP -> VPSlash ; -- paint (it) red
|
||||
SlashV2A v2a ap = ;
|
||||
|
||||
|
||||
-- : VPSlash -> NP -> VP
|
||||
-- Often VPSlash has a field called c2, which is used to pick right form of np complement
|
||||
ComplSlash vps np = vps ** {
|
||||
compl = np.s ! vps.c2
|
||||
} ;
|
||||
|
||||
-- : VV -> VPSlash -> VPSlash ;
|
||||
SlashVV vv vps = ComplVV vv vps ** {
|
||||
} ;
|
||||
|
||||
-- : V2V -> NP -> VPSlash -> VPSlash ; -- beg me to buy
|
||||
SlashV2VNP v2v np vps =
|
||||
|
||||
-- : VP -> Adv -> VP ; -- sleep here
|
||||
AdvVP vp adv =
|
||||
|
||||
-- : AdV -> VP -> VP ; -- always sleep
|
||||
AdVVP adv vp =
|
||||
|
||||
-- : VPSlash -> Adv -> VPSlash ; -- use (it) here
|
||||
AdvVPSlash = insertAdv ;
|
||||
|
||||
-- : VP -> Adv -> VP ; -- sleep , even though ...
|
||||
ExtAdvVP vp adv = ;
|
||||
|
||||
-- : AdV -> VPSlash -> VPSlash ; -- always use (it)
|
||||
AdVVPSlash adv vps = vps ** { adv = adv.s ++ vps.adv } ;
|
||||
|
||||
-- : VP -> Prep -> VPSlash ; -- live in (it)
|
||||
VPSlashPrep vp prep = vp ** {c2 = prep} ;
|
||||
|
||||
|
||||
--2 Complements to copula
|
||||
|
||||
-- Adjectival phrases, noun phrases, and adverbs can be used.
|
||||
|
||||
-- : AP -> Comp ;
|
||||
CompAP ap =
|
||||
|
||||
-- : CN -> Comp ;
|
||||
CompCN cn =
|
||||
|
||||
-- NP -> Comp ;
|
||||
CompNP np =
|
||||
|
||||
-- : Adv -> Comp ;
|
||||
CompAdv adv =
|
||||
|
||||
-- : VP -- Copula alone;
|
||||
UseCopula =
|
||||
-}
|
||||
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
-----------------------------------
|
||||
-- Just some simple noun phrases --
|
||||
-----------------------------------
|
||||
|
||||
Lang: DetCN (DetQuant IndefArt NumSg) (UseN blood_N)
|
||||
LangTMP: a blood
|
||||
|
||||
Lang: DetCN (DetQuant DefArt NumSg) (UseN blood_N)
|
||||
LangTMP: the blood
|
||||
@@ -1,7 +0,0 @@
|
||||
--------------------------------
|
||||
-- Just some simple sentences --
|
||||
--------------------------------
|
||||
|
||||
-- Replace with some tests that make sense for your language!
|
||||
Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN blood_N)) (UseV die_V)))) NoVoc
|
||||
LangTMP: the blood die
|
||||
@@ -93,7 +93,6 @@ abstract Cat = Common ** {
|
||||
|
||||
Numeral ; -- cardinal or ordinal in words e.g. "five/fifth"
|
||||
Digits ; -- cardinal or ordinal in digits e.g. "1,000/1,000th"
|
||||
Decimal ; -- decimal number e.g. "1/2/3.14/-1"
|
||||
|
||||
--2 Structural words
|
||||
|
||||
|
||||
@@ -27,11 +27,9 @@ abstract Extend = Cat ** {
|
||||
|
||||
CompBareCN : CN -> Comp ; -- (is) teacher
|
||||
|
||||
PiedPipingQuestSlash : IP -> ClSlash -> QCl ; -- with whom does John live
|
||||
PiedPipingRelSlash : RP -> ClSlash -> RCl ; -- with whom John lives
|
||||
StrandQuestSlash : IP -> ClSlash -> QCl ; -- whom does John live with
|
||||
StrandRelSlash : RP -> ClSlash -> RCl ; -- that he lives with
|
||||
EmptyRelSlash : ClSlash -> RCl ; -- he lives with
|
||||
StrandRelSlash : RP -> ClSlash -> RCl ; -- that he lives in
|
||||
EmptyRelSlash : ClSlash -> RCl ; -- he lives in
|
||||
|
||||
|
||||
-- $VP$ conjunction, separate categories for finite and infinitive forms (VPS and VPI, respectively)
|
||||
@@ -302,10 +300,4 @@ fun
|
||||
fun
|
||||
AnaphPron : NP -> Pron ;
|
||||
|
||||
fun
|
||||
TPastSimple : Tense ;
|
||||
|
||||
fun
|
||||
SubjunctRelCN : CN -> RS -> CN ; -- e.g. Romance languages when subjunctive/conjunctive is needed
|
||||
|
||||
}
|
||||
|
||||
@@ -58,7 +58,7 @@ abstract Noun = Cat ** {
|
||||
|
||||
data
|
||||
NumDigits : Digits -> Card ; -- 51
|
||||
NumDecimal : Decimal -> Card ; -- 3.14, -1, etc
|
||||
NumFloat : Digits -> Digits -> Card ; -- 3.14
|
||||
NumNumeral : Numeral -> Card ; -- fifty-one
|
||||
|
||||
-- The construction of numerals is defined in [Numeral Numeral.html].
|
||||
@@ -158,6 +158,7 @@ abstract Noun = Cat ** {
|
||||
|
||||
--2 Quantities
|
||||
|
||||
QuantityNP : Decimal -> MU -> NP ;
|
||||
QuantityNP : Digits -> MU -> NP ;
|
||||
QuantityFloatNP : Digits -> Digits -> MU -> NP ;
|
||||
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
-- parts of a numeral, which is often incorrect - more work on
|
||||
-- (un)lexing is needed to solve this problem.
|
||||
|
||||
abstract Numeral = Cat [Numeral,Digits,Decimal] ** {
|
||||
abstract Numeral = Cat [Numeral,Digits] ** {
|
||||
|
||||
cat
|
||||
Digit ; -- 2..9
|
||||
@@ -29,9 +29,7 @@ cat
|
||||
Sub1000000000000 ; -- 1..999999999999
|
||||
|
||||
data
|
||||
|
||||
num : Sub1000000 -> Numeral ; -- 123456 [coercion to top category]
|
||||
---- num : Sub1000000000000 -> Numeral ; ---- should be this, but not yet available in most langs AR 6/2/2024
|
||||
|
||||
n2, n3, n4, n5, n6, n7, n8, n9 : Digit ;
|
||||
|
||||
@@ -55,18 +53,18 @@ data
|
||||
pot3 : Sub1000 -> Sub1000000 ; -- m * 1000
|
||||
pot3plus : Sub1000 -> Sub1000 -> Sub1000000 ; -- m * 1000 + n
|
||||
pot3as4 : Sub1000000 -> Sub1000000000 ; -- coercion of 1..999999
|
||||
pot3decimal : Decimal -> Sub1000000 ; -- 3.5 thousand
|
||||
pot3float : Float -> Sub1000000 ; -- 3.5 thousand
|
||||
|
||||
pot41 : Sub1000000000 ; -- a million instead of one million
|
||||
pot4 : Sub1000 -> Sub1000000000 ; -- m * 1000000000
|
||||
pot4plus : Sub1000 -> Sub1000000 -> Sub1000000000 ; -- m * 1000000000 + n
|
||||
pot4as5 : Sub1000000000 -> Sub1000000000000 ; -- coercion of 1..999999999
|
||||
pot4decimal : Decimal -> Sub1000000000 ; -- 3.5 million
|
||||
pot4float : Float -> Sub1000000000 ; -- 3.5 million
|
||||
|
||||
pot51 : Sub1000000000000 ; -- a billion instead of one billion
|
||||
pot5 : Sub1000 -> Sub1000000000000 ; -- m * 1000000000
|
||||
pot5plus : Sub1000 -> Sub1000000000 -> Sub1000000000000 ; -- m * 1000000000 + n
|
||||
pot5decimal : Decimal -> Sub1000000000000 ; -- 3.5 billion
|
||||
pot5float : Float -> Sub1000000000000 ; -- 3.5 billion
|
||||
|
||||
-- Numerals as sequences of digits have a separate, simpler grammar
|
||||
|
||||
@@ -79,8 +77,4 @@ data
|
||||
|
||||
D_0, D_1, D_2, D_3, D_4, D_5, D_6, D_7, D_8, D_9 : Dig ;
|
||||
|
||||
PosDecimal : Digits -> Decimal ; -- 8
|
||||
NegDecimal : Digits -> Decimal ; -- -8
|
||||
IFrac : Decimal -> Dig -> Decimal ; -- 3.14 -> 3.141
|
||||
|
||||
}
|
||||
|
||||
@@ -62,7 +62,6 @@ concrete CatAfr of Cat =
|
||||
|
||||
Numeral = {s : CardOrd => Str ; n : Number } ;
|
||||
Digits = {s : CardOrd => Str ; n : Number } ;
|
||||
Decimal = {s : CardOrd => Str ; n : Number ; hasDot : Bool} ;
|
||||
|
||||
-- Structural
|
||||
|
||||
@@ -84,9 +83,6 @@ concrete CatAfr of Cat =
|
||||
N = Noun ;
|
||||
N2 = {s : NForm => Str ; g : Gender} ** {c2 : Preposition} ;
|
||||
N3 = {s : NForm => Str ; g : Gender} ** {c2,c3 : Preposition} ;
|
||||
PN = {s : NPCase => Str} ;
|
||||
GN = {s : NPCase => Str; g : Sex} ;
|
||||
SN = {s : Sex => NPCase => Str; pl : NPCase => Str} ;
|
||||
LN = {s : Adjf => NPCase => Str ; hasArt : Bool ; n : Number} ;
|
||||
GN, SN, LN, PN = {s : NPCase => Str} ;
|
||||
|
||||
}
|
||||
|
||||
@@ -29,9 +29,9 @@ lin
|
||||
} ;
|
||||
|
||||
InflectionLN = \ln -> {
|
||||
t = "pn" ;
|
||||
t = "ln" ;
|
||||
s1 = heading1 "Naam" ;
|
||||
s2 = paragraph (ln.s ! Strong ! NPNom)
|
||||
s2 = paragraph (ln.s ! NPNom)
|
||||
} ;
|
||||
|
||||
InflectionGN = \pn -> {
|
||||
@@ -43,7 +43,7 @@ lin
|
||||
InflectionSN = \pn -> {
|
||||
t = "van" ;
|
||||
s1 = heading1 "Van" ;
|
||||
s2 = paragraph (pn.s ! Male ! NPNom)
|
||||
s2 = paragraph (pn.s ! NPNom)
|
||||
} ;
|
||||
|
||||
InflectionA, InflectionA2 = \adj ->
|
||||
|
||||
@@ -1,40 +1,9 @@
|
||||
concrete NamesAfr of Names = CatAfr ** open ResAfr, Prelude in {
|
||||
|
||||
lin GivenName = \n -> {s = n.s ; a = agrP3 Sg ; isPron = False} ;
|
||||
lin MaleSurname = \n -> {s = n.s ! Male ; a = agrP3 Sg ; isPron = False} ;
|
||||
lin FemaleSurname = \n -> {s = n.s ! Female; a = agrP3 Sg ; isPron = False} ;
|
||||
lin PlSurname = \n -> {s = n.pl ; a = agrP3 Sg ; isPron = False} ;
|
||||
|
||||
lin GivenName, MaleSurname, FemaleSurname = \n -> {s = n.s ; a = agrP3 Sg ; isPron = False} ;
|
||||
lin FullName gn sn =
|
||||
{s = \\c => gn.s ! NPNom ++ sn.s ! gn.g ! c ; a = agrP3 Sg ; isPron = False} ;
|
||||
{s = \\c => gn.s ! NPNom ++ sn.s ! c ; a = agrP3 Sg ; isPron = False} ;
|
||||
|
||||
lin UseLN ln = {
|
||||
s = \\c => case ln.hasArt of {
|
||||
True => "die" ++ ln.s ! Weak ! c ;
|
||||
False => ln.s ! Strong ! c
|
||||
} ;
|
||||
a = agrP3 ln.n ;
|
||||
isPron = False
|
||||
} ;
|
||||
|
||||
PlainLN ln = {
|
||||
s = \\c => ln.s ! Strong ! c ;
|
||||
a = agrP3 ln.n ;
|
||||
isPron = False
|
||||
} ;
|
||||
|
||||
InLN ln = {
|
||||
s = appPrep "in" (\\c => case ln.hasArt of {
|
||||
True => "die" ++ ln.s ! Weak ! c ;
|
||||
False => ln.s ! Strong ! c
|
||||
})
|
||||
} ;
|
||||
|
||||
AdjLN ap ln = ln ** {
|
||||
s = \\a,c =>
|
||||
preOrPost ap.isPre
|
||||
(ap.s ! agrAdj Neutr a (NF ln.n Nom))
|
||||
(ln.s ! a ! c) ;
|
||||
} ;
|
||||
lin UseLN pn = {s = pn.s ; a = agrP3 Sg ; isPron = False} ;
|
||||
|
||||
}
|
||||
|
||||
@@ -77,7 +77,7 @@ concrete NounAfr of Noun = CatAfr ** open ResAfr, Prelude in {
|
||||
NumDigits numeral = {s = \\g,c => numeral.s ! NCard g c; n = numeral.n } ;
|
||||
OrdDigits numeral = {s = \\af => numeral.s ! NOrd af} ;
|
||||
|
||||
NumDecimal dec = {s = \\g,c => dec.s ! NCard g c; n = dec.n } ;
|
||||
NumFloat n1 n2 = {s = \\g,c => n1.s ! NCard Neutr Nom ++ BIND ++ "." ++ BIND ++ n1.s ! NCard g c; n = Pl } ;
|
||||
|
||||
NumNumeral numeral = {s = \\g,c => numeral.s ! NCard g c; n = numeral.n } ;
|
||||
OrdNumeral numeral = {s = \\af => numeral.s ! NOrd af} ;
|
||||
@@ -185,4 +185,10 @@ concrete NounAfr of Noun = CatAfr ** open ResAfr, Prelude in {
|
||||
isPron = False
|
||||
} ;
|
||||
|
||||
QuantityFloatNP n1 n2 m = {
|
||||
s = \\c => preOrPost m.isPre m.s (n1.s ! NCard Neutr Nom ++ BIND ++ "." ++ BIND ++ n1.s ! NCard Neutr Nom) ;
|
||||
a = agrP3 Pl ;
|
||||
isPron = False
|
||||
} ;
|
||||
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
concrete NumeralAfr of Numeral = CatAfr [Numeral,Digits,Decimal] ** open ResAfr, Prelude in {
|
||||
concrete NumeralAfr of Numeral = CatAfr [Numeral,Digits] ** open ResAfr, Prelude in {
|
||||
|
||||
flags optimize = all_subs ;
|
||||
coding=utf8 ;
|
||||
@@ -75,20 +75,6 @@ lin
|
||||
D_8 = mkDig "8" ;
|
||||
D_9 = mkDig "9" ;
|
||||
|
||||
PosDecimal d = d ** {hasDot=False} ;
|
||||
NegDecimal d = {
|
||||
s = \\o => "-" ++ BIND ++ d.s ! o ;
|
||||
n = Pl ;
|
||||
hasDot=False
|
||||
} ;
|
||||
IFrac d i = {
|
||||
s = \\o => d.s ! invNum ++
|
||||
if_then_Str d.hasDot BIND (BIND++"."++BIND) ++
|
||||
i.s ! o;
|
||||
n = Pl ;
|
||||
hasDot=True
|
||||
} ;
|
||||
|
||||
oper
|
||||
mk2Dig : Str -> Str -> TDigit = \c,o -> mk3Dig c o Pl ;
|
||||
mkDig : Str -> TDigit = \c -> mk2Dig c (c + "e") ;
|
||||
|
||||
@@ -73,25 +73,6 @@ oper
|
||||
mkPN : Str -> PN ; -- proper name
|
||||
} ;
|
||||
|
||||
mkGN = overload { -- given name
|
||||
mkGN : Str -> GN = \s -> lin GN {s = \\_ => s; g = Male} ;
|
||||
mkGN : Str -> Sex -> GN = \s,g -> lin GN {s = \\_ => s; g = g} ;
|
||||
} ;
|
||||
|
||||
mkSN = overload { -- given name
|
||||
mkSN : Str -> SN = \s -> lin SN {s = \\_,_ => s; pl = \\_=>s} ;
|
||||
mkSN : Str -> Str -> Str -> SN = \male,female,pl -> lin SN {s = table {Male=>\\_=>male; Female=>\\_=>female}; pl=\\_=>pl} ;
|
||||
} ;
|
||||
|
||||
mkLN = overload {
|
||||
mkLN : Str -> LN -- location name
|
||||
= \s -> lin LN {s = \\_,_ => s; hasArt = False; n = Sg} ;
|
||||
mkLN : Str -> Number -> LN -- location name
|
||||
= \s,n -> lin LN {s = \\_,_ => s; hasArt = False; n = n} ;
|
||||
} ;
|
||||
|
||||
defLN : LN -> LN = \n -> n ** {hasArt = True} ;
|
||||
|
||||
|
||||
--2 Adjectives
|
||||
|
||||
@@ -224,8 +205,6 @@ oper
|
||||
feminine = Neutr ;
|
||||
het,neuter = Neutr ;
|
||||
de,utrum = Neutr ;
|
||||
male = Male ;
|
||||
female = Female ;
|
||||
|
||||
mkA = overload {
|
||||
mkA : (vers : Str) -> A = \a -> lin A (regAdjective a) ;
|
||||
|
||||
@@ -315,7 +315,7 @@ param
|
||||
|
||||
--2 Transformations between parameter types
|
||||
|
||||
oper Agr : PType = {g : Gender ; n : Number ; p : Person} ;
|
||||
oper Agr : Type = {g : Gender ; n : Number ; p : Person} ;
|
||||
|
||||
oper
|
||||
agrP3 : Number -> Agr = agrgP3 Neutr ;
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
concrete AdjectiveSqi of Adjective = CatSqi ** open ResSqi, Prelude in {
|
||||
|
||||
lin
|
||||
PositA a = {
|
||||
s = \\spec,c,g,n => case a.clit of {
|
||||
True => link_clitic ! spec ! c ! g ! n ++ a.s ! c ! g ! n ;
|
||||
False => a.s ! c ! g ! n
|
||||
}
|
||||
} ;
|
||||
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
concrete AllSqi of AllSqiAbs =
|
||||
LangSqi
|
||||
**
|
||||
{} ;
|
||||
@@ -1,3 +0,0 @@
|
||||
abstract AllSqiAbs =
|
||||
Lang
|
||||
** {}
|
||||
@@ -1,25 +0,0 @@
|
||||
concrete CatSqi of Cat = CommonX ** open ParamX, Prelude, ResSqi in {
|
||||
|
||||
lincat N = Noun ;
|
||||
lincat N2 = Noun ** {c2 : Compl} ;
|
||||
lincat N3 = Noun ** {c2,c3 : Compl} ;
|
||||
lincat A = Adj ;
|
||||
lincat A2 = Adj ** {c2 : Compl} ;
|
||||
lincat V, VA, VV, VS, VQ = Verb ;
|
||||
lincat V2, V2S, V2Q = Verb ** {c2 : Compl} ;
|
||||
lincat V3, V2A, V2V = Verb ** {c2,c3 : Compl} ;
|
||||
lincat Prep = Compl ;
|
||||
|
||||
lincat Numeral = {s : Str} ;
|
||||
lincat Digits = {s : Str; n : Number; tail : DTail} ;
|
||||
lincat Decimal = {s : Str; n : Number; hasDot : Bool} ;
|
||||
|
||||
lincat AP = {s: Species => Case => Gender => Number => Str} ;
|
||||
lincat CN = Noun ;
|
||||
lincat Num = {s : Str; n : Number} ;
|
||||
lincat Quant = {s : Case => Gender => Number => Str; spec : Species} ;
|
||||
lincat Det = {s : Case => Gender => Str; spec : Species; n : Number} ;
|
||||
lincat NP = {s: Case => Str; a : Agr} ;
|
||||
lincat Pron = {s: Case => Str; acc_clit, dat_clit : Str; a : Agr} ;
|
||||
|
||||
}
|
||||
@@ -1,117 +0,0 @@
|
||||
concrete DocumentationSqi of Documentation = CatSqi ** open
|
||||
ParamX, ResSqi, Prelude, HTML in {
|
||||
|
||||
lincat
|
||||
Inflection = {t : Str; s1,s2,s3 : Str} ;
|
||||
Definition = {s : Str} ;
|
||||
Document = {s : Str} ;
|
||||
Tag = {s : Str} ;
|
||||
|
||||
lin InflectionN = \x -> {
|
||||
t="em" ;
|
||||
s1=heading1 ("Emër" ++
|
||||
case x.g of {
|
||||
Masc => "(mashkullor)" ;
|
||||
Fem => "(femëror)"
|
||||
}) ;
|
||||
s2=frameTable (
|
||||
tr (intagAttr "th" "colspan=\"2\"" "" ++ th "Sg" ++ th "Pl") ++
|
||||
tr (intagAttr "th" "rowspan=\"4\"" "Indef" ++ th "Nom" ++ td (x.s ! Indef ! Nom ! Sg) ++ td (x.s ! Indef ! Nom ! Pl)) ++
|
||||
tr (th "Acc" ++ td (x.s ! Indef ! Acc ! Sg) ++ td (x.s ! Indef ! Acc ! Pl)) ++
|
||||
tr (th "Dat" ++ td (x.s ! Indef ! Dat ! Sg) ++ td (x.s ! Indef ! Dat ! Pl)) ++
|
||||
tr (th "Ablat" ++ td (x.s ! Indef ! Ablat ! Sg) ++ td (x.s ! Indef ! Ablat ! Pl)) ++
|
||||
tr (intagAttr "th" "rowspan=\"4\"" "Def" ++ th "Nom" ++ td (x.s ! Def ! Nom ! Sg) ++ td (x.s ! Def ! Nom ! Pl)) ++
|
||||
tr (th "Acc" ++ td (x.s ! Def ! Acc ! Sg) ++ td (x.s ! Def ! Acc ! Pl)) ++
|
||||
tr (th "Dat" ++ td (x.s ! Def ! Dat ! Sg) ++ td (x.s ! Def ! Dat ! Pl)) ++
|
||||
tr (th "Ablat" ++ td (x.s ! Def ! Ablat ! Sg) ++ td (x.s ! Def ! Ablat ! Pl))) ;
|
||||
s3=[]
|
||||
} ;
|
||||
lin InflectionA = \x -> {
|
||||
t="mb" ;
|
||||
s1=heading1 "Mbiemër" ;
|
||||
s2=frameTable (
|
||||
tr (intagAttr "th" "colspan=\"2\"" "" ++ th "Sg" ++ th "Pl") ++
|
||||
tr (intagAttr "th" "rowspan=\"2\"" "Nom" ++ th "Masc" ++ td (y ! Nom ! Masc ! Sg) ++ td (y ! Nom ! Masc ! Pl)) ++
|
||||
tr (th "Fem" ++ td (y ! Nom ! Fem ! Sg) ++ td (y ! Nom ! Fem ! Pl)) ++
|
||||
tr (intagAttr "th" "rowspan=\"2\"" "Acc" ++ th "Masc" ++ td (y ! Acc ! Masc ! Sg) ++ td (y ! Acc ! Masc ! Pl)) ++
|
||||
tr (th "Fem" ++ td (y ! Acc ! Fem ! Sg) ++ td (y ! Acc ! Fem ! Pl)) ++
|
||||
tr (intagAttr "th" "rowspan=\"2\"" "Dat" ++ th "Masc" ++ td (y ! Dat ! Masc ! Sg) ++ td (y ! Dat ! Masc ! Pl)) ++
|
||||
tr (th "Fem" ++ td (y ! Dat ! Fem ! Sg) ++ td (y ! Dat ! Fem ! Pl)) ++
|
||||
tr (intagAttr "th" "rowspan=\"2\"" "Ablat" ++ th "Masc" ++ td (y ! Ablat ! Masc ! Sg) ++ td (y ! Ablat ! Masc ! Pl)) ++
|
||||
tr (th "Fem" ++ td (y ! Ablat ! Fem ! Sg) ++ td (y ! Ablat ! Fem ! Pl))) ;
|
||||
s3=[]
|
||||
} where {
|
||||
y : Case => Gender => Number => Str =
|
||||
\\c,g,n => case x.clit of {
|
||||
True => link_clitic ! Indef ! c ! g ! n ++ x.s ! c ! g ! n ;
|
||||
False => x.s ! c ! g ! n
|
||||
} ;
|
||||
} ;
|
||||
lin InflectionV = \x -> {
|
||||
t="fl" ;
|
||||
s1=heading1 "Folje" ;
|
||||
s2=frameTable (
|
||||
tr (intagAttr "th" "rowspan=\"24\"" "Indicative" ++ intagAttr "th" "rowspan=\"6\"" "Pres" ++ intagAttr "th" "rowspan=\"3\"" "Sg" ++ th "P1" ++ td (x.Indicative ! Pres ! Sg ! P1)) ++
|
||||
tr (th "P2" ++ td (x.Indicative ! Pres ! Sg ! P2)) ++
|
||||
tr (th "P3" ++ td (x.Indicative ! Pres ! Sg ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"3\"" "Pl" ++ th "P1" ++ td (x.Indicative ! Pres ! Pl ! P1)) ++
|
||||
tr (th "P2" ++ td (x.Indicative ! Pres ! Pl ! P2)) ++
|
||||
tr (th "P3" ++ td (x.Indicative ! Pres ! Pl ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"6\"" "Past" ++ intagAttr "th" "rowspan=\"3\"" "Sg" ++ th "P1" ++ td (x.Indicative ! Past ! Sg ! P1)) ++
|
||||
tr (th "P2" ++ td (x.Indicative ! Past ! Sg ! P2)) ++
|
||||
tr (th "P3" ++ td (x.Indicative ! Past ! Sg ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"3\"" "Pl" ++ th "P1" ++ td (x.Indicative ! Past ! Pl ! P1)) ++
|
||||
tr (th "P2" ++ td (x.Indicative ! Past ! Pl ! P2)) ++
|
||||
tr (th "P3" ++ td (x.Indicative ! Past ! Pl ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"6\"" "Aorist" ++ intagAttr "th" "rowspan=\"3\"" "Sg" ++ th "P1" ++ td (x.Indicative ! Aorist ! Sg ! P1)) ++
|
||||
tr (th "P2" ++ td (x.Indicative ! Aorist ! Sg ! P2)) ++
|
||||
tr (th "P3" ++ td (x.Indicative ! Aorist ! Sg ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"3\"" "Pl" ++ th "P1" ++ td (x.Indicative ! Aorist ! Pl ! P1)) ++
|
||||
tr (th "P2" ++ td (x.Indicative ! Aorist ! Pl ! P2)) ++
|
||||
tr (th "P3" ++ td (x.Indicative ! Aorist ! Pl ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"6\"" "Imperfect" ++ intagAttr "th" "rowspan=\"3\"" "Sg" ++ th "P1" ++ td (x.Indicative ! Imperfect ! Sg ! P1)) ++
|
||||
tr (th "P2" ++ td (x.Indicative ! Imperfect ! Sg ! P2)) ++
|
||||
tr (th "P3" ++ td (x.Indicative ! Imperfect ! Sg ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"3\"" "Pl" ++ th "P1" ++ td (x.Indicative ! Imperfect ! Pl ! P1)) ++
|
||||
tr (th "P2" ++ td (x.Indicative ! Imperfect ! Pl ! P2)) ++
|
||||
tr (th "P3" ++ td (x.Indicative ! Imperfect ! Pl ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"2\"" "Imperative" ++ th "Sg" ++ td (x.Imperative ! Sg)) ++
|
||||
tr (th "Pl" ++ td (x.Imperative ! Pl)) ++
|
||||
tr (th "participle" ++ td (x.participle)) ++
|
||||
tr (intagAttr "th" "rowspan=\"6\"" "pres_optative" ++ intagAttr "th" "rowspan=\"3\"" "Sg" ++ th "P1" ++ td (x.pres_optative ! Sg ! P1)) ++
|
||||
tr (th "P2" ++ td (x.pres_optative ! Sg ! P2)) ++
|
||||
tr (th "P3" ++ td (x.pres_optative ! Sg ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"3\"" "Pl" ++ th "P1" ++ td (x.pres_optative ! Pl ! P1)) ++
|
||||
tr (th "P2" ++ td (x.pres_optative ! Pl ! P2)) ++
|
||||
tr (th "P3" ++ td (x.pres_optative ! Pl ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"6\"" "perf_optative" ++ intagAttr "th" "rowspan=\"3\"" "Sg" ++ th "P1" ++ td (x.perf_optative ! Sg ! P1)) ++
|
||||
tr (th "P2" ++ td (x.perf_optative ! Sg ! P2)) ++
|
||||
tr (th "P3" ++ td (x.perf_optative ! Sg ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"3\"" "Pl" ++ th "P1" ++ td (x.perf_optative ! Pl ! P1)) ++
|
||||
tr (th "P2" ++ td (x.perf_optative ! Pl ! P2)) ++
|
||||
tr (th "P3" ++ td (x.perf_optative ! Pl ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"6\"" "pres_admirative" ++ intagAttr "th" "rowspan=\"3\"" "Sg" ++ th "P1" ++ td (x.pres_admirative ! Sg ! P1)) ++
|
||||
tr (th "P2" ++ td (x.pres_admirative ! Sg ! P2)) ++
|
||||
tr (th "P3" ++ td (x.pres_admirative ! Sg ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"3\"" "Pl" ++ th "P1" ++ td (x.pres_admirative ! Pl ! P1)) ++
|
||||
tr (th "P2" ++ td (x.pres_admirative ! Pl ! P2)) ++
|
||||
tr (th "P3" ++ td (x.pres_admirative ! Pl ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"6\"" "imperf_admirative" ++ intagAttr "th" "rowspan=\"3\"" "Sg" ++ th "P1" ++ td (x.imperf_admirative ! Sg ! P1)) ++
|
||||
tr (th "P2" ++ td (x.imperf_admirative ! Sg ! P2)) ++
|
||||
tr (th "P3" ++ td (x.imperf_admirative ! Sg ! P3)) ++
|
||||
tr (intagAttr "th" "rowspan=\"3\"" "Pl" ++ th "P1" ++ td (x.imperf_admirative ! Pl ! P1)) ++
|
||||
tr (th "P2" ++ td (x.imperf_admirative ! Pl ! P2)) ++
|
||||
tr (th "P3" ++ td (x.imperf_admirative ! Pl ! P3))) ;
|
||||
s3=[]
|
||||
} ;
|
||||
lin InflectionAdv = \x -> {
|
||||
t="nd" ;
|
||||
s1=heading1 "Ndajfolje" ;
|
||||
s2=frameTable (
|
||||
tr (th "s" ++ td (x.s))) ;
|
||||
s3=[]
|
||||
} ;
|
||||
lin
|
||||
NoDefinition t = {s=t.s};
|
||||
MkDefinition t d = {s="<p><b>Definition:</b>"++t.s++d.s++"</p>"};
|
||||
MkDefinitionEx t d e = {s="<p><b>Definition:</b>"++t.s++d.s++"</p><p><b>Example:</b>"++e.s++"</p>"};lin MkDocument d i e = {s = i.s1 ++ d.s ++ i.s2 ++ i.s3 ++ e.s} ; MkTag i = {s = i.t} ;}
|
||||
@@ -1,9 +0,0 @@
|
||||
concrete GrammarSqi of Grammar =
|
||||
NounSqi,
|
||||
AdjectiveSqi,
|
||||
NumeralSqi,
|
||||
PhraseSqi,
|
||||
StructuralSqi
|
||||
** {
|
||||
|
||||
} ;
|
||||
@@ -1,10 +0,0 @@
|
||||
--# -path=.:../abstract
|
||||
concrete LangSqi of Lang =
|
||||
GrammarSqi,
|
||||
LexiconSqi
|
||||
,DocumentationSqi --# notpresent
|
||||
** {
|
||||
|
||||
flags startcat = Phr ;
|
||||
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
concrete LexiconSqi of Lexicon = CatSqi ** open ParadigmsSqi in {
|
||||
|
||||
lin
|
||||
airplane_N = mkN032 "aeroplan" ;
|
||||
apple_N = mkN069 "mollë" ;
|
||||
good_A = mkA "mirë" ;
|
||||
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,40 +0,0 @@
|
||||
concrete NounSqi of Noun = CatSqi ** open MorphoSqi, ResSqi in {
|
||||
|
||||
flags optimize=all_subs ;
|
||||
|
||||
lin
|
||||
DetCN det cn = {
|
||||
s = \\c => det.s ! c ! cn.g ++ cn.s ! det.spec ! c ! det.n ;
|
||||
a = agrgP3 cn.g det.n
|
||||
} ;
|
||||
|
||||
UsePron p = p ;
|
||||
|
||||
DetQuant quant num = {
|
||||
s = \\c,g => quant.s ! c ! g ! num.n ++ num.s ;
|
||||
n = num.n ;
|
||||
spec = quant.spec
|
||||
} ;
|
||||
|
||||
NumSg = {s = []; n = Sg} ;
|
||||
NumPl = {s = []; n = Pl} ;
|
||||
|
||||
DefArt = {
|
||||
s = \\c,g,n => [] ;
|
||||
spec = Def
|
||||
} ;
|
||||
|
||||
IndefArt = {
|
||||
s = \\c,g => table Number ["një"; []] ;
|
||||
spec = Indef
|
||||
} ;
|
||||
|
||||
UseN n = n ;
|
||||
UseN2 n = n ;
|
||||
|
||||
AdjCN ap cn = {
|
||||
s = \\spec,c,n => cn.s ! spec ! c ! n ++ ap.s ! spec ! c ! cn.g ! n ;
|
||||
g = cn.g
|
||||
} ;
|
||||
|
||||
}
|
||||
@@ -1,93 +0,0 @@
|
||||
concrete NumeralSqi of Numeral = CatSqi ** open ParamX, Prelude in {
|
||||
|
||||
oper bind : Str -> Str -> Str = \a -> \b -> a ++ b ;
|
||||
|
||||
param DForm = unit | teen | ten ;
|
||||
|
||||
oper LinDigit = {s : DForm => Str };
|
||||
oper LinSub100 = {s : Str } ;
|
||||
|
||||
lincat Digit = LinDigit ;
|
||||
lincat Sub10 = LinDigit ;
|
||||
lincat Sub100 = LinSub100 ;
|
||||
lincat Sub1000 = LinSub100 ;
|
||||
lincat Sub1000000 = { s : Str } ;
|
||||
|
||||
oper mkNum : Str -> LinDigit = \tri ->
|
||||
{ s = table {unit => tri ; teen => tri + "mbë" + "dhjetë" ; ten => tri + "dhjetë" }};
|
||||
|
||||
lin num x = {s = x.s } ;
|
||||
|
||||
lin n2 = {s = table {unit => "dy" ; teen => "dy" + "mbë" + "dhjetë" ; ten => "njëzet" }};
|
||||
lin n3 = mkNum "tre" ;
|
||||
lin n4 = {s = table {unit => "katër" ; teen => "katër" + "mbë" + "dhjetë" ; ten => "dyzet" } };
|
||||
lin n5 = mkNum "pesë" ;
|
||||
lin n6 = mkNum "gjashtë";
|
||||
lin n7 = mkNum "shtatë";
|
||||
lin n8 = mkNum "tetë";
|
||||
lin n9 = mkNum "nëntë";
|
||||
|
||||
oper mkR : Str -> LinSub100 = \n -> {s = n } ;
|
||||
|
||||
lin pot01 = { s = table {_ => "një" }};
|
||||
lin pot0 d = d ;
|
||||
lin pot110 = mkR "dhjetë" ;
|
||||
lin pot111 = mkR ("një" + "mbë" + "dhjetë") ;
|
||||
lin pot1to19 d = mkR (d.s ! teen) ;
|
||||
lin pot0as1 n = mkR (n.s ! unit) ;
|
||||
lin pot1 d = mkR (d.s ! ten) ;
|
||||
lin pot1plus d e = mkR ((d.s ! ten) ++ "e" ++ (e.s ! unit)) ;
|
||||
lin pot1as2 n = n ;
|
||||
lin pot2 d = mkR (bind (d.s ! unit) "qind") ;
|
||||
lin pot2plus d e = mkR ((bind (d.s ! unit) "qind") ++ "e" ++ e.s) ;
|
||||
lin pot2as3 n = {s = n.s };
|
||||
lin pot3 n = {s = n.s ++ "mijë" } ;
|
||||
lin pot3plus n m = {s = n.s ++ "mijë" ++ m.s} ;
|
||||
|
||||
|
||||
lincat Dig = {s : Str; n : Number} ;
|
||||
|
||||
lin IDig d = d ** {tail = T1} ;
|
||||
|
||||
IIDig d i = {
|
||||
s = d.s ++ spaceIf i.tail ++ i.s ;
|
||||
n = Pl ;
|
||||
tail = inc i.tail
|
||||
} ;
|
||||
|
||||
D_0 = mkDig "0" Pl ;
|
||||
D_1 = mkDig "1" Sg ;
|
||||
D_2 = mkDig "2" Pl ;
|
||||
D_3 = mkDig "3" Pl ;
|
||||
D_4 = mkDig "4" Pl ;
|
||||
D_5 = mkDig "5" Pl ;
|
||||
D_6 = mkDig "6" Pl ;
|
||||
D_7 = mkDig "7" Pl ;
|
||||
D_8 = mkDig "8" Pl ;
|
||||
D_9 = mkDig "9" Pl ;
|
||||
|
||||
lin PosDecimal d = d ** {hasDot=False} ;
|
||||
NegDecimal d = {s="-" ++ BIND ++ d.s; hasDot=False; n = Pl} ;
|
||||
IFrac d i = {
|
||||
s=d.s ++
|
||||
if_then_Str d.hasDot BIND (BIND++","++BIND) ++
|
||||
i.s ;
|
||||
hasDot=True;
|
||||
n = Pl
|
||||
} ;
|
||||
|
||||
oper
|
||||
mkDig : Str -> Number -> Dig = \s,n -> lin Dig {s=s; n=n} ;
|
||||
|
||||
spaceIf : DTail -> Str = \t -> case t of {
|
||||
T3 => "" ;
|
||||
_ => BIND
|
||||
} ;
|
||||
|
||||
inc : DTail -> DTail = \t -> case t of {
|
||||
T1 => T2 ;
|
||||
T2 => T3 ;
|
||||
T3 => T1
|
||||
} ;
|
||||
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,13 +0,0 @@
|
||||
concrete PhraseSqi of Phrase = CatSqi ** open Prelude, ResSqi in {
|
||||
|
||||
lin
|
||||
PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ;
|
||||
|
||||
UttNP np = {s = np.s ! Nom} ;
|
||||
UttInterj i = i ;
|
||||
|
||||
NoPConj = {s = []} ;
|
||||
|
||||
NoVoc = {s = []} ;
|
||||
|
||||
}
|
||||
@@ -1,261 +0,0 @@
|
||||
resource ResSqi = ParamX-[Tense,Past,Pres] ** open Prelude in {
|
||||
|
||||
oper Compl = {s : Str} ;
|
||||
|
||||
param Species = Indef | Def ;
|
||||
param Case = Nom | Acc | Dat | Ablat ;
|
||||
param Gender = Masc | Fem ;
|
||||
|
||||
param GenNum = GSg Gender | GPl ;
|
||||
oper Agr = {gn : GenNum; p : Person} ;
|
||||
|
||||
oper Noun = {s: Species => Case => Number => Str; g: Gender} ; -- 3978
|
||||
oper mkNoun : (_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_ : Str) -> Gender -> Noun =
|
||||
\f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,g ->
|
||||
{ s = table {
|
||||
Indef => table {
|
||||
Nom => table {
|
||||
Sg => f1 ;
|
||||
Pl => f2
|
||||
} ;
|
||||
Acc => table {
|
||||
Sg => f3 ;
|
||||
Pl => f4
|
||||
} ;
|
||||
Dat => table {
|
||||
Sg => f5 ;
|
||||
Pl => f6
|
||||
} ;
|
||||
Ablat => table {
|
||||
Sg => f7 ;
|
||||
Pl => f8
|
||||
}
|
||||
} ;
|
||||
Def => table {
|
||||
Nom => table {
|
||||
Sg => f9 ;
|
||||
Pl => f10
|
||||
} ;
|
||||
Acc => table {
|
||||
Sg => f11 ;
|
||||
Pl => f12
|
||||
} ;
|
||||
Dat => table {
|
||||
Sg => f13 ;
|
||||
Pl => f14
|
||||
} ;
|
||||
Ablat => table {
|
||||
Sg => f15 ;
|
||||
Pl => f16
|
||||
}
|
||||
}
|
||||
} ;
|
||||
g = g
|
||||
} ;
|
||||
|
||||
|
||||
oper Adj = {s: Case => Gender => Number => Str; clit: Bool} ; -- 462
|
||||
oper mkAdj : (_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_ : Str) -> Bool -> Adj =
|
||||
\f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,clit ->
|
||||
{ s = table {
|
||||
Nom => table {
|
||||
Masc => table {
|
||||
Sg => f1 ;
|
||||
Pl => f2
|
||||
} ;
|
||||
Fem => table {
|
||||
Sg => f3 ;
|
||||
Pl => f4
|
||||
}
|
||||
} ;
|
||||
Acc => table {
|
||||
Masc => table {
|
||||
Sg => f5 ;
|
||||
Pl => f6
|
||||
} ;
|
||||
Fem => table {
|
||||
Sg => f7 ;
|
||||
Pl => f8
|
||||
}
|
||||
} ;
|
||||
Dat => table {
|
||||
Masc => table {
|
||||
Sg => f9 ;
|
||||
Pl => f10
|
||||
} ;
|
||||
Fem => table {
|
||||
Sg => f11 ;
|
||||
Pl => f12
|
||||
}
|
||||
} ;
|
||||
Ablat => table {
|
||||
Masc => table {
|
||||
Sg => f13 ;
|
||||
Pl => f14
|
||||
} ;
|
||||
Fem => table {
|
||||
Sg => f15 ;
|
||||
Pl => f16
|
||||
}
|
||||
}
|
||||
} ;
|
||||
clit = clit
|
||||
} ;
|
||||
|
||||
|
||||
param Tense = Pres | Past | Imperfect | Aorist ;
|
||||
oper Verb = {Indicative: Tense => Number => Person => Str; Imperative: Number => Str; participle: Str; pres_optative: Number => Person => Str; perf_optative: Number => Person => Str; pres_admirative: Number => Person => Str; imperf_admirative: Number => Person => Str} ; -- 758
|
||||
oper mkVerb : (_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_ : Str) -> Verb =
|
||||
\f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,f17,f18,f19,f20,f21,f22,f23,f24,f25,f26,f27,f28,f29,f30,f31,f32,f33,f34,f35,f36,f37,f38,f39,f40,f41,f42,f43,f44,f45,f46,f47,f48,f49,f50,f51 ->
|
||||
{ Indicative = table {
|
||||
Pres => table {
|
||||
Sg => table {
|
||||
P1 => f1 ;
|
||||
P2 => f2 ;
|
||||
P3 => f3
|
||||
} ;
|
||||
Pl => table {
|
||||
P1 => f4 ;
|
||||
P2 => f5 ;
|
||||
P3 => f6
|
||||
}
|
||||
} ;
|
||||
Past => table {
|
||||
Sg => table {
|
||||
P1 => f7 ;
|
||||
P2 => f8 ;
|
||||
P3 => f9
|
||||
} ;
|
||||
Pl => table {
|
||||
P1 => f10 ;
|
||||
P2 => f11 ;
|
||||
P3 => f12
|
||||
}
|
||||
} ;
|
||||
Aorist => table {
|
||||
Sg => table {
|
||||
P1 => f13 ;
|
||||
P2 => f14 ;
|
||||
P3 => f15
|
||||
} ;
|
||||
Pl => table {
|
||||
P1 => f16 ;
|
||||
P2 => f17 ;
|
||||
P3 => f18
|
||||
}
|
||||
} ;
|
||||
Imperfect => table {
|
||||
Sg => table {
|
||||
P1 => f19 ;
|
||||
P2 => f20 ;
|
||||
P3 => f21
|
||||
} ;
|
||||
Pl => table {
|
||||
P1 => f22 ;
|
||||
P2 => f23 ;
|
||||
P3 => f24
|
||||
}
|
||||
}
|
||||
} ;
|
||||
Imperative = table {
|
||||
Sg => f25 ;
|
||||
Pl => f26
|
||||
} ;
|
||||
participle = f27 ;
|
||||
pres_optative = table {
|
||||
Sg => table {
|
||||
P1 => f28 ;
|
||||
P2 => f29 ;
|
||||
P3 => f30
|
||||
} ;
|
||||
Pl => table {
|
||||
P1 => f31 ;
|
||||
P2 => f32 ;
|
||||
P3 => f33
|
||||
}
|
||||
} ;
|
||||
perf_optative = table {
|
||||
Sg => table {
|
||||
P1 => f34 ;
|
||||
P2 => f35 ;
|
||||
P3 => f36
|
||||
} ;
|
||||
Pl => table {
|
||||
P1 => f37 ;
|
||||
P2 => f38 ;
|
||||
P3 => f39
|
||||
}
|
||||
} ;
|
||||
pres_admirative = table {
|
||||
Sg => table {
|
||||
P1 => f40 ;
|
||||
P2 => f41 ;
|
||||
P3 => f42
|
||||
} ;
|
||||
Pl => table {
|
||||
P1 => f43 ;
|
||||
P2 => f44 ;
|
||||
P3 => f45
|
||||
}
|
||||
} ;
|
||||
imperf_admirative = table {
|
||||
Sg => table {
|
||||
P1 => f46 ;
|
||||
P2 => f47 ;
|
||||
P3 => f48
|
||||
} ;
|
||||
Pl => table {
|
||||
P1 => f49 ;
|
||||
P2 => f50 ;
|
||||
P3 => f51
|
||||
}
|
||||
}
|
||||
} ;
|
||||
|
||||
oper link_clitic : Species => Case => Gender => Number => Str =
|
||||
table {
|
||||
Indef => table {
|
||||
Nom => table {
|
||||
Masc => table {
|
||||
Sg => "i" ;
|
||||
Pl => "të"
|
||||
} ;
|
||||
Fem => table {
|
||||
Sg => "e" ;
|
||||
Pl => "të"
|
||||
}
|
||||
} ;
|
||||
_ => \\_,_ => "të"
|
||||
} ;
|
||||
Def => table {
|
||||
Nom => table {
|
||||
Masc => table {
|
||||
Sg => "i" ;
|
||||
Pl => "e"
|
||||
} ;
|
||||
Fem => table {
|
||||
Sg => "e" ;
|
||||
Pl => "e"
|
||||
}
|
||||
} ;
|
||||
Acc => \\_,_ => "e" ;
|
||||
_ => table {
|
||||
Masc => \\_ => "të" ;
|
||||
Fem => table {
|
||||
Sg => "së" ;
|
||||
Pl => "të"
|
||||
}
|
||||
}
|
||||
}
|
||||
} ;
|
||||
|
||||
oper genNum : Gender -> Number -> GenNum = \g,n ->
|
||||
case n of {
|
||||
Sg => GSg g ;
|
||||
Pl => GPl
|
||||
} ;
|
||||
|
||||
agrgP3 : Gender -> Number -> Agr =
|
||||
\g,n -> {gn=genNum g n; p=P3} ;
|
||||
|
||||
}
|
||||
@@ -1,19 +0,0 @@
|
||||
concrete StructuralSqi of Structural = CatSqi ** open ResSqi, ParadigmsSqi in {
|
||||
|
||||
lin i_Pron = mkPron "unë" "mua" "mua" "meje" "më" "më" (GSg Masc) P1 ;
|
||||
lin youSg_Pron = mkPron "ti" "ty" "ty" "teje" "të" "të" (GSg Masc) P2 ;
|
||||
lin he_Pron = mkPron "ai" "atë" "atij" "atij" "e" "i" (GSg Masc) P3 ;
|
||||
lin she_Pron = mkPron "ajo" "atë" "asaj" "asaj" "e" "i" (GSg Fem) P3 ;
|
||||
lin it_Pron = mkPron "ai" "atë" "atij" "atij" "e" "i" (GSg Masc) P3 ;
|
||||
lin we_Pron = mkPron "ne" "ne" "neve" "nesh" "na" "na" GPl P1 ;
|
||||
lin youPl_Pron = mkPron "ju" "ju" "juve" "jush" "ju" "ju" GPl P2 ;
|
||||
lin they_Pron = mkPron "ata" "ata" "atyre" "atyre" "i" "u" GPl P3 ;
|
||||
lin this_Quant = mkQuant "ky" "këta" "kjo" "këto"
|
||||
"këtë" "këtyre" "këtë" "këtyre"
|
||||
"këtij" "këtyre" "kësaj" "këtyre"
|
||||
"këtij" "këtyre" "kësaj" "këtyre" ;
|
||||
lin that_Quant = mkQuant "ai" "ata" "ajo" "ato"
|
||||
"atë" "ata" "atë" "ato"
|
||||
"atij" "atyre" "asaj" "atyre"
|
||||
"atij" "atyre" "asaj" "atyre" ;
|
||||
}
|
||||
@@ -22,7 +22,6 @@ lincat
|
||||
Prep = ResAmh.Prep;
|
||||
Numeral = ResAmh.Numeral; --{s : CardOrd => Case => Str ; n : Number} ;
|
||||
Digits = ResAmh.Digits;--{s : CardOrd => Case => Str ; n : Number ; tail : DTail} ;
|
||||
Decimal = ResAmh.Decimal;
|
||||
Ord = ResAmh.Ord ; --{ s : Case => Str } ;
|
||||
Num = ResAmh.Num;--{s : Case => Str ; n : Number ; hasCard : Bool} ;
|
||||
Card = ResAmh.Card;--{s : Case => Str ; n : Number} ;
|
||||
|
||||
@@ -94,7 +94,6 @@ lin
|
||||
NumCard n = {s = \\s,c => n.s!Masc!Sg!s!c ; n = Pl; hasCard = True} ;
|
||||
|
||||
NumDigits n = {s = n.s ! NCard } ;
|
||||
NumDecimal n = {s = n.s ! NCard } ;
|
||||
|
||||
NumNumeral numeral = {s = numeral.s ! NCard} ;
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
concrete NumeralAmh of Numeral = CatAmh [Numeral,Digits,Decimal] ** open ResAmh,ParamX,Prelude in {
|
||||
concrete NumeralAmh of Numeral = CatAmh [Numeral,Digits] ** open ResAmh,ParamX,Prelude in {
|
||||
flags coding = utf8;
|
||||
lincat
|
||||
|
||||
@@ -91,18 +91,6 @@ lin pot3plus n m = {
|
||||
D_8 = mkDig "8" ;
|
||||
D_9 = mk2Dig "9" "9ኛ";
|
||||
|
||||
PosDecimal d = d ** {hasDot=False} ;
|
||||
NegDecimal d = {
|
||||
s = \\o,g,n,s,c => "-" ++ BIND ++ d.s !o!g!n!s!c ;
|
||||
hasDot=False
|
||||
} ;
|
||||
IFrac d i = {
|
||||
s = \\o,g,n,s,c => d.s!NCard!Masc!Sg!Indef!c ++
|
||||
if_then_Str d.hasDot BIND (BIND++"."++BIND) ++
|
||||
i.s ! o ! g ! n ! s ! c;
|
||||
hasDot=True
|
||||
} ;
|
||||
|
||||
oper
|
||||
commaIf : DTail -> Str = \t -> case t of {
|
||||
T3 => BIND++","++BIND ;
|
||||
|
||||
@@ -161,10 +161,6 @@ resource ResAmh = PatternsAmh** open Prelude,MorphoAmh,ParamX in {
|
||||
s : CardOrd=>Gender=>Number=>Species=>Case => Str ;
|
||||
tail : DTail
|
||||
} ;
|
||||
Decimal = {
|
||||
s : CardOrd=>Gender=>Number=>Species=>Case => Str ;
|
||||
hasDot : Bool
|
||||
} ;
|
||||
|
||||
Ord = {s : Gender=>Number=>Species=>Case => Str} ;
|
||||
|
||||
@@ -995,8 +991,8 @@ pronNP : (N,A,G,D : Str) -> PerNumGen -> NP = \N,A,G,D,png-> {
|
||||
{
|
||||
s = \\c =>case c of
|
||||
{
|
||||
Gen|Dat => affix!c ++ Predef.BIND ++ word;
|
||||
_ => word ++ Predef.BIND ++ affix!c
|
||||
Gen|Dat => affix!c + word;
|
||||
_ => word + affix!c
|
||||
};
|
||||
a = {png = Per3 n Masc ; isPron = False };
|
||||
lock_NP = <>
|
||||
|
||||
@@ -90,7 +90,6 @@ concrete CatGrc of Cat = CommonX - [Temp,Tense] ** open ResGrc, Prelude in {
|
||||
|
||||
Numeral = {s : CardOrd => Str ; n : Number} ;
|
||||
Digits = {s : Str ; unit : Unit} ;
|
||||
Decimal = {s : Str ; unit : Unit ; hasDot : Bool} ;
|
||||
|
||||
-- Structural
|
||||
|
||||
|
||||
@@ -83,8 +83,6 @@ concrete NounGrc of Noun = CatGrc ** open Prelude, ResGrc, (M = MorphoGrc) in {
|
||||
-- TODO: check the following two:
|
||||
NumDigits digits = let num : Number = case digits.unit of {one => Sg ; _ => Pl}
|
||||
in {s = \\g,c => digits.s ++ "'"; n = num ; isCard = True} ;
|
||||
NumDecimal digits = let num : Number = case digits.unit of {one => Sg ; _ => Pl}
|
||||
in {s = \\g,c => digits.s ++ "'"; n = num ; isCard = True} ;
|
||||
NumNumeral numeral = {s = \\g,c => numeral.s ! NCard g c; n = numeral.n } ;
|
||||
|
||||
AdNum adn num = {s = \\g,c => adn.s ++ num.s ! g ! c ; n = num.n} ;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
--# -path=.:../abstract:../common:../prelude:
|
||||
|
||||
concrete NumeralGrc of Numeral = CatGrc ** open ResGrc, MorphoGrc, Prelude in {
|
||||
concrete NumeralGrc of Numeral = CatGrc ** open ResGrc, MorphoGrc in {
|
||||
|
||||
lincat
|
||||
Digit = {s : DForm => CardOrd => Str} ;
|
||||
@@ -81,8 +81,6 @@ lin -- mkDigit d (d+10) (d*10) d-th d-times
|
||||
D_8 = mkDig "h" "p" "w" ;
|
||||
D_9 = mkDig "v" "K" "P" ; -- TODO: replace K by koppa, P by sampi (not in ut -ancientgreek)
|
||||
|
||||
PosDecimal d = d ** {hasDot=False} ;
|
||||
|
||||
oper
|
||||
TDigit = {
|
||||
s : Unit => Str
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
--# -path=../abstract:.:alltenses:prelude:
|
||||
--# -path=.:alltenses:prelude
|
||||
|
||||
instance SyntaxGer of Syntax = ConstructorsGer, CatGer, StructuralGer, CombinatorsGer ;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
--# -path=.:../arabic:../common:../abstract:../prelude:../morphodict
|
||||
--# -path=.:../arabic:../common:../abstract:../prelude
|
||||
|
||||
resource TryAra = SyntaxAra, LexiconAra, MorphoDictAra, ParadigmsAra - [mkAdN, mkAdv,mkOrd,mkQuant] **
|
||||
resource TryAra = SyntaxAra, LexiconAra, ParadigmsAra - [mkAdN, mkAdv,mkOrd,mkQuant] **
|
||||
open (P = ParadigmsAra) in {
|
||||
|
||||
}
|
||||
|
||||
@@ -1,16 +1,3 @@
|
||||
--# -path=.:../danish:../scandinavian:../common:../abstract:../prelude
|
||||
|
||||
resource TryDan = SyntaxDan-[mkAdN], LexiconDan, ParadigmsDan - [mkAdv,mkAdN] **
|
||||
open (P = ParadigmsDan) in {
|
||||
|
||||
oper
|
||||
mkAdv = overload SyntaxDan {
|
||||
mkAdv : Str -> Adv = P.mkAdv ;
|
||||
} ;
|
||||
|
||||
mkAdN = overload {
|
||||
mkAdN : CAdv -> AdN = SyntaxDan.mkAdN ;
|
||||
mkAdN : Str -> AdN = P.mkAdN ;
|
||||
} ;
|
||||
|
||||
}
|
||||
resource TryDan = SyntaxDan, LexiconDan, ParadigmsDan - [mkAdv] ;
|
||||
|
||||
@@ -1,21 +1,17 @@
|
||||
--# -path=.:../greek:../common:../abstract:../prelude
|
||||
|
||||
resource TryGre = SyntaxGre-[mkAdN,mkVoc], LexiconGre, ParadigmsGre - [mkAdN,mkAdv,mkVoc] **
|
||||
resource TryGre = SyntaxGre, LexiconGre, ParadigmsGre ;
|
||||
|
||||
{-
|
||||
-[mkAdv, mkDet,mkQuant]**
|
||||
open (P = ParadigmsGre) in {
|
||||
|
||||
oper
|
||||
oper
|
||||
|
||||
mkAdv = overload SyntaxGre {
|
||||
mkAdv : Str -> Adv = P.mkAdv ;
|
||||
} ;
|
||||
|
||||
mkVoc = overload {
|
||||
mkVoc : NP -> Voc = SyntaxGre.mkVoc ;
|
||||
mkVoc : Str -> Voc = P.mkVoc ;
|
||||
} ;
|
||||
|
||||
mkAdN = overload {
|
||||
mkAdN : CAdv -> AdN = SyntaxGre.mkAdN ;
|
||||
mkAdN : Str -> AdN = P.mkAdN ;
|
||||
} ;
|
||||
|
||||
}
|
||||
|
||||
-}
|
||||
@@ -1,17 +1,3 @@
|
||||
--# -path=.:../hungarian:../common:../abstract:../prelude
|
||||
|
||||
resource TryHun = SyntaxHun-[mkAdN], LexiconHun, ParadigmsHun - [mkAdv,mkAdN] **
|
||||
open (P = ParadigmsHun) in {
|
||||
|
||||
oper
|
||||
mkAdv = overload SyntaxHun {
|
||||
mkAdv : Str -> Adv = P.mkAdv ;
|
||||
} ;
|
||||
|
||||
mkAdN = overload {
|
||||
mkAdN : CAdv -> AdN = SyntaxHun.mkAdN ;
|
||||
mkAdN : Str -> AdN = P.mkAdN ;
|
||||
} ;
|
||||
|
||||
}
|
||||
|
||||
resource TryHun = SyntaxHun, LexiconHun, ParadigmsHun - [mkAdv] ;
|
||||
|
||||
@@ -1,12 +1,3 @@
|
||||
--# -path=.:../icelandic:../common:../abstract:../prelude
|
||||
|
||||
resource TryIce = SyntaxIce-[mkVoc], LexiconIce, ParadigmsIce - [mkAdv,mkAdN,mkOrd,mkVoc] **
|
||||
open (P = ParadigmsIce) in {
|
||||
|
||||
oper
|
||||
mkVoc = overload {
|
||||
mkVoc : NP -> Voc = SyntaxIce.mkVoc ;
|
||||
mkVoc : Str -> Voc = P.mkVoc ;
|
||||
} ;
|
||||
|
||||
}
|
||||
resource TryIce = SyntaxIce, LexiconIce, ParadigmsIce - [mkAdv,mkAdN,mkOrd] ;
|
||||
|
||||
@@ -1,16 +1,3 @@
|
||||
--# -path=.:../nynorsk:../scandinavian:../common:../abstract:../prelude
|
||||
|
||||
resource TryNno = SyntaxNno-[mkAdN], LexiconNno, ParadigmsNno - [mkAdv,mkAdN] **
|
||||
open (P = ParadigmsNno) in {
|
||||
|
||||
oper
|
||||
mkAdv = overload SyntaxNno {
|
||||
mkAdv : Str -> Adv = P.mkAdv ;
|
||||
} ;
|
||||
|
||||
mkAdN = overload {
|
||||
mkAdN : CAdv -> AdN = SyntaxNno.mkAdN ;
|
||||
mkAdN : Str -> AdN = P.mkAdN ;
|
||||
} ;
|
||||
|
||||
}
|
||||
resource TryNno = SyntaxNno, LexiconNno, ParadigmsNno - [mkAdv] ;
|
||||
|
||||
@@ -1,16 +1,3 @@
|
||||
--# -path=.:../norwegian:../scandinavian:../common:../abstract:../prelude
|
||||
|
||||
resource TryNor = SyntaxNor-[mkAdN], LexiconNor, ParadigmsNor - [mkAdv,mkAdN] **
|
||||
open (P = ParadigmsNor) in {
|
||||
|
||||
oper
|
||||
mkAdv = overload SyntaxNor {
|
||||
mkAdv : Str -> Adv = P.mkAdv ;
|
||||
} ;
|
||||
|
||||
mkAdN = overload {
|
||||
mkAdN : CAdv -> AdN = SyntaxNor.mkAdN ;
|
||||
mkAdN : Str -> AdN = P.mkAdN ;
|
||||
} ;
|
||||
|
||||
}
|
||||
resource TryNor = SyntaxNor, LexiconNor, ParadigmsNor - [mkAdv] ;
|
||||
|
||||
@@ -54,7 +54,7 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in {
|
||||
Card = ResAra.NumOrdCard ;
|
||||
Predet = ResAra.Predet ;
|
||||
|
||||
DAP, Det = ResAra.Det ;
|
||||
Det = ResAra.Det ;
|
||||
-- {s : Species => Gender => Case => Str ;
|
||||
-- d : State; n : Size; isNum : Bool } ;
|
||||
Quant = ResAra.Quant ;
|
||||
@@ -67,8 +67,6 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in {
|
||||
n : Size } ;
|
||||
Digits = {s : Str;
|
||||
n : Size};
|
||||
Decimal = {s : Str;
|
||||
n : Size; hasDot : Bool};
|
||||
|
||||
-- Structural
|
||||
|
||||
@@ -92,8 +90,7 @@ concrete CatAra of Cat = CommonX - [Utt] ** open ResAra, Prelude, ParamX in {
|
||||
N = ResAra.Noun ;
|
||||
N2 = ResAra.Noun2 ;
|
||||
N3 = ResAra.Noun3 ;
|
||||
GN, SN, PN = {s : Case => Str; g : Gender; h : Species} ;
|
||||
LN = ResAra.NP ;
|
||||
PN = {s : Case => Str; g : Gender; h : Species} ;
|
||||
|
||||
linref
|
||||
|
||||
|
||||
@@ -1,270 +0,0 @@
|
||||
--# -path=.:../abstract:../common
|
||||
|
||||
-- documenting Arabic inflection
|
||||
---- so far with English titles and tags, AR 2024-01-31
|
||||
|
||||
concrete DocumentationAra of Documentation = CatAra ** open
|
||||
ResAra,
|
||||
Prelude,
|
||||
HTML in {
|
||||
|
||||
lincat
|
||||
Inflection = {t : Str; s1,s2 : Str} ;
|
||||
Definition = {s : Str} ;
|
||||
Document = {s : Str} ;
|
||||
Tag = {s : Str} ;
|
||||
|
||||
lin
|
||||
InflectionN, InflectionN2, InflectionN3 = \noun -> {
|
||||
t = "n" ;
|
||||
s1 = heading1 ("Noun" ++ case noun.g of {
|
||||
Masc => "(masculine)";
|
||||
Fem => "(feminine)"
|
||||
}) ;
|
||||
s2 = frameTable (
|
||||
tr (th "" ++ th "nominative" ++ th "genitive" ++ th "accusative") ++
|
||||
tr (th "singular" ++ td (noun.s ! Sg ! Indef ! Nom) ++ td (noun.s ! Sg ! Indef ! Gen) ++
|
||||
td (noun.s ! Sg ! Indef ! Acc)) ++
|
||||
tr (th "dual" ++ td (noun.s ! Dl ! Indef ! Nom) ++ td (noun.s ! Dl ! Indef ! Gen) ++
|
||||
td (noun.s ! Dl ! Indef ! Acc)) ++
|
||||
tr (th "plural" ++ td (noun.s ! Pl ! Indef ! Nom) ++ td (noun.s ! Pl ! Indef ! Gen) ++
|
||||
td (noun.s ! Pl ! Indef ! Acc))
|
||||
)
|
||||
} ;
|
||||
|
||||
InflectionPN, InflectionGN, InflectionSN = \pn -> { ---- TODO: special for LN, GN, SN
|
||||
t = "pn" ;
|
||||
s1 = heading1 ("Proper Name" ++
|
||||
case pn.g of {
|
||||
Masc => "(masculine)";
|
||||
Fem => "(feminine)"
|
||||
}) ;
|
||||
s2 = frameTable (
|
||||
tr (th "nominative" ++ th "genitive" ++ th "accusative") ++
|
||||
tr (td (pn.s ! Nom) ++ td (pn.s ! Gen) ++ td (pn.s ! Acc))
|
||||
)
|
||||
} ;
|
||||
|
||||
InflectionA, InflectionA2 = \adj -> {
|
||||
t = "a" ;
|
||||
s1 = heading1 "Adjective" ;
|
||||
s2 = frameTable (
|
||||
tr (th "" ++ th "Nominative" ++ th "Genitive" ++ th "Accusative") ++
|
||||
tr (th "Positive Masculine Singular" ++
|
||||
td (adj.s ! APosit Masc Sg Indef Nom) ++
|
||||
td (adj.s ! APosit Masc Sg Indef Gen) ++
|
||||
td (adj.s ! APosit Masc Sg Indef Acc)
|
||||
) ++
|
||||
tr (th "Positive Masculine Dual" ++
|
||||
td (adj.s ! APosit Masc Dl Indef Nom) ++
|
||||
td (adj.s ! APosit Masc Dl Indef Gen) ++
|
||||
td (adj.s ! APosit Masc Dl Indef Acc)
|
||||
) ++
|
||||
tr (th "Positive Masculine Plural" ++
|
||||
td (adj.s ! APosit Masc Pl Indef Nom) ++
|
||||
td (adj.s ! APosit Masc Pl Indef Gen) ++
|
||||
td (adj.s ! APosit Masc Pl Indef Acc)
|
||||
) ++
|
||||
tr (th "Positive Feminine Singular" ++
|
||||
td (adj.s ! APosit Fem Sg Indef Nom) ++
|
||||
td (adj.s ! APosit Fem Sg Indef Gen) ++
|
||||
td (adj.s ! APosit Fem Sg Indef Acc)
|
||||
) ++
|
||||
tr (th "Positive Feminine Dual" ++
|
||||
td (adj.s ! APosit Fem Dl Indef Nom) ++
|
||||
td (adj.s ! APosit Fem Dl Indef Gen) ++
|
||||
td (adj.s ! APosit Fem Dl Indef Acc)
|
||||
) ++
|
||||
tr (th "Positive Feminine Plural" ++
|
||||
td (adj.s ! APosit Fem Pl Indef Nom) ++
|
||||
td (adj.s ! APosit Fem Pl Indef Gen) ++
|
||||
td (adj.s ! APosit Fem Pl Indef Acc)
|
||||
) ++
|
||||
tr (th "Comparative" ++
|
||||
td (adj.s ! AComp Indef Nom) ++
|
||||
td (adj.s ! AComp Indef Gen) ++
|
||||
td (adj.s ! AComp Indef Acc)
|
||||
)
|
||||
)
|
||||
} ;
|
||||
|
||||
InflectionAdv, InflectionAdV, InflectionAdA, InflectionAdN = \adv -> {
|
||||
t = "adv" ;
|
||||
s1= heading1 "Adverb" ;
|
||||
s2= paragraph (adv.s) ;
|
||||
s3= ""
|
||||
} ;
|
||||
|
||||
InflectionPrep = \prep -> {
|
||||
t = "prep" ;
|
||||
s1= heading1 "Preposition" ;
|
||||
s2= paragraph (prep.s) ;
|
||||
s3= ""
|
||||
} ;
|
||||
|
||||
InflectionV,
|
||||
InflectionV3, InflectionV2A, InflectionV2Q, InflectionV2S, InflectionV2V, InflectionVA, InflectionVQ, InflectionVS, InflectionVV ----
|
||||
= \v -> {
|
||||
t = "v" ;
|
||||
s1= heading1 "Verb" ++
|
||||
paragraph (v.s ! (VPerf Act (Per3 Masc Sg)) ++
|
||||
pp "subject");
|
||||
s2= inflVerb v
|
||||
} ;
|
||||
|
||||
InflectionV2 v = {
|
||||
t = "v" ;
|
||||
s1= heading1 "Verb" ++
|
||||
paragraph (v.s ! (VPerf Act (Per3 Masc Sg)) ++
|
||||
pp "subject" ++
|
||||
pp "object") ;
|
||||
s2= inflVerb v
|
||||
} ;
|
||||
{-
|
||||
InflectionV3 v = {
|
||||
t = "v" ;
|
||||
s1= heading1 "Verb" ++
|
||||
paragraph (pp "subject" ++
|
||||
v.s ! VInf ++ v.p ++
|
||||
v.c2 ++ pp "arg1" ++
|
||||
v.c3 ++ pp "arg2") ;
|
||||
s2= inflVerb v
|
||||
} ;
|
||||
|
||||
InflectionV2V v = {
|
||||
t = "v" ;
|
||||
s1= heading1 "Verb" ++
|
||||
paragraph (pp "subject" ++
|
||||
v.s ! VInf ++ v.p ++
|
||||
v.c2 ++ pp "object" ++
|
||||
v.c3 ++ case v.typ of {
|
||||
VVAux => pp "verb" ;
|
||||
VVInf => "to" ++ pp "verb" ;
|
||||
VVPresPart => pp "verb+ing"
|
||||
}) ;
|
||||
s2= inflVerb v
|
||||
} ;
|
||||
|
||||
InflectionV2S v = {
|
||||
t = "v" ;
|
||||
s1= heading1 "Verb" ++
|
||||
paragraph (pp "subject" ++
|
||||
v.s ! VInf ++ v.p ++
|
||||
v.c2 ++ pp "object" ++
|
||||
"that" ++ pp "sentence") ;
|
||||
s2= inflVerb v
|
||||
} ;
|
||||
|
||||
InflectionV2Q v = {
|
||||
t = "v" ;
|
||||
s1= heading1 "Verb" ++
|
||||
paragraph (pp "subject" ++
|
||||
v.s ! VInf ++ v.p ++
|
||||
pp "question") ;
|
||||
s2= inflVerb v
|
||||
} ;
|
||||
|
||||
InflectionV2A v = {
|
||||
t = "v" ;
|
||||
s1= heading1 "Verb" ++
|
||||
paragraph (pp "subject" ++
|
||||
v.s ! VInf ++ v.p ++
|
||||
v.c2 ++ pp "object" ++
|
||||
pp "adjective") ;
|
||||
s2= inflVerb v
|
||||
} ;
|
||||
|
||||
InflectionVV v = {
|
||||
t = "v" ;
|
||||
s1= heading1 "Verb" ++
|
||||
paragraph (pp "subject" ++
|
||||
v.s ! VVF VInf ++ v.p ++
|
||||
case v.typ of {
|
||||
VVAux => pp "verb" ;
|
||||
VVInf => "to" ++ pp "verb" ;
|
||||
VVPresPart => pp "verb+ing"
|
||||
}) ;
|
||||
s2= frameTable (
|
||||
tr (th "infitive" ++ td (v.s ! VVF VInf)) ++
|
||||
tr (th "present" ++ td (v.s ! VVF VPres ++ " " ++ v.s ! VVPresNeg)) ++
|
||||
tr (th "past" ++ td (v.s ! VVF VPast ++ " " ++ v.s ! VVPastNeg)) ++ --# notpresent
|
||||
tr (th "past part." ++ td (v.s ! VVF VPPart)) ++
|
||||
tr (th "present part." ++ td (v.s ! VVF VPresPart))
|
||||
)
|
||||
} ;
|
||||
|
||||
InflectionVS v = {
|
||||
t = "v" ;
|
||||
s1= heading1 "Verb" ++
|
||||
paragraph (pp "subject" ++
|
||||
v.s ! VInf ++ v.p ++
|
||||
"that" ++ pp "sentence") ;
|
||||
s2= inflVerb v
|
||||
} ;
|
||||
|
||||
InflectionVQ v = {
|
||||
t = "v" ;
|
||||
s1= heading1 "Verb" ++
|
||||
paragraph (pp "subject" ++
|
||||
v.s ! VInf ++ v.p ++
|
||||
pp "question") ;
|
||||
s2= inflVerb v
|
||||
} ;
|
||||
|
||||
InflectionVA v = {
|
||||
t = "v" ;
|
||||
s1= heading1 "Verb" ++
|
||||
paragraph (pp "subject" ++
|
||||
v.s ! VInf ++ v.p ++
|
||||
pp "adjective") ;
|
||||
s2= inflVerb v
|
||||
} ;
|
||||
-}
|
||||
|
||||
oper
|
||||
inflVerb : Verb -> Str = \verb ->
|
||||
frameTable (
|
||||
tr (th "Active" ++ th "Perfect" ++ th "Imperfect Indicative" ++ th "Conjunctive" ++ th "Jussive" ++ th "Imperative") ++
|
||||
inflVerbRow "3 Masculine Singular" (Per3 Masc Sg) verb ++
|
||||
inflVerbRow "3 Feminine Singular" (Per3 Fem Sg) verb ++
|
||||
inflVerbRow "2 Masculine Singular" (Per2 Masc Sg) verb ++
|
||||
inflVerbRow "2 Feminine Singular" (Per2 Fem Sg) verb ++
|
||||
inflVerbRow "1 Singular" (Per1 Sing) verb ++
|
||||
inflVerbRow "3 Masculine Dual" (Per3 Masc Dl) verb ++
|
||||
inflVerbRow "3 Feminine Dual" (Per3 Fem Dl) verb ++
|
||||
inflVerbRow "2 Dual" (Per2 Masc Dl) verb ++
|
||||
inflVerbRow "3 Masculine Plural" (Per3 Masc Pl) verb ++
|
||||
inflVerbRow "3 Feminine Plural" (Per3 Fem Pl) verb ++
|
||||
inflVerbRow "2 Masculine Plural" (Per2 Masc Pl) verb ++
|
||||
inflVerbRow "2 Feminine Plural" (Per2 Fem Pl) verb ++
|
||||
inflVerbRow "1 Plural" (Per1 Plur) verb
|
||||
) ;
|
||||
|
||||
inflVerbRow : (h : Str) -> (pgn : PerGenNum) -> (verb : Verb) -> Str = \h, pgn, verb ->
|
||||
tr (th h ++
|
||||
td (verb.s ! (VPerf Act pgn)) ++
|
||||
td (verb.s ! (VImpf Ind Act pgn)) ++
|
||||
td (verb.s ! (VImpf Cnj Act pgn)) ++
|
||||
td (verb.s ! (VImpf Jus Act pgn)) ++
|
||||
td (imperativeForm pgn verb)
|
||||
) ;
|
||||
|
||||
imperativeForm : PerGenNum -> Verb -> Str = \pgn, verb ->
|
||||
case pgn of {
|
||||
Per2 g n => verb.s ! VImp g n ;
|
||||
_ => "-"
|
||||
} ;
|
||||
|
||||
|
||||
pp : Str -> Str = \s -> "<"+s+">";
|
||||
|
||||
lin
|
||||
NoDefinition t = {s=t.s};
|
||||
MkDefinition t d = {s="<p><b>Definition:</b>"++t.s++d.s++"</p>"};
|
||||
MkDefinitionEx t d e = {s="<p><b>Definition:</b>"++t.s++d.s++"</p><p><b>Example:</b>"++e.s++"</p>"};
|
||||
|
||||
lin
|
||||
MkDocument d i e = {s = i.s1 ++ d.s ++ i.s2 ++ paragraph e.s} ;
|
||||
MkTag i = {s = i.t} ;
|
||||
|
||||
}
|
||||
@@ -6,9 +6,7 @@ concrete ExtendAra of Extend =
|
||||
EmptyRelSlash, PredAPVP,
|
||||
ComplDirectVS, ComplDirectVQ, -- because of Utt
|
||||
VPS, MkVPS, PredVPS, BaseVPS, ConsVPS, ConjVPS,
|
||||
EmbedSSlash, AdjAsNP, GerundNP,
|
||||
PassVPSlash, ---- bogus implementation, see below
|
||||
CompoundN, UseDAP, UseDAPMasc, UseDAPFem
|
||||
EmbedSSlash, AdjAsNP, GerundNP
|
||||
]
|
||||
with (Grammar=GrammarAra)
|
||||
** open
|
||||
@@ -93,43 +91,4 @@ lin
|
||||
s = \\_ => np.s ! Nom ++ vps.s ! np.a.pgn -- first quick version with order always Nominal.
|
||||
} ; -- if necessary, change VPS into {s : PerGenNum => Order => {before,after : Str}}
|
||||
|
||||
|
||||
-- AR 24-02-08
|
||||
PassVPSlash vpslash = vpslash ** {s = \\pgn, vpf => vpslash.s ! pgn ! vpf} ;
|
||||
---- vpf does not have passive forms left,
|
||||
---- so this function is not possible with the current lincat of VP and VPSlash
|
||||
|
||||
---- very unsure about this as well
|
||||
CompoundN a b = b ** {
|
||||
s = \\n, s, c => b.s ! n ! Const ! c ++ a.s ! n ! s ! c ;
|
||||
s2 = \\n, s, c => b.s2 ! n ! Const ! c ++ a.s2 ! n ! s ! c
|
||||
} ;
|
||||
|
||||
lin UseDAP dap = case dap.isEmpty of {
|
||||
True => case <dap.d,dap.n> of { -- if the s field is empty, make up some other determiner
|
||||
<Def,One> => it_Pron ;
|
||||
<Def,_> => they_Pron ;
|
||||
<Indef,One> => emptyNP ** {s = someSg_Det.s ! NoHum ! Masc} ;
|
||||
_ => emptyNP ** {s = somePl_Det.s ! NoHum ! Masc}
|
||||
} ;
|
||||
False => emptyNP ** {s = dap.s ! NoHum ! Masc} } ;
|
||||
|
||||
lin UseDAPMasc dap = case dap.isEmpty of {
|
||||
True => case <dap.d,dap.n> of { -- if the s field is empty, make up some other determiner
|
||||
<Def,One> => it_Pron ;
|
||||
<Def,_> => theyMasc_Pron ;
|
||||
<Indef,One> => emptyNP ** {s = someSg_Det.s ! NoHum ! Masc} ;
|
||||
_ => emptyNP ** {s = somePl_Det.s ! NoHum ! Masc}
|
||||
} ;
|
||||
False => emptyNP ** {s = dap.s ! NoHum ! Masc} } ;
|
||||
|
||||
lin UseDAPFem dap = case dap.isEmpty of {
|
||||
True => case <dap.d,dap.n> of { -- if the s field is empty, make up some other determiner
|
||||
<Def,One> => it_Pron ;
|
||||
<Def,_> => theyFem_Pron ;
|
||||
<Indef,One> => emptyNP ** {s = someSg_Det.s ! NoHum ! Fem} ;
|
||||
_ => emptyNP ** {s = somePl_Det.s ! NoHum ! Fem}
|
||||
} ;
|
||||
False => emptyNP ** {s = dap.s ! NoHum ! Fem} } ;
|
||||
|
||||
}
|
||||
|
||||
@@ -14,8 +14,7 @@ concrete GrammarAra of Grammar =
|
||||
TextX - [Utt],
|
||||
StructuralAra,
|
||||
IdiomAra,
|
||||
TenseX - [Utt],
|
||||
NamesAra
|
||||
TenseX - [Utt]
|
||||
** {
|
||||
|
||||
flags startcat = Phr ; unlexer = text ; lexer = text ;
|
||||
|
||||
@@ -3,8 +3,7 @@
|
||||
concrete LangAra of Lang =
|
||||
GrammarAra,
|
||||
LexiconAra,
|
||||
ConstructionAra,
|
||||
DocumentationAra
|
||||
ConstructionAra
|
||||
** {
|
||||
|
||||
flags startcat = Phr ; unlexer = text ; lexer = text ; coding = utf8 ;
|
||||
|
||||
@@ -153,8 +153,7 @@ oper
|
||||
w + "ف" + x + "ع" + y + "ل" + z
|
||||
=> { h = w ; m1 = x; m2 = y; t = z} ;
|
||||
w + "ف" + x + ("ع"|"ل") + y
|
||||
=> { h = w ; m1 = x; m2 = ""; t = y} ;
|
||||
_ => Predef.error("cannot get FCL pattern from" ++ pat)
|
||||
=> { h = w ; m1 = x; m2 = ""; t = y}
|
||||
} ;
|
||||
|
||||
--opers to interdigitize (make words out of roots and patterns:
|
||||
@@ -205,8 +204,7 @@ oper
|
||||
=> mkAssimilated pat (mkRoot3 rS) ;
|
||||
? + ? + _ => mkBilit pat (mkRoot2 rS) ; --2=>
|
||||
_=> error rS ---- AR error "expected 3--6"
|
||||
} ;
|
||||
_ => Predef.error("cannot get FCL pattern from" ++ pS)
|
||||
}
|
||||
};
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
@@ -491,28 +489,6 @@ oper
|
||||
AComp d c => indeclN aHmar ! d ! c
|
||||
};
|
||||
|
||||
-- NTable = Number => State => Case => Str;
|
||||
-- Adj : Type = {s : AForm => Str} ;
|
||||
-- AForm = APosit Gender Number State Case | AComp State Case ;
|
||||
|
||||
ntablesAdj : (masc, fem, comp : NTable) -> Adj = \masc, fem, comp -> {
|
||||
s = table {
|
||||
APosit Masc n d c => masc ! n ! d ! c ;
|
||||
APosit Fem n d c => fem ! n ! d ! c ;
|
||||
AComp d c => comp ! Sg ! d ! c
|
||||
}
|
||||
} ;
|
||||
|
||||
mascFemCompAdj : (kabir, kabira, akbar : Str) -> Adj =
|
||||
\kabir, kabira, akbar ->
|
||||
ntablesAdj (positAdj kabir ! Masc) (positAdj kabir ! Fem) (positAdj akbar ! Masc) ;
|
||||
|
||||
mascFemAdj : (kabir, kabira : Str) -> Adj = \kabir, kabira ->
|
||||
mascFemCompAdj kabir kabira kabir ; ---- comp
|
||||
|
||||
mascAdj : (kabir : Str) -> Adj = \kabir ->
|
||||
mascFemAdj kabir (kabir + "َة") ;
|
||||
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
-----------------------------------------------------------------------------
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
concrete NamesAra of Names = CatAra ** open ResAra, Prelude, (N=NounAra), (A=AdverbAra), (S=StructuralAra) in {
|
||||
|
||||
lin GivenName, MaleSurname, FemaleSurname, PlSurname = \n -> emptyNP ** {
|
||||
s = n.s ;
|
||||
a = {pgn = Per3 n.g Sg ; isPron = False} ;
|
||||
} ;
|
||||
lin FullName gn sn = emptyNP ** {
|
||||
s = \\c => gn.s ! c ++ sn.s ! c ;
|
||||
a = {pgn = Per3 gn.g Sg ; isPron = False} ;
|
||||
} ;
|
||||
|
||||
lin UseLN ln = ln ;
|
||||
|
||||
lin PlainLN ln = ln ;
|
||||
|
||||
lin InLN n = A.PrepNP S.in_Prep n ; ---- TODO: alternative prepositions
|
||||
|
||||
}
|
||||
@@ -130,10 +130,6 @@ lin
|
||||
s = \\_,_,_ => digits.s ;
|
||||
isNum = True
|
||||
};
|
||||
NumDecimal dec = dec ** {
|
||||
s = \\_,_,_ => dec.s ;
|
||||
isNum = True
|
||||
};
|
||||
|
||||
NumNumeral numeral = numeral ** {
|
||||
s = numeral.s ! NCard ;
|
||||
@@ -237,11 +233,6 @@ lin
|
||||
}
|
||||
};
|
||||
|
||||
DetDAP d = d ;
|
||||
|
||||
QuantityNP n m = emptyNP ** {
|
||||
s = \\c => preOrPost m.isPre m.s n.s ;
|
||||
a = { pgn = agrP3 NoHum Masc (sizeToNumber n.n);
|
||||
isPron = False }
|
||||
};
|
||||
-- : CN -> NP -> CN ; -- glass of wine
|
||||
--PartNP
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
concrete NumeralAra of Numeral = CatAra [Numeral,Digits,Decimal] **
|
||||
concrete NumeralAra of Numeral = CatAra [Numeral,Digits] **
|
||||
open Predef, Prelude, ResAra, MorphoAra in {
|
||||
|
||||
flags coding=utf8 ;
|
||||
@@ -9,10 +9,15 @@ lincat
|
||||
n : Size } ;
|
||||
Sub10 = {s : DForm => CardOrd => Gender => State => Case => Str ;
|
||||
n : Size } ;
|
||||
Sub100, Sub1000, Sub1000000, Sub1000000000, Sub1000000000000
|
||||
= {s : CardOrd => Gender => State => Case => Str ;
|
||||
Sub100 = {s : CardOrd => Gender => State => Case => Str ;
|
||||
n : Size} ;
|
||||
Sub1000 = {s : CardOrd => Gender => State => Case => Str ;
|
||||
n : Size } ;
|
||||
Sub1000000 = {s : CardOrd => Gender => State => Case => Str ;
|
||||
n : Size} ;
|
||||
|
||||
|
||||
|
||||
lin num x = x ;
|
||||
|
||||
lin n2 = num2 ** {n = Two };
|
||||
@@ -104,9 +109,6 @@ lincat
|
||||
--lin pot3plus n m = {
|
||||
-- s = \\c => n.s ! NCard ++ "تهُْسَند" ++ m.s ! c ; n = Pl} ;
|
||||
|
||||
lin pot3as4 n = n ;
|
||||
lin pot4as5 n = n ;
|
||||
|
||||
-- numerals as sequences of digits
|
||||
|
||||
lincat
|
||||
@@ -134,20 +136,6 @@ lin pot4as5 n = n ;
|
||||
D_8 = mk1Dig "8" ;
|
||||
D_9 = mk1Dig "9" ;
|
||||
|
||||
PosDecimal d = d ** {hasDot=False} ;
|
||||
NegDecimal d = {
|
||||
s = "-" ++ BIND ++ d.s;
|
||||
n = ThreeTen ;
|
||||
hasDot=False
|
||||
} ;
|
||||
IFrac d i = {
|
||||
s = d.s ++
|
||||
if_then_Str d.hasDot BIND (BIND++"."++BIND) ++
|
||||
i.s ;
|
||||
n = ThreeTen ;
|
||||
hasDot=True
|
||||
} ;
|
||||
|
||||
oper
|
||||
|
||||
|
||||
|
||||
@@ -30,7 +30,6 @@ resource ParadigmsAra = open
|
||||
ResAra,
|
||||
OrthoAra,
|
||||
(A=AdjectiveAra),
|
||||
(N=NounAra),
|
||||
CatAra
|
||||
in {
|
||||
|
||||
@@ -96,21 +95,6 @@ resource ParadigmsAra = open
|
||||
= mkFullPN ;
|
||||
} ;
|
||||
|
||||
mkLN = overload {
|
||||
mkLN : Str -> LN -- Predictable LN from a Str: fem hum if ends in ة, otherwise masc hum.
|
||||
= \s -> lin LN (N.UsePN (smartPN s)) ;
|
||||
mkLN : Str -> Gender -> LN
|
||||
= \s, g -> lin LN (N.UsePN (smartPN s ** {g = g})) ;
|
||||
mkLN : N -> LN -- Make a LN out of N. The LN is in construct state.
|
||||
= \n -> lin LN (N.MassNP (N.UseN n)) ;
|
||||
----(n ** { ---- cannot get this to compile AR 2024-04-18
|
||||
---- s = \\c => n.s ! Sg ! Const ! c
|
||||
---- ++ n.s2 ! Sg ! Def ! c -- NB this hack works for idaafa constructions (if you used mkN : N -> N -> N), but wrong for mkN : N -> A -> N. /IL
|
||||
---- }))) ;
|
||||
mkLN : NP -> LN
|
||||
= \np -> np ;
|
||||
} ;
|
||||
|
||||
--3 Relational nouns
|
||||
|
||||
mkN2 : overload {
|
||||
@@ -144,13 +128,6 @@ resource ParadigmsAra = open
|
||||
= \s,a -> a ** {s = table {af => s ++ a.s ! af}}
|
||||
} ;
|
||||
|
||||
mascA : (kabir : Str) -> A
|
||||
= \kabir -> lin A (mascAdj kabir) ;
|
||||
mascFemA : (kabir, kabira : Str) -> A
|
||||
= \kabir, kabira -> lin A (mascFemAdj kabir kabira) ;
|
||||
mascFemCompA : (kabir, kabira, akbar : Str) -> A
|
||||
= \kabir, kabira, akbar -> lin A (mascFemCompAdj kabir kabira akbar) ;
|
||||
|
||||
nisbaA : Str -> Adj ; -- Forms relative adjectives with the suffix ِيّ. Takes either the stem and adds يّ, or the whole word ending in يّ and just adds declension.
|
||||
|
||||
idaafaA : N -> A -> A ; -- Forms adjectives of type غَيْرُ طَيِّبٍ 'not good'. Noun is in construct state but inflects in case. Adjective is in genitive, but inflects in gender, number and state.
|
||||
@@ -212,10 +189,6 @@ resource ParadigmsAra = open
|
||||
mkConj : Str -> Str -> Number -> Conj ; -- either, or, sg
|
||||
} ;
|
||||
|
||||
--2 Measurement Units
|
||||
|
||||
mkMU : Str -> MU = \s -> lin MU {s=s; isPre=False} ;
|
||||
|
||||
--2 Verbs
|
||||
|
||||
-- Overloaded operations
|
||||
@@ -742,15 +715,6 @@ resource ParadigmsAra = open
|
||||
}
|
||||
};
|
||||
|
||||
commonA : (pos, comp : Str) -> Adj =
|
||||
\kabIr, akbar ->
|
||||
{
|
||||
s = table {
|
||||
APosit g n d c => positAdj kabIr ! g ! n ! d ! c ;
|
||||
AComp d c => indeclN akbar ! d ! c
|
||||
}
|
||||
};
|
||||
|
||||
irregFemA : (masc : A) -> (fem : A) -> A = \m,f -> m ** {
|
||||
s = table {
|
||||
APosit Masc n d c => m.s ! APosit Masc n d c ;
|
||||
@@ -904,99 +868,4 @@ formV : (root : Str) -> VerbForm -> V = \s,f -> case f of {
|
||||
param VerbForm =
|
||||
FormI | FormII | FormIII | FormIV | FormV | FormVI | FormVII | FormVIII | FormX | FormXI ;
|
||||
|
||||
|
||||
|
||||
-- paradigms for Wiktionary extraction
|
||||
---- TODO: better usage of information in Wiktionary
|
||||
|
||||
oper
|
||||
wmkN = overload {
|
||||
wmkN : {sg, pl : Str ; g : Gender} -> N
|
||||
= \r -> mkN r.sg r.pl r.g nohum ; --- hum/nohum not in Wikt
|
||||
wmkN : {sg : Str} -> N
|
||||
= \r -> smartN r.sg ;
|
||||
wmkN : {sg : Str ; g : Gender ; root : Str} -> N
|
||||
= \r -> smartN r.sg ** {g = r.g} ; ----
|
||||
wmkN : {sg : Str; g : Gender} -> N
|
||||
= \r -> smartN r.sg ** {g = r.g} ;
|
||||
wmkN : {sg : Str; pl : Str; g : Gender; root : Str} -> N
|
||||
= \r -> mkN r.sg r.pl r.g nohum ; --- hum/nohum not in Wikt
|
||||
wmkN : {sg : Str; pl : Str} -> N
|
||||
= \r -> mkN r.sg r.pl masc nohum ; ---- ** {g = (smartN r.sg).g} ;
|
||||
wmkN : {sg, pl : Str ; root : Str} -> N
|
||||
= \r -> mkN r.sg r.pl masc nohum ; ----
|
||||
wmkN : {sg : Str; root : Str} -> N
|
||||
= \r -> smartN r.sg ;
|
||||
} ;
|
||||
|
||||
wmkA = overload {
|
||||
wmkA : {root : Str} -> A
|
||||
= \r -> mkA r.root ;
|
||||
wmkA : {masc_sg : Str; fem_pl : Str; root : Str} -> A
|
||||
= \r -> mkA r.root ;
|
||||
wmkA : {masc_sg : Str; fem_sg : Str; fem_pl : Str; root : Str} -> A
|
||||
= \r -> mkA r.root ;
|
||||
wmkA : {masc_sg, fem_sg, masc_pl, fem_pl, root, sg_patt, pl_patt : Str} -> A
|
||||
= \r -> mkA r.root r.sg_patt r.pl_patt ;
|
||||
wmkA : {masc_sg, fem_sg, masc_pl, root, sg_patt, pl_patt : Str} -> A
|
||||
= \r -> mkA r.root r.sg_patt r.pl_patt ;
|
||||
wmkA : {fem_pl : Str; fem_sg : Str; masc_sg : Str; root : Str; sg_patt : Str} -> A
|
||||
= \r -> mkA r.root r.sg_patt ;
|
||||
wmkA : {fem_pl : Str; fem_sg : Str; masc_sg, masc_pl, root, sg_patt : Str} -> A
|
||||
= \r -> mkA r.root r.sg_patt ;
|
||||
wmkA : {masc_sg, root, sg_patt : Str} -> A
|
||||
= \r -> mkA r.root r.sg_patt ;
|
||||
wmkA : {masc_sg, masc_pl, root, sg_patt : Str} -> A
|
||||
= \r -> mkA r.root r.sg_patt ;
|
||||
wmkA : {masc_sg, fem_sg, masc_pl, fem_pl, root, pl_patt : Str} -> A
|
||||
= \r -> mascFemAdj r.masc_sg r.fem_sg ;
|
||||
wmkA : {masc_sg, fem_sg, masc_pl, fem_pl, root : Str} -> A
|
||||
= \r -> mascFemAdj r.masc_sg r.fem_sg ;
|
||||
wmkA : {masc_sg, fem_sg, root : Str} -> A
|
||||
= \r -> mkA r.root ; ----
|
||||
wmkA : {masc_sg, fem_sg, masc_pl, fem_pl, pl_patt : Str} -> A
|
||||
= \r -> mascFemAdj r.masc_sg r.fem_sg ;
|
||||
wmkA : {masc_sg : Str; fem_sg : Str; fem_pl : Str} -> A
|
||||
= \r -> mascFemAdj r.masc_sg r.fem_sg ;
|
||||
wmkA : {masc_sg : Str; fem_sg : Str; root : Str ; sg_patt : Str} -> A
|
||||
= \r -> mkA r.root r.sg_patt ;
|
||||
wmkA : {masc_sg : Str; fem_sg : Str} -> A
|
||||
= \r -> mascFemAdj r.masc_sg r.fem_sg ;
|
||||
wmkA : {masc_sg : Str; masc_pl : Str; fem_sg : Str; fem_pl : Str} -> A
|
||||
= \r -> mascFemAdj r.masc_sg r.fem_sg ;
|
||||
wmkA : {masc_sg : Str; masc_pl : Str; fem_sg : Str; root : Str} -> A
|
||||
= \r -> mkA r.root ;
|
||||
wmkA : {masc_sg : Str; masc_pl : Str; fem_sg : Str} -> A
|
||||
= \r -> mascFemAdj r.masc_sg r.fem_sg ;
|
||||
wmkA : {masc_sg : Str; masc_pl : Str; root : Str} -> A
|
||||
= \r -> mkA r.root ;
|
||||
wmkA : {masc_sg : Str; masc_pl, pl_patt : Str; root : Str} -> A
|
||||
= \r -> mkA r.root ;
|
||||
wmkA : {masc_sg : Str; masc_pl, pl_patt, sg_patt : Str; root : Str} -> A
|
||||
= \r -> mkA r.sg_patt r.pl_patt ;
|
||||
wmkA : {masc_sg : Str; masc_pl : Str} -> A
|
||||
= \r -> mascA r.masc_sg ; ----
|
||||
wmkA : {masc_sg : Str; masc_pl, pl_patt : Str} -> A
|
||||
= \r -> mascA r.masc_sg ; ----
|
||||
wmkA : {masc_sg : Str; root : Str} -> A
|
||||
= \r -> mkA r.root ;
|
||||
wmkA : {masc_sg : Str} -> A
|
||||
= \r -> mascA r.masc_sg ; ----
|
||||
} ;
|
||||
|
||||
wmkV = overload {
|
||||
wmkV : {perfect : Str; cls : VerbForm; root : Str} -> V
|
||||
= \r -> mkV r.root r.cls ; ----
|
||||
wmkV : {perfect : Str; cls : VerbForm} -> V
|
||||
= \r -> mkV r.perfect r.cls ; ---- expects root
|
||||
wmkV : {perfect : Str; imperfect : Str; cls : VerbForm; root : Str} -> V
|
||||
= \r -> mkV r.root r.cls ; ----
|
||||
wmkV : {perfect : Str; imperfect : Str; cls : VerbForm} -> V
|
||||
= \r -> mkV r.perfect r.cls ; ---- expects root
|
||||
wmkV : {root : Str ; cls : VerbForm} -> V
|
||||
= \r -> mkV r.root r.cls ;
|
||||
wmkV : {imperfect : Str} -> V
|
||||
= \r -> variants {} ; ---- mkV r.imperfect ; -- expects cls I
|
||||
} ;
|
||||
|
||||
} ;
|
||||
|
||||
@@ -71,5 +71,4 @@ concrete SentenceAra of Sentence = CatAra ** open
|
||||
UseSlash t p cls = UseCl t p (complClSlash cls) ;
|
||||
|
||||
AdvS adv s = s ** {s = \\o => adv.s ++ s.s ! o} ;
|
||||
ExtAdvS adv s = s ** {s = \\o => adv.s ++ s.s ! o} ;
|
||||
}
|
||||
|
||||
@@ -130,6 +130,6 @@ concrete VerbAra of Verb = CatAra ** open Prelude, ResAra, ParamX in {
|
||||
CompNP np = {s = \\_,_ => [] ;
|
||||
obj = {s = np.s ! Nom ; a = agrLite np.a} ;
|
||||
isNP = True} ;
|
||||
|
||||
--
|
||||
--
|
||||
}
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
all:
|
||||
python3 read_wiktionary.py gf-abs >MorphoDictAraAbs.gf
|
||||
python3 read_wiktionary.py gf-cnc >MorphoDictAra.gf
|
||||
python3 read_wiktionary.py gf-map >source_of_MorphoDictAra.jsonl
|
||||
gf -make MorphoDictAra.gf
|
||||
python3 read_wiktionary.py eval-funs >eval.jsonl
|
||||
python3 to_wordnet.py >next_WordNetAra.gf
|
||||
python3 read_wiktionary.py error-analysis
|
||||
@@ -1,98 +0,0 @@
|
||||
resource MoreAra = CatAra ** open ParadigmsAra in {
|
||||
|
||||
|
||||
-- temporarily moved from ParadigmsAra
|
||||
-- paradigms for Wiktionary extraction
|
||||
---- TODO: better usage of information in Wiktionary
|
||||
|
||||
oper
|
||||
wmkN = overload {
|
||||
wmkN : {sg, pl : Str ; g : Gender} -> N
|
||||
= \r -> mkN r.sg r.pl r.g nohum ; --- hum/nohum not in Wikt
|
||||
wmkN : {sg : Str} -> N
|
||||
= \r -> smartN r.sg ;
|
||||
wmkN : {sg : Str ; g : Gender ; root : Str} -> N
|
||||
= \r -> smartN r.sg ** {g = r.g} ; ----
|
||||
wmkN : {sg : Str; g : Gender} -> N
|
||||
= \r -> smartN r.sg ** {g = r.g} ;
|
||||
wmkN : {sg : Str; pl : Str; g : Gender; root : Str} -> N
|
||||
= \r -> mkN r.sg r.pl r.g nohum ; --- hum/nohum not in Wikt
|
||||
wmkN : {sg : Str; pl : Str} -> N
|
||||
= \r -> mkN r.sg r.pl masc nohum ; ---- ** {g = (smartN r.sg).g} ;
|
||||
wmkN : {sg, pl : Str ; root : Str} -> N
|
||||
= \r -> mkN r.sg r.pl masc nohum ; ----
|
||||
wmkN : {sg : Str; root : Str} -> N
|
||||
= \r -> smartN r.sg ;
|
||||
} ;
|
||||
|
||||
wmkA = overload {
|
||||
wmkA : {root : Str} -> A
|
||||
= \r -> mkA r.root ;
|
||||
wmkA : {masc_sg : Str; fem_pl : Str; root : Str} -> A
|
||||
= \r -> mkA r.root ;
|
||||
wmkA : {masc_sg : Str; fem_sg : Str; fem_pl : Str; root : Str} -> A
|
||||
= \r -> mkA r.root ;
|
||||
wmkA : {masc_sg, fem_sg, masc_pl, fem_pl, root, sg_patt, pl_patt : Str} -> A
|
||||
= \r -> mkA r.root r.sg_patt r.pl_patt ;
|
||||
wmkA : {masc_sg, fem_sg, masc_pl, root, sg_patt, pl_patt : Str} -> A
|
||||
= \r -> mkA r.root r.sg_patt r.pl_patt ;
|
||||
wmkA : {fem_pl : Str; fem_sg : Str; masc_sg : Str; root : Str; sg_patt : Str} -> A
|
||||
= \r -> mkA r.root r.sg_patt ;
|
||||
wmkA : {fem_pl : Str; fem_sg : Str; masc_sg, masc_pl, root, sg_patt : Str} -> A
|
||||
= \r -> mkA r.root r.sg_patt ;
|
||||
wmkA : {masc_sg, root, sg_patt : Str} -> A
|
||||
= \r -> mkA r.root r.sg_patt ;
|
||||
wmkA : {masc_sg, masc_pl, root, sg_patt : Str} -> A
|
||||
= \r -> mkA r.root r.sg_patt ;
|
||||
wmkA : {masc_sg, fem_sg, masc_pl, fem_pl, root, pl_patt : Str} -> A
|
||||
= \r -> mkA r.root ; ----
|
||||
wmkA : {masc_sg, fem_sg, masc_pl, fem_pl, root : Str} -> A
|
||||
= \r -> mkA r.root ; ----
|
||||
wmkA : {masc_sg, fem_sg, root : Str} -> A
|
||||
= \r -> mkA r.root ; ----
|
||||
wmkA : {masc_sg, fem_sg, masc_pl, fem_pl, pl_patt : Str} -> A
|
||||
= \r -> mkA r.masc_sg ; ----
|
||||
wmkA : {masc_sg : Str; fem_sg : Str; fem_pl : Str} -> A
|
||||
= \r -> mkA r.masc_sg ; ----
|
||||
wmkA : {masc_sg : Str; fem_sg : Str; root : Str ; sg_patt : Str} -> A
|
||||
= \r -> mkA r.root r.sg_patt ;
|
||||
wmkA : {masc_sg : Str; fem_sg : Str} -> A
|
||||
= \r -> mkA r.masc_sg ; ----
|
||||
wmkA : {masc_sg : Str; masc_pl : Str; fem_sg : Str; fem_pl : Str} -> A
|
||||
= \r -> mkA r.masc_sg ; ----
|
||||
wmkA : {masc_sg : Str; masc_pl : Str; fem_sg : Str; root : Str} -> A
|
||||
= \r -> mkA r.root ;
|
||||
wmkA : {masc_sg : Str; masc_pl : Str; fem_sg : Str} -> A
|
||||
= \r -> mkA r.masc_sg ; ----
|
||||
wmkA : {masc_sg : Str; masc_pl : Str; root : Str} -> A
|
||||
= \r -> mkA r.root ;
|
||||
wmkA : {masc_sg : Str; masc_pl, pl_patt : Str; root : Str} -> A
|
||||
= \r -> mkA r.root ;
|
||||
wmkA : {masc_sg : Str; masc_pl, pl_patt, sg_patt : Str; root : Str} -> A
|
||||
= \r -> mkA r.sg_patt r.pl_patt ;
|
||||
wmkA : {masc_sg : Str; masc_pl : Str} -> A
|
||||
= \r -> mkA r.masc_sg ; ----
|
||||
wmkA : {masc_sg : Str; masc_pl, pl_patt : Str} -> A
|
||||
= \r -> mkA r.masc_sg ; ----
|
||||
wmkA : {masc_sg : Str; root : Str} -> A
|
||||
= \r -> mkA r.root ;
|
||||
wmkA : {masc_sg : Str} -> A
|
||||
= \r -> mkA r.masc_sg ; ----
|
||||
} ;
|
||||
|
||||
wmkV = overload {
|
||||
wmkV : {perfect : Str; cls : VerbForm; root : Str} -> V
|
||||
= \r -> mkV r.root r.cls ; ----
|
||||
wmkV : {perfect : Str; cls : VerbForm} -> V
|
||||
= \r -> mkV r.perfect r.cls ; ---- expects root
|
||||
wmkV : {perfect : Str; imperfect : Str; cls : VerbForm; root : Str} -> V
|
||||
= \r -> mkV r.root r.cls ; ----
|
||||
wmkV : {perfect : Str; imperfect : Str; cls : VerbForm} -> V
|
||||
= \r -> mkV r.perfect r.cls ; ---- expects root
|
||||
wmkV : {root : Str ; cls : VerbForm} -> V
|
||||
= \r -> mkV r.root r.cls ;
|
||||
wmkV : {imperfect : Str} -> V
|
||||
= \r -> variants {} ; ---- mkV r.imperfect ; -- expects cls I
|
||||
} ;
|
||||
|
||||
}
|
||||
@@ -1,530 +0,0 @@
|
||||
--# -path=.:../gf-wordnet
|
||||
concrete WordNetAra of WordNet = CatAra ** open MorphoDictAra, MoreAra, ParadigmsAra in {
|
||||
lin en = variants {} ; --- guess from
|
||||
lin absolute_3_A = 'مُطْلَق_A' ; -- 4578 [['absolute, utter, very, unlimited, unrestricted'], ['downright'], ['sovereign'], ['liberated, free'], ['implicit']]
|
||||
-- lin absolute_3_A = 'مُطَلَّق_A' ; -- 8217 [['divorced']]
|
||||
lin administrative_A = mkA "داري" ; --- guess from داري
|
||||
lin afghani_1_N = mkN "فغاني" ; --- guess from فغاني
|
||||
lin afrikaans_N = mkN "لغةفريكانية" ; --- guess from لغةفريكانية
|
||||
lin age_1_N = 'سِنّ_N' ; -- 480 [['tooth, tusk, fang'], ['point or tip'], ['a spearhead or arrowhead'], ['age (years of life)'], ['cog, sprocket, prong']]
|
||||
-- lin age_1_N = 'سَنّ_N' ; -- 86682 [['verbal noun of سَنَّ (sanna) (form I)'], ['prescription, introduction, enactment']]
|
||||
lin akan_N = mkN "الكانية" ; --- guess from الكانية
|
||||
lin alabama_4_N = mkN "لاباما" ; --- guess from لاباما
|
||||
lin albanian_2_N = mkN "اللبانية" ; --- guess from اللبانية
|
||||
lin aleut_N = mkN "الليوتية" ; --- guess from الليوتية
|
||||
lin amharic_N = mkN "المهرية" ; --- guess from المهرية
|
||||
lin amir_N = mkN "مير" ; --- guess from مير
|
||||
lin amount_to_2_V2 = variants {} ; --- guess from يصللى
|
||||
lin arabic_A = 'عَرَبِي_A' ; -- 2706 [['Arab'], ['Arabic'], ['Arabian']]
|
||||
lin arabic_N = mkN "العربية" ; --- guess from العربية
|
||||
lin arapaho_N = mkN "الراباهو" ; --- guess from الراباهو
|
||||
lin arawak_N = mkN "راواك" ; --- guess from راواك
|
||||
lin area_6_N = 'مِنْطَقَة_N' ; -- 5712 [['belt, girdle'], ['zone'], ['vicinity, range, district, area, territory, sphere'], ['military sector'], ['area, an administrative subdivision of Kuwait'], ['province']]
|
||||
-- lin area_6_N = 'مَنْطِقَة_N' ; -- 19267 [['zone'], ['vicinity, range, district, area, territory, sphere'], ['military sector'], ['area, an administrative subdivision of Kuwait'], ['province']]
|
||||
-- lin area_6_N = 'مَنْطَقَة_N' ; -- 118100 [['verbal noun of مَنْطَقَ (manṭaqa) (form Iq)']]
|
||||
lin armenian_2_N = mkN "ارمينية" ; --- guess from ارمينية
|
||||
lin assamese_N = mkN "السامية" ; --- guess from السامية
|
||||
lin assyrian_2_N = mkN "شوري" ; --- guess from شوري
|
||||
lin authoritarian_1_A = mkA "استبدادي" ; --- guess from استبدادي
|
||||
lin average_1_N = mkN "متوسط" ; --- guess from متوسط
|
||||
lin avestan_N = mkN "الفستية" ; --- guess from الفستية
|
||||
lin azerbaijani_N = mkN "الذرية" ; --- guess from الذرية
|
||||
lin balboa_1_N = mkN "بلبوا" ; --- guess from بلبوا
|
||||
lin balinese_N = mkN "اللغةالبالية" ; --- guess from اللغةالبالية
|
||||
lin baltic_2_A = mkA "بلطيق" ; --- guess from بلطيق
|
||||
lin ban_2_N = 'مَنْع_N' ; -- 118052 [['verbal noun of مَنَعَ (manaʕa) (form I)'], ['prevention']]
|
||||
lin ban_3_N = 'نَهْي_N' ; -- 122876 [['verbal noun of نَهَى (nahā) (form I)'], ['an order not to do something, a prohibition, a proscription'], ['negative imperative, prohibitive; expressing a prohibition with the particle لَا (lā) and the jussive']]
|
||||
lin bata_N = mkN "باتا" ; --- guess from باتا
|
||||
lin belarusian_N = 'بِيلَارُوسِيّ_N' ; -- 2861 [['Belarusian (person)']]
|
||||
lin bengali_3_N = mkN "البنغالية" ; --- guess from البنغالية
|
||||
lin birr_1_N = 'بَرّ_N' ; -- 128073 [['land, dry land (as opposed to sea)'], ['outside, field']]
|
||||
-- lin birr_1_N = 'بِرّ_N' ; -- 128094 [['verbal noun of بَرَّ (barra) (form I)'], ['faith, godliness, piety'], ['respectfulness'], ['kindness']]
|
||||
lin blackfoot_N = mkN "بلاكفوت" ; --- guess from بلاكفوت
|
||||
lin bole_3_N = 'جِذْع_N' ; -- 18227 [['a tree trunk, body, stock, torso']]
|
||||
-- lin bole_3_N = 'جَذَع_N' ; -- 19252 [['youth, animal old enough to use (of livestock as well as humans)']]
|
||||
lin boliviano_N = mkN "بوليفيانو" ; --- guess from بوليفيانو
|
||||
lin book_1_N = 'كُتَّاب_N' ; -- 2089 [["a traditional school for teaching Qur'an"]]
|
||||
-- lin book_1_N = 'كِتَاب_N' ; -- 111971 [['verbal noun of كَتَبَ (kataba) (form I)'], ['verbal noun of كَاتَبَ (kātaba) (form III)'], ['letter, note, paper, piece of writing, message'], ['book'], ["the Scripture, the Qur'an or the Bible"], ['record, document, deed, contract'], ['a marriage contract.']]
|
||||
lin border_1_N = 'حَدّ_N' ; -- 66721 [['verbal noun of حَدَّ (ḥadda) (form I)'], ['limit'], ['boundary, border'], ['frontier'], ['term'], ['end, goal, aim'], ['district'], ['reach, sphere of action'], ['difference'], ['definition'], ['rule'], ['punishment'], ['edge, point'], ['passion'], ['intoxicating strength of liquors'], ['strength, bravery'], ['energy'], ['manner, way'], ['hindrance'], ['side']]
|
||||
lin breton_N = mkN "البريتونية" ; --- guess from البريتونية
|
||||
lin bulgarian_N = 'بُلْغارِيّ_N' ; -- 2929 [['Bulgarian (native or inhabitant of Bulgaria)']]
|
||||
lin burmese_2_N = mkN "البورمية" ; --- guess from البورمية
|
||||
lin caddo_N = mkN "الكادو" ; --- guess from الكادو
|
||||
lin cantonese_N = mkN "الكنتونية" ; --- guess from الكنتونية
|
||||
lin capital_3_N = mkN "عاصمة" ; --- guess from عاصمة
|
||||
lin captain_1_N = 'نَقِيب_N' ; -- 12918 [['captain'], ['leader, chief'], ['magistrate, head of a community'], ['prefect, governor'], ['intelligent man'], ['master of ceremonies'], ['tongue of a balance'], ['pipe, flute']]
|
||||
lin carib_N = mkN "الكاريبية" ; --- guess from الكاريبية
|
||||
lin catalan_N = mkN "القطلونية" ; --- guess from القطلونية
|
||||
lin catawba_N = mkN "كاتاوبا" ; --- guess from كاتاوبا
|
||||
lin catering_N = mkN "خدمةغذائية" ; --- guess from خدمةغذائية
|
||||
lin catholicism_N = mkN "المذهبالكاثوليكي" ; --- guess from المذهبالكاثوليكي
|
||||
lin cayuga_N = mkN "الكايوجية" ; --- guess from الكايوجية
|
||||
lin cebuano_N = mkN "السيبونية" ; --- guess from السيبونية
|
||||
lin chairman_N = 'رَئِيس_N' ; -- 5965 [['boss, chief, leader'], ['director'], ['headmaster, principal'], ['chairman'], ['governor'], ['president'], ['manager, superintendent'], ['conductor'], ['captain']]
|
||||
lin chancellor_2_N = mkN "مستشار" ; --- guess from مستشار
|
||||
lin chechen_N = mkN "شيشاني" ; --- guess from شيشاني
|
||||
lin cherokee_N = mkN "شيروكي" ; --- guess from شيروكي
|
||||
lin chetrum_N = mkN "نغولترمبوتاني" ; --- guess from نغولترمبوتاني
|
||||
lin cheyenne_N = mkN "الشايان" ; --- guess from الشايان
|
||||
lin child_1_N = 'طِفْل_N' ; -- 6665 [['child (a minor)'], ['children (a minor)']]
|
||||
lin child_2_N = 'طِفْل_N' ; -- 6665 [['child (a minor)'], ['children (a minor)']]
|
||||
lin chinese_N = 'صِينِيَّة_N' ; -- 2999 [['Chinese language']]
|
||||
-- lin chinese_N = 'صِينِيَّة_1_N' ; -- 3000 [['Chinese porcelain, china'], ['plate'], ['dish'], ['tray']]
|
||||
-- lin chinese_N = 'صِينِيَّة_2_N' ; -- 94044 [['feminine singular of صِينِيّ (ṣīniyy, “Chinese person”)']]
|
||||
lin chinook_4_N = mkN "سالمون" ; --- guess from سالمون
|
||||
lin chinook_jargon_N = mkN "الشينوكجارجون" ; --- guess from الشينوكجارجون
|
||||
lin chipewyan_N = mkN "الشيباوايان" ; --- guess from الشيباوايان
|
||||
lin chippewa_N = mkN "شيبيوا" ; --- guess from شيبيوا
|
||||
lin choctaw_N = mkN "الشوكتو" ; --- guess from الشوكتو
|
||||
lin christianity_1_N = 'مَسِيحِيَّة_N' ; -- 3072 [['Christianity'], ['female equivalent of مَسِيحِيّ (masīḥiyy)']]
|
||||
lin chukchi_N = mkN "لغةتشوكشي" ; --- guess from لغةتشوكشي
|
||||
lin chuvash_N = mkN "التشوفاشي" ; --- guess from التشوفاشي
|
||||
lin city_1_N = 'مَدِينَة_N' ; -- 18135 [['town, city'], ['jurisdiction']]
|
||||
lin coat_of_arms_N = mkN "شعارالنبالة" ; --- guess from شعارالنبالة
|
||||
lin colon_3_N = mkN "قولون" ; --- guess from قولون
|
||||
lin commonwealth_3_N = mkN "كومنولث" ; --- guess from كومنولث
|
||||
lin communist_A = 'شُيُوعِي_A' ; -- 7022 [['communist'], ['Communist'], ['communal']]
|
||||
lin consider_6_V3 = variants {} ; --- guess from نظراخذبعينالاعتبار
|
||||
lin constitutional_2_A = 'دُسْتُورِي_A' ; -- 1506 [['constitutional']]
|
||||
lin coptic_N = mkN "القبطية" ; --- guess from القبطية
|
||||
lin cordoba_N = mkN "كوردوبا" ; --- guess from كوردوبا
|
||||
lin cornish_N = mkN "الكورنية" ; --- guess from الكورنية
|
||||
lin council_1_N = 'مَجْلِس_N' ; -- 15878 [['seat'], ['place of meeting; seat of an assembling body; conference room; court; tribunal'], ['session, sitting, meeting, party'], ['council, college, collegium, board, committee, commission'], ['husainiya']]
|
||||
lin country_1_N = 'دَوْلَة_N' ; -- 16961 [['state (sovereign polity)'], ['alternation, change']]
|
||||
lin country_2_N = 'بَلَد_N' ; -- 7321 [['country, land, homeland'], ['town, city'], ['place, village, community']]
|
||||
lin cree_N = mkN "الكرى" ; --- guess from الكرى
|
||||
lin crow_6_N = mkN "الغراب" ; --- guess from الغراب
|
||||
lin culture_6_N = 'ثَقَافَة_N' ; -- 61562 [['verbal noun of ثَقُفَ (ṯaqufa) (form I)'], ['sagacity, intelligence, wit, refinement, culture'], ['culture (civilization)'], ['education, literacy']]
|
||||
lin currency_1_N = 'عُمْلَة_N' ; -- 7550 [['currency, standardized money']]
|
||||
-- lin currency_1_N = 'عَمْلَة_N' ; -- 8932 [['evil deed, perfidy']]
|
||||
-- lin currency_1_N = 'عِمْلَة_N' ; -- 13013 [['mode of acting, manner of service, wise of working on a thing']]
|
||||
lin current_A = mkA "جار" ; --- guess from جار
|
||||
lin czech_3_N = mkN "التشيكية" ; --- guess from التشيكية
|
||||
lin dakota_3_N = mkN "الداكوتا" ; --- guess from الداكوتا
|
||||
lin dalasi_N = mkN "دلاسى" ; --- guess from دلاسى
|
||||
lin danish_1_N = mkN "دانماركية" ; --- guess from دانماركية
|
||||
lin dari_N = mkN "دري" ; --- guess from دري
|
||||
lin decentralization_2_N = mkN "لامركزية" ; --- guess from لامركزية
|
||||
lin decline_1_N = 'نَقْص_N' ; -- 122335 [['verbal noun of نَقَصَ (naqaṣa) (form I)'], ['reduction'], ['lack']]
|
||||
lin delaware_5_N = mkN "الديلوير" ; --- guess from الديلوير
|
||||
lin democracy_2_N = 'جُمْهُورِيَّة_N' ; -- 15302 [['republicanism'], ['republic']]
|
||||
-- lin democracy_2_N = 'جُمْهُورِيَّة_1_N' ; -- 65212 [['female equivalent of جُمْهُورِيّ (jumhūriyy)']]
|
||||
lin democratic_1_A = 'دِيمُقْرَاطِي_A' ; -- 7835 [['democratic']]
|
||||
lin demographic_N = mkN "ديموغرافي" ; --- guess from ديموغرافي
|
||||
lin designate_4_V2 = mkV2 'صَمَّمَ_V' ; -- 7721 [['to deafen [+accusative]', 'to deafen'], ['to resolve, to become bent on [+ عَلَى (object)]', 'to resolve, to become bent on'], ['to design, to configure, to devise, to contrive, to fix [+accusative]', 'to design, to configure, to devise, to contrive, to fix']]
|
||||
lin development_2_N = mkN "تطوير" ; --- guess from تطوير
|
||||
lin dictatorship_N = mkN "استبدادية" ; --- guess from استبدادية
|
||||
lin dinar_1_N = mkN "دينار" ; --- guess from دينار
|
||||
lin dinar_3_N = mkN "دينار" ; --- guess from دينار
|
||||
lin dinar_5_N = mkN "دينار" ; --- guess from دينار
|
||||
lin dinar_6_N = mkN "دينار" ; --- guess from دينار
|
||||
lin dinar_7_N = mkN "دينار" ; --- guess from دينار
|
||||
lin dinar_8_N = mkN "دينار" ; --- guess from دينار
|
||||
lin dinar_9_N = mkN "دينار" ; --- guess from دينار
|
||||
lin dinka_N = mkN "الدنكا" ; --- guess from الدنكا
|
||||
lin dirham_2_N = mkN "درهم" ; --- guess from درهم
|
||||
lin dirham_3_N = mkN "درهم" ; --- guess from درهم
|
||||
lin distribution_1_N = mkN "توزيع" ; --- guess from توزيع
|
||||
lin dobra_N = mkN "دوبرا" ; --- guess from دوبرا
|
||||
lin domestic_1_A = mkA "داخلى" ; --- guess from داخلى
|
||||
lin dong_N = mkN "دونغ" ; --- guess from دونغ
|
||||
lin dram_3_N = mkN "دراخما" ; --- guess from دراخما
|
||||
lin drinking_water_N = mkN "ماشرب" ; --- guess from ماشرب
|
||||
lin dutch_N = 'هُولَنْدِيّ_N' ; -- 3835 [['Netherlander, Dutchman']]
|
||||
lin east_4_N = 'شَرْق_N' ; -- 8514 [['east; Orient']]
|
||||
-- lin east_4_N = 'شَرَق_N' ; -- 89149 [['verbal noun of شَرِقَ (šariqa) (form I)']]
|
||||
lin eastern_4_A = 'شَرْقِي_A' ; -- 8518 [['eastern'], ['Eastern, Oriental']]
|
||||
lin economy_1_N = 'اِقْتِصَاد_N' ; -- 44555 [['verbal noun of اِقْتَصَدَ (iqtaṣada) (form VIII)'], ['economy (“frugal use of resources”)'], ['economy (“system of production and distribution”)'], ['economics']]
|
||||
lin education_1_N = 'تَعْلِيم_N' ; -- 100950 [['verbal noun of عَلَّمَ (ʕallama) (form II)'], ['teaching, education']]
|
||||
lin emperor_1_N = mkN "مبراطور" ; --- guess from مبراطور
|
||||
lin english_N = mkN "النجليزية" ; --- guess from النجليزية
|
||||
lin equality_1_N = 'مُسَاوَاة_N' ; -- 84036 [['verbal noun of سَاوَى (sāwā) (form III)'], ['equality, equivalence'], ['equal rights'], ['settlement (of a bill)']]
|
||||
lin escudo_2_N = mkN "سكودو" ; --- guess from سكودو
|
||||
lin esperanto_N = mkN "سبرانتو" ; --- guess from سبرانتو
|
||||
lin estonian_N = mkN "الستونية" ; --- guess from الستونية
|
||||
lin evenki_N = mkN "اللغةاليفينكية" ; --- guess from اللغةاليفينكية
|
||||
lin ewe_2_N = mkN "اليوي" ; --- guess from اليوي
|
||||
lin extreme_1_A = mkA "قصى" ; --- guess from قصى
|
||||
lin fang_1_N = mkN "الفانج" ; --- guess from الفانج
|
||||
lin faroese_N = mkN "لغةفاروية" ; --- guess from لغةفاروية
|
||||
lin father_1_N = 'وَالِد_N' ; -- 9224 [['father'], ['parent'], ['paternal relatives']]
|
||||
lin federal_4_A = mkA "فيدرالي" ; --- guess from فيدرالي
|
||||
lin fertility_1_N = mkN "معدلالمواليد" ; --- guess from معدلالمواليد
|
||||
lin fijian_2_N = mkN "الفيجية" ; --- guess from الفيجية
|
||||
lin filipino_2_N = mkN "الفلبينية" ; --- guess from الفلبينية
|
||||
lin finnish_N = mkN "الفنلندية" ; --- guess from الفنلندية
|
||||
lin firewood_N = mkN "حطب" ; --- guess from حطب
|
||||
lin flag_1_N = 'عَلَم_N' ; -- 16266 [['sign, token, mark, badge'], ['harelip'], ['road sign, guidepost'], ['flag, banner'], ['authority, luminary, star, personage, distinguished man'], ['a mountain'], ['proper noun']]
|
||||
-- lin flag_1_N = 'عِلْم_N' ; -- 101070 [['verbal noun of عَلِمَ (ʕalima) (form I)'], ['knowledge, learning, lore'], ['cognition, acquaintance'], ['information'], ['perception, knowledge'], ['(plural عُلُوم (ʕulūm)) science', 'science']]
|
||||
lin flaw_3_N = 'خَلَل_N' ; -- 9954 [['gap, breach, interstice, interspace, chink'], ['flaw, imbalance, bug, disturbance, trait of disorder']]
|
||||
lin flemish_2_N = mkN "الفلمنكية" ; --- guess from الفلمنكية
|
||||
lin flour_N = 'دَقِيق_N' ; -- 9558 [['flour, meal']]
|
||||
lin following_2_A = mkA "تال" ; --- guess from تال
|
||||
lin food_1_N = 'طَعَام_N' ; -- 265 [['food'], ['food', 'prepared meal'], ['feeding'], ['wheat'], ['grain, cereal']]
|
||||
lin forint_N = mkN "فورنتمجري" ; --- guess from فورنتمجري
|
||||
lin former_3_A = 'سَابِق_A' ; -- 14587 [['preceding, previous'], ['former'], ['active participle of سَبَقَ (sabaqa).']]
|
||||
lin formula_6_N = mkN "صيغ" ; --- guess from صيغ
|
||||
lin fox_7_N = mkN "الثعلب" ; --- guess from الثعلب
|
||||
lin free_1_A = 'حُرّ_A' ; -- 9798 [['free'], ['unimpeded'], ['set free, freedman'], ['born free and noble'], ['virtuous, genuine, true, pure, good'], ['unmixed']]
|
||||
lin freedom_1_N = 'حُرِّيَّة_N' ; -- 67184 [['verbal noun of حَرَّ (ḥarra) (form I)'], ['freedom, liberty']]
|
||||
lin french_N = 'فَرَنْسِيَّة_N' ; -- 104633 [['female equivalent of فَرَنْسِيّ (faransiyy, “a Frenchman”): a Frenchwoman'], ['the French language, French']]
|
||||
lin friulian_N = mkN "الفريلايان" ; --- guess from الفريلايان
|
||||
lin fula_N = mkN "الفلة" ; --- guess from الفلة
|
||||
lin full_3_A = mkA "ممتلئ" ; --- guess from ممتلئ
|
||||
lin galician_N = mkN "الجاليكية" ; --- guess from الجاليكية
|
||||
lin garment_N = mkN "لباس" ; --- guess from لباس
|
||||
lin georgian_3_N = mkN "الجورجية" ; --- guess from الجورجية
|
||||
lin german_N = mkN "المانية" ; --- guess from المانية
|
||||
lin gikuyu_N = mkN "الكيكيو" ; --- guess from الكيكيو
|
||||
lin gondi_N = mkN "الجندي" ; --- guess from الجندي
|
||||
lin gourde_N = mkN "غورد" ; --- guess from غورد
|
||||
lin government_1_N = 'حُكُومَة_N' ; -- 69517 [['verbal noun of حَكَمَ (ḥakama) (form I)'], ['government'], ['authority, dominion'], ['empire, state'], ['jurisdiction'], ['sentence, judgment']]
|
||||
lin greek_N = mkN "يونانية" ; --- guess from يونانية
|
||||
lin gross_1_A = mkA "جمالي" ; --- guess from جمالي
|
||||
lin growth_3_N = 'زِيَادَة_N' ; -- 81582 [['verbal noun of زَادَ (zāda) (form I)'], ['increase, surplus, addition']]
|
||||
lin guarani_1_N = mkN "الجواراني" ; --- guess from الجواراني
|
||||
lin guarani_3_N = mkN "الجوارانى" ; --- guess from الجوارانى
|
||||
lin gujarati_N = mkN "الغوجاراتية" ; --- guess from الغوجاراتية
|
||||
lin haida_N = mkN "الهيدا" ; --- guess from الهيدا
|
||||
lin haitian_creole_N = mkN "الهايتية" ; --- guess from الهايتية
|
||||
lin hakka_N = mkN "الهاكا" ; --- guess from الهاكا
|
||||
lin haler_2_N = mkN "معافى" ; --- guess from معافى
|
||||
lin hani_N = mkN "هاني" ; --- guess from هاني
|
||||
lin hausa_N = mkN "الهوسا" ; --- guess from الهوسا
|
||||
lin have_1_V2 = mkV2 'مَلَّكَ_V' ; -- 13781 [['to make the owner'], ['to put in possession'], ['to transfer ownership, to assign, to make over, to convey'], ['to make king']]
|
||||
-- lin have_1_V2 = mkV2 'مَلَكَ_V' ; -- 14483 [['to take in possession, to take over, to acquire, to seize'], ['to possess, to lay hold, to own, to have, to be the owner'], ['to dominate, to control'], ['to be the master'], ['to be capable, to be able, to be in a position to'], ['to rule, to reign, to exercise authority, to hold sway, to lord over']]
|
||||
lin hawaiian_N = mkN "لغةهلالهاواي" ; --- guess from لغةهلالهاواي
|
||||
lin head_4_N = 'شَيْخ_N' ; -- 13596 [['old man'], ['elderly gentleman, elder'], ['sheik, chief, chieftain, patriarch'], ['senator'], ['sheik; Dr.; professor (title of professors and spiritual leaders)'], ['sir (respectful title of address)'], ['master (someone outstanding or excellent)']]
|
||||
lin healthcare_2_N = mkN "رعايةصحية" ; --- guess from رعايةصحية
|
||||
lin hereditary_2_A = mkA "موروث" ; --- guess from موروث
|
||||
lin herero_N = mkN "الهيريرو" ; --- guess from الهيريرو
|
||||
lin hidatsa_N = mkN "هيداتسا" ; --- guess from هيداتسا
|
||||
lin high_1_A = mkA "عال" ; --- guess from عال
|
||||
lin hindi_N = mkN "هندية" ; --- guess from هندية
|
||||
lin hopi_N = mkN "هوبي" ; --- guess from هوبي
|
||||
lin hotel_N = 'فُنْدُق_N' ; -- 11607 [['inn'], ['hotel']]
|
||||
-- lin hotel_N = 'فُنْدُق_1_N' ; -- 50563 [['Alternative form of بُنْدُق (bunduq)']]
|
||||
lin hryvnia_N = mkN "هريفنا" ; --- guess from هريفنا
|
||||
lin human_N = 'بَشْر_N' ; -- 49147 [['verbal noun of بَشَرَ (bašara) (form I)']]
|
||||
-- lin human_N = 'بَشَر_N' ; -- 49243 [['verbal noun of بَشِرَ (bašira) (form I)'], ['verbal noun of بَشَرَ (bašara) (form I)']]
|
||||
lin hungarian_2_N = mkN "الهنغارية" ; --- guess from الهنغارية
|
||||
lin hupa_N = mkN "الهبا" ; --- guess from الهبا
|
||||
lin hybrid_A = mkA "هجن" ; --- guess from هجن
|
||||
lin icelandic_N = mkN "اليسلندية" ; --- guess from اليسلندية
|
||||
lin income_N = 'دَخَل_N' ; -- 8181 [['disturbance, imbalance, derangement, disorder, mental defect'], ['defect, infirmity']]
|
||||
-- lin income_N = 'دَخْل_N' ; -- 11518 [['income'], ['revenues, receipts, returns'], ['interference, intervention'], ['doubt, misgiving']]
|
||||
lin index_2_N = 'دَلِيل_N' ; -- 123 [['sign, indication, proof, demonstration, evidence, argument'], ['syllogism'], ['road sign'], ['road, street'], ['guidebook'], ['index (alphabetical listing)']]
|
||||
-- lin index_2_N = 'دَلِيل_1_N' ; -- 8080 [['director'], ['guide'], ['indicator (person who indicates)'], ['discoverer']]
|
||||
lin individual_4_A = 'شَخْصِي_A' ; -- 13778 [['own'], ['personal'], ['personal']]
|
||||
lin indonesian_2_N = mkN "الندونيسية" ; --- guess from الندونيسية
|
||||
lin inequality_N = 'تَفَاوُت_N' ; -- 57194 [['verbal noun of تَفَاوَتَ (tafāwata) (form VI)']]
|
||||
lin inflation_1_N = 'تَضَخُّم_N' ; -- 55857 [['verbal noun of تَضَخَّمَ (taḍaḵḵama) (form V)'], ['inflation (“increase in prices”)']]
|
||||
lin ingrian_N = mkN "لغةنغرية" ; --- guess from لغةنغرية
|
||||
lin inhabitant_1_N = 'مُوَاطِن_N' ; -- 6746 [['citizen; national'], ['countryman, compatriot, fellow citizen']]
|
||||
lin irish_3_N = mkN "اليرلندية" ; --- guess from اليرلندية
|
||||
lin islam_2_N = mkN "السلام" ; --- guess from السلام
|
||||
lin islamic_A = mkA "سلامي" ; --- guess from سلامي
|
||||
lin island_1_N = 'جَزِيرَة_N' ; -- 11757 [['island'], ['peninsula'], ['area, region, territory, section, district; any separated location, especially one delimited by natural boundaries']]
|
||||
lin italian_N = mkN "يطالية" ; --- guess from يطالية
|
||||
lin japanese_N = mkN "اليابانية" ; --- guess from اليابانية
|
||||
lin javanese_2_N = mkN "الجاوية" ; --- guess from الجاوية
|
||||
lin kamba_N = mkN "الكامبا" ; --- guess from الكامبا
|
||||
lin kannada_N = mkN "الكانادا" ; --- guess from الكانادا
|
||||
lin kansas_4_N = mkN "كانزاس" ; --- guess from كانزاس
|
||||
lin karakalpak_N = mkN "الكاراكالباك" ; --- guess from الكاراكالباك
|
||||
lin karelian_N = mkN "الكاريلية" ; --- guess from الكاريلية
|
||||
lin kashmiri_2_N = mkN "الكشميرية" ; --- guess from الكشميرية
|
||||
lin kazakh_N = mkN "الكازاخستانية" ; --- guess from الكازاخستانية
|
||||
lin khanty_N = mkN "خانتي" ; --- guess from خانتي
|
||||
lin khmer_1_N = mkN "الخميرية" ; --- guess from الخميرية
|
||||
lin khowar_N = mkN "كهوار" ; --- guess from كهوار
|
||||
lin kickapoo_N = mkN "كيكابو" ; --- guess from كيكابو
|
||||
lin kilometre_1_N = 'كَمّ_N' ; -- 647 [['quantity, multitude'], ['quantum']]
|
||||
-- lin kilometre_1_N = 'كِمّ_N' ; -- 6304 [['calyx of a flower, the envelope or spathe of a palm-tree or the like']]
|
||||
-- lin kilometre_1_N = 'كُمّ_N' ; -- 16436 [['sleeve of a garment']]
|
||||
lin kina_N = mkN "كينا" ; --- guess from كينا
|
||||
-- lin king_1_N = 'مَلَك_N' ; -- 1462 [['angel']]
|
||||
lin king_1_N = 'مَلِك_N' ; -- 11923 [['king, sovereign, monarch']]
|
||||
-- lin king_1_N = 'مَلَك_1_N' ; -- 14484 [['possession, property'], ['food and water, resources; anything which regulates, maintains, or sustains; essentials, supplies, utilities'], ['foundation of ones existence'], ['foundation of ones existence', 'agent or effective cause']]
|
||||
-- lin king_1_N = 'مِلْك_N' ; -- 117902 [['verbal noun of مَلَكَ (malaka) (form I)'], ['property, possession, goods and chattels, fortune, wealth'], ['estate'], ['real estate, landed property']]
|
||||
-- lin king_1_N = 'مُلْك_N' ; -- 117903 [['verbal noun of مَلَكَ (malaka) (form I)'], ['rule, reign, supreme authority, dominion, dominance, sway, power'], ['sovereignty, kingship, royalty'], ['monarchy']]
|
||||
-- lin king_1_N = 'مَلْك_N' ; -- 117904 [['verbal noun of مَلَكَ (malaka) (form I)']]
|
||||
lin kinyarwanda_N = mkN "الكينيارواندا" ; --- guess from الكينيارواندا
|
||||
lin kip_2_N = mkN "كيب" ; --- guess from كيب
|
||||
lin koasati_N = mkN "كواساتي" ; --- guess from كواساتي
|
||||
lin kobo_N = mkN "نيره" ; --- guess from نيره
|
||||
lin kola_2_N = mkN "كولا" ; --- guess from كولا
|
||||
lin komi_N = mkN "الكومي" ; --- guess from الكومي
|
||||
lin kongo_N = mkN "الكونغو" ; --- guess from الكونغو
|
||||
lin korean_2_N = mkN "الكورية" ; --- guess from الكورية
|
||||
lin krona_1_N = mkN "كورونا" ; --- guess from كورونا
|
||||
lin krona_2_N = mkN "كورونا" ; --- guess from كورونا
|
||||
lin krone_1_N = mkN "كورونا" ; --- guess from كورونا
|
||||
lin krone_2_N = mkN "كورونا" ; --- guess from كورونا
|
||||
lin kurdish_N = mkN "الكردية" ; --- guess from الكردية
|
||||
lin kwacha_1_N = mkN "كواشا" ; --- guess from كواشا
|
||||
lin kwacha_2_N = mkN "كواشا" ; --- guess from كواشا
|
||||
lin kwanza_1_N = mkN "كوانزا" ; --- guess from كوانزا
|
||||
lin kyat_N = mkN "كيات" ; --- guess from كيات
|
||||
lin ladin_N = mkN "اللغةاللادنية" ; --- guess from اللغةاللادنية
|
||||
lin language_1_N = 'لُغَة_N' ; -- 12037 [['language'], ['dialect, vernacular'], ['jargon'], ['a variant'], ['Classical Arabic'], ['lexicography, lexicographic literature, lexicographers']]
|
||||
lin lao_2_N = mkN "اللاوية" ; --- guess from اللاوية
|
||||
lin large_1_A = 'كَبِير_A' ; -- 1433 [['big, large'], ['great, great importance'], ['old (for a person)']]
|
||||
lin lari_1_N = mkN "لارى" ; --- guess from لارى
|
||||
lin latvian_N = 'لَاتْفِيّ_N' ; -- 2513 [['Latvian man']]
|
||||
lin leader_1_N = 'رَئِيس_N' ; -- 5965 [['boss, chief, leader'], ['director'], ['headmaster, principal'], ['chairman'], ['governor'], ['president'], ['manager, superintendent'], ['conductor'], ['captain']]
|
||||
lin lempira_N = mkN "لمبيرا" ; --- guess from لمبيرا
|
||||
lin leone_N = mkN "ليون" ; --- guess from ليون
|
||||
lin library_1_N = 'مَكْتَبَة_N' ; -- 12230 [['library'], ['bookstore'], ['bookcase'], ['desk'], ['literature']]
|
||||
lin literacy_N = mkN "محوالمية" ; --- guess from محوالمية
|
||||
lin lithuanian_N = mkN "الليتوانية" ; --- guess from الليتوانية
|
||||
lin livonian_N = mkN "ليفونية" ; --- guess from ليفونية
|
||||
lin low_1_A = 'مُنْخَفِض_A' ; -- 599 [['low (altitude, frequency, price, etc.)'], ['soft, low, subdued, muffled']]
|
||||
lin low_german_N = mkN "اللمانيةالسفلى" ; --- guess from اللمانيةالسفلى
|
||||
lin luo_N = mkN "اللو" ; --- guess from اللو
|
||||
lin macedonian_2_N = mkN "المقدونية" ; --- guess from المقدونية
|
||||
lin malay_2_N = mkN "الملايو" ; --- guess from الملايو
|
||||
lin malayalam_N = mkN "الماليالام" ; --- guess from الماليالام
|
||||
lin malaysian_2_N = mkN "الملايو" ; --- guess from الملايو
|
||||
lin malt_3_N = mkN "شرابالشعيرجعة" ; --- guess from شرابالشعيرجعة
|
||||
lin maltese_2_N = mkN "المالطية" ; --- guess from المالطية
|
||||
lin manat_2_N = mkN "مانات" ; --- guess from مانات
|
||||
lin manchu_N = mkN "المانشو" ; --- guess from المانشو
|
||||
lin mandarin_6_N = mkN "يوسفي" ; --- guess from يوسفي
|
||||
lin mansi_N = mkN "مانسية" ; --- guess from مانسية
|
||||
lin maori_2_N = mkN "الماورية" ; --- guess from الماورية
|
||||
lin marathi_N = mkN "الماراثي" ; --- guess from الماراثي
|
||||
lin margarine_N = mkN "مارغرين" ; --- guess from مارغرين
|
||||
lin mari_N = mkN "الماري" ; --- guess from الماري
|
||||
lin median_3_A = 'مُتَوَسِّط_A' ; -- 12899 [['being in the middle, mediating'], ['middle, central'], ['medium'], ['average, middling, indifferent']]
|
||||
lin medication_1_N = mkN "دوا" ; --- guess from دوا
|
||||
lin medium_1_A = 'مُتَوَسِّط_A' ; -- 12899 [['being in the middle, mediating'], ['middle, central'], ['medium'], ['average, middling, indifferent']]
|
||||
lin member_4_N = 'عُضْو_N' ; -- 13692 [['organ'], ['member'], ['limb'], ['branch, piece, section']]
|
||||
lin menominee_N = mkN "مينوميني" ; --- guess from مينوميني
|
||||
lin metical_N = mkN "متيكال" ; --- guess from متيكال
|
||||
lin military_2_A = 'عَسْكَرِي_A' ; -- 614 [['military']]
|
||||
lin moderate_1_A = 'مُعْتَدِل_A' ; -- 17086 [['straight, even, proportionate'], ['temperate, mild, moderate']]
|
||||
lin modern_greek_N = mkN "اللغةاليونانيةالحديثة" ; --- guess from اللغةاليونانيةالحديثة
|
||||
lin mohawk_2_N = mkN "الموهوك" ; --- guess from الموهوك
|
||||
lin mon_3_N = mkN "الاثنين" ; --- guess from الاثنين
|
||||
lin monarchy_N = 'مَلَكِيَّة_N' ; -- 13048 [['monarchy']]
|
||||
-- lin monarchy_N = 'مِلْكِيَّة_N' ; -- 13782 [['ownership, property']]
|
||||
lin mongolian_2_N = mkN "المنغولية" ; --- guess from المنغولية
|
||||
lin mother_1_N = mkN "م" ; --- guess from م
|
||||
lin muslim_A = 'مُسْلِم_A' ; -- 3785 [['Muslim'], ['submitting, accepting, believing.']]
|
||||
-- lin muslim_A = 'مُسَلَّم_A' ; -- 18466 [['unimpaired, intact, unblemished, flawless'], ['accepted, uncontested, incontestable, indisputable, incontrovertible']]
|
||||
lin nahuatl_N = mkN "الناهيوتل" ; --- guess from الناهيوتل
|
||||
lin nanticoke_N = mkN "نانتيكوك" ; --- guess from نانتيكوك
|
||||
lin navajo_N = mkN "النافاجو" ; --- guess from النافاجو
|
||||
lin nenets_N = mkN "لغاتالنينيتس" ; --- guess from لغاتالنينيتس
|
||||
lin nepali_N = mkN "النيبالية" ; --- guess from النيبالية
|
||||
lin newspaper_3_N = 'جَرِيدَة_N' ; -- 63831 [['singulative of جَرِيد (jarīd, “defoliated palm”)'], ['detachment of horsemen'], ['newspaper']]
|
||||
lin nganasan_N = mkN "لغةنجاناسان" ; --- guess from لغةنجاناسان
|
||||
lin nordic_2_A = mkA "شمالي" ; --- guess from شمالي
|
||||
lin north_3_N = 'شِمَال_N' ; -- 6426 [['case, sheath, wrapping']]
|
||||
-- lin north_3_N = 'شِمَال_1_N' ; -- 12168 [['left hand'], ['left side'], ['bad omen'], ['handful of ears']]
|
||||
-- lin north_3_N = 'شَمَال_N' ; -- 13431 [['north wind']]
|
||||
-- lin north_3_N = 'شَمَال_1_N' ; -- 13432 [['north']]
|
||||
lin northeast_1_N = mkN "شماليشرقي" ; --- guess from شماليشرقي
|
||||
lin northwest_3_N = mkN "شماليجنوبي" ; --- guess from شماليجنوبي
|
||||
lin norwegian_N = mkN "النرويجية" ; --- guess from النرويجية
|
||||
lin nyamwezi_N = mkN "النيامويزي" ; --- guess from النيامويزي
|
||||
lin nynorsk_N = mkN "النينورسكالنرويجي" ; --- guess from النينورسكالنرويجي
|
||||
lin obligatory_1_A = mkA "مفروضواجب" ; --- guess from مفروضواجب
|
||||
lin occitan_N = mkN "الوكيتانية" ; --- guess from الوكيتانية
|
||||
lin office_4_N = 'مَكْتَب_N' ; -- 12603 [['maktab, elementary school'], ['desk'], ['office'], ['bureau'], ['study']]
|
||||
lin official_1_A = 'رَسْمِي_A' ; -- 13575 [['official, legitimate'], ['formal'], ['normal'], ['conventional, according to rule'], ['ceremonial']]
|
||||
lin official_3_A = 'رَسْمِي_A' ; -- 13575 [['official, legitimate'], ['formal'], ['normal'], ['conventional, according to rule'], ['ceremonial']]
|
||||
lin oneida_N = mkN "لغةالونيدا" ; --- guess from لغةالونيدا
|
||||
lin orthodox_3_A = mkA "رثوذكسي" ; --- guess from رثوذكسي
|
||||
lin osage_N = mkN "الوساج" ; --- guess from الوساج
|
||||
lin ouguiya_N = mkN "وقية" ; --- guess from وقية
|
||||
lin paanga_N = mkN "بانجاتونجي" ; --- guess from بانجاتونجي
|
||||
lin parliamentary_2_A = 'بَرْلَمَانِي_A' ; -- 13881 [['parliamentary']]
|
||||
lin pashto_1_N = mkN "بشتو" ; --- guess from بشتو
|
||||
lin periodical_N = mkN "دورية" ; --- guess from دورية
|
||||
lin persian_N = mkN "الفارسية" ; --- guess from الفارسية
|
||||
lin peso_1_N = mkN "بيزو" ; --- guess from بيزو
|
||||
lin peso_2_N = mkN "بيزو" ; --- guess from بيزو
|
||||
lin peso_3_N = mkN "بيزو" ; --- guess from بيزو
|
||||
lin peso_5_N = mkN "بيزو" ; --- guess from بيزو
|
||||
lin peso_6_N = mkN "بيزو" ; --- guess from بيزو
|
||||
lin peso_7_N = mkN "بيزو" ; --- guess from بيزو
|
||||
lin peso_8_N = mkN "بيزو" ; --- guess from بيزو
|
||||
lin plant_2_N = mkN "نبات" ; --- guess from نبات
|
||||
lin point_10_N = 'نُقْطَة_N' ; -- 8264 [['dot, point'], ['period (punctuation mark)'], ['spot (stain, tarnish)'], ['drop']]
|
||||
lin polish_4_N = mkN "بولندية" ; --- guess from بولندية
|
||||
lin politics_2_N = 'سِيَاسَة_N' ; -- 83564 [['verbal noun of سَاسَ (sāsa) (form I)'], ['administration, management'], ['policy'], ['politics'], ['political government (as opposed to رِئَاسَة (riʔāsa, “ecclesiastical government”))']]
|
||||
lin population_1_N = mkN "سكانعددالسكان" ; --- guess from سكانعددالسكان
|
||||
lin portuguese_1_N = mkN "برتغالية" ; --- guess from برتغالية
|
||||
lin position_6_N = mkN "منصبموقع" ; --- guess from منصبموقع
|
||||
lin potawatomi_N = mkN "بوتاواتومي" ; --- guess from بوتاواتومي
|
||||
lin pound_2_N = mkN "جنيه" ; --- guess from جنيه
|
||||
lin pound_4_N = mkN "جنيه" ; --- guess from جنيه
|
||||
lin pound_5_N = mkN "جنيه" ; --- guess from جنيه
|
||||
lin pound_6_N = mkN "جنيه" ; --- guess from جنيه
|
||||
lin pound_8_N = mkN "جنيه" ; --- guess from جنيه
|
||||
lin powhatan_N = mkN "بوهاتان" ; --- guess from بوهاتان
|
||||
lin premier_2_N = mkN "رئيسالوزرارائد" ; --- guess from رئيسالوزرارائد
|
||||
lin presidentFem_3_N = mkN "رئيسرئيسة" ; --- guess from رئيسرئيسة
|
||||
lin presidentMasc_3_N = 'رَئِيس_N' ; -- 5965 [['boss, chief, leader'], ['director'], ['headmaster, principal'], ['chairman'], ['governor'], ['president'], ['manager, superintendent'], ['conductor'], ['captain']]
|
||||
lin presidential_1_A = mkA "رياسي" ; --- guess from رياسي
|
||||
lin prime_minister_2_N = mkN "رئيسالوزرا" ; --- guess from رئيسالوزرا
|
||||
lin prince_N = mkN "مير" ; --- guess from مير
|
||||
lin product_2_N = mkN "نتاج" ; --- guess from نتاج
|
||||
lin prussian_N = mkN "بروسي" ; --- guess from بروسي
|
||||
lin pula_N = mkN "بولا" ; --- guess from بولا
|
||||
lin quechua_N = mkN "كيشوا" ; --- guess from كيشوا
|
||||
lin queen_2_N = 'مَلَكَة_N' ; -- 14486 [['possession'], ['acquisition'], ['attainment, acquired skill or quality, talent, virtue'], ['habit, custom'], ['slavery']]
|
||||
-- lin queen_2_N = 'مَلِكَة_N' ; -- 14927 [['queen']]
|
||||
lin quetzal_1_N = mkN "كتزال" ; --- guess from كتزال
|
||||
lin rand_1_N = mkN "راند" ; --- guess from راند
|
||||
lin rank_2_V2 = mkV2 'وَضَعَ_V' ; -- 1785 [['to put; to lay; to place; to set; to position; to install; to implant'], ['to lump, to group; to put together'], ['to lump, to group; to put together', 'to lay and cluster (eggs) in a nest'], ['to store away, to stow away, to deposit; to put down, to lay down'], ['to stop holding or using (a tool or an instrument, such as a weapon), to put away or down, to lay down; to put aside', 'to cancel (a law, a regulation, and so on), to abrogate; to set aside'], ['to stop holding or using (a tool or an instrument, such as a weapon), to put away or down, to lay down; to put aside', 'to remove (clothes); to put off or down, to lay off or down, to doff; to take off'], ['to stop holding or using (a tool or an instrument, such as a weapon), to put away or down, to lay down; to put aside', 'to give birth to (a baby), to deliver, to bear'], ['to posit (a law, a regulation, and so on); to impose; to set down, to lay down'], ['to posit (a law, a regulation, and so on); to impose; to set down, to lay down', 'to posit (an explanation, a theory, and so on); to propose, to set forth; to put down'], ['to add'], ['to add', 'to interpose (something, as in a text or a literature, especially falsely), to insert; to interpolate; to put in'], ['to see or treat as lowly, to demean']]
|
||||
lin rate_2_N = 'سِعْر_N' ; -- 14666 [['price'], ['quote (a summary of work to be done with a set price)']]
|
||||
-- lin rate_2_N = 'سُعْر_N' ; -- 18715 [['voracious hunger'], ['infection']]
|
||||
lin rate_4_N = 'مُعَدَّل_N' ; -- 15035 [['rate'], ['average']]
|
||||
lin real_2_N = mkN "حقيقي" ; --- guess from حقيقي
|
||||
lin regent_1_N = mkN "قيم" ; --- guess from قيم
|
||||
lin regime_1_N = mkN "حكومةنطام" ; --- guess from حكومةنطام
|
||||
lin religion_2_N = 'دَيْن_N' ; -- 74728 [['verbal noun of دَانَ (dāna) (form I)'], ['debt, debit, liability, pecuniary, obligation, financial claim']]
|
||||
-- lin religion_2_N = 'دِين_N' ; -- 74729 [['verbal noun of دَانَ (dāna, “to be religious”) (form I)'], ['religion, creed, credo, faith, conviction, belief, tenet, rite'], ['conformism, conformance, conformity, compliance, fealty, obedience; God-fearingness, godliness, religiosity, devoutness'], ['law, obligations, duty'], ['custom, habit'], ['judgement, decision, ruling', 'requital, compensation, indemnification'], ['judgement, decision, ruling', 'credit, obligation, account, falling due of a debt']]
|
||||
lin rental_2_N = mkN "يجار" ; --- guess from يجار
|
||||
lin representative_3_A = mkA "مندوبممثل" ; --- guess from مندوبممثل
|
||||
lin republic_2_N = 'جُمْهُورِيَّة_N' ; -- 15302 [['republicanism'], ['republic']]
|
||||
-- lin republic_2_N = 'جُمْهُورِيَّة_1_N' ; -- 65212 [['female equivalent of جُمْهُورِيّ (jumhūriyy)']]
|
||||
lin reserve_2_N = mkN "احتياط" ; --- guess from احتياط
|
||||
lin result_in_V2 = variants {} ; --- guess from سفرعن
|
||||
lin rial_1_N = 'رِيَال_N' ; -- 918 [['riyal (the official currency of Saudi Arabia and Qatar).'], ['rial (the official currency of Oman, Yemen, and Iran).'], ['real (the official currency of Brazil).'], ['real (any of a number of defunct currencies in the former Spanish and Portuguese Empires)']]
|
||||
lin rial_2_N = 'رِيَال_N' ; -- 918 [['riyal (the official currency of Saudi Arabia and Qatar).'], ['rial (the official currency of Oman, Yemen, and Iran).'], ['real (the official currency of Brazil).'], ['real (any of a number of defunct currencies in the former Spanish and Portuguese Empires)']]
|
||||
lin ringgit_N = mkN "رينغيت" ; --- guess from رينغيت
|
||||
lin riyal_1_N = 'رِيَال_N' ; -- 918 [['riyal (the official currency of Saudi Arabia and Qatar).'], ['rial (the official currency of Oman, Yemen, and Iran).'], ['real (the official currency of Brazil).'], ['real (any of a number of defunct currencies in the former Spanish and Portuguese Empires)']]
|
||||
lin riyal_2_N = 'رِيَال_N' ; -- 918 [['riyal (the official currency of Saudi Arabia and Qatar).'], ['rial (the official currency of Oman, Yemen, and Iran).'], ['real (the official currency of Brazil).'], ['real (any of a number of defunct currencies in the former Spanish and Portuguese Empires)']]
|
||||
lin romanian_N = mkN "الرومانية" ; --- guess from الرومانية
|
||||
lin romansh_N = mkN "الرومانشية" ; --- guess from الرومانشية
|
||||
lin ron_N = mkN "رون" ; --- guess from رون
|
||||
lin ruble_2_N = mkN "روبل" ; --- guess from روبل
|
||||
lin rupee_1_N = mkN "روبية" ; --- guess from روبية
|
||||
lin rupee_2_N = mkN "روبية" ; --- guess from روبية
|
||||
lin rupee_3_N = mkN "روبية" ; --- guess from روبية
|
||||
lin rupee_5_N = mkN "روبية" ; --- guess from روبية
|
||||
lin rupee_6_N = mkN "روبية" ; --- guess from روبية
|
||||
lin rupiah_N = mkN "روبية" ; --- guess from روبية
|
||||
lin russian_N = 'رُوسِيّ_N' ; -- 4075 [['Russian']]
|
||||
lin sango_N = mkN "السانجو" ; --- guess from السانجو
|
||||
lin sanskrit_N = mkN "السنسكريتية" ; --- guess from السنسكريتية
|
||||
lin sardinian_N = mkN "السردينية" ; --- guess from السردينية
|
||||
lin scots_N = mkN "السكتلندية" ; --- guess from السكتلندية
|
||||
lin scottish_gaelic_N = mkN "السكتلنديةالغالية" ; --- guess from السكتلنديةالغالية
|
||||
lin selkup_N = mkN "السيلكب" ; --- guess from السيلكب
|
||||
lin seneca_N = mkN "السنيكا" ; --- guess from السنيكا
|
||||
lin serbo_croat_N = mkN "صربوـكرواتي" ; --- guess from صربوـكرواتي
|
||||
lin serer_N = mkN "السرر" ; --- guess from السرر
|
||||
lin shariah_1_N = 'شَرِيعَة_N' ; -- 18835 [['way, path'], ['law and legislation'], ['sharia, law']]
|
||||
lin shilling_1_N = mkN "شلن" ; --- guess from شلن
|
||||
lin shilling_2_N = mkN "شلن" ; --- guess from شلن
|
||||
lin shilling_3_N = mkN "شلن" ; --- guess from شلن
|
||||
lin shilling_4_N = mkN "شلن" ; --- guess from شلن
|
||||
lin shina_N = mkN "شينا" ; --- guess from شينا
|
||||
lin shona_N = mkN "الشونا" ; --- guess from الشونا
|
||||
lin show_2_V2 = mkV2 'عَرَضَ_V' ; -- 5092 [['to appear'], ['to happen, to occur'], ['to show, to display, to present'], ['to expose']]
|
||||
-- lin show_2_V2 = mkV2 'عَرَّضَ_V' ; -- 6113 [['to broaden, to widen, to enlarge'], ['to place one thing opposite another'], ['to offer, to expose, to hand, to exchange'], ['to write indistinctly, illegibly, to merely hint, to speak obscurely, to write phrases susceptible to multiple meanings or to write letters not distinct'], ['to defame, to slander, to abuse'], ['to underdo the meat'], ['to mark the camel at the hoof'], ['to circumcise children'], ['to become possessed by power of speech, to be eloquent']]
|
||||
-- lin show_2_V2 = mkV2 'عَرُضَ_V' ; -- 18990 [['to be or become wide']]
|
||||
lin sindhi_N = mkN "السندية" ; --- guess from السندية
|
||||
lin sinhala_N = mkN "السنهالية" ; --- guess from السنهالية
|
||||
lin skagit_N = mkN "سكاكيت" ; --- guess from سكاكيت
|
||||
lin slovak_2_N = mkN "السلوفاكية" ; --- guess from السلوفاكية
|
||||
lin slovenian_N = mkN "السلوفينية" ; --- guess from السلوفينية
|
||||
lin sokoro_N = mkN "سوكورو" ; --- guess from سوكورو
|
||||
lin som_1_N = mkN "سوم" ; --- guess from سوم
|
||||
lin som_2_N = mkN "سوم" ; --- guess from سوم
|
||||
lin somali_N = mkN "الصومالية" ; --- guess from الصومالية
|
||||
lin sotho_2_N = mkN "السوتوالجنوبية" ; --- guess from السوتوالجنوبية
|
||||
lin south_3_N = 'جَنُوب_N' ; -- 16691 [['south']]
|
||||
-- lin south_3_N = 'جُنُوب_N' ; -- 64537 [['verbal noun of جَنَبَ (janaba) (form I)']]
|
||||
lin southeast_1_N = mkN "جنوبيشرقي" ; --- guess from جنوبيشرقي
|
||||
lin southwest_1_N = mkN "جنوبيغربي" ; --- guess from جنوبيغربي
|
||||
lin soviet_A = mkA "سوفييتي" ; --- guess from سوفييتي
|
||||
lin spanish_N = mkN "سباني" ; --- guess from سباني
|
||||
lin speak_3_V2 = variants {} ; --- guess from تحدثتكلم
|
||||
lin spoken_A = mkA "منطوقملفوظ" ; --- guess from منطوقملفوظ
|
||||
lin sport_1_N = 'رِيَاضَة_N' ; -- 16827 [['sport (physical activity)'], ['mathematics']]
|
||||
lin square_1_A = 'مُرَبَّع_A' ; -- 12741 [['square, quadratic'], ['fourfold, quadruple'], ['tetragonal, quadrangular']]
|
||||
lin starch_1_N = mkN "نشا" ; --- guess from نشا
|
||||
lin state_4_N = mkN "دولةولاية" ; --- guess from دولةولاية
|
||||
lin succeed_V2 = variants {} ; --- guess from نجحخلف
|
||||
lin sundanese_N = mkN "السوندانية" ; --- guess from السوندانية
|
||||
lin supreme_2_A = mkA "عليا" ; --- guess from عليا
|
||||
lin swahili_N = mkN "السواحيلية" ; --- guess from السواحيلية
|
||||
lin swazi_2_N = mkN "السواتي" ; --- guess from السواتي
|
||||
lin swedish_N = mkN "السويدية" ; --- guess from السويدية
|
||||
lin swiss_N = mkN "سويسري" ; --- guess from سويسري
|
||||
lin system_1_N = mkN "منظومة" ; --- guess from منظومة
|
||||
lin system_4_N = 'نِظَام_N' ; -- 17630 [['system'], ['regularity'], ['order'], ['method'], ['rule'], ['regime: perhaps short for نِظَام الْحُكْم (niẓām al-ḥukm, “system of rule”)']]
|
||||
lin tajik_N = mkN "الطاجيكية" ; --- guess from الطاجيكية
|
||||
lin taka_N = mkN "تاكا" ; --- guess from تاكا
|
||||
lin take_12_V2 = variants {} ; --- guess from اخذ
|
||||
lin tala_N = mkN "تالة" ; --- guess from تالة
|
||||
lin tamil_2_N = mkN "التاميلية" ; --- guess from التاميلية
|
||||
lin tampon_N = mkN "سدادةقطنية" ; --- guess from سدادةقطنية
|
||||
lin tatar_N = mkN "التتارية" ; --- guess from التتارية
|
||||
lin tax_N = 'رَسْم_N' ; -- 79916 [['verbal noun of رَسَمَ (rasama) (form I)'], ['sketch, drawing, painting, picture, portrait, outline, chart'], ['pattern, structure, design'], ['rasm (Arabic writing without dots)'], ['trace, spoor'], ['tradition, custom'], ['rate, levy, imposition']]
|
||||
lin telugu_N = mkN "التيلجو" ; --- guess from التيلجو
|
||||
lin tenge_1_N = mkN "تنغى" ; --- guess from تنغى
|
||||
lin terrorist_N = mkN "رهابي" ; --- guess from رهابي
|
||||
lin thai_N = 'تَايْلَانْدِيّ_N' ; -- 4301 [['Thai language']]
|
||||
-- lin thai_N = 'تَايْلَانْدِيّ_1_N' ; -- 4302 [['Thai man']]
|
||||
lin tibetan_1_N = mkN "التبتية" ; --- guess from التبتية
|
||||
lin ticket_1_N = 'تَذْكِرَة_N' ; -- 77511 [['verbal noun of ذَكَّرَ (ḏakkara) (form II)'], ['memorandum, admonition'], ['collection, precepts, summa'], ['ticket']]
|
||||
lin tlingit_N = mkN "التلينغيتية" ; --- guess from التلينغيتية
|
||||
lin toda_N = mkN "تودا" ; --- guess from تودا
|
||||
lin tonga_N = mkN "تونجاجزرتونجا" ; --- guess from تونجاجزرتونجا
|
||||
lin total_1_A = 'مَجْمُوع_A' ; -- 18478 [['united'], ['reconciled']]
|
||||
lin transitional_A = mkA "انتقالي" ; --- guess from انتقالي
|
||||
lin transport_1_N = mkN "وسيلةنقل" ; --- guess from وسيلةنقل
|
||||
lin tsimshian_N = mkN "التسيمشيان" ; --- guess from التسيمشيان
|
||||
lin tswana_2_N = mkN "التسوانية" ; --- guess from التسوانية
|
||||
lin tugrik_1_N = mkN "توغروغ" ; --- guess from توغروغ
|
||||
lin tulu_N = mkN "لغةتولو" ; --- guess from لغةتولو
|
||||
lin turkish_N = 'تُرْكِيَّة_N' ; -- 4359 [['Turkish language']]
|
||||
-- lin turkish_N = 'تُرْكِيَّة_1_N' ; -- 60870 [['female equivalent of تُرْكِيّ (turkiyy, “Turk”):', 'female equivalent of تُرْكِيّ (turkiyy, “Turk”)'], ['female equivalent of تُرْكِيّ (turkiyy, “Turk”):', 'Turkish woman']]
|
||||
lin turkmen_N = mkN "التركمانية" ; --- guess from التركمانية
|
||||
lin tuscarora_N = mkN "توسكارورانيفادا" ; --- guess from توسكارورانيفادا
|
||||
lin udmurt_N = mkN "الدمرت" ; --- guess from الدمرت
|
||||
lin ukrainian_N = mkN "اوكرانية" ; --- guess from اوكرانية
|
||||
lin umbundu_N = mkN "المبندو" ; --- guess from المبندو
|
||||
lin unemployment_N = 'بِطَالَة_N' ; -- 11385 [['idleness'], ['unemployment']]
|
||||
lin unit_3_N = 'وَحْدَة_N' ; -- 18471 [['unit (a standard measure of a quantity)'], ['unit (a group within an organization that has been assigned a specific duty or function)'], ['unit; module (part of a book or educational course)'], ['union, unity; oneness (the state of being united as one)'], ['loneliness (a feeling of depression resulting from being alone)']]
|
||||
lin unitary_3_A = mkA "توحيدي" ; --- guess from توحيدي
|
||||
lin urdu_N = mkN "الردية" ; --- guess from الردية
|
||||
lin uzbek_N = mkN "الوزبكية" ; --- guess from الوزبكية
|
||||
lin vat_1_N = mkN "ضريبةالقيمةالمضافة" ; --- guess from ضريبةالقيمةالمضافة
|
||||
lin veps_N = mkN "فيبسية" ; --- guess from فيبسية
|
||||
lin vietnamese_2_N = mkN "الفيتنامية" ; --- guess from الفيتنامية
|
||||
lin walloon_N = mkN "الوالون" ; --- guess from الوالون
|
||||
lin water_1_N = mkN "ما" ; --- guess from ما
|
||||
lin welsh_2_N = mkN "لغةويلزية" ; --- guess from لغةويلزية
|
||||
lin west_2_N = 'غَرَب_N' ; -- 8110 [['the disease of an abscess in the canthus of the eye, lachrymal fistula']]
|
||||
-- lin west_2_N = 'غَرْب_N' ; -- 102364 [['verbal noun of غَرَبَ (ḡaraba) (form I)'], ['west, occident'], ['vehemence, violence, tempestuousness']]
|
||||
-- lin west_2_N = 'غَرَب_1_N' ; -- 128137 [['Euphrates poplar (Populus euphratica)'], ['willow (Salix spp.)']]
|
||||
lin winnebago_N = mkN "وينيباكو" ; --- guess from وينيباكو
|
||||
lin wolof_N = mkN "الولوف" ; --- guess from الولوف
|
||||
lin woman_1_N = 'مَرَّة_N' ; -- 926 [['a time, instance, occurrence'], ['Ellipsis of اِسْمُ مَرَّةٍ (ismu marratin).']]
|
||||
-- lin woman_1_N = 'مِرَّة_N' ; -- 128434 []
|
||||
lin won_2_N = mkN "ون" ; --- guess from ون
|
||||
lin world_1_N = 'عَالِم_N' ; -- 15804 [['scholar, man of letters, scientist'], ['knowledgeable person, savant']]
|
||||
-- lin world_1_N = 'عَالَم_N' ; -- 19120 [['world'], ['universe, cosmos, existence'], ['world, hereunder, worldly life'], ['things, creation, that which exists before you'], ['nation, people, group, type, or kind']]
|
||||
lin world_5_N = 'عَالِم_N' ; -- 15804 [['scholar, man of letters, scientist'], ['knowledgeable person, savant']]
|
||||
-- lin world_5_N = 'عَالَم_N' ; -- 19120 [['world'], ['universe, cosmos, existence'], ['world, hereunder, worldly life'], ['things, creation, that which exists before you'], ['nation, people, group, type, or kind']]
|
||||
lin xhosa_N = mkN "الخوسا" ; --- guess from الخوسا
|
||||
lin year_1_N = 'سُنَّة_N' ; -- 1703 [['a usual, recurrent, continual, determinable, or constant thing', 'a common, habitual, popularized, or enforced practice; a custom, convention, or ritual; a social norm or standard'], ['a usual, recurrent, continual, determinable, or constant thing', 'the conduct, habits, behavior, or mannerisms of a person (viewed collectively)'], ['a usual, recurrent, continual, determinable, or constant thing', 'a determinate or predetermined universal law (either normative or historical)'], ['a narrative attributed to an Islamic religious figure (typically Prophet Muhammad), a tradition; a hadith'], ['a narrative attributed to an Islamic religious figure (typically Prophet Muhammad), a tradition; a hadith', 'the body of narratives attributed to Islamic religious figures (viewed collectively)'], ['a religiously canonized tradition or practice', 'the set of canonical traditions whence orthodoxy and orthopraxy are derived (viewed collectively)'], ['a religiously canonized tradition or practice', 'adherence to the religious traditions, traditionalism; orthodoxy and orthopraxy'], ['a religiously canonized tradition or practice', 'a traditional religious practice for which there is a divine reward but for whose omission there is no punishment, a commendable supererogatory act often done as an expression of faith, a religious work of supererogation'], ['the Sunni sect or the adherents thereof (viewed collectively); Sunnism'], ['an image, a form, an appearance, a look']]
|
||||
-- lin year_1_N = 'سِنَة_N' ; -- 8368 [['drowsiness'], ['slumber; nap']]
|
||||
-- lin year_1_N = 'سَنَة_N' ; -- 19200 [['year']]
|
||||
lin yen_2_N = mkN "ين" ; --- guess from ين
|
||||
lin yiddish_N = mkN "اليديشية" ; --- guess from اليديشية
|
||||
lin yoruba_N = mkN "اليوروبية" ; --- guess from اليوروبية
|
||||
lin yuan_N = mkN "يوان" ; --- guess from يوان
|
||||
lin zapotec_N = mkN "الزابوتيك" ; --- guess from الزابوتيك
|
||||
lin zhuang_N = mkN "الزهيونج" ; --- guess from الزهيونج
|
||||
lin zloty_N = mkN "زلوطي" ; --- guess from زلوطي
|
||||
lin zulu_N = mkN "الزولو" ; --- guess from الزولو
|
||||
}
|
||||
@@ -1,171 +0,0 @@
|
||||
# utilities for Arabic script
|
||||
# in the main mode, converts string literals in stdin 'to' or 'from' Buckwalter
|
||||
# as specified by the command line argument:
|
||||
#
|
||||
# % python3 arabic_utilities.py to <MorphoDictAra.gf | python3 arabic_utilities.py from >b.tmp
|
||||
# % diff MorphoDictAra.gf b.tmp
|
||||
# %
|
||||
|
||||
import unicodedata
|
||||
|
||||
def is_arabic(s):
|
||||
return s and any(1574 <= ord(c) <= 1616 for c in s)
|
||||
|
||||
|
||||
def get_arabic(s):
|
||||
return ''.join([c for c in s if is_arabic(c)])
|
||||
|
||||
|
||||
def unvocalize(s):
|
||||
return ''.join([c for c in s if 0x621 <= ord(c) <= 0x64a])
|
||||
|
||||
|
||||
# https://en.wikipedia.org/wiki/Buckwalter_transliteration
|
||||
buckwalter_dict = {
|
||||
0x621: "'", # ء
|
||||
0x622: '|', # آ
|
||||
0x623: '>', # أ
|
||||
0x624: '&', # ؤ
|
||||
0x625: '<', # إ
|
||||
0x626: '}', # ئ
|
||||
0x627: 'A', # ا
|
||||
0x628: 'b', # ب
|
||||
0x629: 'p', # ة
|
||||
0x62a: 't', # ت
|
||||
0x62b: 'v', # ث
|
||||
0x62c: 'j', # ج
|
||||
0x62d: 'H', # ح
|
||||
0x62e: 'x', # خ
|
||||
0x62f: 'd', # د
|
||||
0x630: '*', # ذ
|
||||
0x631: 'r', # ر
|
||||
0x632: 'z', # ز
|
||||
0x633: 's', # س
|
||||
0x634: '$', # ش
|
||||
0x635: 'S', # ص
|
||||
0x636: 'D', # ض
|
||||
0x637: 'T', # ط
|
||||
0x638: 'Z', # ظ
|
||||
0x639: 'E', # ع
|
||||
0x63a: 'g', # غ
|
||||
0x641: 'f', # ف
|
||||
0x642: 'q', # ق
|
||||
0x643: 'k', # ك
|
||||
0x644: 'l', # ل
|
||||
0x645: 'm', # م
|
||||
0x646: 'n', # ن
|
||||
0x647: 'h', # ه
|
||||
0x648: 'w', # و
|
||||
0x649: 'Y', # ى
|
||||
0x64a: 'y', # ي
|
||||
0x64b: 'F', # ً
|
||||
0x64c: 'N', # ٌ
|
||||
0x64d: 'K', # ٍ
|
||||
0x64e: 'a', # َ
|
||||
0x64f: 'u', # ُ
|
||||
0x650: 'i', # ِ
|
||||
0x651: '~', # ّ
|
||||
0x652: 'o', # ْ
|
||||
0x670: '`', # '
|
||||
0x671: '{' # ٱ
|
||||
}
|
||||
|
||||
|
||||
buckwalter_dict_rev = {b: chr(a) for a, b in buckwalter_dict.items()}
|
||||
|
||||
arabic_vowels = {chr(c) for c in {0x64b, 0x64c, 0x64d, 0x64e, 0x64f, 0x650}}
|
||||
|
||||
sound_consonants = {chr(c) for c in range(0x628, 0x648)} # excluding alif, waw, ya
|
||||
|
||||
def to_buckwalter(s):
|
||||
return ''.join([buckwalter_dict.get(ord(c), c) for c in s])
|
||||
|
||||
|
||||
def from_buckwalter(s):
|
||||
return ''.join([buckwalter_dict_rev.get(c, c) for c in s])
|
||||
|
||||
|
||||
def drop_final_vowel(s):
|
||||
if s[-1] in arabic_vowels:
|
||||
return s[:-1]
|
||||
else:
|
||||
return s
|
||||
|
||||
|
||||
def normal(s):
|
||||
return unicodedata.normalize('NFD', s)
|
||||
|
||||
# heuristic for finding the three radicals from certain forms
|
||||
# works only for sound (strong) 3-radical roots, otherwise None
|
||||
def get_sound_trigram_root(s):
|
||||
sounds = [c for c in s if c in sound_consonants]
|
||||
if len(sounds) == 3:
|
||||
return ''.join(sounds)
|
||||
else:
|
||||
return None
|
||||
|
||||
|
||||
# reverse engineer fcl pattern from a given form, with a sound trigram root
|
||||
# one more condition: each of the root letters occurs exactly ones
|
||||
# TODO: better use the given root of the lex entry
|
||||
def get_sound_fcl_pattern(s):
|
||||
if root := get_sound_trigram_root(s):
|
||||
if len([c in s for c in root]) == 3:
|
||||
p = list(s)
|
||||
r = s.find(root[0])
|
||||
p[r] = chr(0x641)
|
||||
r += s[r+1:].find(root[1]) + 1
|
||||
p[r] = chr(0x639)
|
||||
r += s[r+1:].find(root[2]) + 1
|
||||
p[r] = chr(0x644)
|
||||
p = ''.join(p)
|
||||
## print('---PATT', s, root, p)
|
||||
return p
|
||||
|
||||
|
||||
# Wikt uses vowel+shadda which is a Unicode normalization
|
||||
# GF uses shadda+vowel which is linguistically correct
|
||||
# see https://stackoverflow.com/questions/58559390/in-unicode-should-u0651-arabic-shadda-be-before-or-after-kasra
|
||||
# unicodedata.normalize does this wrong, as noted by Ariel Gutman
|
||||
## todo: more direct implementation
|
||||
def reorder_shadda(s):
|
||||
return from_buckwalter(to_buckwalter(s).replace('a~', '~a').replace('u~', '~u').replace('i~', '~i'))
|
||||
|
||||
|
||||
# quote word forms but not parameters
|
||||
def quote_if(s, cond=is_arabic, change=reorder_shadda):
|
||||
if cond(s):
|
||||
return '"' + change(s) + '"'
|
||||
else:
|
||||
return s
|
||||
|
||||
|
||||
# for a string, change each string literal in "..." with a change function
|
||||
# leaving other characters as they are; print the string to stdout as you go
|
||||
def change_literals(s, change):
|
||||
inliteral = False
|
||||
literal = ''
|
||||
for c in s:
|
||||
if c == '"' and inliteral:
|
||||
print('"'+change(literal)+'"', end='')
|
||||
inliteral = False
|
||||
literal = ''
|
||||
elif c == '"':
|
||||
inliteral = True
|
||||
elif inliteral:
|
||||
literal += c
|
||||
else:
|
||||
print(c, end='')
|
||||
|
||||
|
||||
# convert literals in stdin 'to' or 'from' Buckwalter
|
||||
if __name__ == '__main__':
|
||||
import sys
|
||||
mode = sys.argv[1]
|
||||
for line in sys.stdin:
|
||||
if mode == 'from':
|
||||
change_literals(line, from_buckwalter)
|
||||
elif mode == 'to':
|
||||
change_literals(line, to_buckwalter)
|
||||
|
||||
|
||||
@@ -1,455 +0,0 @@
|
||||
import gzip
|
||||
import json
|
||||
import sys
|
||||
import unicodedata
|
||||
import pgf
|
||||
from arabic_utilities import *
|
||||
|
||||
# data from https://kaikki.org/dictionary/rawdata.html
|
||||
# thanks Tatu Ylonen: Wiktextract: Wiktionary as Machine-Readable Structured Data,
|
||||
# Proceedings of the 13th Conference on Language Resources and Evaluation (LREC), pp. 1317-1325, Marseille, 20-25 June 2022.
|
||||
|
||||
"""
|
||||
This file converts Wiktionary data to GF morphological dictionary files.
|
||||
It words for Arabic but some functionalities could be modified to other languges.
|
||||
|
||||
The steps to take are the following:
|
||||
|
||||
fetch data:
|
||||
|
||||
raw-wiktextract-data.json.gz from https://kaikki.org/dictionary/rawdata.html
|
||||
|
||||
filter Arabic entries:
|
||||
|
||||
$ python3 read_wiktionary.py raw >wikt_arabic.jsonl
|
||||
|
||||
create GF files:
|
||||
|
||||
$ python3 read_wiktionary.py gf-abs >MorphoDictAraAbs.gf
|
||||
$ python3 read_wiktionary.py gf-cnc >MorphoDictAra.gf
|
||||
|
||||
automatic evaluation:
|
||||
|
||||
$ gf -make MorphoDictAra.gf
|
||||
$ python3 read_wiktionary.py gf-map >source_of_MorphoDictAra.jsonl
|
||||
$ python3 read_wiktionary.py eval
|
||||
|
||||
TODO:
|
||||
- better generation of GF
|
||||
- better paradigms to use Wiktionary data
|
||||
- refactor the code so that it can be used for other languages
|
||||
|
||||
"""
|
||||
|
||||
|
||||
MODE = ''
|
||||
|
||||
if __name__ == '__main__':
|
||||
if not sys.argv[1:]:
|
||||
print('usage: read_wiktionary (raw | gf-cnc | gf-abs | gf-map | eval | eval-funs | eval-verbose | error-analysis)')
|
||||
exit()
|
||||
MODE = sys.argv[1] #
|
||||
|
||||
|
||||
# step 1: extract Arabic data from this file using the raw option
|
||||
WIKTIONARY_DUMP = 'raw-wiktextract-data.json.gz'
|
||||
EXTRACTED_LANGUAGE = 'Arabic'
|
||||
|
||||
# the following file is generated.
|
||||
# in the sequel, use this file with gf-abs or gf-cnc option
|
||||
FILTERED_WIKT = 'wikt_arabic.jsonl'
|
||||
|
||||
# map each successfully extracted GF function to its source record in Wiktionary
|
||||
# created with option gf-map
|
||||
FUNCTION_SOURCE_MAP = 'source_of_MorphoDictAra.jsonl'
|
||||
|
||||
# created with $ gf -make MorphoDictAra.gf
|
||||
PGF_FILE = 'MorphoDictAraAbs.pgf'
|
||||
|
||||
# module to linearize with
|
||||
CONCRETE_MODULE = 'MorphoDictAra'
|
||||
|
||||
# concrete syntax file, to debug sources of linearizations
|
||||
CONCRETE_FILE = CONCRETE_MODULE + '.gf'
|
||||
|
||||
# evaluation result file, created with mode eval-funs
|
||||
EVAL_FILE = 'eval.jsonl'
|
||||
|
||||
|
||||
# read a gzipped jsonl file (one object per line),
|
||||
# showing lines where one of a list of languages is present
|
||||
# This can be sampled to one of 100k lines by default, 1 for total recall.
|
||||
def get_gzip_json(file, sample=100000, langs=[]):
|
||||
with gzip.open(file) as decompressed:
|
||||
n = 0
|
||||
for line in decompressed:
|
||||
n += 1
|
||||
if n % sample == 0:
|
||||
obj = json.loads(line)
|
||||
if obj.get('lang', None) in langs:
|
||||
print(line.decode("utf-8"))
|
||||
# print(n)
|
||||
|
||||
|
||||
# to perform the first step of data extraction, pipe this into a file:
|
||||
# python3 read_wiktionary.py raw >wikt_arabic.jsonl
|
||||
if MODE == 'raw':
|
||||
get_gzip_json(WIKTIONARY_DUMP, 1, [EXTRACTED_LANGUAGE])
|
||||
exit()
|
||||
|
||||
|
||||
if MODE == 'error-analysis':
|
||||
evals = {}
|
||||
with open(EVAL_FILE) as file:
|
||||
for line in file:
|
||||
row = json.loads(line)
|
||||
if labels := row.get('labels', None):
|
||||
cat = row['fun'][-1]
|
||||
verdict = row['verdict']
|
||||
evals[(cat, labels, verdict)] = evals.get((cat, labels, verdict), 0) + 1
|
||||
for labverdict, n in sorted(list(evals.items())):
|
||||
print(labverdict, n)
|
||||
|
||||
|
||||
# generate word_d_C functions starting with d=0, but show d only when >= 1
|
||||
def gf_fun(s, pos, disamb=0):
|
||||
discrim = '_' + str(disamb) if disamb else ''
|
||||
return ''.join(["'", s, discrim, "_", pos, "'"])
|
||||
|
||||
|
||||
# mapping from GF to Wikt features
|
||||
arabic_rgl_features = {
|
||||
# V
|
||||
'VPerf': 'perfective',
|
||||
'Act': 'active',
|
||||
'Pas': 'passive',
|
||||
'Per3': 'third-person',
|
||||
'Per2': 'second-person',
|
||||
'Per1': 'first-person',
|
||||
'Masc': 'masculine',
|
||||
'Fem': 'feminine',
|
||||
'Sing': 'singular',
|
||||
'Plur': 'plural',
|
||||
'Sg': 'singular',
|
||||
'Pl': 'plural',
|
||||
'Dl': 'dual',
|
||||
'VImpf': 'imperfective',
|
||||
'Ind': 'indicative',
|
||||
'Cnj': 'subjunctive',
|
||||
'Jus': 'jussive',
|
||||
'VImp': 'imperative',
|
||||
# N: also Sg, Pl, Dl
|
||||
'Def': 'definite',
|
||||
'Indef': 'indefinite',
|
||||
'Nom': 'nominative',
|
||||
'Acc': 'accusative',
|
||||
'Gen': 'genitive',
|
||||
# 'Bare':
|
||||
# 'Dat':
|
||||
'Const': 'construct'
|
||||
# 'Poss':
|
||||
#A: also N features; degree features cannot be found
|
||||
# 'APosit': 'positive',
|
||||
# 'AComp': 'comparative'
|
||||
}
|
||||
|
||||
|
||||
# the inflection forms in a wiktionary entry
|
||||
def wikt_forms_from_obj(obj):
|
||||
forms = {
|
||||
reorder_shadda(form['form']):
|
||||
form.get('tags', []) for
|
||||
form in obj.get('forms', []) if
|
||||
'romanization' not in form.get('tags', []) and
|
||||
is_arabic(form['form'])
|
||||
}
|
||||
# the root (three radicals) is found in this place if at all
|
||||
root = [find_root(t['expansion']) for
|
||||
t in obj.get('etymology_templates', []) if
|
||||
t.get('name', None) =='ar-root'][:1]
|
||||
if root and root[0].strip():
|
||||
forms['root'] = root[0].strip()
|
||||
|
||||
return forms
|
||||
|
||||
|
||||
# selection of forms for a given POS from Wikt: noun, adj, or verb
|
||||
# return a linearization function
|
||||
def forms_for_pos(obj):
|
||||
dforms = wikt_forms_from_obj(obj)
|
||||
forms = dforms.items()
|
||||
if obj['pos'] == 'noun':
|
||||
lemma = [drop_final_vowel(form) for form, descr in forms
|
||||
if all([w in descr for w in ['construct', 'nominative', 'singular']])][:1]
|
||||
plural = [drop_final_vowel(form) for form, descr in forms
|
||||
if all([w in descr for w in ['construct', 'nominative', 'plural']])][:1]
|
||||
gender = (['fem'] if 'Arabic feminine nouns' in obj['categories']
|
||||
else (['masc'] if 'Arabic masculine nouns' in obj['categories']
|
||||
else []))
|
||||
gf_entry = {
|
||||
'cat': 'N',
|
||||
'lemma': lemma,
|
||||
'args': {
|
||||
'sg': lemma,
|
||||
'pl': plural,
|
||||
'g': gender
|
||||
}
|
||||
}
|
||||
elif obj['pos'] == 'verb':
|
||||
lemma = [form for form, descr in forms
|
||||
if all([w in descr for
|
||||
w in ["active", "indicative", "masculine", "past",
|
||||
"perfective", "singular", "third-person"]])][:1]
|
||||
gf_entry = {
|
||||
'cat': 'V',
|
||||
'lemma': lemma,
|
||||
'args': {
|
||||
'perfect': lemma,
|
||||
'imperfect': [form for form, descr in forms
|
||||
if all([w in descr for
|
||||
w in [
|
||||
"active", "indicative", "masculine", "non-past",
|
||||
"imperfective", "singular", "third-person"]])][:1],
|
||||
'cls': ['Form' + max([n for n in [
|
||||
'I', 'II','III','IV','V','VI','VII','VIII','IX','X','XI','']
|
||||
if n in ' '.join([c for c in obj['categories']
|
||||
if c.endswith('verbs') and any([n in c for n in 'IVX'])])],
|
||||
key=len)] # max in RGL is XI, in Wikt XIII
|
||||
}
|
||||
}
|
||||
elif obj['pos'] == 'adj':
|
||||
lemma = [form for form, descr in forms
|
||||
if all([w in descr for w in [
|
||||
'indefinite', 'masculine', 'singular', 'informal']])][:1]
|
||||
gf_entry = {
|
||||
'cat': 'A',
|
||||
'lemma': lemma,
|
||||
'args': {
|
||||
'masc_sg': lemma,
|
||||
'masc_pl': [form for form, descr in forms
|
||||
if all([w in descr for w in ['indefinite', 'masculine', 'plural', 'informal']])][:1],
|
||||
'fem_sg': [form for form, descr in forms
|
||||
if all([w in descr for w in ['indefinite', 'feminine', 'singular', 'informal']])][:1],
|
||||
'fem_pl': [form for form, descr in forms
|
||||
if all([w in descr for w in ['indefinite', 'feminine', 'plural', 'informal']])][:1],
|
||||
}
|
||||
}
|
||||
for patt in ['masc_sg', 'masc_pl']:
|
||||
if patt in gf_entry['args']:
|
||||
if form := gf_entry['args'][patt]:
|
||||
if spatt := get_sound_fcl_pattern(form[0]):
|
||||
gf_entry['args'][patt[5:]+'_patt'] = [spatt] # sg_patt, pl_patt
|
||||
|
||||
else:
|
||||
gf_entry = {f: d for f, d in forms}
|
||||
|
||||
if 'lemma' in gf_entry and gf_entry['lemma']:
|
||||
gf_entry['lemma'] = gf_entry['lemma'][0]
|
||||
if 'root' in dforms:
|
||||
gf_entry['args']['root'] = [dforms['root']]
|
||||
elif root := get_sound_trigram_root(gf_entry['lemma']):
|
||||
gf_entry['args']['root'] = [root]
|
||||
args = sorted([(r, quote_if(x[0])) for r, x in gf_entry['args'].items() if x])
|
||||
gf_entry['lin'] = 'wmk' + gf_entry['cat'] + ' {' + ' ; '.join([r + ' = ' + v for (r, v) in args]) + '}'
|
||||
gf_entry['labels'] = ','.join([r for r, v in args])
|
||||
|
||||
return gf_entry
|
||||
|
||||
|
||||
# "root": ["ش ر ح (š-r-ḥ)"]
|
||||
def find_root(s):
|
||||
return ''.join([c for c in s if is_arabic(c)])
|
||||
|
||||
|
||||
# GF code generation
|
||||
|
||||
# start with the header of the desired GF module
|
||||
|
||||
if MODE == 'gf-abs':
|
||||
print('abstract MorphoDictAraAbs = Cat ** {')
|
||||
if MODE == 'gf-cnc':
|
||||
print('concrete MorphoDictAra of MorphoDictAraAbs = CatAra ** open ParadigmsAra, MoreAra in {')
|
||||
|
||||
# go through the Arabic Wiktionary entries
|
||||
# generate functions with unique names
|
||||
|
||||
if MODE.startswith('gf') or MODE=='json':
|
||||
with open(FILTERED_WIKT) as file:
|
||||
seen_gf_funs = {} # to disambiguate names if needed
|
||||
number = 1
|
||||
for line in file:
|
||||
try:
|
||||
obj = json.loads(line)
|
||||
except:
|
||||
continue
|
||||
number += 1 # if you find the same word_C again, mark it word_1_C
|
||||
|
||||
# only take entries that are marked as lemmas
|
||||
if 'Arabic lemmas' in obj.get('categories', []):
|
||||
entry = {
|
||||
'pos': obj['pos'],
|
||||
'forms': forms_for_pos(obj),
|
||||
'all_forms': wikt_forms_from_obj(obj),
|
||||
'senses': [sense['glosses'] for sense in obj.get('senses', [])
|
||||
if 'glosses' in sense]
|
||||
}
|
||||
|
||||
# if you only want to see the Wikt information used GF generation
|
||||
if MODE == 'json':
|
||||
print(json.dumps(entry, ensure_ascii=False))
|
||||
|
||||
# if you want to proceed to GF generation
|
||||
if MODE.startswith('gf'):
|
||||
|
||||
lemma = entry['forms'].get('lemma', None)
|
||||
if lemma:
|
||||
cat = entry['forms']['cat']
|
||||
lin = entry['forms']['lin']
|
||||
labels = entry['forms']['labels']
|
||||
discrim = seen_gf_funs.get((lemma, cat), 0)
|
||||
fun = gf_fun(lemma, cat, discrim)
|
||||
|
||||
# abstract syntax, save in MorphoDictAraAbs.gf
|
||||
if MODE == 'gf-abs':
|
||||
print('fun', fun, ':', cat, ';', '--', number, entry['senses'])
|
||||
|
||||
# concrete syntax, save in MorphoDictAra.gf
|
||||
elif MODE == 'gf-cnc':
|
||||
print('lin', fun, '=', lin, ';')
|
||||
|
||||
# function-source map, save in source_of_MorphoDictAra.jsonl
|
||||
elif MODE == 'gf-map':
|
||||
source = wikt_forms_from_obj(obj)
|
||||
source['gf_labels'] = labels
|
||||
mapitem = {'fun': fun, 'source': source}
|
||||
print(json.dumps(mapitem, ensure_ascii=False))
|
||||
|
||||
seen_gf_funs[(lemma, cat)] = discrim + 1 # next word_d_C will get a new number
|
||||
|
||||
# terminate the GF file with a closing brace
|
||||
if MODE in ['gf-abs', 'gf-cnc']:
|
||||
print('}')
|
||||
|
||||
|
||||
# evaluation:
|
||||
# linearize all words to tables
|
||||
# compare them to the forms found in Wiktionary
|
||||
# report on matches
|
||||
|
||||
# format of GF table:
|
||||
# {'s (AComp Def Bare)': 'الأَيَُونَانِ'}
|
||||
# coming from pgf tabularLinearize
|
||||
|
||||
# compare the table for one function, returning a report as a dict
|
||||
def compare_tables(gf, wikt, fun, show_buckwalter=True):
|
||||
report = {}
|
||||
for pair in gf.items():
|
||||
gf_form = pair[1]
|
||||
gf_params = pair[0]
|
||||
gf_tags = tuple(word for word in
|
||||
pair[0].replace('(', ' ').replace(')', ' ').split()
|
||||
if word in arabic_rgl_features)
|
||||
if not gf_tags:
|
||||
continue # if gf_tags match no Wikt tags, do not include this form
|
||||
wikt_tags = {arabic_rgl_features[tag] for tag in gf_tags}
|
||||
wikt_form = None
|
||||
wikt_descr = None
|
||||
for form, descr in wikt.items():
|
||||
if all([tag in descr for tag in wikt_tags]):
|
||||
wikt_form = reorder_shadda(form)
|
||||
wikt_descr = descr
|
||||
break
|
||||
report[gf_tags] = { # flat param description with only Wikt-relevant tags
|
||||
'gf_params': gf_params, # full param description
|
||||
'gf_form': gf_form,
|
||||
'wikt_form': wikt_form,
|
||||
'wikt_descr': wikt_descr
|
||||
}
|
||||
if show_buckwalter:
|
||||
report[gf_tags]['gf_form_rom'] = to_buckwalter(gf_form) if gf_form else None
|
||||
report[gf_tags]['wikt_form_rom'] = to_buckwalter(wikt_form) if wikt_form else None
|
||||
if wikt_form:
|
||||
report[gf_tags]['voc_match'] = int(normal(gf_form) == normal(wikt_form))
|
||||
report[gf_tags]['unvoc_match'] = int(normal(unvocalize(gf_form)) == normal(unvocalize(wikt_form)))
|
||||
ritems = tuple(report.items()) # need an unmutable structure, because otherwise ints are added to items
|
||||
report['fun'] = fun
|
||||
report['labels'] = wikt['gf_labels']
|
||||
report['total_found'] = len([f for f, v in ritems if v['wikt_form'] is not None ])
|
||||
report['total_voc'] = sum([v.get('voc_match', 0) for f, v in ritems])
|
||||
report['total_unvoc'] = sum([v.get('unvoc_match', 0) for f, v in ritems])
|
||||
return report
|
||||
|
||||
|
||||
# with a given grammar and function, prepare input for compare_tables
|
||||
# and produce a report, possibly summarizing it
|
||||
def eval_with_wikt(gr, lang, fun, wikt, verbose=False):
|
||||
if fun not in gr.functions:
|
||||
print(fun, 'not found in grammar')
|
||||
return
|
||||
gf = {p: s for (p, s) in lang.tabularLinearize(pgf.Expr(fun, [])).items()
|
||||
if p.startswith('s ')} # require the s field, exclude s2
|
||||
report = compare_tables(gf, wikt, fun)
|
||||
if verbose:
|
||||
return report
|
||||
else:
|
||||
if report['total_found'] == 0:
|
||||
verdict = 'NOT_FOUND'
|
||||
flaws = False
|
||||
elif report['total_found'] == report['total_voc']:
|
||||
verdict = 'PERFECT'
|
||||
flaws = False
|
||||
elif report['total_found'] == report['total_unvoc']:
|
||||
verdict = 'PERFECT_UNVOC'
|
||||
flaws = True
|
||||
elif report['total_voc'] == 0:
|
||||
verdict = 'TOTALLY_WRONG'
|
||||
flaws = True
|
||||
else:
|
||||
verdict = 'PARTIAL'
|
||||
flaws = True
|
||||
summary = {
|
||||
'fun': report['fun'],
|
||||
'forms': report['total_found'],
|
||||
'voc': report['total_voc'],
|
||||
'unvoc': report['total_unvoc'],
|
||||
'verdict': verdict,
|
||||
'labels': report['labels']
|
||||
}
|
||||
|
||||
if flaws:
|
||||
for f, v in report.items():
|
||||
if v.get('voc_match', 1) == 0:
|
||||
summary['first_error'] = v
|
||||
break
|
||||
return summary
|
||||
|
||||
|
||||
def eval_grammar(pgffile, concretename, mapfile, show=True, verbose=False):
|
||||
gr = pgf.readPGF(pgffile)
|
||||
concrete = gr.languages[concretename]
|
||||
|
||||
totals = {'A': {}, 'N': {}, 'V': {}}
|
||||
|
||||
with open(mapfile) as file:
|
||||
for line in file:
|
||||
obj = json.loads(line)
|
||||
fun = obj['fun'][1:-1]
|
||||
report = eval_with_wikt(gr, concrete, fun, obj['source'], verbose)
|
||||
|
||||
cat = fun[-1]
|
||||
if 'verdict' in report:
|
||||
rep = report['verdict']
|
||||
totals[cat][rep] = totals[cat].get(rep, 0) + 1
|
||||
|
||||
if show:
|
||||
print(json.dumps(report, ensure_ascii=False))
|
||||
|
||||
print(json.dumps(totals, ensure_ascii=False))
|
||||
|
||||
|
||||
if MODE.startswith('eval'):
|
||||
verbose = MODE=='eval-verbose'
|
||||
show = verbose or MODE=='eval-funs'
|
||||
eval_grammar(PGF_FILE, CONCRETE_MODULE, FUNCTION_SOURCE_MAP, show, verbose)
|
||||
|
||||
|
||||
@@ -1,59 +0,0 @@
|
||||
import sys
|
||||
import csv
|
||||
import json
|
||||
|
||||
from arabic_utilities import *
|
||||
|
||||
# to run: python3 to_wordnet.py >arabic-wn-morpho.jsonl
|
||||
# the following are assumed
|
||||
|
||||
# from https://www.grammaticalframework.org/~krasimir/arabic.tsv.gz
|
||||
# WN_TSV = 'arabic.tsv' # Krasimir
|
||||
WN_TSV = 'ar2en_words_gf.csv' # Zarzoura
|
||||
|
||||
# built as explained in ./read_wiktionary.py
|
||||
MORPHO_GF = 'MorphoDictAraAbs.gf'
|
||||
|
||||
|
||||
# fun 'دُبُ_N' : N ; -- 10 [['bear']]
|
||||
funmap = {}
|
||||
with open(MORPHO_GF) as gffile:
|
||||
for line in gffile:
|
||||
line = line.split()
|
||||
if line[2:] and line[0] == 'fun':
|
||||
fun = line[1]
|
||||
key = unvocalize(fun)
|
||||
cat = line[3]
|
||||
sense = ' '.join(line[6:])
|
||||
funmap[(key, cat)] = funmap.get((key, cat), [])
|
||||
funmap[(key, cat)].append({'fun': fun, 'sense': sense})
|
||||
|
||||
|
||||
# abandon_1_V2 ParseAra ترك (1,1,1,3,322,3)
|
||||
with open(WN_TSV) as wnfile:
|
||||
print('--# -path=.:../gf-wordnet')
|
||||
print('concrete WordNetAra of WordNet = CatAra ** open MorphoDictAra, MoreAra, ParadigmsAra in {')
|
||||
|
||||
## wnreader = csv.reader(wnfile, delimiter='\t')
|
||||
for row in wnfile:
|
||||
## word = row[-1].strip() # does not show tha arabic, but the second-last word
|
||||
word = unvocalize(get_arabic(row))
|
||||
wnfun = row.split()[-1] # 0 in Krasimir
|
||||
cat = [c for c in wnfun if c.isalpha()][-1] # the last letter; the dict only contains N, A, V
|
||||
funs = funmap.get((word, cat), [])
|
||||
mk = 'mkV2 ' if wnfun.endswith('V2') else ''
|
||||
results = [' '.join(['lin', wnfun, '=', mk + fs['fun'], ';', '--', str(fs['sense'])])
|
||||
for fs in funs]
|
||||
if results:
|
||||
print(results[0])
|
||||
for r in results[1:]:
|
||||
print('--', r)
|
||||
else:
|
||||
if (cat := wnfun[-2:]) in ['_A', '_N', '_V']:
|
||||
lin = 'mk' + cat[-1] + ' "' + word + '"'
|
||||
else:
|
||||
lin = 'variants {}'
|
||||
print(' '.join(['lin', wnfun, '=', lin, ';', '---', 'guess from', word]))
|
||||
print('}')
|
||||
|
||||
|
||||
@@ -61,8 +61,7 @@ incomplete concrete CatBantu of Cat =
|
||||
|
||||
Numeral = {s : CardOrd => Gender => Str ; n : Number} ;
|
||||
|
||||
Digits = {s : CardOrd => Gender => Str ; n : Number} ;
|
||||
Decimal = {s : CardOrd => Gender => Str ; n : Number ; hasDot : Bool} ;
|
||||
Digits = {s : CardOrd => Gender => Str ; n : Number} ;
|
||||
|
||||
-- Structural
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ param
|
||||
|
||||
oper
|
||||
-- AGRE = {g : Gender ; n : Number ; p : Person} ;
|
||||
Agre : PType = {g : Gender ; n : Number ; p : Person} ;
|
||||
Agre : Type = {g : Gender ; n : Number ; p : Person} ;
|
||||
agre : Gender -> Number -> Person -> Agre = \g,n,p -> {g = g ; n = n ; p = p} ;
|
||||
|
||||
agrFeatures : Agr -> Agre = \a -> case a of {Ag g n p => {g = g ; n = n ; p = p}} ;
|
||||
|
||||
@@ -77,7 +77,6 @@ lin
|
||||
NumCard n = n ;--** {hasCard = True} ;
|
||||
|
||||
NumDigits n = {s = n.s ! NCard ; n = n.n} ;
|
||||
NumDecimal n = {s = n.s ! NCard ; n = n.n} ;
|
||||
OrdDigits n = { s = n.s ! NOrd} ;
|
||||
|
||||
NumNumeral numeral = {s = numeral.s ! NCard; n = numeral.n} ;
|
||||
|
||||
@@ -85,7 +85,6 @@ concrete CatEus of Cat = CommonX ** open ResEus, Prelude in {
|
||||
|
||||
Numeral = { s : Str ; n : Number } ;
|
||||
Digits = { s : CardOrd => Str ; n : Number } ;
|
||||
Decimal = { s : CardOrd => Str ; n : Number ; hasDot : Bool} ;
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -125,7 +125,6 @@ concrete NounEus of Noun = CatEus ** open ResEus, Prelude in {
|
||||
|
||||
-- : Digits -> Card ;
|
||||
NumDigits dig = { s = dig.s ! NCard ; n = dig.n } ;
|
||||
NumDecimal dec = { s = dec.s ! NCard ; n = dec.n } ;
|
||||
|
||||
-- : Numeral -> Card ;
|
||||
NumNumeral num = num ;
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user