summary refs log tree commit diff stats
path: root/lib/notion.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fixed error with notion::words joinKelly Rauchenberger2017-02-051-1/+1
|
* Renamed object join fields to prevent conflicts with class namesKelly Rauchenberger2017-02-031-2/+2
| | | | This was not a problem with clang but it caused compilation errors with gcc.
* Fixed notion::prepositionGroup fieldKelly Rauchenberger2017-01-231-13/+13
|
* Started structural rewriteKelly Rauchenberger2017-01-161-0/+94
The new object structure was designed to build on the existing WordNet structure, while also adding in all of the data that we get from other sources. More information about this can be found on the project wiki. The generator has already been completely rewritten to generate a datafile that uses the new structure. In addition, a number of indexes are created, which does double the size of the datafile, but also allows for much faster lookups. Finally, the new generator is written modularly and is a lot more readable than the old one. The verbly interface to the new object structure has mostly been completed, but has not been tested fully. There is a completely new search API which utilizes a lot of operator overloading; documentation on how to use it should go up at some point. Token processing and verb frames are currently unimplemented. Source for these have been left in the repository for now.