Browse Source

Merge pull request #6490 from Chaosus/fix_rng

Yuri Rubinsky 2 years ago
parent
commit
bd428d5a5d
1 changed files with 2 additions and 5 deletions
  1. 2 5
      tutorials/math/random_number_generation.rst

+ 2 - 5
tutorials/math/random_number_generation.rst

@@ -25,11 +25,8 @@ using the :ref:`class_RandomNumberGenerator` class.
 
 
 Global scope methods are easier to set up, but they don't offer as much control.
 Global scope methods are easier to set up, but they don't offer as much control.
 
 
-RandomNumberGenerator requires more code to use, but exposes many methods not
-found in global scope such as :ref:`randi_range()
-<class_RandomNumberGenerator_method_randi_range>` and :ref:`randfn()
-<class_RandomNumberGenerator_method_randfn>`. On top of that, it allows creating
-multiple instances each with their own seed.
+RandomNumberGenerator requires more code to use, but allows creating
+multiple instances, each with their own seed and state.
 
 
 This tutorial uses global scope methods, except when the method only exists in
 This tutorial uses global scope methods, except when the method only exists in
 the RandomNumberGenerator class.
 the RandomNumberGenerator class.