Removed redundant conditions in CritBitTree.inc, speedup it.

This commit is contained in:
data-man
2018-06-08 19:29:19 +03:00
parent fbd91a474a
commit 3e799d7876

View File

@@ -165,11 +165,8 @@ proc containsOrIncl*(c: var CritBitTree[void], key: string): bool =
proc inc*(c: var CritBitTree[int]; key: string, val: int = 1) =
## increments `c[key]` by `val`.
let oldCount = c.count
var n = rawInsert(c, key)
if c.count >= oldCount or oldCount == 0:
# not a new key:
inc n.val, val
inc n.val, val
proc incl*(c: var CritBitTree[void], key: string) =
## includes `key` in `c`.