diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-03-24 23:16:07 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-03-24 23:16:07 -0400 |
commit | eef5de613c75661e5d94baa086f6f2ddc26c7ed0 (patch) | |
tree | 180230f6a245c5bca94d894273f5d2b93ded3f04 /lib/frame_query.h | |
parent | d5ee4e39e5b5b3b8daa85cd972802195ad35e965 (diff) | |
download | verbly-eef5de613c75661e5d94baa086f6f2ddc26c7ed0.tar.gz verbly-eef5de613c75661e5d94baa086f6f2ddc26c7ed0.tar.bz2 verbly-eef5de613c75661e5d94baa086f6f2ddc26c7ed0.zip |
Added verb frames
In addition: - Added prepositions. - Rewrote a lot of the query interface. It now, for a lot of relationships, supports nested AND, OR, and NOT logic. - Rewrote the token class. It is now a union-like class instead of being polymorphic, which means smart pointers are no longer necessary. - Querying with regards to word derivation has been temporarily removed. - Sentinel values are now supported for all word types. - The VerbNet data retrieved from http://verbs.colorado.edu/~mpalmer/projects/verbnet/downloads.html was found to not be perfectly satisfactory in some regards, especially regarding adjective phrases. A patch file is now included in the repository describing the changes made to the VerbNet v3.2 download for the canonical verbly datafile.
Diffstat (limited to 'lib/frame_query.h')
-rw-r--r-- | lib/frame_query.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/frame_query.h b/lib/frame_query.h new file mode 100644 index 0000000..dd11d16 --- /dev/null +++ b/lib/frame_query.h | |||
@@ -0,0 +1,21 @@ | |||
1 | #ifndef FRAME_QUERY_H_334B9D47 | ||
2 | #define FRAME_QUERY_H_334B9D47 | ||
3 | |||
4 | namespace verbly { | ||
5 | |||
6 | class frame_query { | ||
7 | public: | ||
8 | frame_query(const data& _data); | ||
9 | |||
10 | frame_query& for_verb(const verb& _v); | ||
11 | |||
12 | std::list<frame> run() const; | ||
13 | |||
14 | private: | ||
15 | const data& _data; | ||
16 | std::list<verb> _for_verb; | ||
17 | }; | ||
18 | |||
19 | }; | ||
20 | |||
21 | #endif /* end of include guard: FRAME_QUERY_H_334B9D47 */ | ||