summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2020-12-31Merge branch 'master' of https://github.com/tylo-work/C99Containers into masterTyge Løvset
2020-12-31Added images.Tyge Løvset
2020-12-31Update carray_api.mdTyge Løvset
2020-12-31Update carray_api.mdTyge Løvset
2020-12-31Update cqueue_api.mdTyge Løvset
2020-12-31Update cptr_api.mdTyge Løvset
2020-12-31Updated picture.Tyge Løvset
2020-12-31Update pic.Tyge Løvset
2020-12-31Added picture.Tyge Løvset
2020-12-31Typo.Tyge Løvset
2020-12-31Added links to documentation of similar C++ classes.Tyge Løvset
2020-12-31More doc fixing.Tyge Løvset
2020-12-31Some minor touches.Tyge Løvset
2020-12-30Fixed memory leak in cvec_X_resize and cdeq_X_resize. Removed macros ↵Tyge Løvset
cdeq_size, cdeq_capacity, cdeq_empty. Use the cvec_X_* names instead.
2020-12-30Some more opts.Tyge Løvset
2020-12-30API change: Swapped destroy <-> compare function args in using_*() macros ↵Tyge Løvset
for cvec, cdeq, cptr and clist.
2020-12-29Another optimization on cdeq. Updated cdeq_benchmark.cppTyge Løvset
2020-12-29Optimized cdeq push_back/push_front performance.Tyge Løvset
2020-12-28Added PCG for comparison.Tyge Løvset
2020-12-28Fixed broken link in README.mdTyge Løvset
2020-12-28Reverted crand.h API back to rename crand_* to stc64_*, and crand_next() -> ↵Tyge Løvset
stc64_rand().
2020-12-27Removed MACRO functions in API, like cvec_size(c), cvec_empty(c). Use ↵Tyge Løvset
cvec_X_size(c) etc. Restructured benchmarks / examples.
2020-12-21Added another benchmark.Tyge Løvset
2020-12-21Added cdeq benchmarkTyge Løvset
2020-12-21Added some benchmarks. Fix typo in cdeq.hTyge Løvset
2020-12-21Optimized cdeq_X_insert_range. Added crand_uniform_fast() method (slightly ↵Tyge Løvset
biased for very large ranges only).
2020-12-19Updated some docs. Small optim. when erasing n from front.Tyge Løvset
2020-12-19Added link to cdeq docs.Tyge Løvset
2020-12-19Added docs for cdeq.hTyge Løvset
2020-12-19Some cleanup.Tyge Løvset
2020-12-18Got the fixes wrong. Ok now.Tyge Løvset
2020-12-18Fixed issues in cdeq and cvec. Added shrink_to_fit() too.Tyge Løvset
2020-12-18Added cdeq.h: Deque: Double Ended Queue. Fixed bug in cvec_X_push_n().Tyge Løvset
2020-12-17Renamed cpqueue (priority queue) container to cpque.Tyge Løvset
2020-12-17Update copt_api.mdTyge Løvset
2020-12-17Forgot benchmark.cppTyge Løvset
2020-12-17Merge branch 'master' of https://github.com/tylo-work/C99Containers into masterTyge Løvset
2020-12-17API change: Reverted back to original name used for .val in iterators to .refTyge Løvset
2020-12-16Update copt_api.mdTyge Løvset
2020-12-16Update carray_api.mdTyge Løvset
2020-12-16Update crand_api.mdTyge Løvset
2020-12-16Added links to header file in docs headline.Tyge Løvset
2020-12-16Testing link.Tyge Løvset
2020-12-16Renamed crandom to crand, including renaming of relevant files.Tyge Løvset
2020-12-16Removed text repetition.Tyge Løvset
2020-12-16Better crandom docs.Tyge Løvset
2020-12-16Minor fixing of unsafe macros.Tyge Løvset
2020-12-16Reverted back API to easier naming scheme of crandom.h types and methods.Tyge Løvset
Highly optimized generation of unbiased uniform bounded random numbers. Only 33% overhead.
2020-12-15Minors on crandom and example.Tyge Løvset
2020-12-14Reworked the crandom.h module. Changed API (sorry!), made uniform distr. ↵Tyge Løvset
unbiased. Removed 32-bit pcg32 PRNG.