summary refs log tree commit diff stats
path: root/lib/notion.h
Commit message (Collapse)AuthorAgeFilesLines
* Added negative filter conversions to objectsKelly Rauchenberger2017-02-101-0/+15
|
* Renamed object validity checksKelly Rauchenberger2017-02-101-1/+1
| | | | | The bool conversion operator was unfortunately Very Confusing so I've just renamed the methods to isValid.
* 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.
* Started structural rewriteKelly Rauchenberger2017-01-161-0/+200
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.