Renamed SFC generators to DotyHumphreySmallFastCounting.
diff --git a/commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/SFC32.java b/commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/DotyHumphreySmallFastCounting32.java
similarity index 93%
rename from commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/SFC32.java
rename to commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/DotyHumphreySmallFastCounting32.java
index 384086d..6f97bf5 100644
--- a/commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/SFC32.java
+++ b/commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/DotyHumphreySmallFastCounting32.java
@@ -19,7 +19,7 @@
 import org.apache.commons.rng.core.util.NumberFactory;
 
 /**
- * Implement the Small, Fast, Chaotic (SFC) 32-bit generator of Chris Doty-Humphrey.
+ * Implement the Small, Fast, Counting (SFC) 32-bit generator of Chris Doty-Humphrey.
  * The original source is the PractRand test suite by the same author.
  *
  * <p>The state size is 128-bits; the period is a minimum of 2<sup>32</sup> and an
@@ -29,7 +29,7 @@
  *
  * @since 1.3
  */
-public class SFC32 extends IntProvider {
+public class DotyHumphreySmallFastCounting32 extends IntProvider {
     /** Size of the seed. */
     private static final int SEED_SIZE = 3;
 
@@ -49,7 +49,7 @@
      * If the length is larger than 3, only the first 3 elements will
      * be used; if smaller, the remaining elements will be automatically set.
      */
-    public SFC32(int[] seed) {
+    public DotyHumphreySmallFastCounting32(int[] seed) {
         if (seed.length < SEED_SIZE) {
             final int[] state = new int[SEED_SIZE];
             fillState(state, seed);
diff --git a/commons-rng-core/src/main/java/org/apache/commons/rng/core/source64/SFC64.java b/commons-rng-core/src/main/java/org/apache/commons/rng/core/source64/DotyHumphreySmallFastCounting64.java
similarity index 93%
rename from commons-rng-core/src/main/java/org/apache/commons/rng/core/source64/SFC64.java
rename to commons-rng-core/src/main/java/org/apache/commons/rng/core/source64/DotyHumphreySmallFastCounting64.java
index 8876c58..5517f83 100644
--- a/commons-rng-core/src/main/java/org/apache/commons/rng/core/source64/SFC64.java
+++ b/commons-rng-core/src/main/java/org/apache/commons/rng/core/source64/DotyHumphreySmallFastCounting64.java
@@ -19,7 +19,7 @@
 import org.apache.commons.rng.core.util.NumberFactory;
 
 /**
- * Implement the Small, Fast, Chaotic (SFC) 64-bit generator of Chris Doty-Humphrey.
+ * Implement the Small, Fast, Counting (SFC) 64-bit generator of Chris Doty-Humphrey.
  * The original source is the PractRand test suite by the same author.
  *
  * <p>The state size is 256-bits; the period is a minimum of 2<sup>64</sup> and an
@@ -29,7 +29,7 @@
  *
  * @since 1.3
  */
-public class SFC64 extends LongProvider {
+public class DotyHumphreySmallFastCounting64 extends LongProvider {
     /** Size of the seed. */
     private static final int SEED_SIZE = 3;
 
@@ -49,7 +49,7 @@
      * If the length is larger than 3, only the first 3 elements will
      * be used; if smaller, the remaining elements will be automatically set.
      */
-    public SFC64(long[] seed) {
+    public DotyHumphreySmallFastCounting64(long[] seed) {
         if (seed.length < SEED_SIZE) {
             final long[] state = new long[SEED_SIZE];
             fillState(state, seed);
diff --git a/commons-rng-core/src/test/java/org/apache/commons/rng/core/ProvidersList.java b/commons-rng-core/src/test/java/org/apache/commons/rng/core/ProvidersList.java
index c61a13f..242a0ac 100644
--- a/commons-rng-core/src/test/java/org/apache/commons/rng/core/ProvidersList.java
+++ b/commons-rng-core/src/test/java/org/apache/commons/rng/core/ProvidersList.java
@@ -40,7 +40,7 @@
 import org.apache.commons.rng.core.source32.KISSRandom;
 import org.apache.commons.rng.core.source32.PcgXshRr32;
 import org.apache.commons.rng.core.source32.PcgXshRs32;
-import org.apache.commons.rng.core.source32.SFC32;
+import org.apache.commons.rng.core.source32.DotyHumphreySmallFastCounting32;
 import org.apache.commons.rng.core.source32.PcgMcgXshRr32;
 import org.apache.commons.rng.core.source32.PcgMcgXshRs32;
 import org.apache.commons.rng.core.source64.SplitMix64;
@@ -56,7 +56,7 @@
 import org.apache.commons.rng.core.source64.JSF64;
 import org.apache.commons.rng.core.source64.MersenneTwister64;
 import org.apache.commons.rng.core.source64.PcgRxsMXs64;
-import org.apache.commons.rng.core.source64.SFC64;
+import org.apache.commons.rng.core.source64.DotyHumphreySmallFastCounting64;
 import org.apache.commons.rng.JumpableUniformRandomProvider;
 import org.apache.commons.rng.RestorableUniformRandomProvider;
 
@@ -110,7 +110,7 @@
             add(LIST32, new PcgMcgXshRs32(g.nextLong()));
             // Ensure a high complexity increment is used for the Weyl sequence
             add(LIST32, new MiddleSquareWeylSequence(new long[] {g.nextLong(), g.nextLong(), 0xb5ad4eceda1ce2a9L}));
-            add(LIST32, new SFC32(new int[] {g.nextInt(), g.nextInt()}));
+            add(LIST32, new DotyHumphreySmallFastCounting32(new int[] {g.nextInt(), g.nextInt()}));
             add(LIST32, new JSF32(g.nextInt()));
             // ... add more here.
 
@@ -128,7 +128,7 @@
             add(LIST64, new XoShiRo512Plus(new long[] {g.nextLong(), g.nextLong(), g.nextLong(), g.nextLong()}));
             add(LIST64, new XoShiRo512StarStar(new long[] {g.nextLong(), g.nextLong(), g.nextLong(), g.nextLong()}));
             add(LIST64, new PcgRxsMXs64(new long[] {g.nextLong()}));
-            add(LIST64, new SFC64(new long[] {g.nextLong(), g.nextLong()}));
+            add(LIST64, new DotyHumphreySmallFastCounting64(new long[] {g.nextLong(), g.nextLong()}));
             add(LIST64, new JSF64(g.nextLong()));
             // ... add more here.
 
diff --git a/commons-rng-core/src/test/java/org/apache/commons/rng/core/source32/SFC32Test.java b/commons-rng-core/src/test/java/org/apache/commons/rng/core/source32/DotyHumphreySmallFastCounting32Test.java
similarity index 92%
rename from commons-rng-core/src/test/java/org/apache/commons/rng/core/source32/SFC32Test.java
rename to commons-rng-core/src/test/java/org/apache/commons/rng/core/source32/DotyHumphreySmallFastCounting32Test.java
index 70c9552..ca61e2c 100644
--- a/commons-rng-core/src/test/java/org/apache/commons/rng/core/source32/SFC32Test.java
+++ b/commons-rng-core/src/test/java/org/apache/commons/rng/core/source32/DotyHumphreySmallFastCounting32Test.java
@@ -20,7 +20,7 @@
 import org.apache.commons.rng.core.RandomAssert;
 import org.junit.Test;
 
-public class SFC32Test {
+public class DotyHumphreySmallFastCounting32Test {
     @Test
     public void testReferenceCode() {
         /*
@@ -39,7 +39,7 @@
             0x19400604, 0xb76e7394, 0x037addd5, 0xe916ed79,
             0x94f10dc6, 0xf2ecb45e, 0x69834355, 0xb814aeb2,
         };
-        RandomAssert.assertEquals(expectedSequence, new SFC32(new int[] {
+        RandomAssert.assertEquals(expectedSequence, new DotyHumphreySmallFastCounting32(new int[] {
             0xbb3c4104, 0x02294965, 0xda1ce2a9
         }));
     }
diff --git a/commons-rng-core/src/test/java/org/apache/commons/rng/core/source64/SFC64Test.java b/commons-rng-core/src/test/java/org/apache/commons/rng/core/source64/DotyHumphreySmallFastCounting64Test.java
similarity index 93%
rename from commons-rng-core/src/test/java/org/apache/commons/rng/core/source64/SFC64Test.java
rename to commons-rng-core/src/test/java/org/apache/commons/rng/core/source64/DotyHumphreySmallFastCounting64Test.java
index b2ed395..154532f 100644
--- a/commons-rng-core/src/test/java/org/apache/commons/rng/core/source64/SFC64Test.java
+++ b/commons-rng-core/src/test/java/org/apache/commons/rng/core/source64/DotyHumphreySmallFastCounting64Test.java
@@ -20,7 +20,7 @@
 import org.apache.commons.rng.core.RandomAssert;
 import org.junit.Test;
 
-public class SFC64Test {
+public class DotyHumphreySmallFastCounting64Test {
     @Test
     public void testReferenceCode() {
         /*
@@ -39,7 +39,7 @@
             0x6b44e298f16ca140L, 0xf1c7b84c51d8b1d8L, 0x0bee55dd0ea4439dL, 0xd9a26515c0a88471L,
             0xda4c3174cafc57f8L, 0x6193f4b96362eb4bL, 0x207e9a94b58041afL, 0x5451bd65c481d8fcL,
         };
-        RandomAssert.assertEquals(expectedSequence, new SFC64(new long[] {
+        RandomAssert.assertEquals(expectedSequence, new DotyHumphreySmallFastCounting64(new long[] {
             0x012de1babb3c4104L, 0xc8161b4202294965L, 0xb5ad4eceda1ce2a9L
         }));
     }
diff --git a/commons-rng-simple/src/main/java/org/apache/commons/rng/simple/RandomSource.java b/commons-rng-simple/src/main/java/org/apache/commons/rng/simple/RandomSource.java
index a70110d..16bc244 100644
--- a/commons-rng-simple/src/main/java/org/apache/commons/rng/simple/RandomSource.java
+++ b/commons-rng-simple/src/main/java/org/apache/commons/rng/simple/RandomSource.java
@@ -436,7 +436,7 @@
      */
     MSWS(ProviderBuilder.RandomSourceInternal.MSWS),
     /**
-     * Source of randomness is {@link org.apache.commons.rng.core.source32.SFC32}.
+     * Source of randomness is {@link org.apache.commons.rng.core.source32.DotyHumphreySmallFastCounting32}.
      * <ul>
      *  <li>Native seed type: {@code int[]}.</li>
      *  <li>Native seed size: 3.</li>
@@ -444,7 +444,7 @@
      */
     SFC_32(ProviderBuilder.RandomSourceInternal.SFC_32),
     /**
-     * Source of randomness is {@link org.apache.commons.rng.core.source64.SFC64}.
+     * Source of randomness is {@link org.apache.commons.rng.core.source64.DotyHumphreySmallFastCounting64}.
      * <ul>
      *  <li>Native seed type: {@code long[]}.</li>
      *  <li>Native seed size: 3.</li>
diff --git a/commons-rng-simple/src/main/java/org/apache/commons/rng/simple/internal/ProviderBuilder.java b/commons-rng-simple/src/main/java/org/apache/commons/rng/simple/internal/ProviderBuilder.java
index 3ad50fe..af20e6b 100644
--- a/commons-rng-simple/src/main/java/org/apache/commons/rng/simple/internal/ProviderBuilder.java
+++ b/commons-rng-simple/src/main/java/org/apache/commons/rng/simple/internal/ProviderBuilder.java
@@ -42,7 +42,7 @@
 import org.apache.commons.rng.core.source32.PcgXshRs32;
 import org.apache.commons.rng.core.source32.PcgMcgXshRr32;
 import org.apache.commons.rng.core.source32.PcgMcgXshRs32;
-import org.apache.commons.rng.core.source32.SFC32;
+import org.apache.commons.rng.core.source32.DotyHumphreySmallFastCounting32;
 import org.apache.commons.rng.core.source32.JSF32;
 import org.apache.commons.rng.core.source64.SplitMix64;
 import org.apache.commons.rng.core.source64.XorShift1024Star;
@@ -56,7 +56,7 @@
 import org.apache.commons.rng.core.source64.XoShiRo512Plus;
 import org.apache.commons.rng.core.source64.XoShiRo512StarStar;
 import org.apache.commons.rng.core.source64.PcgRxsMXs64;
-import org.apache.commons.rng.core.source64.SFC64;
+import org.apache.commons.rng.core.source64.DotyHumphreySmallFastCounting64;
 import org.apache.commons.rng.core.source64.JSF64;
 
 /**
@@ -289,12 +289,12 @@
                 return new long[] {state, weylState, increment};
             }
         },
-        /** Source of randomness is {@link SFC32}. */
-        SFC_32(SFC32.class,
+        /** Source of randomness is {@link DotyHumphreySmallFastCounting32}. */
+        SFC_32(DotyHumphreySmallFastCounting32.class,
                3,
                NativeSeedType.INT_ARRAY),
-        /** Source of randomness is {@link SFC64}. */
-        SFC_64(SFC64.class,
+        /** Source of randomness is {@link DotyHumphreySmallFastCounting64}. */
+        SFC_64(DotyHumphreySmallFastCounting64.class,
                3,
                NativeSeedType.LONG_ARRAY),
         /** Source of randomness is {@link JSF32}. */
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 3b7fc9d..a1a7469 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -93,7 +93,7 @@
         previously been used to save state.
       </action>
       <action dev="aherbert" type="add" issue="RNG-112">
-        New "SFC32" and "SFC64" (Small, Fast, Chaotic) generators.
+        New "DotyHumphreySmallFastCounting32" and "DotyHumphreySmallFastCounting64" generators.
       </action>
       <action dev="aherbert" type="update" issue="RNG-109">
         "DiscreteProbabilityCollectionSampler": Use a faster enumerated probability
diff --git a/src/site/resources/txt/userguide/stress/dh_34_1 b/src/site/resources/txt/userguide/stress/dh_34_1
index 12bf27b..b7125ce 100644
--- a/src/site/resources/txt/userguide/stress/dh_34_1
+++ b/src/site/resources/txt/userguide/stress/dh_34_1
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_32
-# RNG: Byte-reversed org.apache.commons.rng.core.source32.SFC32
+# RNG: Byte-reversed org.apache.commons.rng.core.source32.DotyHumphreySmallFastCounting32
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/dh_34_2 b/src/site/resources/txt/userguide/stress/dh_34_2
index cbb9fc0..935de45 100644
--- a/src/site/resources/txt/userguide/stress/dh_34_2
+++ b/src/site/resources/txt/userguide/stress/dh_34_2
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_32
-# RNG: Byte-reversed org.apache.commons.rng.core.source32.SFC32
+# RNG: Byte-reversed org.apache.commons.rng.core.source32.DotyHumphreySmallFastCounting32
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/dh_34_3 b/src/site/resources/txt/userguide/stress/dh_34_3
index 52430c9..e1ad9f1 100644
--- a/src/site/resources/txt/userguide/stress/dh_34_3
+++ b/src/site/resources/txt/userguide/stress/dh_34_3
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_32
-# RNG: Byte-reversed org.apache.commons.rng.core.source32.SFC32
+# RNG: Byte-reversed org.apache.commons.rng.core.source32.DotyHumphreySmallFastCounting32
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/dh_34_4 b/src/site/resources/txt/userguide/stress/dh_34_4
index 3fa0c06..d4778f2 100644
--- a/src/site/resources/txt/userguide/stress/dh_34_4
+++ b/src/site/resources/txt/userguide/stress/dh_34_4
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_32
-# RNG: Byte-reversed org.apache.commons.rng.core.source32.SFC32
+# RNG: Byte-reversed org.apache.commons.rng.core.source32.DotyHumphreySmallFastCounting32
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/dh_34_5 b/src/site/resources/txt/userguide/stress/dh_34_5
index 302de7a..0ef8979 100644
--- a/src/site/resources/txt/userguide/stress/dh_34_5
+++ b/src/site/resources/txt/userguide/stress/dh_34_5
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_32
-# RNG: Byte-reversed org.apache.commons.rng.core.source32.SFC32
+# RNG: Byte-reversed org.apache.commons.rng.core.source32.DotyHumphreySmallFastCounting32
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/dh_35_1 b/src/site/resources/txt/userguide/stress/dh_35_1
index 96faf1b..89704c0 100644
--- a/src/site/resources/txt/userguide/stress/dh_35_1
+++ b/src/site/resources/txt/userguide/stress/dh_35_1
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_64
-# RNG: Byte-reversed org.apache.commons.rng.core.source64.SFC64
+# RNG: Byte-reversed org.apache.commons.rng.core.source64.DotyHumphreySmallFastCounting64
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/dh_35_2 b/src/site/resources/txt/userguide/stress/dh_35_2
index 171ff54..75399b1 100644
--- a/src/site/resources/txt/userguide/stress/dh_35_2
+++ b/src/site/resources/txt/userguide/stress/dh_35_2
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_64
-# RNG: Byte-reversed org.apache.commons.rng.core.source64.SFC64
+# RNG: Byte-reversed org.apache.commons.rng.core.source64.DotyHumphreySmallFastCounting64
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/dh_35_3 b/src/site/resources/txt/userguide/stress/dh_35_3
index 4069daf..2e5c2b6 100644
--- a/src/site/resources/txt/userguide/stress/dh_35_3
+++ b/src/site/resources/txt/userguide/stress/dh_35_3
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_64
-# RNG: Byte-reversed org.apache.commons.rng.core.source64.SFC64
+# RNG: Byte-reversed org.apache.commons.rng.core.source64.DotyHumphreySmallFastCounting64
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/dh_35_4 b/src/site/resources/txt/userguide/stress/dh_35_4
index 1a5c75e..7307dfc 100644
--- a/src/site/resources/txt/userguide/stress/dh_35_4
+++ b/src/site/resources/txt/userguide/stress/dh_35_4
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_64
-# RNG: Byte-reversed org.apache.commons.rng.core.source64.SFC64
+# RNG: Byte-reversed org.apache.commons.rng.core.source64.DotyHumphreySmallFastCounting64
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/dh_35_5 b/src/site/resources/txt/userguide/stress/dh_35_5
index 979fe84..04528c6 100644
--- a/src/site/resources/txt/userguide/stress/dh_35_5
+++ b/src/site/resources/txt/userguide/stress/dh_35_5
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_64
-# RNG: Byte-reversed org.apache.commons.rng.core.source64.SFC64
+# RNG: Byte-reversed org.apache.commons.rng.core.source64.DotyHumphreySmallFastCounting64
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/tu_34_1 b/src/site/resources/txt/userguide/stress/tu_34_1
index 8ff825a..9ae0feb 100644
--- a/src/site/resources/txt/userguide/stress/tu_34_1
+++ b/src/site/resources/txt/userguide/stress/tu_34_1
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_32
-# RNG: Byte-reversed org.apache.commons.rng.core.source32.SFC32
+# RNG: Byte-reversed org.apache.commons.rng.core.source32.DotyHumphreySmallFastCounting32
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/tu_34_2 b/src/site/resources/txt/userguide/stress/tu_34_2
index 311029f..f4aa20b 100644
--- a/src/site/resources/txt/userguide/stress/tu_34_2
+++ b/src/site/resources/txt/userguide/stress/tu_34_2
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_32
-# RNG: Byte-reversed org.apache.commons.rng.core.source32.SFC32
+# RNG: Byte-reversed org.apache.commons.rng.core.source32.DotyHumphreySmallFastCounting32
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/tu_34_3 b/src/site/resources/txt/userguide/stress/tu_34_3
index 1a13487..8f6963a 100644
--- a/src/site/resources/txt/userguide/stress/tu_34_3
+++ b/src/site/resources/txt/userguide/stress/tu_34_3
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_32
-# RNG: Byte-reversed org.apache.commons.rng.core.source32.SFC32
+# RNG: Byte-reversed org.apache.commons.rng.core.source32.DotyHumphreySmallFastCounting32
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/tu_34_4 b/src/site/resources/txt/userguide/stress/tu_34_4
index 7b93c17..d4d3e0e 100644
--- a/src/site/resources/txt/userguide/stress/tu_34_4
+++ b/src/site/resources/txt/userguide/stress/tu_34_4
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_32
-# RNG: Byte-reversed org.apache.commons.rng.core.source32.SFC32
+# RNG: Byte-reversed org.apache.commons.rng.core.source32.DotyHumphreySmallFastCounting32
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/tu_34_5 b/src/site/resources/txt/userguide/stress/tu_34_5
index 9e2f4ef..356d2c2 100644
--- a/src/site/resources/txt/userguide/stress/tu_34_5
+++ b/src/site/resources/txt/userguide/stress/tu_34_5
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_32
-# RNG: Byte-reversed org.apache.commons.rng.core.source32.SFC32
+# RNG: Byte-reversed org.apache.commons.rng.core.source32.DotyHumphreySmallFastCounting32
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/tu_35_1 b/src/site/resources/txt/userguide/stress/tu_35_1
index d7a2dc9..1069d90 100644
--- a/src/site/resources/txt/userguide/stress/tu_35_1
+++ b/src/site/resources/txt/userguide/stress/tu_35_1
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_64
-# RNG: Byte-reversed org.apache.commons.rng.core.source64.SFC64
+# RNG: Byte-reversed org.apache.commons.rng.core.source64.DotyHumphreySmallFastCounting64
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/tu_35_2 b/src/site/resources/txt/userguide/stress/tu_35_2
index a71f6d0..855540c 100644
--- a/src/site/resources/txt/userguide/stress/tu_35_2
+++ b/src/site/resources/txt/userguide/stress/tu_35_2
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_64
-# RNG: Byte-reversed org.apache.commons.rng.core.source64.SFC64
+# RNG: Byte-reversed org.apache.commons.rng.core.source64.DotyHumphreySmallFastCounting64
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/tu_35_3 b/src/site/resources/txt/userguide/stress/tu_35_3
index 46ce994..2ea5ab0 100644
--- a/src/site/resources/txt/userguide/stress/tu_35_3
+++ b/src/site/resources/txt/userguide/stress/tu_35_3
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_64
-# RNG: Byte-reversed org.apache.commons.rng.core.source64.SFC64
+# RNG: Byte-reversed org.apache.commons.rng.core.source64.DotyHumphreySmallFastCounting64
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/tu_35_4 b/src/site/resources/txt/userguide/stress/tu_35_4
index 3517442..4524eb0 100644
--- a/src/site/resources/txt/userguide/stress/tu_35_4
+++ b/src/site/resources/txt/userguide/stress/tu_35_4
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_64
-# RNG: Byte-reversed org.apache.commons.rng.core.source64.SFC64
+# RNG: Byte-reversed org.apache.commons.rng.core.source64.DotyHumphreySmallFastCounting64
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)
diff --git a/src/site/resources/txt/userguide/stress/tu_35_5 b/src/site/resources/txt/userguide/stress/tu_35_5
index afb9075..d9fe2f5 100644
--- a/src/site/resources/txt/userguide/stress/tu_35_5
+++ b/src/site/resources/txt/userguide/stress/tu_35_5
@@ -1,6 +1,6 @@
 # 
 # RandomSource: SFC_64
-# RNG: Byte-reversed org.apache.commons.rng.core.source64.SFC64
+# RNG: Byte-reversed org.apache.commons.rng.core.source64.DotyHumphreySmallFastCounting64
 # 
 # Java: 1.8.0_202
 # Runtime: Java(TM) SE Runtime Environment (build 1.8.0_202-b08)