VERBMORPHOLOGY: Interpret verbal morphology

Description Usage Arguments Details Value Author(s) See Also Examples

Description

Determine anaphoric reference of verb markers (either verb adpositions or suffixes).

Usage

1
VERBMORPHOLOGY(hearerID, analysis)

Arguments

hearerID

Pointer to hearer agent who's developing an analysis

analysis

Analysis of utterance (result of ANALYZE) in which roles have to be determined.

Details

If verb marker cannot be resolved anaphorically, it is reinterpret as a deictic argument.

Value

Analysis (dataframe) with resolved reference of verb markers.

Author(s)

Sander Lestrade

See Also

INTERPRET, NOUNMORPHOLOGY

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
FOUND()
situation=SITUATION(1)
proposition=PROPOSITION(1, situation)
proposition$verb$topic=0; if('internal'%in%names(proposition)){proposition$internal$topic=0}
proposition$external$topic=1; proposition$external$recency=10
proposition=TOPICFIRST(1, proposition)
utterance=PRODUCE(1, proposition)
analysis=ANALYZE(2, utterance, situation)
grouping=GROUP(2, analysis)
for(i in 1:length(grouping)){
	if('verbAdposition'%in%grouping[[i]]$role){
		print(VERBMORPHOLOGY(2, grouping[[i]]))	
}	}

MoLE documentation built on May 2, 2019, 3:02 p.m.