REVIEW 4 major objections 4 minor 40 references
SPOT claims that long-horizon multi-object rearrangement can be planned by A* search over continuous SE(3) transformations of segmented point clouds, guided by learned suggesters, with no discretization of actions or object relationships.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
A hybrid A* search over SE(3) point cloud transforms, with learned suggesters proposing which object to move and where, solves multi-object rearrangement without discretizing actions.
T0 review reviewed 2026-08-05 challenge →
load-bearing objection SPOT is a genuinely new recipe—A* search over continuous SE(3) point-cloud transformations with learned samplers—and the experiments back it up, though the search's transition model is an approximation and 'planning success' should be read with that in mind. the 4 major comments →
Planning from Point Clouds over Continuous Actions for Multi-object Rearrangement
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
Core claim
SPOT solves multi-object rearrangement as search over scene configurations in point-cloud space. The state is a partially observed, segmented point cloud; an action applies a rigid SE(3) transformation to one object's points and leaves all others fixed; a goal function decides when a cloud satisfies the task. A* expands the root cloud by sampling an object and candidate transformations from learned suggesters. Node cost combines a constant action cost, a voxel collision cost, deviation predicted by a learned model-deviation estimator, and a probability cost from the suggesters. The output plan is a sequence of transformations executed by pick-and-place primitives. Headline results: 88±2% pla
What carries the argument
The central object is the search node n = [o_n, x_n, T_n, n_p]: a segmented scene point cloud plus the action (object and rigid transformation) that produced it from its parent. Three learned components make the search feasible: an object suggester scoring which object to move; a placement suggester (TAXPose-D, a conditional VAE over a discrete latent space) sampling multimodal task-relevant transformations; and a model deviation estimator predicting the Chamfer deviation between the rigidly transformed scene and the observed next scene, whose output enters the cost g(n) = C_a + w_cC_c + w_dC_d + w_pC_p. The load-bearing identity is the transition model—p(o_{t+1}|o_t,a_t) is exactly a rigid
Load-bearing premise
The load-bearing premise is that moving one object leaves every other point in the scene exactly where it was—an action is precisely a rigid SE(3) transform of one object's point cloud; if real dynamics make other objects shift, topple, or slide (a cup falling off a moved plate), the child states the search plans through are not the states that occur at execution.
What would settle it
Run SPOT on the real-world 4-step table-bussing configuration with a cup nested inside a bowl on a plate, execute the returned plan, and check each step: if any step moves a supporting object while another object rests on it and the resting object's observed cloud diverges from the rigid-transform prediction by more than the MDE's predicted deviation, the core transition model is falsified. A cheaper surrogate: hold out transitions from the MDE dataset and compare predicted versus actual object-wise Chamfer deviations; if the MDE's ranking does not separate safe from unsafe actions (e.g., a 'b
If this is right
- Rearrangement planning can be done with no symbolic task ontology: no hand-defined predicates over object relationships and no discretized action set, only a goal function and learned priors from demonstrations.
- Goal-agnostic demonstrations suffice: the suggesters are trained on transitions that need not share the planner's goal, so the same learned priors can serve different goals in the same environment.
- Search-based planning is the source of the gains: the beam-search ablation, which picks a single child node myopically, collapses to 43%/7%/0% execution success at 2/3/4 steps, so the improvement is not merely a matter of node count.
- SPOT can find paths shorter than the demonstrations it trained on, because the suggesters capture a goal-agnostic distribution of feasible moves and search explores alternatives, e.g., moving a cup aside to stack bowls directly instead of the demonstrator's extra step.
- Planning success exceeds execution success in both environments (88% vs 63% block stacking; 100% vs 86% table bussing), so the remaining gap isolates the difference between the rigid-transform model and real dynamics.
- The cost function itself is task-agnostic; only the heuristic and goal function are hand-designed per task, and the paper reports them as the pieces left for future work to learn.
Where Pith is reading between the lines
- Because the transition model fixes all but one object, the method's reach is bounded by the “one rigid object at a time, no knock-on effects” regime; tasks with toppling, sliding, or deformable contact would require the deviation estimator to carry more weight than it does, or a richer dynamics model. This is my inference, not a paper claim.
- The reported search metrics (1 to 49 seconds and 33 to 1711 generated nodes from 1- to 4-step tasks) suggest that, in its current form, cost grows steeply with plan length; the paper's own future-work list (Partial Expansion A*, MCTS, replanning) points to the same bottleneck.
- The “no discretization” claim applies to actions and object relationships, not to task specification: the goal function and heuristic are still hand-designed per task, so full autonomy would additionally require learning those components.
- A testable extension follows directly from the training setup: since the suggesters are goal-agnostic, SPOT's learned priors should transfer to novel goal functions in the same environment with only the goal function and heuristic swapped; the paper does not evaluate this.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes SPOT, a hybrid learning-and-search planner for multi-object rearrangement. SPOT operates on segmented point clouds, samples candidate object and placement transformations from learned suggesters, and runs A* search over object-wise SE(3) transformations until a goal function is satisfied. A learned model-deviation estimator (MDE) biases the search away from actions whose predicted next state is unlikely to match execution. The output plan is executed with pick-and-place primitives. Experiments in simulation (block stacking, constrained packing) and the real world (table bussing) report planning and execution success, with comparisons to 3D Diffusion Policy, beam search, random rollouts, and an object-suggester ablation.
Significance. If the results hold, SPOT offers a useful alternative to symbolic task planning and latent-space planners: it avoids discretizing actions or object relationships and plans directly in point-cloud space using task-agnostic demonstration priors. The real-world table-bussing experiments and the comparison to a strong policy-learning baseline (DP3) are valuable evidence that search over continuous object transformations can be practical. The paper is transparent about its failure modes, which strengthens the presentation. The main caveat is that planning success is measured against an idealized rigid-transform dynamics model; execution success is the physically grounded number and is reported separately. The stress-test concern about the transition model lands and is the paper's most important limitation.
major comments (4)
- [Sec. 4.4 / Sec. 4.3 / Sec. 7] The search transition model treats p(o_{t+1}|o_t,a_t) as the exact application of an SE(3) transform to one object, leaving all other points unchanged (Sec. 4 and 4.4). The MDE only adds a penalty C_d(n)=δ(o,a) to f(n); it never replaces the analytic child state with a physically predicted state. Consequently, planning success in Table 1 (88%, 100%) and Figure 5 (100%) is success against the planner's internal model, not necessarily against the physical environment. Execution success is lower (63%, 86%, 84%). The Limitations section explicitly acknowledges that the MDE can output a small deviation for a bad action and thereby cause execution failures; that is a symptom of the same issue. The central claim that SPOT 'generates successful plans' is load-bearing on the fidelity of this transition model. The paper should either qualify planning success as model-relative or provide evidence (
- [Sec. 4.3 / Sec. 5.3] The paper introduces the model deviation estimator as a core component (Sec. 4.3, Sec. E.2) and lists its failure modes in Sec. 7, but no experiment ablates or even varies the MDE. Tables 1-2 and Figure 5 only ablate the object suggester and the search component. Since the MDE is the only mechanism intended to compensate for the approximate rigid-transform transition model, its contribution to both planning and execution success is unmeasured. Please add an ablation with C_d removed (or a weight sweep) and report both planning and execution success for that variant.
- [Sec. 5.3.1 / Appendix F.3] The Points2Plans comparison is not numerically substantiated. The text states that SPOT 'slightly outperforms' Points2Plans and references Figure 5, but no numerical results for Points2Plans, eRDTransformer, or Pairwise-RD appear in the text or in a table. Appendix F.3 also changes the success metric from Points2Plans' relational predicates to a non-disturbance check, which complicates direct comparison. To support the stated claim, report the baseline success rates on the same 500 evaluation runs and discuss how the modified metric affects the comparison.
- [Sec. 5.3.1 / Appendix F.4 / Table 2] The comparison with 3D Diffusion Policy is confounded by goal conditioning. DP3 is not goal-conditioned and was trained on 23 demonstrations of a single goal, while SPOT receives the goal function at test time (Appendix F.4). The claim that SPOT 'outperforms a policy-learning approach' is therefore only established against a non-goal-conditioned baseline with limited data. Adding a goal-conditioned policy baseline or restricting the claim accordingly would make the comparison more convincing.
minor comments (4)
- [Sec. 5.1] The definition of planning success should state explicitly that it is evaluated on the search states obtained by applying the planned transformations, not on states after physical execution. This would make the planning/execution distinction unambiguous.
- [Sec. 5.2 / Appendix F.5] The 'Beam Search' ablation uses beam width 1, which is equivalent to greedy search. Consider renaming it or explaining why a greedy search is the intended ablation.
- [Table 1] For the real-world table-bussing results, it would help to report the number of trials per configuration and whether the 86% execution success corresponds to 12 of 14 configurations. Reporting only percentages for a 14-configuration set makes confidence intervals difficult to assess.
- [Appendix C.2] The MDE training data for table bussing is collected by rolling out plans 'until either task execution success or failure.' If plans often terminate early, the MDE may not cover the state distribution that the planner actually encounters. Please discuss or provide evidence that the training distribution is sufficiently broad.
Circularity Check
No significant circularity: SPOT's planning success is measured against an externally specified goal function, and execution success provides an independent ground-truth check. The only notable self-citation (TAXPose-D) is an implementation choice for the placement suggester, not a load-bearing uniqueness claim.
full rationale
The paper's derivation chain is not circular. SPOT defines a transition model p(o_{t+1}|o_t,a_t) as a rigid SE(3) transform applied to one object (Sec. 4), and search nodes are generated by applying that transform. Planning success is then evaluated by checking an externally specified goal function G(o) on the resulting point cloud. This is a standard planning formulation, not a case of a fitted parameter being renamed as a prediction: G is hand-defined and independent of the learned suggesters, and the search can fail to find a goal even under the model. The learned object suggester, placement suggester, and model deviation estimator are trained on demonstrations and real-robot rollouts, respectively, and they guide but do not define task success. Execution success is measured by physically executing the plan in simulation or the real world, providing an independent check that the planning result is not merely self-consistent. The transition-model assumption (exact rigid motion, no toppling/sliding) is an explicit modeling limitation; the paper's own MDE and Limitations section acknowledge that bad actions can cause deviation, and execution failures are reported. This is a correctness risk, not circularity. The only self-citation of note is TAXPose-D [23], which shares a co-author (D. Held) and is used as the implementation of the placement suggester. However, it is not used to justify the core planning claim, it is a published external method, and its outputs are separately evaluated (Table 5) and ablated (e.g., random rollouts). No uniqueness theorem or ansatz is imported from the cited prior work. Therefore, no prediction in the paper reduces by construction to the learned inputs or to a self-citation chain.
Axiom & Free-Parameter Ledger
free parameters (7)
- k (candidate transformations per object) =
10 (block stacking), 5 (constrained packing), 3 (table bussing)
- m (goal count for multi-goal A*) =
1 (simulation), 10 (real-world)
- Cost weights wc, wd, wp =
not reported
- Action cost Ca =
0.01
- Node expansion budget =
not reported (200 for random rollouts)
- MDE label clipping (clip max) and epsilon =
3.2/5000 and 1/0.01
- Heuristic and goal thresholds =
not reported
axioms (6)
- domain assumption Objects are rigid and move independently; the next point cloud is exactly the current point cloud with a single object transformed by T (Sec 4 Markovian model).
- domain assumption Demonstrations D (non-task-specific) provide enough coverage that learned suggesters can propose goal-relevant transformations for novel goals (Sec 3, 4.2).
- domain assumption Segmentation and semantic labeling of the partial point cloud is accurate (SAM2/Grounding DINO); object identities and masks are correct (Sec 3).
- domain assumption The goal function G and heuristic h are given and correctly evaluate point clouds (Sec 3, E.3).
- standard math A* search with a finite branching factor and a bounded expansion budget terminates and finds a goal when one exists in the generated tree (standard A* properties).
- domain assumption The MDE predicts execution deviation well enough to keep the search away from physically invalid actions (Sec 4.3).
Cite this review
Pith. "Pith review of Planning from Point Clouds over Continuous Actions for Multi-object Rearrangement." pith.science (2026). https://pith.science/paper/MR4B6ERG
@misc{pith2026250904645,
author = {Pith},
title = {Pith review of: Planning from Point Clouds over Continuous Actions for Multi-object Rearrangement},
year = {2026},
howpublished = {\url{https://pith.science/paper/MR4B6ERG}},
note = {Machine review of arXiv:2509.04645}
}
read the original abstract
Long-horizon planning for robot manipulation is a challenging problem that requires reasoning about the effects of a sequence of actions on a physical 3D scene. While traditional task planning methods are shown to be effective for long-horizon manipulation, they require discretizing the continuous state and action space into symbolic descriptions of objects, object relationships, and actions. Instead, we propose a hybrid learning-and-planning approach that leverages learned models as domain-specific priors to guide search in high-dimensional continuous action spaces. We introduce SPOT: Search over Point cloud Object Transformations, which plans by searching for a sequence of transformations from an initial scene point cloud to a goal-satisfying point cloud. SPOT samples candidate actions from learned suggesters that operate on partially observed point clouds, eliminating the need to discretize actions or object relationships. We evaluate SPOT on multi-object rearrangement tasks, reporting task planning success and task execution success in both simulation and real-world environments. Our experiments show that SPOT generates successful plans and outperforms a policy-learning approach. We also perform ablations that highlight the importance of search-based planning.
Figures
Reference graph
Works this paper leans on
-
[1]
L. P. Kaelbling and T. Lozano-P´erez. Integrated task and motion planning in belief space. The International Journal of Robotics Research, 32(9-10):1194–1227, 2013
2013
-
[2]
H. M. Pasula, L. S. Zettlemoyer, and L. P. Kaelbling. Learning symbolic models of stochastic domains. Journal of Artificial Intelligence Research, 29:309–352, jul 2007. doi:10.1613/jair
doi:10.1613/jair 2007
-
[3]
E. Plaku and G. D. Hager. Sampling-based motion and symbolic action planning with geo- metric and differential constraints. In 2010 IEEE International Conference on Robotics and Automation, pages 5002–5008, 2010. doi:10.1109/ROBOT.2010.5509563
-
[4]
Learning Model Preconditions for Planning with Multiple Models
A. LaGrassa and O. Kroemer. Learning model preconditions for planning with multiple mod- els, 2022. URL https://arxiv.org/abs/2206.05573
work page internal anchor Pith review Pith/arXiv arXiv 2022
-
[5]
D. McConachie, T. Power, P. Mitrano, and D. Berenson. Learning when to trust a dynamics model for planning in reduced state spaces. IEEE Robotics and Automation Letters , 5(2): 3540–3547, Apr. 2020. ISSN 2377-3774. doi:10.1109/lra.2020.2972858. URL http://dx. doi.org/10.1109/LRA.2020.2972858
-
[6]
Keep it Simple: Data-efficient Learning for Controlling Complex Systems with Simple Models
T. Power and D. Berenson. Keep it simple: Data-efficient learning for controlling complex systems with simple models, 2021. URL https://arxiv.org/abs/2102.02493
work page internal anchor Pith review Pith/arXiv arXiv 2021
-
[7]
Points2Plans: From Point Clouds to Long-Horizon Plans with Composable Relational Dynamics
Y . Huang, C. Agia, J. Wu, T. Hermans, and J. Bohg. Points2plans: From point clouds to long-horizon plans with composable relational dynamics. arXiv preprint arXiv:2408.14769, 2024. 11
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[8]
Predicting Stable Configurations for Semantic Placement of Novel Objects
C. Paxton, C. Xie, T. Hermans, and D. Fox. Predicting stable configurations for semantic placement of novel objects, 2021. URL https://arxiv.org/abs/2108.12062
work page internal anchor Pith review Pith/arXiv arXiv 2021
-
[9]
X. Lin, C. Qi, Y . Zhang, Z. Huang, K. Fragkiadaki, Y . Li, C. Gan, and D. Held. Planning with spatial-temporal abstraction from point clouds for deformable object manipulation, 2023. URL https://arxiv.org/abs/2210.15751
Pith/arXiv arXiv 2023
-
[11]
B. Ichter and M. Pavone. Robot motion planning in learned latent spaces. IEEE Robotics and Automation Letters, 4(3):2407–2414, 2019. doi:10.1109/LRA.2019.2901898
-
[12]
Latent Space Planning for Multi-Object Manipulation with Environment-Aware Relational Classifiers
Y . Huang, N. C. Taylor, A. Conkey, W. Liu, and T. Hermans. Latent space planning for multi-object manipulation with environment-aware relational classifiers, 2024. URL https: //arxiv.org/abs/2305.10857
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[13]
A. Simeonov, Y . Du, B. Kim, F. R. Hogan, J. Tenenbaum, P. Agrawal, and A. Rodriguez. A long horizon planning framework for manipulating rigid pointcloud objects. In Confer- ence on Robot Learning (CoRL) , 2020. URL https://anthonysimeonov.github.io/ rpo-planning-framework/
work page 2020
-
[14]
W. Liu, C. Paxton, T. Hermans, and D. Fox. Structformer: Learning spatial structure for language-guided semantic rearrangement of novel objects. In ICRA 2022, 2022
work page 2022
-
[15]
C. Agia, T. Migimatsu, J. Wu, and J. Bohg. Stap: Sequencing task-agnostic policies. In 2023 IEEE International Conference on Robotics and Automation (ICRA), pages 7951–7958, 2023. doi:10.1109/ICRA48891.2023.10160220
arXiv 2023
-
[16]
K. Lin, C. Agia, T. Migimatsu, M. Pavone, and J. Bohg. Text2motion: from natural language instructions to feasible plans. Autonomous Robots, Nov 2023. ISSN 1573-7527. doi:10.1007/ s10514-023-10131-7. URL https://doi.org/10.1007/s10514-023-10131-7
-
[17]
U. A. Mishra, S. Xue, Y . Chen, and D. Xu. Generative skill chaining: Long-horizon skill planning with diffusion models. In 7th Annual Conference on Robot Learning , 2023. URL https://openreview.net/forum?id=HtJE9ly5dT
work page 2023
-
[18]
T. Xue, A. Razmjoo, S. Shetty, and S. Calinon. Logic-skill programming: An optimization- based approach to sequential skill planning, 2024. URL https://arxiv.org/abs/2405. 04082
work page 2024
-
[19]
J. O. de Haro, V . N. Hartmann, O. S. Oguz, and M. Toussaint. Learning efficient constraint graph sampling for robotic sequential manipulation. CoRR, abs/2011.04828, 2020. URL https://arxiv.org/abs/2011.04828
work page internal anchor Pith review Pith/arXiv arXiv 2011
- [20]
-
[21]
K. Rana, J. Haviland, S. Garg, J. Abou-Chakra, I. Reid, and N. Suenderhauf. Sayplan: Ground- ing large language models using 3d scene graphs for scalable robot task planning, 2023. URL https://arxiv.org/abs/2307.06135
Pith/arXiv arXiv 2023
-
[22]
Planning for Multi-Object Manipulation with Graph Neural Network Relational Classifiers
Y . Huang, A. Conkey, and T. Hermans. Planning for multi-object manipulation with graph neural network relational classifiers, 2023. URL https://arxiv.org/abs/2209.11943
work page internal anchor Pith review Pith/arXiv arXiv 2023
-
[23]
J. Wang, O. Donca, and D. Held. Learning distributional demonstration spaces for task-specific cross-pose estimation. In International Conference on Robotics and Automation (ICRA), 2024. 12
work page 2024
-
[24]
A. Simeonov, A. Goyal, L. Manuelli, L. Yen-Chen, A. Sarmiento, A. Rodriguez, P. Agrawal, and D. Fox. Shelving, stacking, hanging: Relational pose diffusion for multi-modal rearrange- ment. Conference on Robot Learning, 2023
work page 2023
- [25]
-
[26]
W. Zhou, B. Jiang, F. Yang, C. Paxton, and D. Held. Hacman: Learning hybrid actor-critic maps for 6d non-prehensile manipulation. 2023
work page 2023
-
[27]
B. Fu, S. K. Leong, X. Lian, and X. Ji. 6d robotic assembly based on rgb-only object pose estimation, 2022. URL https://arxiv.org/abs/2208.12986
work page internal anchor Pith review Pith/arXiv arXiv 2022
-
[28]
Q. Yu, C. Hao, J. Wang, W. Liu, L. Liu, Y . Mu, Y . You, H. Yan, and C. Lu. Manipose: A comprehensive benchmark for pose-aware object manipulation in robotics, 2024. URLhttps: //arxiv.org/abs/2403.13365
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[29]
N. Ravi, V . Gabeur, Y .-T. Hu, R. Hu, C. Ryali, T. Ma, H. Khedr, R. R ¨adle, C. Rolland, L. Gustafson, E. Mintun, J. Pan, K. V . Alwala, N. Carion, C.-Y . Wu, R. Girshick, P. Doll ´ar, and C. Feichtenhofer. Sam 2: Segment anything in images and videos, 2024. URL https: //arxiv.org/abs/2408.00714
Pith/arXiv arXiv 2024
-
[30]
S. Liu, Z. Zeng, T. Ren, F. Li, H. Zhang, J. Yang, Q. Jiang, C. Li, J. Yang, H. Su, J. Zhu, and L. Zhang. Grounding dino: Marrying dino with grounded pre-training for open-set object detection, 2024. URL https://arxiv.org/abs/2303.05499
Pith/arXiv arXiv 2024
-
[31]
T. Ren, S. Liu, A. Zeng, J. Lin, K. Li, H. Cao, J. Chen, X. Huang, Y . Chen, F. Yan, Z. Zeng, H. Zhang, F. Li, J. Yang, H. Li, Q. Jiang, and L. Zhang. Grounded sam: Assembling open- world models for diverse visual tasks, 2024
work page 2024
-
[32]
M. Sundermeyer, A. Mousavian, R. Triebel, and D. Fox. Contact-graspnet: Efficient 6-dof grasp generation in cluttered scenes. 2021
work page 2021
-
[33]
Y . Ze, G. Zhang, K. Zhang, C. Hu, M. Wang, and H. Xu. 3d diffusion policy: Generalizable visuomotor policy learning via simple 3d representations. InProceedings of Robotics: Science and Systems (RSS), 2024
2024
-
[34]
A. Felner, M. Goldenberg, G. Sharon, R. Stern, T. Beja, N. Sturtevant, J. Schaeffer, and R. Holte. Partial-expansion a* with selective node generation.Proceedings of the AAAI Confer- ence on Artificial Intelligence, 26(1):471–477, Sep. 2021. doi:10.1609/aaai.v26i1.8137. URL https://ojs.aaai.org/index.php/AAAI/article/view/8137
-
[35]
E. Cai, O. Donca, B. Eisner, and D. Held. Non-rigid relative placement through 3d dense diffusion. In 8th Annual Conference on Robot Learning, 2024. URL https://arxiv.org/ abs/2410.19247
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[36]
C. R. Qi, L. Yi, H. Su, and L. J. Guibas. Pointnet++: Deep hierarchical feature learning on point sets in a metric space. arXiv preprint arXiv:1706.02413, 2017
Pith/arXiv arXiv 2017
- [37]
-
[38]
E. Coumans and Y . Bai. Pybullet, a python module for physics simulation for games, robotics and machine learning. http://pybullet.org, 2016–2023. 13 Appendix Table of Contents A Object Suggester 14 A.1 Dataset . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 A.2 Implementation Details . . . . . . . . . . . . . . . . . . . ...
work page 2016
-
[40]
Plans found inside this graph are marked via green edges
An expanded graph that marks all the nodes expanded during search. Plans found inside this graph are marked via green edges. Figures 11 through 13 show expanded graphs for three different table bussing initial configurations
-
[41]
Figures 14 through 16 show plan graphs for three different table bussing initial configura- tions
A plan graph that visualizes different paths to goal configurations found during multi-goal A* search. Figures 14 through 16 show plan graphs for three different table bussing initial configura- tions. Figure 11: Expanded graph example 1. The graph represents the expanded nodes for a 2-step table bussing configuration where a bowl is on a plate and a cup ...
-
[2113]
URL https://doi.org/10.1613%2Fjair.2113
This paper was first reviewed by deepseek-v4-flash on August 5, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.