periodic2 の root operator を前計算する。
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(fmm_plan_type), | intent(inout) | :: | plan |
FMM 計画。 |
subroutine precompute_periodic_root_operator(plan) type(fmm_plan_type), intent(inout) :: plan if (allocated(plan%periodic_root_target_nodes)) deallocate (plan%periodic_root_target_nodes) if (allocated(plan%periodic_root_operator)) deallocate (plan%periodic_root_operator) plan%periodic_root_operator_ready = .false. plan%periodic_root_target_count = 0_i32 if (use_periodic2_m2l_root_oracle(plan)) then call precompute_periodic_root_oracle_operator(plan) end if end subroutine precompute_periodic_root_operator