From eef5de613c75661e5d94baa086f6f2ddc26c7ed0 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 24 Mar 2016 23:16:07 -0400 Subject: 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. --- lib/verbly.h | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) (limited to 'lib/verbly.h') diff --git a/lib/verbly.h b/lib/verbly.h index b9f5367..cfaf5bc 100644 --- a/lib/verbly.h +++ b/lib/verbly.h @@ -1,14 +1,35 @@ #ifndef VERBLY_H_5B39CE50 #define VERBLY_H_5B39CE50 -#include "c++14.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + #include "util.h" -#include "token.h" #include "data.h" #include "word.h" #include "verb.h" #include "adverb.h" #include "adjective.h" #include "noun.h" +#include "frame.h" +#include "preposition.h" +#include "token.h" +#include "noun_query.h" +#include "adverb_query.h" +#include "adjective_query.h" +#include "verb_query.h" +#include "frame_query.h" #endif /* end of include guard: VERBLY_H_5B39CE50 */ -- cgit 1.4.1