FMM 計画と木構造、転送演算子を構築する。
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(fmm_plan_type), | intent(inout) | :: | plan |
構築対象の FMM 計画。 |
||
| real(kind=dp), | intent(in) | :: | src_pos(:,:) | |||
| type(fmm_options_type), | intent(in) | :: | options |
FMM 設定。 |
subroutine core_build_plan_impl(plan, src_pos, options) type(fmm_plan_type), intent(inout) :: plan real(dp), intent(in) :: src_pos(:, :) type(fmm_options_type), intent(in) :: options call core_build_plan_common(plan, src_pos, options) end subroutine core_build_plan_impl