known_conflicts Function

private function known_conflicts(this) result(t_kc)

During initialisation, we can only start writing values once the offsets are known. This requires knowledge about the number of conflicts per hash value. This function tells us whether the conflicts have already been counted.

Type Bound

index_rhash_t

Arguments

Type IntentOptional Attributes Name
class(index_rhash_t), intent(in) :: this

Return Value logical


Source Code

    function known_conflicts(this) result(t_kc)
        class(index_rhash_t), intent(in) :: this
        logical :: t_kc

        t_kc = this%shared_ht%known_conflicts()
    end function known_conflicts