Skip to content

Commit 892e43c

Browse files
committed
doc-FromSepSmallerCrit
1 parent 885a1e3 commit 892e43c

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

boxtree/traversal.py

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@
1010
.. autoclass:: FMMTraversalBuilder
1111
1212
.. automethod:: __call__
13+
14+
.. autoclass:: FromSepSmallerCrit
15+
16+
The criterion used to determine separation
17+
box dimensions and separation for
18+
:attr:`boxtree.traversal.FMMTraversalInfo.from_sep_smaller_by_level`
19+
(List 3). May be one of ``"static_linf"`` (use the box square,
20+
possibly enlarged by :attr:`boxtree.Tree.stick_out_factor`),
21+
``"precise_linf"`` (use the precise extent of targets in the box,
22+
including their radii), or ``"static_l2"`` (use the circumcircle of
23+
the box, possibly enlarged by :attr:`boxtree.Tree.stick_out_factor`).
1324
"""
1425
from __future__ import annotations
1526

@@ -1677,14 +1688,6 @@ def __init__(self,
16771688
The spacing between boxes that is considered "well-separated" for
16781689
:attr:`boxtree.traversal.FMMTraversalInfo.from_sep_siblings_starts`
16791690
(List 2).
1680-
:arg from_sep_smaller_crit: The criterion used to determine separation
1681-
box dimensions and separation for
1682-
:attr:`boxtree.traversal.FMMTraversalInfo.from_sep_smaller_by_level`
1683-
(List 3). May be one of ``"static_linf"`` (use the box square,
1684-
possibly enlarged by :attr:`boxtree.Tree.stick_out_factor`),
1685-
``"precise_linf"`` (use the precise extent of targets in the box,
1686-
including their radii), or ``"static_l2"`` (use the circumcircle of
1687-
the box, possibly enlarged by :attr:`boxtree.Tree.stick_out_factor`).
16881691
"""
16891692
self.context = context
16901693
self.well_sep_is_n_away = well_sep_is_n_away

0 commit comments

Comments
 (0)