summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* assignment -> shallowCopy for efficiency.Charles Blake2015-02-132-2/+2
|
* New probe seq swaps 1st two keys. Fix in cmp.Charles Blake2015-02-131-1/+1
|
* Merge ../Nim into devel; track ttables.nim delete.Charles Blake2015-02-1335-1276/+1220
|\
| * fixes #2103Araq2015-02-131-6/+6
| |
| * fixes #2102Araq2015-02-131-9/+9
| |
| * fixes #2118Araq2015-02-131-7/+3
| |
| * fixes #2113Araq2015-02-131-1/+3
| |
| * fixes #2116Araq2015-02-131-11/+4
| |
| * fixes os.moveFile on WindowsAraq2015-02-133-2/+18
| |
| * 'passL' is not smart anymore about already known switches; -ldl is now ↵Araq2015-02-131-10/+12
| | | | | | | | properly appended to the linking command
| * 'auto' can be inferred to be 'void'Araq2015-02-132-1/+15
| |
| * Merge pull request #2097 from jferg2010/develAndreas Rumpf2015-02-121-1/+328
| |\ | | | | | | Date/time parsing
| | * Date/time parsing - removed comments from assertJeff2015-02-111-6/+6
| | |
| | * Date/time parsing with changes suggested by AraqJeff2015-02-111-334/+283
| | |
| | * Date/time parsing with minor changes requested by Dom96Jeff2015-02-091-32/+29
| | |
| | * Date/time parsingJeff2015-02-091-7/+388
| | |
| * | Merge pull request #2112 from oderwat/patch-xbitAndreas Rumpf2015-02-121-0/+0
| |\ \ | | | | | | | | Set executable bit on build.sh.
| | * | Set executable bit on build.sh.Hans Raaf2015-02-121-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | I am not sure why this is not set already? To me it is an annoyance that I have to set it manually and then git shows me a change for that file all the time while working.
| * | | Merge pull request #2095 from def-/rdstdin-winfixAndreas Rumpf2015-02-121-6/+12
| |\ \ \ | | | | | | | | | | Fix readPasswordFromStdin for Windows
| | * | | Add a new line after readPasswordFromStdin, add resultdef2015-02-091-5/+11
| | | | |
| | * | | Fix readPasswordFromStdin for Windowsdef2015-02-081-1/+1
| | | | |
| * | | | fixes #2068Araq2015-02-123-482/+490
| | | | |
| * | | | 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
| | | |/ / | | |/| |
| * | | | Aporia compiles again (disabling thread analysis is horrible!)Araq2015-02-121-1/+2
| | | | |
| * | | | ordinary parameters can follow a varargs parameterAraq2015-02-124-9/+44
| | | | |
| * | | | made a test greenAraq2015-02-121-1/+1
| | | | |
| * | | | better handling of gcsafety with --threadAnalysis:offAraq2015-02-122-25/+27
| | | | |
| * | | | fixed minor bugs; cleaned up testsAraq2015-02-1219-704/+246
| |/ / /
* | | | Update a use of initTable to avoid initial enlarge.Charles Blake2015-02-131-1/+1
| | | |
* | | | Update doc comments to mention rightSize.Charles Blake2015-02-132-10/+10
| | | |
* | | | New probe seq yields a non-bug swap of 1st 2 keys.Charles Blake2015-02-121-1/+1
| | | |
* | | | 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.
* | | | Merge ../Nim into develCharles Blake2015-02-124-4/+21
|\| | |
| * | | Merge pull request #2108 from oderwat/patch-1Andreas Rumpf2015-02-122-3/+3
| |\ \ \ | | | | | | | | | | Fixing dylib name for OSX
| | * | | Corrected warnings about deprecated namesHans Raaf2015-02-111-2/+2
| | | | | | | | | | | | | | | | | | | | I got warning about deprecated names here. I also know that other names probably need to change (T/P prefixes) but I am unsure about the exact rules. I may do that later if you like.
| | * | | Fixing dylib name for OSXHans Raaf2015-02-111-1/+1
| | | | | | | | | | | | | | | | | | | | I don't know if the (15|16...) is supposed to work on OSX. I have "libmysqlclient.18.dylib" in my lib directory and get "could not load: libmysqlclient.(15|16|17[18).dylib" on execution. After removing the pattern I can run my little example program and it works as "libmysqlclient.dylib" is a softlink to the current version anyway.
| * | | | Merge pull request #2053 from reactormonk/message-for-koch-tempAndreas Rumpf2015-02-122-1/+18
| |\ \ \ \ | | |/ / / | |/| | | report how to create a compiler stacktrace #1280
| | * | | use dynamic message destinationSimon Hafner2015-02-041-1/+1
| | | | |
| | * | | report how to create a compiler stacktrace #1280Simon Hafner2015-02-012-1/+18
| | | | |
* | | | | Merge ../Nim into develCharles Blake2015-02-111-1/+1
|\| | | |
| * | | | Merge pull request #2078 from c-blake/develAndreas Rumpf2015-02-111-44/+112
| |\ \ \ \ | | | | | | | | | | | | Add hcode. Re-factor rawGet. Fix infinite loop.
| * | | | | increase limit for 64bit systemsAraq2015-02-101-1/+1
| | | | | |
* | | | | | Merge ../Nim into develCharles Blake2015-02-1046-96/+223
|\| | | | |
| * | | | | fixes #2070Araq2015-02-103-2/+32
| | | | | |
| * | | | | cleanup index generationAraq2015-02-108-37/+71
| | | | | |
| * | | | | cleaned up GC tests; fixes object variant re-assign bugAraq2015-02-103-5/+11
| | | | | |
| * | | | | unsigned array indexes work better; minor cleanupsAraq2015-02-102-9/+26
| | | | | |
| * | | | | fixes #1131Araq2015-02-104-4/+15
| | | | | |