active_tree_max_depth Function

public pure function active_tree_max_depth(plan, use_target_tree)

有効な木の最大深さを返す。

Arguments

Type IntentOptional Attributes Name
type(fmm_plan_type), intent(in) :: plan

FMM 計画。

logical, intent(in) :: use_target_tree

target 木を使うなら .true.

Return Value integer(kind=i32)


Called by

proc~~active_tree_max_depth~~CalledByGraph proc~active_tree_max_depth active_tree_max_depth proc~core_update_state_impl core_update_state_impl proc~core_update_state_impl->proc~active_tree_max_depth proc~precompute_periodic_root_operator precompute_periodic_root_operator proc~precompute_periodic_root_operator->proc~active_tree_max_depth proc~core_build_plan_impl core_build_plan_impl proc~core_build_plan_impl->proc~precompute_periodic_root_operator

Source Code

  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