Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(star), | intent(in) | :: | this | |||
integer, | intent(in), | optional | :: | dimen |
logical pure function is_periodic_star(this, dimen)
! this is always false.. the star geometry can't be periodic
class(star), intent(in) :: this
integer, intent(in), optional :: dimen
debug_function_name("is_periodic_star")
unused_var(this)
ASSERT(.not. present(dimen))
is_periodic_star = .false.
end function is_periodic_star