@@ -208,7 +208,7 @@ interface
208
208
module subroutine new_spooky_hash_seed( seed )
209
209
!! Version: experimental
210
210
!!
211
- !! Random SEED generator for
211
+ !! Random seed generator for SPOOKY_HASH
212
212
integer(int64), intent(inout) :: seed(2)
213
213
end subroutine new_spooky_hash_seed
214
214
@@ -243,7 +243,7 @@ interface
243
243
module subroutine new_pengy_hash_seed( seed )
244
244
!! Version: experimental
245
245
!!
246
- !! Random SEED generator for MIR_HASH_STRICT
246
+ !! Random seed generator for MIR_HASH_STRICT
247
247
integer(int32), intent(inout) :: seed
248
248
end subroutine new_pengy_hash_seed
249
249
@@ -254,8 +254,8 @@ contains
254
254
elemental function fibonacci_hash( key, nbits ) result( sample )
255
255
!! Version: experimental
256
256
!!
257
- !! Maps the 64 bit integer KEY to an unsigned integer value with only NBITS
258
- !! bits where NBITS is less than 64
257
+ !! Maps the 64 bit integer `key` to an unsigned integer value with only `nbits`
258
+ !! bits where `nbits` is less than 64
259
259
!! ([Specification](../page/specs/stdlib_hash_procedures.html#fibonacci_hash-maps-an-integer-to-a-smaller-number-of-bits_1))
260
260
261
261
integer(int64), intent(in) :: key
@@ -269,8 +269,8 @@ contains
269
269
elemental function universal_mult_hash( key, seed, nbits ) result( sample )
270
270
!! Version: experimental
271
271
!!
272
- !! Uses the "random" odd 64 bit integer SEED to map the 64 bit integer KEY to
273
- !! an unsigned integer value with only NBITS bits where NBITS is less than 64.
272
+ !! Uses the "random" odd 64 bit integer `seed` to map the 64 bit integer `key` to
273
+ !! an unsigned integer value with only `nbits` bits where `nbits` is less than 64.
274
274
!! ([Specification](../page/specs/stdlib_hash_procedures.html#universal_mult_hash-maps-an-integer-to-a-smaller-number-of-bits_1))
275
275
276
276
integer(int64), intent(in) :: key
@@ -285,7 +285,7 @@ contains
285
285
subroutine odd_random_integer( harvest )
286
286
!! Version: experimental
287
287
!!
288
- !! Returns a 64 bit pseudo random integer, HARVEST , distributed uniformly over
288
+ !! Returns a 64 bit pseudo random integer, `harvest` , distributed uniformly over
289
289
!! the odd integers of the 64 bit kind.
290
290
!! ([Specification](../page/specs/stdlib_hash_procedures.html#odd_random_integer-returns-odd-integer))
291
291
@@ -303,7 +303,7 @@ contains
303
303
subroutine random_integer( harvest )
304
304
!! Version: experimental
305
305
!!
306
- !! Returns a 64 bit pseudo random integer, HARVEST , distributed uniformly over
306
+ !! Returns a 64 bit pseudo random integer, `harvest` , distributed uniformly over
307
307
!! the values of the 64 bit kind.
308
308
integer(int64), intent(out) :: harvest
309
309
real(dp) :: sample(2)
0 commit comments