Overview
| Comment: | [core] ibdawg: variable renamed |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | core |
| Files: | files | file ages | folders |
| SHA3-256: |
6d320f3f8d81ca9f7939dc4d9e5d20ac |
| User & Date: | olr on 2017-06-26 07:36:26 |
| Original Comment: | [core] variable renamed |
| Other Links: | manifest | tags |
Context
|
2017-06-26
| ||
| 08:29 | [core] ibdawg: suggestion mechanism update check-in: 5cd4863db3 user: olr tags: trunk, core | |
| 07:36 | [core] ibdawg: variable renamed check-in: 6d320f3f8d user: olr tags: trunk, core | |
| 07:03 | [core] spellchecker wrapper check-in: abf7b36236 user: olr tags: trunk, core, new_feature | |
Changes
Modified gc_core/py/ibdawg.py from [1a4cdd2a3d] to [9784b032d7].
| ︙ | |||
52 53 54 55 56 57 58 | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | - + - + |
if self.cStemming == "S":
self.funcStemming = st.changeWordWithSuffixCode
elif self.cStemming == "A":
self.funcStemming = st.changeWordWithAffixCode
else:
self.funcStemming = st.noStemming
self.nTag = self.nArcVal - self.nChar - self.nAff
|
| ︙ | |||
241 242 243 244 245 246 247 | 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | - - + + |
show(nDeep, cChar)
lSugg.extend(self._suggestWithCrushedUselessChars(sWord[1:], nDeep+1, jAddr, sNewWord+cChar))
return lSugg
def _getSimilarArcsAndCrushedChars (self, cChar, iAddr):
"generator: yield similar char of <cChar> and address of the following node"
for nVal, jAddr in self._getArcs(iAddr):
|
| ︙ |