-
Notifications
You must be signed in to change notification settings - Fork 3
/
v-s-aug.foma
executable file
·34 lines (25 loc) · 1.02 KB
/
v-s-aug.foma
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# ABBREVIATIONS
# DEGR degree
# AUG augmentative
# MORPHOLOGICAL CATEGORY: +DEGR
# 2 MORPHOLOGICAL VALUES FOR DISAMBIGUATION:
# 0: AUG
# 1: VERITY
define V=S=AUG=SET1 [
# Intensifier
"[--][-piro][DEGR][+AUG][=VERITY:indeed, truly]" : "@EP"[{piro}]
| "[--][-pero][DEGR][+AUG][=VERITY:indeed, truly]" : "@EP"[{pero}]
| "[--][-pira][DEGR][+AUG][=VERITY:indeed, truly]" : "@EP"[{pira}]
];
define AUG=SET1 [V=S=AUG=SET1]; # -pero with no epenthesis
define V=S=AUG=SET2 [
"[--][-ni][DEGR][+AUG][=truly]" : [{ni}]
];
define AUG [ [EP V=S=AUG=SET1]|[V=S=AUG=SET1] ]; # -pero with epenthesis
define AUG=SET2 [V=S=AUG=SET2]; # -ni with no epenthesis
# -------------------------------------------
!define V=S=DEGR [
! "[--][-piro][+DEGR][=indeed, truly, verity]" : "@EP"[{piro}]
!| "[--][-pero][+DEGR][=indeed, truly, verity]" : "@EP"[{pero}]
!];
!define DEGR [ [EP V=S=DEGR]|[V=S=DEGR] ];