has_hybrid_electron_species Function

public pure function has_hybrid_electron_species(spec)

Determine if any of the known species are hybrid electrons

Arguments

Type IntentOptional Attributes Name
type(specie), intent(in), dimension (:) :: spec

Return Value logical


Contents


Source Code

  pure logical function has_hybrid_electron_species (spec)
    implicit none
    type (specie), dimension (:), intent (in) :: spec
    has_hybrid_electron_species = any(is_hybrid_electron_species(spec))
  end function has_hybrid_electron_species