store copular verb + verb lemma set
All checks were successful
studiorailgun/trpg/pipeline/head This commit looks good

This commit is contained in:
austin 2024-12-30 22:09:27 -05:00
parent 693e4c0d93
commit 9c7e32094d
3 changed files with 109 additions and 1 deletions

View File

@ -0,0 +1,102 @@
A list of verb lemmas to potentially be used to construct dictionaries later
be
have
do
say
go
get
make
know
think
take
see
come
want
look
use
find
give
tell
work
call
try
ask
need
feel
become
leave
put
mean
keep
let
begin
seem
help
talk
turn
start
show
hear
play
run
move
like
live
believe
hold
bring
happen
write
provide
sit
stand
lose
pay
meet
include
continue
set
learn
change
lead
understand
watch
follow
stop
create
speak
read
allow
add
spend
grow
open
walk
win
offer
remember
love
consider
appear
buy
wait
serve
die
send
expect
build
stay
fall
cut
reach
kill
remain
suggest
raise
pass
sell
require
report
decide
pull

View File

@ -120,6 +120,7 @@ public class Clause {
//predicates
case "copula": {
//this means the root is a noun, but this related word is turning it into a copular predicate
pred.setCopular(child);
} break;
//a prepositional adjunct (oblique)

View File

@ -81,6 +81,11 @@ public class Predicate {
* The nonverbal predicate type
*/
NonVerbalPredicateType nonVerbalType;
/**
* The copular verb for this predicate
*/
IndexedWord copularVerb;
/**
* Constructor
@ -119,7 +124,7 @@ public class Predicate {
* @param copularWord The copular word
*/
public void setCopular(IndexedWord copularWord){
this.copularVerb = copularWord;
}
/**