|
10 | 10 | .. autoclass:: FMMTraversalBuilder |
11 | 11 |
|
12 | 12 | .. 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`). |
13 | 24 | """ |
14 | 25 | from __future__ import annotations |
15 | 26 |
|
@@ -1677,14 +1688,6 @@ def __init__(self, |
1677 | 1688 | The spacing between boxes that is considered "well-separated" for |
1678 | 1689 | :attr:`boxtree.traversal.FMMTraversalInfo.from_sep_siblings_starts` |
1679 | 1690 | (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`). |
1688 | 1691 | """ |
1689 | 1692 | self.context = context |
1690 | 1693 | self.well_sep_is_n_away = well_sep_is_n_away |
|
0 commit comments