<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jan 9, 2018 at 5:12 AM, Jonathan Hull via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Some thoughts:<div><br></div><div>- How do I randomly select an enum? <br></div></div></blockquote><div><br></div><div>carefully, of course<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><div><br></div><div>- I like that RandomNumberGenerator doesn’t have an associated type. I agree that we should just spit out UInt64s for simplicity.</div><div><br></div><div>- I don’t like how it is so closely tied with Range.  I realize that both Int and Float work with Ranges, but other random types do not (e.g. CGVectors).  You are special casing FixedWidthInteger and BinaryFloatingPoint, which are very important… but we lose the ability to deal with other randomly generated types.</div></div></div></blockquote><div><br></div><div>generating “random vectors” is a <i><span style="font-family:arial,helvetica,sans-serif">big</span></i> mood and it’s not as simple as varying on a range of <b>R</b>3. There’s a mild but non-trivial amount of work needed to get a uniform distribution and avoid degeneracies and division by zero. and “random” can mean different things, sometimes you want a random 2D disk of vectors that all live in some plane in 3D space because you need them to be perpendicular to something. And at any rate, CGVector is not a standard type, while Int and Float are.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><div><br></div><div>- Following on the previous point, I don’t like that the code for dealing with Integers/Floats is in Range.  It feels like things aren’t properly encapsulated. </div><div><br></div><div>- Why bother supporting non-closed Ranges at all?  If you only allow closed ranges, then you can’t end up with an empty range. The only difference in behavior I can think of is on floating point, but I can’t think of a use-case where excluding the supremum is actually useful in any real world way. <br></div></div></div></blockquote><div><br></div><div>i see this as an inconvenience for the sake of security theater. Usually when you want a random integer on a continuous range, you’re using them as indices into something. And indices go from <span style="font-family:monospace,monospace">0 ..&lt; count</span>, not <span style="font-family:monospace,monospace">0 ... (count - 1)</span>. if whatever you’re indexing into is empty, it’s empty.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><div></div><div><br></div><div>- This may sound strange, but I would <i>really</i> like to see Bool handled as a default implementation on the generator protocol itself.  On my own version of this I have both the ‘coinFlip()’ and ‘oneIn(_ num:Int)’ methods which I find extremely useful.  CoinFlip just gives you a random bool, whereas you can say things like oneIn(100) to get ‘true’ roughly 1 out of every 100 times you call it.  These are useful for branching randomly.  They are most useful on the source/generator itself because it is ergonomic when you need to rewind the source.</div><div><br></div><div>- IMO distributions should be sources/generators themselves which just wrap another source.  We could have a subprotocol of RandomNumberGenerator which just semantically guarantees uniform distribution, and then distributions that need it could be sure of the input distribution.  Notice this doesn’t limit the distribution to only be used for Integers as they are in the demo. They can be used anywhere a source can be used.</div><div><br></div><div>- Having a subprotocol for generators which can be rewound is extremely important for entire classes of real-world problems.  I have spent a lot of time using this and it solves a LOT of problems. For example, I have a Lorem Ipsum Generator which takes Attributes and a CGSize to fill.  It works by branching (using the Bool methods above) and then rewinding bits which don’t fit (If you just futz with the last part instead of generating appropriate clauses, it won’t look right).  I also have a bunch of backtracking algorithms which rely on this rewind ability.  Plus numerous visual effects which rely on a repeatable rewindable source.</div><div><span class="m_8568813797310957455Apple-tab-span" style="white-space:pre-wrap">        </span><i>- Tl;dr: It isn’t enough to just have a seed, you need to be able to mark a state of a generator and return to that state later.</i></div><div><br></div><div><span class="m_8568813797310957455Apple-tab-span" style="white-space:pre-wrap">        </span>My RepeatableRandomSource Protocol has 3 extra methods:</div><div><span class="m_8568813797310957455Apple-tab-span" style="white-space:pre-wrap">        </span>- It takes a seed</div><div><span class="m_8568813797310957455Apple-tab-span" style="white-space:pre-wrap">        </span>- It has a mark() method which returns a token</div><div><span class="m_8568813797310957455Apple-tab-span" style="white-space:pre-wrap">        </span>- It has a returnToMark(_ mark:Mark) method which takes a token and restores the appropriate state </div><div><br></div><div>- I really appreciate that you made a playground :-)</div><div><br></div><div>Thanks,</div><div>Jon</div><div><br></div><div><br></div><div><div><div><div><blockquote type="cite"><div><div class="h5"><div>On Jan 8, 2018, at 11:02 AM, Nate Cook via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br class="m_8568813797310957455Apple-interchange-newline"></div></div><div><div><div class="h5"><div style="word-wrap:break-word;line-break:after-white-space">I created a playground to explore this question, starting with a minimal subset of the proposal’s additions and building from there. The attached playground demonstrates what’s possible with this subset on the first page, then uses subsequent pages to explore how the main random facilities of the C++ STL work under this model. (In my opinion, they work pretty well!)<div><br></div><div>The subset in the playground has three main differences from the proposal:</div><div> - It doesn&#39;t include a <font face="Menlo">Randomizable</font> protocol or a <font face="Menlo">random</font> property on numeric types.<br> - It doesn&#39;t include the static <font face="Menlo">random(in:)</font> methods on numeric types, either.<br> - The <font face="Menlo">RandomNumberGenerator</font> protocol doesn&#39;t have an associated type. Instead, it requires all conforming types to produce <font face="Menlo">UInt64</font> values.<br><br></div><div>I’ve tried to include a bit of real-world usage in the playground to demonstrate what writing code would look like with these additions. Please take a look!</div><div><br></div><div>Nate</div><div><br></div><div></div></div></div></div><span class=""><span id="m_8568813797310957455cid:ABC18921-24CA-48D8-BC24-C1F445F8C252@hsd1.ca.comcast.net.">&lt;Random.playground.zip&gt;</span><div style="word-wrap:break-word;line-break:after-white-space"><div></div><div><br></div><div><div><blockquote type="cite"><div>On Dec 2, 2017, at 9:50 PM, Dave Abrahams via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br class="m_8568813797310957455Apple-interchange-newline"><div><div dir="auto">I don’t have much to say about this other than that I think the discussion seems way too narrow, focusing on spelling rather than on functionality and composability.  I consider the “generic random number library” design to be a mostly-solved problem, in <span style="background-color:rgba(255,255,255,0)">the C++ standard library (<a href="http://en.cppreference.com/w/cpp/numeric/random" target="_blank">http://en.cppreference.com/w/<wbr>cpp/numeric/random</a>).  </span>Whatever goes into the Swift standard library does not need to have all those features right away, but should support being extended into something having the same general shape. IMO the right design strategy is to <u>implement and use</u> a Swift version of C++’s facilities and only then consider proposing [perhaps a subset of] that design for standardization in Swift.<div><div><br></div><div>Sent from my iPad<div><br>On Dec 2, 2017, at 5:12 PM, Kyle Murray via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><br><div><blockquote type="cite"><div>On Dec 2, 2017, at 6:02 PM, Xiaodi Wu via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br class="m_8568813797310957455Apple-interchange-newline"><div><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline!important">Instead, we ought to make clear to users both the features and the limitations of this API, to encourage use where suitable and to discourage use where unsuitable.</span></div></blockquote></div><br><div>I like that you&#39;re considering the balance here. I&#39;ve been lightly following this thread and want to add my thoughts on keeping crypto and pseudorandomness out of the name of at least one <font face="Menlo">random</font> API intended for general use.</div><div><br></div><div>For someone who doesn&#39;t know or care about the subtleties of insecure or pseudorandom numbers, I&#39;m not sure that the name <font face="Menlo">insecureRandom</font> is effectively much different than <font face="Menlo">badRandom</font>, at least in terms of the information it conveys to non-experts. To Greg&#39;s point, that&#39;s the opposite of the signal that the API name should suggest because it&#39;s what most people should use most of the time. As you say, this API is being designed for general use.</div><div><br></div><div>There&#39;s a cost to adding extra complexity to names, too. I don&#39;t think it&#39;s far-fetched to suspect that people who find <font face="Menlo">insecureRandom</font> in an autocomplete listing or search will think &quot;Where&#39;s the plain random function?&quot;... and then go looking for a community extension that will inevitably provide a trivial alias: <font face="Menlo">func random() { return insecureRandom() }</font>. That&#39;s the sort of adoption I&#39;d expect from something for new programmers, like Swift Playgrounds. Someone&#39;s introduction to randomness in programming should probably involve no more than a straightforward mapping from the elementary definition, rather than forcing a teaching moment from more advanced math.</div><div><br></div><div>I think there are better places for caveat information than in the API names themselves; documentation being one clear destination. This is in contrast with <font face="Menlo">Unsafe*Pointer</font>, where the safety element is critical enough to be elevated to be more than caveat-level information. You can go really far and create really cool things before these caveats start to apply. Using randomness as a black box in an intro programming environment seems like a much more common scenario than someone attempting to roll their first crypto by only reading API names and hoping for the best.</div><div><br></div><div>-Kyle</div></div></blockquote><blockquote type="cite"><div><span>______________________________<wbr>_________________</span><br><span>swift-evolution mailing list</span><br><span><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a></span><br><span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a></span><br></div></blockquote></div></div></div>______________________________<wbr>_________________<br>swift-evolution mailing list<br><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br></div></blockquote></div><br></div></div>______________________________<wbr>_________________<br>swift-evolution mailing list<br><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br></span></div></blockquote></div><br></div></div></div></div></div><br>______________________________<wbr>_________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
<br></blockquote></div><br></div></div>