Differences From Artifact [1a8e51e627]:
- File graphspell/dawg.py — part of check-in [c915d50f4a] at 2018-01-02 10:30:48 on branch trunk — [graphspell] deprecated code (user: olr, size: 32924) [annotate] [blame] [check-ins using]
To Artifact [a0b57fd216]:
- File graphspell/dawg.py — part of check-in [b181054462] at 2018-02-06 10:22:31 on branch trunk — [graphspell][py] dawg: code clarification (user: olr, size: 32922) [annotate] [blame] [check-ins using]
| ︙ | |||
131 132 133 134 135 136 137 | 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | - + |
for aEntry in lWord:
self.insert(aEntry)
oProgBar.increment(1)
oProgBar.done()
self.finish()
self.countNodes()
self.countArcs()
|
| ︙ | |||
470 471 472 473 474 475 476 | 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 | - - + - - + - |
def setPos (self): # version 2
self.pos = DawgNode.NextPos
DawgNode.NextPos += 1
def __str__ (self):
# Caution! this function is used for hashing and comparison!
|
| ︙ |