Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
rename hash submodule files
  • Loading branch information
jvdp1 committed Dec 21, 2021
commit a144d693178eba916ffb86740b303e4c002d69ea
Empty file modified src/stdlib_hash_32bit.fypp
100755 → 100644
Empty file.
4 changes: 2 additions & 2 deletions src/stdlib_32_bit_fnv_hashes.fypp → src/stdlib_hash_32bit_fnv.fypp
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
!#! Integer kinds to be considered during templating
#:set INT_KINDS = ["int16", "int32", "int64"]

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

end function character_fnv_1a

end submodule stdlib_32_bit_fnv_hashes
end submodule stdlib_hash_32bit_fnv
4 changes: 2 additions & 2 deletions src/stdlib_32_bit_nmhashes.fypp → src/stdlib_hash_32bit_nm.fypp
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
#! Integer kinds to be considered during templating
#:set INT_KINDS = ["int16", "int32", "int64"]

submodule(stdlib_hash_32bit) stdlib_32_bit_nmhashes
submodule(stdlib_hash_32bit) stdlib_hash_32bit_nm

implicit none

Expand Down Expand Up @@ -803,4 +803,4 @@ contains

end subroutine new_nmhash32x_seed

end submodule stdlib_32_bit_nmhashes
end submodule stdlib_hash_32bit_nm
6 changes: 3 additions & 3 deletions src/stdlib_32_bit_water_hashes.fypp → src/stdlib_hash_32bit_water.fypp
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
!! For more information, please refer to <http://unlicense.org>
!!
!! `WATER_HASH` is distributed as part of the `stdlib_32_bit_hash_functions.f90`
!! module and its `stdlib_32_bit_water_hashes.f90` submodule with the Fortran
!! module and its `stdlib_hash_32bit_water.f90` submodule with the Fortran
!! Standard Library at URL: https://github.com/fortran-lang/stdlib.
!! The Fortran Standard Library, including this code, is distributed under the
!! MIT License as described in the `LICENSE` file distributed with the library.
Expand Down Expand Up @@ -74,7 +74,7 @@
#! Integer kinds to be considered during templating
#:set INT_KINDS = ["int16", "int32", "int64"]

submodule(stdlib_hash_32bit) stdlib_32_bit_water_hashes
submodule(stdlib_hash_32bit) stdlib_hash_32bit_water
implicit none

contains
Expand Down Expand Up @@ -280,4 +280,4 @@ contains

end subroutine new_water_hash_seed

end submodule stdlib_32_bit_water_hashes
end submodule stdlib_hash_32bit_water
Empty file modified src/stdlib_hash_64bit.fypp
100755 → 100644
Empty file.
4 changes: 2 additions & 2 deletions src/stdlib_64_bit_fnv_hashes.fypp → src/stdlib_hash_64bit_fnv.fypp
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#! Integer kinds to be considered during templating
#:set INT_KINDS = ["int16", "int32", "int64"]

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

end function character_fnv_1a

end submodule stdlib_64_bit_fnv_hashes
end submodule stdlib_hash_64bit_fnv
4 changes: 2 additions & 2 deletions src/stdlib_64_bit_pengy_hashes.fypp → src/stdlib_hash_64bit_pengy.fypp
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#! Integer kinds to be considered during templating
#:set INT_KINDS = ["int16", "int32", "int64"]

submodule(stdlib_hash_64bit) stdlib_64_bit_pengy_hashes
submodule(stdlib_hash_64bit) stdlib_hash_64bit_pengy

implicit none

Expand Down Expand Up @@ -146,4 +146,4 @@ contains

end subroutine new_pengy_hash_seed

end submodule stdlib_64_bit_pengy_hashes
end submodule stdlib_hash_64bit_pengy
4 changes: 2 additions & 2 deletions src/stdlib_64_bit_spookyv2_hashes.fypp → src/stdlib_hash_64bit_spookyv2.fypp
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#! Integer kinds to be considered during templating
#:set INT_KINDS = ["int16", "int32", "int64"]

submodule(stdlib_hash_64bit) stdlib_64_bit_spookyv2_hashes
submodule(stdlib_hash_64bit) stdlib_hash_64bit_spookyv2

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


end submodule stdlib_64_bit_spookyv2_hashes
end submodule stdlib_hash_64bit_spookyv2