有効な木の最大深さを返す。
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(fmm_plan_type), | intent(in) | :: | plan |
FMM 計画。 |
||
| logical, | intent(in) | :: | use_target_tree |
target 木を使うなら |
pure integer(i32) function active_tree_max_depth(plan, use_target_tree) type(fmm_plan_type), intent(in) :: plan logical, intent(in) :: use_target_tree active_tree_max_depth = merge(plan%target_node_max_depth, plan%node_max_depth, use_target_tree) end function active_tree_max_depth