Overview
| Comment: | [graphspell] ibdawg: better suggestions when splitting |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | graphspell |
| Files: | files | file ages | folders |
| SHA3-256: |
aefcee1f12f5b753d726b3fc6e5694ac |
| User & Date: | olr on 2019-03-04 14:31:53 |
| Other Links: | manifest | tags |
Context
|
2019-03-04
| ||
| 15:20 | [fr] faux positif check-in: 2c39328403 user: olr tags: trunk, fr | |
| 14:31 | [graphspell] ibdawg: better suggestions when splitting check-in: aefcee1f12 user: olr tags: trunk, graphspell | |
| 09:50 | [graphspell] ibdawg: suggestions for trailing numbers -> exponent check-in: 0d2727274d user: olr tags: trunk, graphspell | |
Changes
Modified graphspell-js/ibdawg.js from [31dc2284c6] to [5fadd970c2].
| ︙ | |||
368 369 370 371 372 373 374 | 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 | - + |
if (sRemain == "") {
oSuggResult.addSugg(sNewWord);
for (let sTail of this._getTails(iAddr)) {
oSuggResult.addSugg(sNewWord+sTail);
}
return;
}
|
| ︙ |
Modified graphspell/ibdawg.py from [e1b96535dd] to [21e398dbec].
| ︙ | |||
331 332 333 334 335 336 337 | 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 | - + |
#logging.info((nDeep * " ") + sNewWord + ":" + sRemain)
if int.from_bytes(self.byDic[iAddr:iAddr+self.nBytesArc], byteorder='big') & self._finalNodeMask:
if not sRemain:
oSuggResult.addSugg(sNewWord, nDeep)
for sTail in self._getTails(iAddr):
oSuggResult.addSugg(sNewWord+sTail, nDeep)
return
|
| ︙ |