<br><br><div class="gmail_quote">On Dec 30, 2007 12:40 PM, Chongkai Zhu &lt;<a href="mailto:czhu@cs.utah.edu">czhu@cs.utah.edu</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d"><br><br>&gt;Doug Williams wrote:<br>&gt;&gt; And while we&#39;re on the subject, there is another problem with the new<br>&gt;&gt; SRFI 27 implementation I&#39;ve noticed. &nbsp;The randomization of<br>&gt;&gt; (random-source-pseudo-randomize! s i j) and
<br>&gt;&gt; (random-source-pseudo-randomize! s j i) will always be the same. &nbsp;The<br>&gt;&gt; code uses equal-hash-code of i and j to come up with a seed and that<br>&gt;&gt; function is symmetric wrt i and j.<br>&gt;&gt;
<br>&gt;<br></div>&gt; DrScheme, version 372-svn12nov2007 [3m]<br>&gt;<br>&gt;(equal-hash-code (list 1 2))<br>&gt;(equal-hash-code (list 2 1))<br>&gt;<br>&gt;(equal-hash-code (list 1 0))<br>&gt;(equal-hash-code (list 0 1))
<br>&gt;<br>&gt;=&gt;<br>&gt;<br>&gt;94564159<br>&gt;95385186<br>&gt;94562141<br>&gt;93284415<br><div class="Ih2E3d"></div></blockquote><div class="Ih2E3d"><br>My bad on that one.&nbsp; Sorry.&nbsp; But, I still don&#39;t like compressing the repeatable random space - there are collisions there.
<br></div><div>&nbsp;</div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d"><br>&gt;&gt; I think we still need to do some thinking on the implementation. &nbsp;I
<br>&gt;&gt; think we need to either expose the SRFI 27 interface from PLT Scheme<br>&gt;&gt; (and implement the old interface on top of that) or separate them<br>&gt;&gt; completely and go back to the old SRFI 27 implementation. &nbsp;[There
<br>&gt;&gt; would also be some middle ground. &nbsp;But, I don&#39;t think there is<br>&gt;&gt; currently enough of the internal implementation exposed to adequately<br>&gt;&gt; implement SRFI 27 - there are too many kludges in that code now.]
<br>&gt;&gt;<br></div>&gt;The current SRFI 27 implement does the following:<br>&gt;<br>&gt;1. to meet SRFI 27;<br>&gt;2. to be as efficient as possible (i.e., using PLT&#39;s random procedures<br>&gt;as much as possible).
<br><br>&gt;I did once tried to connect SRFI 27&#39;s default-random-source and PLT&#39;s<br>&gt;current-pseudo-random-generator, but that doesn&#39;t goes very well, so it<br>&gt;comes the current implement: they are not connected at all. In that
<br>&gt;sense, SRFI 27 and PLT&#39;s random procedures are completely separated. I<br>&gt;can&#39;t see what you are suggestion here.<br><font color="#888888"></font></blockquote><div><br>I&#39;m not sure what the &#39;right&#39; answer is, I&#39;m just trying to figure out the best way to keep users from being confused.&nbsp; [Noel is by no means a novice user and he was confused.]&nbsp; The best options seem to be at opposite ends of the spectrum.&nbsp; Either make them the same (and therefore there is nothing to confuse) or make them so different that you lessen the confusion.
<br><br>I would rather lean toward making them the same:<br><br>1) Make both random sources have the same &#39;type&#39; - i.e. make-pseudo-random-generator from PLT Scheme and make-random-source from SRFI 27 should return objects that can be used in either context because they are the same implementation.
<br>2) Make PLT Scheme random routines (like random and random-seed) be able to accept a random-source as an argument.&nbsp; It seems wasteful to continually parameterize current-pseudo-random-stream to fake passing random (or random-seed) an argument, which is one of the main kludges I was referring to.
<br>3) Implement a SRFI 27 pseudo randomize in PLT Scheme (because it is more robust than a single seed) and then implement random-seed in terms of it.&nbsp; For example, we might define (random-seed s k) as being equivalent to (random-source-pseudo-randomize! s k 0).
<br><br>I think that would give us an interface in PLT Scheme that is compatible with (but an extension of) the current implementation and give what is needed to make the SRFI 27 implementation better.<br><br>I don&#39;t think there is a good way top reconcile the differences between the default-random-source behavior of SRFI 27 and the current-pseudo-random-generator in PLT Scheme.&nbsp; SRFI 27 did not anticipate as rich as environment - 
i.e., with parameters, threads, etc - as PLT Scheme.&nbsp; Leave them both in as they are - and avoid the temptation to make default-random-stream be a parameter, it&#39;s just a global variable.&nbsp; In essence this is what I did in the science collection by adding a current-random-source parameter.&nbsp; [It is doing the same for SRFI 27 as current-pseudo-random-generator does for PLT Scheme.]
<br><br>The other extreme is to just put the old SRFI 27 implementation back and just say they&#39;re different.<br><br>My personal opinion is that the current PLT Scheme random source interface (not the underlying implementation) is inadequate for the work I want to use it for - simulations, in my case.&nbsp; But, it is more efficient than the old SRFI 27 implementation.&nbsp; The SRFI 27 interface is suitable for the work - in particular, I can easily specify repeatable, independent random variables.&nbsp; However, it&#39;s implementation was not as efficient as the PLT Scheme implementation.&nbsp; And, because the PLT Scheme implementation doesn&#39;t expose enough of the underlying implementation to make a straightforward implementation of SRFI 27 on top of it, I don&#39;t have the same confidence in the interface code as I do in either the underlying PLT implementation or the old SRFI implementation.&nbsp; [For example, the procedure returned by (random-source-make-integers n) may call the underlying PLT Scheme random routine once or twice, depending on the value of n.&nbsp; Some of those manipulations seem innocuous, but can bias the macro-level behavior of the random sources.]
<br><br>In the short term, the best thing for the users of the science collection to remember is that there is no inherent connection between the SRFI 27 random routines (and the science collection distributions, etc) and the built in PLT scheme ones.
<br><font color="#888888"><br></font></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><font color="#888888"><br>Chongkai<br></font><div class="Ih2E3d">
<br><br></div></blockquote></div><br>