Re: [PATCH 4/9] Add treap implementation
From: Ramkumar Ramachandra <hidden>
Date: 2016-06-15 22:49:00
Hi again, Jonathan Nieder wrote:
From: Jason Evans <redacted> Provide macros to generate a type-specific treap implementation and various functions to operate on it. It uses obj_pool.h to store memory nodes in a treap. Previously committed nodes are never removed from the pool; after any *_commit operation, it is assumed (correctly, in the case of svn-fast-export) that someone else must care about them.
This is likely to change in a few days. David is currently working on a Java implementation of a immutable ternary treap and will re-implement it as C macros. See the ternary-treap branch.
$(VCSSVN_OBJS): \ - vcs-svn/obj_pool.h + vcs-svn/obj_pool.h vcs-svn/trp.h
Interesting how you've shown this in every patch :)
+/* + * Fibonacci hash function. + * The multiplier is the nearest prime to (2^32 times (√5 - 1)/2). + * See Knuth §6.4: volume 3, 3rd ed, p518. + */
Um, is it alright to put non-ascii characters in a file containing code? I haven't seen such a thing in any of the other files. Will some old compilers complain while parsing?
quoted hunk ↗ jump to hunk
--- /dev/null +++ b/vcs-svn/trp.txt@@ -0,0 +1,90 @@ +treap API
The documentation is good, but I don't see it merged into the tree. Perhaps send a patch to David? Also, you might want to include the technical explanation for using treaps from the commit message here? -- Ram