You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
-
43Tight coupling shows its head. Pass in the object that generates the random numbers. Then during testing you can pass an object that generates a specified set of numbers for which you know what the deck looks like after the shuffle. You can test the randomness of your random number generator separately.Loki Astari– Loki Astari2012-05-03 18:41:15 +00:00Commented May 3, 2012 at 18:41
-
1I would strongly consider using an existing library routine for shuffle (java Collections.shuffle() or similar). There is a cautionary tale to be read at developer.com/tech/article.php/616221/… about writing a flawed shuffle algorithm. For writing a d6() function, one would test it enough to be confident that it won't generate a number out of range and then do a chi squared test on the distribution (chi squared being rather sensitive to pseudo random sequences). Look also at the serial correlation coefficient.user40980– user409802012-05-03 20:50:20 +00:00Commented May 3, 2012 at 20:50
-
"This relies on the random function always returning the same values given the same seed. However, this is sometimes an invalid assumption." I followed the link, and I'm not seeing the invalid assumption. It says quite plainly: "If the same seed is used repeatedly, the same series of numbers is generated."Kyralessa– Kyralessa2012-05-03 22:45:53 +00:00Commented May 3, 2012 at 22:45
-
@Kyralessa "The implementation of the random number generator in the Random class is not guaranteed to remain the same across major versions of the .NET Framework." So not a huge concern, but still something to consider.dlras2– dlras22012-05-03 22:52:33 +00:00Commented May 3, 2012 at 22:52
-
4@Kyralessa I missed the important half of that quote: "As a result, your application code should not assume that the same seed will result in the same pseudo-random sequence in different versions of the .NET Framework."dlras2– dlras22012-05-03 23:01:10 +00:00Commented May 3, 2012 at 23:01
|
Show 4 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you