| NP V NP |
| example |
"Amanda drove the package."
|
| syntax |
Agent V Theme
|
| semantics |
motion(during(E0), Theme)
equals(E0, E1)
motion(during(E1), Agent)
cause(Agent, E0)
|
| NP V NP PP.destination |
| example |
"Amanda drove the package to New York."
|
| syntax |
Agent V Theme {to towards} Destination
|
| semantics |
motion(during(E0), Theme)
location(end(E0), Theme, Destination)
equals(E0, E1)
motion(during(E1), Agent)
location(end(E1), Agent, Destination)
cause(Agent, E0)
|
| NP V NP PP.source |
| example |
"Amanda drove the package from home."
|
| syntax |
Agent V Theme {{+src}} Source
|
| semantics |
motion(during(E0), Theme)
location(start(E0), Theme, Source)
equals(E0, E1)
motion(during(E1), Agent)
location(start(E1), Agent, Source)
cause(Agent, E0)
|
| NP V NP PP.source PP.destination |
| example |
"Amanda drove the package from home to New York."
|
| syntax |
Agent V Theme {{+src}} Source {to towards} Destination
|
| semantics |
motion(during(E0), Theme)
location(start(E0), Theme, Source)
location(end(E0), Theme, Destination)
equals(E0, E1)
motion(during(E1), Agent)
location(start(E1), Agent, Source)
location(end(E1), Agent, Destination)
cause(Agent, E0)
|
| NP V NP PP.destination PP.source |
| example |
"Amanda drove the package to New York from home."
|
| syntax |
Agent V Theme {to} Destination {{+src}} Source
|
| semantics |
motion(during(E0), Theme)
location(start(E0), Theme, Source)
location(end(E0), Theme, Destination)
equals(E0, E1)
motion(during(E1), Agent)
location(start(E1), Agent, Source)
location(end(E1), Agent, Destination)
cause(Agent, E0)
|
|