From 3aceae8ab1eb5992110ea57a9479bbc3177feb21 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Wed, 16 Mar 2016 11:27:16 -0400 Subject: Added more inflections, word relationships, and pronunciations Nouns, adjectives, and adverbs now have inflected forms. A large number of WordNet word relationships (all noun-noun relationships, plus synonymy and antonymy for all word types except verbs) have been added. Additionally, CMUDICT is now being used to store word pronunciations for rhyming purposes. Verbly is now also a compiled library rather than being header-only due to the complexity of the query interface. --- verbly/verbly.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'verbly/verbly.h') diff --git a/verbly/verbly.h b/verbly/verbly.h index 44fd3a8..b9f5367 100644 --- a/verbly/verbly.h +++ b/verbly/verbly.h @@ -2,10 +2,13 @@ #define VERBLY_H_5B39CE50 #include "c++14.h" +#include "util.h" #include "token.h" +#include "data.h" +#include "word.h" #include "verb.h" -#include "adjective.h" #include "adverb.h" -#include "data.h" +#include "adjective.h" +#include "noun.h" #endif /* end of include guard: VERBLY_H_5B39CE50 */ -- cgit 1.4.1