Skip to content

Commit

Permalink
Merge pull request #33 from isaacHhyphenR/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
tolstenko authored Sep 23, 2023
2 parents 10b7bc1 + 59f504a commit 83d7b48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion courses/artificialintelligence/assignments/rng/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ So you remembered a strange professor talking about the xorshift algorithm and d

The xorshift is a family of pseudo random number generators created by George Marsaglia. The xorshift is a very simple algorithm that is very fast and have a good statistical quality. It is a very good choice for games and simulations.

`xorshift` is the process of shifting a number and then `xor`'ing it to the original value to create a new value.
`xorshift` is the process of shifting the binary value of a number and then `xor`'ing that binary to the original value to create a new value.

```value = value xor (value shift by number)```

Expand Down

0 comments on commit 83d7b48

Please sign in to comment.