summary refs log tree commit diff stats
path: root/lib/pure
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2111 from lyro/fix-2110Andreas Rumpf2015-02-121-2/+2
|\ | | | | fix conditions for int size in 'math.nextPowerOfTwo' #2110
| * fix conditions for int size in 'math.nextPowerOfTwo' #2110Frank Fischer2015-02-121-2/+2
| |
* | made a test greenAraq2015-02-121-1/+1
| |
* | fixed minor bugs; cleaned up testsAraq2015-02-125-61/+66
|/
* Merge pull request #2078 from c-blake/develAndreas Rumpf2015-02-111-44/+112
|\ | | | | Add hcode. Re-factor rawGet. Fix infinite loop.
| * Address Andreas' complaint about code duplication.Charles Blake2015-02-071-2/+3
| |
| * Merge /home/cb/pkg/nim/Nim into develCharles Blake2015-02-074-2/+75
| |\ | | | | | | | | | pull from master
| * | Fix unnecessarily slow set building from openArray.Charles Blake2015-02-071-3/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The estimation of the initialSize as simply array len + 10 was too small for for all but the smallest sets. It would not elide/skip one final enlarge(). That last one is actually always the most expensive enlarge(). Indeed, in a series where one to start from tiny and build up the table..that last one is about 50% of all the enlarging time in general. So, this simple and reasonable optimization (compared to just starting at 64) was only helping about half as much as it could. Introduce a rightSize() proc to be the inverse to mustRehash(). Export it to clients since pre-sizing is externally useful in set construction and the current mustRehash rules are opaque and beyond the control of clients. Also add test module logic to check that rightSize() and mustRehash() are inverses in the appropriate sense..not really in a block/assertion throwing unit test since this is a peformance nice-to-have issue rather than about basic correctness. (Also, fix a too vs. two typo in doc comment.)
| * | Merge /home/cb/pkg/nim/Nim into develCharles Blake2015-02-073-5/+9
| |\ \
| * | | Add hcode. Re-factor rawGet. Fix infinite loop.Charles Blake2015-02-061-41/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace state enum with a cached hash code which has the same memory overhead and locality as the enum, but can really speed things up with non-integer-like keys (keys for which either hash() or == take more than couple cycles, or where the key data is "indirect" and might incur another cache miss). To function as both empty/filled state and a hash code cache, it only needs to be ensured that hash codes are non-zero for any real key. That is done at the one place in the whole file hash() is called. Keep convention clear via isFilled() & isEmpty(). An isDeleted state will no longer be necessary as per below excl/inf loop fix. Since some use sites know hc and some do not, re-factor rawGet into two forms - one with known hash code and one with an unknown HC that returns it. Both forms still return <0 on missing, but returns the much more informative "-1 - index". That return can be quickly inverted by -1 - result to recover the index where insert should happen, provided no modifications are made to the table in the meantime. This protocol retains the prior <0 interface and also makes it easy to avoid unnecessary duplicate search work in procs like containsOrInclImpl (which formerly searched in the initial get and AGAIN in rawInsert). Strip the searching part out of rawInsert to "make it even more raw". swap(s.data, n) a bit earlier so rawGet and rawGetKnownHC can have similar parameter lists and integrate well with rawInsert/code sharing between Set and OrderedSet impls. This PR also fixes infinite looping upon too many deletes. [ The deleted state (aka "tombstone") approach is vulnerable to the table filling up with deleted items which forces giant scans for missing keys which could be anywhere. In the version prior to this PR, table wraparound wasn't even detected yielding infinite loops. ] This PR changes excl() from marking slots as deleted to Knuth algo 6.4R, "local/incremental moveback rehashing" - adapted from Knuth's h->h-1 to the cache-friendlier h->h+1 probe sequence and adapted from "gotos" to a new doWhile template. This method restores the table to a state that would have resulted from pure inserts (in some order). Update nextTry accordingly. Since linear probing can degrade a little faster, 50% rather than 66% may be a better default growth threshold, but users should be able to adjust threshold anyway. Old unit tests all pass. More extensive testing in this module is probably warranted before taking similar enhancements over to collections.tables.
* | | | Async await try statement fixes.Dominik Picheta2015-02-091-10/+48
| | | |
* | | | Merge pull request #2059 from def-/getchVarriount2015-02-091-0/+28
|\ \ \ \ | |_|_|/ |/| | | Getch
| * | | Document terminal.getchdef2015-02-041-0/+2
| | | |
| * | | Add terminal.getch to get a single characterdef2015-02-031-0/+26
| | | |
* | | | Merge pull request #1869 from def-/json-stuffAndreas Rumpf2015-02-071-2/+75
|\ \ \ \ | | | | | | | | | | Json stuff
| * | | | Fix documentation and toJson signaturedef2015-02-041-2/+2
| | | | |
| * | | | Remove debugging echos againdef2015-01-051-2/+0
| | | | |
| * | | | Add operator `%*` to JSONdef2015-01-051-1/+76
| | | | |
| * | | | indent = 0 looks better for `$`(node: JsonNode)def2015-01-051-1/+1
| | | | |
* | | | | Merge pull request #2058 from def-/nimrod-cfgsAndreas Rumpf2015-02-073-0/+0
|\ \ \ \ \ | |_|_|_|/ |/| | | | Rename *.nimrod.cfg to *.nim.cfg
| * | | | Rename *.nimrod.cfg to *.nim.cfgdef2015-02-033-0/+0
| | |/ / | |/| |
* | | | configuration system supports %= to access environment variablesAraq2015-02-071-1/+1
| | | |
* | | | compiler distinguishes between 2 different 'var' types for C++ interop; code ↵Araq2015-02-071-1/+1
| | | | | | | | | | | | | | | | cleanups
* | | | lots of C++ codegen improvementsAraq2015-02-071-2/+6
| | | |
* | | | newRollingFileLogger - fmtStr is always set to defaultFmtStrFabio Cevasco2015-02-061-1/+1
| |_|/ |/| |
* | | Try to fix unittest for JS backend, still not workingdef2015-02-041-2/+1
| | |
* | | Merge pull request #2049 from def-/permutationsAndreas Rumpf2015-02-041-0/+59
|\ \ \ | | | | | | | | Add nextPermutation and prevPermutation
| * | | Add nextPermutation and prevPermutationdef2015-02-011-0/+59
| |/ / | | | | | | | | | | | | | | | Fits best into algorithm module I guess. These are the most general ways, an iterator could easily be implemented from this. Same algorithm as in Rust: http://web.mit.edu/rust-lang_v0.11/doc/src/collections/var/tmp/alexp/rust/rust-0.11.0/src/libcollections/slice.rs.html#644
* | | Merge pull request #2027 from dumndummer/patch-1Andreas Rumpf2015-02-041-4/+4
|\ \ \ | |/ / |/| | Update sequtils.nim
| * | Changed name 'pred' to 'op' in mapIt templatedumndummer2015-02-021-2/+2
| | |
| * | Update sequtils.nimdumndummer2015-01-281-2/+2
| | | | | | | | | Renamed param name 'pred' to 'op' in mapIt template to better correspond with map proc in system module
* | | Fix SinglyLinkedRing in lists moduledef2015-02-011-4/+22
| | | | | | | | | | | | | | | | | | | | | - SinglyLinkedRing's prepend was broken - needed a tail so that prepend can work properly - now append works as well, so I added it too - simple testcase added as well
* | | Merge pull request #2010 from modk/freebsd-parallel-buildAndreas Rumpf2015-02-011-1/+8
|\ \ \ | | | | | | | | Fix parallel build on FreeBSD
| * | | FreeBSD-specific codemodk2015-01-291-4/+8
| | | |
| * | | Set status to something else than 0modk2015-01-271-1/+1
| | | |
| * | | Merge with current develmodk2015-01-261-9/+27
| |\ \ \
| * | | | Fixes parallel build on FreeBSDmodk2015-01-261-1/+4
| | | | |
* | | | | Merge pull request #2020 from def-/mitemsreactormonk2015-02-015-1/+50
|\ \ \ \ \ | | | | | | | | | | | | mitems and mpairs
| * | | | | Typodef2015-01-281-1/+1
| | | | | |
| * | | | | Add mitems and mpairs where it makes sensedef2015-01-284-0/+49
| | | | | |
* | | | | | fixes #2041Araq2015-01-312-8/+10
| | | | | |
* | | | | | nimsuggest improvementsAraq2015-01-301-1/+1
| |_|_|/ / |/| | | |
* | | | | Move lib/pure/nodejs to compiler/nodejs. Ref #2017.Dominik Picheta2015-01-281-6/+0
| | | | |
* | | | | Merge pull request #2017 from reactormonk/nodejs-binaryAndreas Rumpf2015-01-281-0/+6
|\ \ \ \ \ | | | | | | | | | | | | Algorithm to find the nodejs binary
| * | | | | added suggested fixesSimon Hafner2015-01-271-0/+6
| | | | | |
* | | | | | documented new C++ supportAraq2015-01-285-10/+11
| |/ / / / |/| | | |
* | | | | Update sets.nimdumndummer2015-01-271-1/+1
| | | | | | | | | | | | | | | corrected misspelled word in doc comment
* | | | | nimsuggest: first versionAraq2015-01-271-1/+1
| | | | |
* | | | | bugfix: don't overwrite the number value in case of a parsing errorAraq2015-01-271-2/+3
| |_|/ / |/| | |
* | | | Logging module is now thread-safe.Dominik Picheta2015-01-251-9/+27
| |/ / |/| |