Overview
Comment: | Minor hash table optimization |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
3c8c52a9f8b139a92069dc9b5619a279 |
User & Date: | rkeene on 2019-11-04 21:16:33 |
Other Links: | manifest | tags |
Context
2019-11-14
| ||
23:14 | Updated to use Tcl-computed mechanism for building shared objects check-in: ac58551e55 user: rkeene tags: trunk | |
2019-11-04
| ||
21:16 | Minor hash table optimization check-in: 3c8c52a9f8 user: rkeene tags: trunk | |
21:09 | Support using a hash table unless a really small input is used (may change in the future?) check-in: 37d00c3cfb user: rkeene tags: trunk | |
Changes
Modified lib/xvfs/xvfs.tcl from [74213d3431] to [842e8c1c67].
︙ | |||
557 558 559 560 561 562 563 | 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 | + - + + - + | for {set hash 0} {$hash < $config(hashTableSize)} {incr hash} { if {[info exists indexesAtHash($hash)]} { set indexes $indexesAtHash($hash) } else { set indexes [list] } if {[llength $indexes] != $maxIndexes} { |
︙ |