summary refs log tree commit diff stats
path: root/lib/pure/collections
Commit message (Collapse)AuthorAgeFilesLines
* Fixed my name.Alexander Mitchell-Robinson2015-09-071-2/+2
|
* lib: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-044-239/+239
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* removed sequtils.reversed again since it's already in algorithm.nimAraq2015-08-101-23/+0
|
* added sequtils.reversed; refs #3148Araq2015-08-091-0/+23
|
* breaking change: symbol lookups in generics follows spec more closely; fixes ↵Araq2015-08-071-4/+4
| | | | #2664
* 'sequtils doesn't take confusing default args anymoreAraq2015-07-081-1/+1
|
* prepared selectors module for multi threadingAraq2015-06-301-3/+3
|
* Merge branch 'more_concurrency' into develAraq2015-06-304-168/+440
|\ | | | | | | | | | | | | | | Conflicts: doc/tut1.txt lib/core/locks.nim lib/pure/collections/tables.nim lib/pure/selectors.nim
| * some progress on making async multithreadedAraq2015-05-284-168/+440
| |
* | lib/pure/a-c - Dropped 'T' from typespdw2015-06-044-98/+100
| |
* | Add contains proc for tables to allow usage of `in`Jonathan2015-05-051-0/+24
|/
* fixes #2625Araq2015-05-031-4/+7
|
* Turn some test outputs into actual testsOleh Prypin2015-04-213-15/+18
|
* Don't run non-test code when defined(testing)Oleh Prypin2015-04-215-11/+17
|
* Merge pull request #2411 from reactormonk/merge-counttablesAndreas Rumpf2015-04-211-0/+61
|\ | | | | merge for CountTable, see #1680
| * doc comments for mergeSimon Hafner2015-03-261-0/+3
| |
| * merge for CountTable, see #1680Simon Hafner2015-03-261-0/+58
| |
* | Remove unneeded import os from intsetsOleh Prypin2015-04-091-1/+1
| |
* | Use more Natural and Positive numbers in proc parametersdef2015-04-063-34/+34
| | | | | | | | | | - Didn't go through all modules, only the main ones I thought of - Building the compiler and tests still work
* | Fix warning about sets.testModule() not used.ReneSac2015-04-041-174/+175
|/
* prepare for upcoming parsing change of unary operatorsAraq2015-03-222-18/+18
|
* Making tuples anonymous (so far... not finished).Hans Raaf2015-03-171-23/+22
|
* Changed cast to type conversion and added XXX.Hans Raaf2015-03-071-1/+1
|
* Do we want we to use the typesystem like this?Hans Raaf2015-03-061-2/+3
|
* Added repeat(seq, n) to sequtils.Hans Raaf2015-03-061-0/+28
| | | | This adds a repeat proc for sequences. There is also an test for it at the end of file.
* Fixed table getter not compiling when table value type had not '$' proc ↵krolik2015-03-051-1/+5
| | | | overriden
* Fix unknown symbol in tables mpairs iterator.Hans Raaf2015-02-211-1/+1
| | | | Fixes an error with mpairs iterator which was introduced with 5fbcf93860. This is used by nimforum thats why I found it. I also added a testcase for the mpairs iterator.
* Merge pull request #2139 from c-blake/develAndreas Rumpf2015-02-181-21/+59
|\ | | | | Add mgetOrPut to support just one probe chase for the common
| * Merge ../Nim into develCharles Blake2015-02-164-13/+13
| |\
| * | Add comments explaining odd looking i<0..data[i].Charles Blake2015-02-161-3/+3
| | |
| * | Just do wide interface of hasKeyOrPut & mgetOrPut.Charles Blake2015-02-161-36/+55
| | | | | | | | | | | | | | | | | | | | | Extract maybe re-hash/re-search and insert logic into a new template. Use this new template to do impl templates for all three put forms (which required renaming a couple 'value' arguments to 'val'). Added OrderedTable and OrderedTableRef versions of both as well.
| * | Add TableRef version of mgetOrPut.Charles Blake2015-02-161-0/+5
| | |
| * | Add mgetOrPut to support just one probe chase for the commonCharles Blake2015-02-151-0/+14
| | | | | | | | | | | | pattern of either updating or initializing table entries.
* | | intsets.empty is wrongAraq2015-02-181-2/+3
| |/ |/|
* | Fix typosFederico Ceratto2015-02-154-7/+7
| |
* | Fix typosFederico Ceratto2015-02-151-10/+10
|/
* assignment -> shallowCopy for efficiency.Charles Blake2015-02-132-2/+2
|
* Merge ../Nim into devel; track ttables.nim delete.Charles Blake2015-02-131-1/+1
|\
| * fixed minor bugs; cleaned up testsAraq2015-02-121-1/+1
| |
* | Update doc comments to mention rightSize.Charles Blake2015-02-132-10/+10
| |
* | Oops - missed updates to a few later rawGet()s.Charles Blake2015-02-121-4/+8
| |
* | Add hcode,rightSize,rawGetKnownHC. Fix inf loop.Charles Blake2015-02-121-60/+140
|/ | | | | | | | | | | | | | | | | | | | | | Make similar changes to those made in sets.nim, including hcode, rightSize rawGet/rawGetKnownHC result protocol, nextTry probe sequence to be the cache friendlier h=h+1 which in turn allows supporting changing deletion to fix the infinite loop bug with local rehashing which in turn has desirable properties of graceful table aging when deletes do happen and also making insert-only usage patterns no longer pay any time/space cost to check deleted status. Unlike collections.sets, this module has add() for duplicate key inserts and a 3rd type of table, CountTable. The first wrinkle is handled by introducing a rawGetDeep for unconditionally adding entries along collision chains. This point of CountTable seems to be space efficiency at 2 items per slot. These changes retain that by keeping the val==0 => EMPTY rule and not caching hash codes. putImpl is expanded in-place for CountTable since the new putImpl() is too different. { Depending on table size relative to caches & key expense, regular Table[A,B] may become faster than CountTable, especially if the basic count update could be something like inc(mGetOrPut(t, key, 0)). } Unit tests pass, but in this module those are much more of just a demo than probing for bugs. Should exercise/test this a little more before merging.
* Address Andreas' complaint about code duplication.Charles Blake2015-02-071-2/+3
|
* 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.)
* 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.
* 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 #2020 from def-/mitemsreactormonk2015-02-012-0/+25
|\ \ | | | | | | mitems and mpairs