diff options
author | John Fultz <jfultz@wolfram.com> | 2015-10-14 01:29:30 -0500 |
---|---|---|
committer | John Fultz <jfultz@wolfram.com> | 2015-10-14 01:29:30 -0500 |
commit | fd6daafffbcce3bfc385d7508a1ca50174840912 (patch) | |
tree | 5fab061694d6856797e791a63b55c40e489a7e63 /lexiconparameters.h | |
parent | ef4273ba47a2da9cea0aed59235e2d0a86bb8d7e (diff) |
Convert dictionaries, add csw15.
* All dictionaries are now in v1 DAWG format.
* Three corrupt dictionaries were removed.
* Implement a way to tag dictionaries for copyright purposes.
* CSW15 is now a thing.
Diffstat (limited to 'lexiconparameters.h')
-rw-r--r-- | lexiconparameters.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lexiconparameters.h b/lexiconparameters.h index f29a589..d19f695 100644 --- a/lexiconparameters.h +++ b/lexiconparameters.h @@ -80,7 +80,8 @@ public: } const GaddagNode *gaddagRoot() const { return (GaddagNode *) &m_gaddag[0]; }; - UVString hashString(bool shortened) const; + string hashString(bool shortened) const; + string copyrightString() const; protected: unsigned char *m_dawg; @@ -88,7 +89,6 @@ protected: string m_lexiconName; LexiconInterpreter *m_interpreter; char m_hash[16]; - int m_wordCount; vector<string> m_utf8Alphabet; LexiconInterpreter* createInterpreter(char version) const; |