f_spline_1d__belongs_to_space Function

private pure function f_spline_1d__belongs_to_space(self, bsplines) result(in_space)

Type Bound

sll_t_spline_1d

Arguments

Type IntentOptional Attributes Name
class(sll_t_spline_1d), intent(in) :: self

1D spline

class(sll_c_bsplines), intent(in), target :: bsplines

B-splines

Return Value logical


Source Code

  SLL_PURE function f_spline_1d__belongs_to_space( self, bsplines ) result( in_space )

    class(sll_t_spline_1d), intent(in)         :: self
    class(sll_c_bsplines ), intent(in), target :: bsplines
    logical :: in_space

    in_space = associated( self%bspl, bsplines )

  end function f_spline_1d__belongs_to_space