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. @return t_kc true if and only if the conflicts have already been counted.

Type Bound

shared_rhash_t

Arguments

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

Return Value logical


Contents

Source Code


Source Code

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

        t_kc = this%t_conflicts_known
    end function known_conflicts