Given the following clause:
Female or not White
Is the following tree the correct representation of this?
OR
/ \
female NOT white
That is, would "not white" be one unit, or is it considered two?
Additionally, what are the following four elements usually called in parsing:
OR -- (logical?)
female -- (variable name?)
NOT -- (inversion? or is this also logical?)
TRUE -- (for example, whether the value of female is true or not -- variable value?)