有効な木のノード外接半径を返す。
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(fmm_plan_type), | intent(in) | :: | plan |
FMM 計画。 |
||
| logical, | intent(in) | :: | use_target_tree |
target 木を使うなら |
||
| integer(kind=i32), | intent(in) | :: | node_idx |
ノード番号。 |
pure real(dp) function active_tree_node_radius(plan, use_target_tree, node_idx) type(fmm_plan_type), intent(in) :: plan logical, intent(in) :: use_target_tree integer(i32), intent(in) :: node_idx if (use_target_tree) then active_tree_node_radius = plan%target_node_radius(node_idx) else active_tree_node_radius = plan%node_radius(node_idx) end if end function active_tree_node_radius