Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Style: Remove tabs from code base #350

Merged
merged 1 commit into from
Mar 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/stdlib_quadrature.fypp
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ module stdlib_quadrature


interface trapz
!! version: experimental
!!
!! version: experimental
!!
!! Integrates sampled values using trapezoidal rule
!! ([Specification](../page/specs/stdlib_quadrature.html#description))
#:for k1, t1 in REAL_KINDS_TYPES
pure module function trapz_dx_${k1}$(y, dx) result(integral)
${t1}$, dimension(:), intent(in) :: y
${t1}$, intent(in) :: dx
${t1}$ :: integral
end function trapz_dx_${k1}$
end function trapz_dx_${k1}$
#:endfor
#:for k1, t1 in REAL_KINDS_TYPES
module function trapz_x_${k1}$(y, x) result(integral)
Expand All @@ -37,8 +37,8 @@ module stdlib_quadrature


interface trapz_weights
!! version: experimental
!!
!! version: experimental
!!
!! Integrates sampled values using trapezoidal rule weights for given abscissas
!! ([Specification](../page/specs/stdlib_quadrature.html#description_1))
#:for k1, t1 in REAL_KINDS_TYPES
Expand All @@ -51,8 +51,8 @@ module stdlib_quadrature


interface simps
!! version: experimental
!!
!! version: experimental
!!
!! Integrates sampled values using Simpson's rule
!! ([Specification](../page/specs/stdlib_quadrature.html#description_3))
! "recursive" is an implementation detail
Expand All @@ -76,8 +76,8 @@ module stdlib_quadrature


interface simps_weights
!! version: experimental
!!
!! version: experimental
!!
!! Integrates sampled values using trapezoidal rule weights for given abscissas
!! ([Specification](../page/specs/stdlib_quadrature.html#description_3))
#:for k1, t1 in REAL_KINDS_TYPES
Expand Down