mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-10 05:29:30 -06:00
37 lines
752 B
Plaintext
37 lines
752 B
Plaintext
abstract App =
|
|
Translate - [
|
|
-- Verb
|
|
ComplVS, ComplVQ, ComplVA,
|
|
Slash2V3, Slash3V3, SlashV2V, SlashV2S, SlashV2Q, SlashV2A,
|
|
SlashVV, SlashV2VNP,
|
|
PassVP, ReflVP,
|
|
AdvVPSlash, AdVVPSlash, VPSlashPrep,
|
|
-- Sentence
|
|
PredSCVP,
|
|
AdvSlash, SlashPrep, SlashVS,
|
|
EmbedS, EmbedQS, EmbedVP, RelS,
|
|
-- Question
|
|
ComplSlashIP,AdvQVP,AddAdvQVP,QuestQVP,
|
|
-- Idiom
|
|
CleftNP, CleftAdv,
|
|
ExistIP,
|
|
ExistNPAdv, ExistIPAdv,
|
|
ImpP3,
|
|
SelfAdvVP, SelfAdVVP, SelfNP
|
|
|
|
-- Construction
|
|
-- Extensions
|
|
]
|
|
,Phrasebook
|
|
|
|
** {
|
|
flags
|
|
startcat=Phr ;
|
|
heuristic_search_factor=0.80; -- doesn't seem to affect speed or quality much
|
|
|
|
fun
|
|
PhrasePhr : Phrase -> Phr ;
|
|
Phrase_Chunk : Phrase -> Chunk ;
|
|
|
|
}
|