Skip to content

Commit a144d69

Browse files
committed
rename hash submodule files
1 parent a7944b1 commit a144d69

8 files changed

+13
-13
lines changed

src/stdlib_hash_32bit.fypp

100755100644
File mode changed.

src/stdlib_32_bit_fnv_hashes.fypp renamed to src/stdlib_hash_32bit_fnv.fypp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
!#! Integer kinds to be considered during templating
1111
#:set INT_KINDS = ["int16", "int32", "int64"]
1212

13-
submodule(stdlib_hash_32bit) stdlib_32_bit_fnv_hashes
13+
submodule(stdlib_hash_32bit) stdlib_hash_32bit_fnv
1414
!! An implementation of the FNV hashes 1 and 1a of Glenn Fowler, Landon Curt
1515
!! Noll, and Kiem-Phong-Vo,
1616
!! https://en.wikipedia.org/wiki/Fowler–Noll–Vo_hash_function
@@ -123,4 +123,4 @@ contains
123123

124124
end function character_fnv_1a
125125

126-
end submodule stdlib_32_bit_fnv_hashes
126+
end submodule stdlib_hash_32bit_fnv

src/stdlib_32_bit_nmhashes.fypp renamed to src/stdlib_hash_32bit_nm.fypp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
#! Integer kinds to be considered during templating
4545
#:set INT_KINDS = ["int16", "int32", "int64"]
4646

47-
submodule(stdlib_hash_32bit) stdlib_32_bit_nmhashes
47+
submodule(stdlib_hash_32bit) stdlib_hash_32bit_nm
4848

4949
implicit none
5050

@@ -803,4 +803,4 @@ contains
803803

804804
end subroutine new_nmhash32x_seed
805805

806-
end submodule stdlib_32_bit_nmhashes
806+
end submodule stdlib_hash_32bit_nm

src/stdlib_32_bit_water_hashes.fypp renamed to src/stdlib_hash_32bit_water.fypp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
!! For more information, please refer to <http://unlicense.org>
3838
!!
3939
!! `WATER_HASH` is distributed as part of the `stdlib_32_bit_hash_functions.f90`
40-
!! module and its `stdlib_32_bit_water_hashes.f90` submodule with the Fortran
40+
!! module and its `stdlib_hash_32bit_water.f90` submodule with the Fortran
4141
!! Standard Library at URL: https://github.com/fortran-lang/stdlib.
4242
!! The Fortran Standard Library, including this code, is distributed under the
4343
!! MIT License as described in the `LICENSE` file distributed with the library.
@@ -74,7 +74,7 @@
7474
#! Integer kinds to be considered during templating
7575
#:set INT_KINDS = ["int16", "int32", "int64"]
7676

77-
submodule(stdlib_hash_32bit) stdlib_32_bit_water_hashes
77+
submodule(stdlib_hash_32bit) stdlib_hash_32bit_water
7878
implicit none
7979

8080
contains
@@ -280,4 +280,4 @@ contains
280280

281281
end subroutine new_water_hash_seed
282282

283-
end submodule stdlib_32_bit_water_hashes
283+
end submodule stdlib_hash_32bit_water

src/stdlib_hash_64bit.fypp

100755100644
File mode changed.

src/stdlib_64_bit_fnv_hashes.fypp renamed to src/stdlib_hash_64bit_fnv.fypp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#! Integer kinds to be considered during templating
1313
#:set INT_KINDS = ["int16", "int32", "int64"]
1414

15-
submodule(stdlib_hash_64bit) stdlib_64_bit_fnv_hashes
15+
submodule(stdlib_hash_64bit) stdlib_hash_64bit_fnv
1616
! An implementation of the FNV hashes 1 and 1a of Glenn Fowler, Landon Curt
1717
! Noll, and Kiem-Phong-Vo,
1818
! https://en.wikipedia.org/wiki/Fowler–Noll–Vo_hash_function
@@ -122,4 +122,4 @@ contains
122122

123123
end function character_fnv_1a
124124

125-
end submodule stdlib_64_bit_fnv_hashes
125+
end submodule stdlib_hash_64bit_fnv

src/stdlib_64_bit_pengy_hashes.fypp renamed to src/stdlib_hash_64bit_pengy.fypp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
#! Integer kinds to be considered during templating
4141
#:set INT_KINDS = ["int16", "int32", "int64"]
4242

43-
submodule(stdlib_hash_64bit) stdlib_64_bit_pengy_hashes
43+
submodule(stdlib_hash_64bit) stdlib_hash_64bit_pengy
4444

4545
implicit none
4646

@@ -146,4 +146,4 @@ contains
146146

147147
end subroutine new_pengy_hash_seed
148148

149-
end submodule stdlib_64_bit_pengy_hashes
149+
end submodule stdlib_hash_64bit_pengy

src/stdlib_64_bit_spookyv2_hashes.fypp renamed to src/stdlib_hash_64bit_spookyv2.fypp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#! Integer kinds to be considered during templating
1414
#:set INT_KINDS = ["int16", "int32", "int64"]
1515

16-
submodule(stdlib_hash_64bit) stdlib_64_bit_spookyv2_hashes
16+
submodule(stdlib_hash_64bit) stdlib_hash_64bit_spookyv2
1717

1818
! I have tried to make this portable while retaining efficiency. I assume
1919
! processors with two's complement integers from 8, 16, 32, and 64 bits.
@@ -712,4 +712,4 @@ contains
712712
end subroutine new_spooky_hash_seed
713713

714714

715-
end submodule stdlib_64_bit_spookyv2_hashes
715+
end submodule stdlib_hash_64bit_spookyv2

0 commit comments

Comments
 (0)