Pith. sign in

REVIEW 3 major objections 6 minor 33 references

Topo2Seq: Enhanced Topology Reasoning via Topology Sequence Learning

T0 review · 3 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read Topo2Seq claims that adding a training-only topology sequence decoder, fed randomized key-point prompts from the lane detector, makes the detector reason about lane connectivity as ordered sequences and lifts OpenLane-V2 topology scores…

desk verdict A training-only sequence decoder gives LaneSegNet a real but incremental bump; the DAG/DFS serialization assumption and missing code/reproducibility are the main things to pin down. read the letter →

arxiv 2502.08974 v1 pith:FJNQR3NL submitted 2025-02-13 cs.CV

classification cs.CV
keywords lanetopologyreasoningsequencelearningdual-decoderDETRlong-rangeperceptionOpenLane-V2autonomousdrivingprompt-to-sequence
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

Topo2Seq argues that the bottleneck in lane topology reasoning is not the lane detector's shape output but its inability to see and order far-apart lane endpoints. The paper proposes training an auxiliary autoregressive topology sequence decoder alongside the normal lane segment decoder: the lane graph is serialized into edge sequences, and unordered key points from the predicted lanes are fed in as prompts that the sequence decoder must use to reconstruct the ordered graph. This forces the shared encoder to relate distant key points, improving endpoint alignment and connectivity predictions. The topology decoder is used only during training, so the improved performance costs no extra computation at inference. On the OpenLane-V2 benchmark the method reports gains over LaneSegNet of 2.4 to 2.7 points on centerline metrics and 2.6 points on topology-of-lane-segments.

What carries the argument

The central mechanism is the dual-decoder setup with randomized-order prompt-to-sequence learning. The lane segment decoder predicts lanes and an adjacency matrix, as in DETR-like detectors; the topology sequence decoder is an autoregressive transformer with a causal mask that consumes an input sequence made of a key-point prompt section and an edge-sequence section, and predicts the target edge sequence. The lane graph is first transformed into a directed acyclic graph and serialized into edge sequences using depth-first search, with each edge encoded as six integers describing key-point coordinates, category, connectivity parent index, and a Bezier control point. Feeding unordered key points as prompts forces the sequence decoder to infer which key point belongs to which edge and in what order, which in turn refines the BEV features used by the lane segment decoder.

What would settle it

Evaluate Topo2Seq on a curated set of OpenLane-V2 validation scenes containing roundabouts or U-turns and compare its TOPll on those scenes against a matched set of acyclic scenes: if topology accuracy drops sharply on the cyclic scenes, the directed-acyclic-graph serialization is the limiting assumption; if it does not drop, the central sequence-learning claim is not undermined by cyclic road structures.

Watch

Extended reading notes

Core claim

The paper's central claim is that randomized-order prompt-to-sequence learning is enough to transfer long-range perception and topology reasoning from a sequence decoder to a DETR-style lane segment decoder. Rather than using the sequence decoder for inference, Topo2Seq keeps it as a training-time teacher: it extracts key points from the lane segment decoder's predicted graph, shuffles their order, and asks the sequence decoder to reconstruct the ground-truth edge sequence of the lane graph serialized as a directed acyclic graph. The training signal propagates through the shared bird's-eye-view features, reducing endpoint misalignment and duplicate predictions. The reported result is state-of-the-art on OpenLane-V2 subset A: with ResNet-50 at 48 epochs, OLS* reaches 45.8, DETl 36.7, TOPll 30.0, and TOPlsls 29.9, surpassing LaneSegNet by 2.4 to 2.7 points on centerline metrics and by 2.6 points on TOPlsls.

Load-bearing premise

The whole approach assumes every road scene's lane connections can be written as a non-looping chain with a single depth-first ordering of points, so circular traffic patterns like roundabouts and U-turns cannot be fully represented.

Editorial extensions

If this is right

  • If the reported numbers hold, Topo2Seq is the best-performing lane topology reasoning method on OpenLane-V2 subset A with a ResNet-50 backbone at 48 epochs.
  • The claimed improvements transfer from the auxiliary decoder to the inference-time detector, so a vehicle can get better topology reasoning at the same runtime of 14.7 FPS as the baseline detector.
  • The method specifically targets endpoint misalignment and duplicate lane predictions, the two failure modes the paper identifies in DETR-like lane detectors.
  • The randomized-order prompt design is what forces the model to reason about connectivity; using ordered ground-truth prompts yields smaller gains, according to the ablation study.
  • Because the sequence decoder is training-only, the approach can be layered on existing lane-segment architectures without changing their deployment footprint.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • One extension implied by the design is to apply the same training-only sequence decoder to other graph-structured prediction tasks whose targets can be serialized, such as pedestrian crossing graphs or lane-change graphs; the loss and prompt design are not lane-specific.
  • The directed-acyclic-graph assumption suggests a specific stress test: scenes with roundabouts or U-turns. A natural follow-up would modify the edge-sequence encoding to handle cycles, for example by allowing multiple depth-first orderings or explicit cycle tokens.
  • A broader reading is that unordered set-based detectors can be regularized by an order-sensitive auxiliary task, which may reduce their dependence on complex matching losses in other detection settings.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 6 minor

Summary. Topo2Seq proposes a dual-decoder training framework for lane topology reasoning from multi-view images. A lane segment decoder predicts centerline segments and pairwise connectivity, while a training-only topology sequence decoder is supervised to autoregressively reconstruct edge sequences derived from the ground-truth lane graph. The two decoders interact through 'randomized order prompt-to-sequence learning': unordered keypoint coordinates from predicted lanes are prepended to the edge-sequence input, and the lane segment decoder is trained jointly with a maximum-likelihood sequence loss. The paper evaluates on OpenLane-V2 subset A and reports consistent improvements over LaneSegNet with ResNet-50 at 24 and 48 epochs, plus ablations supporting the sequence branch.

Significance. If the reported results are reproducible, the method is a useful contribution: it shows that sequence-level topology supervision can be injected into a DETR-style lane graph detector without adding inference cost, and the gains on mAP, APls, APped, and TOPlsls in Tables 1 and 2 are internally consistent. The training-only design and the 14.7 FPS inference rate are practical strengths. However, the central empirical claim rests on a single run without error bars or released code, and the topology-sequence representation relies on an unvalidated DAG assumption; both points need to be addressed before the state-of-the-art claim can be taken at face value.

major comments (3)
  1. [Method, 'Structure of the sequences' and Eq. (7)] The DAG/DFS serialization assumption is load-bearing and is not validated anywhere in the paper. The authors state that the ground-truth lane graph is transformed into edge sequences 'Following RoadNet' and that Depth-First Search fixes a unique key-point order. This representation is faithful only if every scene's lane graph is acyclic. OpenLane-V2 is a real-road benchmark, and scenes with roundabouts or U-turns can contain directed cycles; for such frames no DFS order can encode the cycle without omitting a back edge or duplicating a vertex, so the target sequence yE used in Eq. (7) encodes a corrupted graph. Since the claimed benefit to the lane segment decoder flows through this shared supervision, the method can at best learn incomplete topology on cyclic scenes. The authors should either prove that OpenLane-V2 lane graphs are acyclic by annotation construction, report the prevalence of directed cycles in subset A and evaluate on subpopulations with and without cycles, or adopt an edge-list encoding that handles cycles.
  2. [Experiments, Tables 1 and 2] All reported numbers come from a single training run, with no error bars, no multiple-seed statistics, and no code or checkpoints released. The abstract and conclusion claim 'state-of-the-art performance on the OpenLane-V2 dataset', but the experiments cover only subset A. Because the main claim is a quantitative superiority of about 2.0-2.7 points over LaneSegNet, the absence of variance estimates makes it impossible to judge whether the gap is significant. The authors should report mean and standard deviation over at least three seeds and restrict the state-of-the-art claim to subset A or provide full-benchmark results.
  3. [Experiments, Implementation Details and Tables 1-2] The 48-epoch comparison is not apples-to-apples with the 24-epoch baselines: Topo2Seq uses a two-stage schedule (12 epochs of stable output followed by 12 epochs of decoder interaction, repeated to 48), while LaneSegNet's 48-epoch numbers are obtained from standard continuous training. The paper should clarify whether the gain comes from the sequence branch or from the staged training schedule, and ideally include a LaneSegNet baseline trained with the same two-stage schedule to isolate the effect of the proposed method.
minor comments (6)
  1. [Eq. (3)] 'Sigmod' should read 'Sigmoid'.
  2. [Eq. (7)] There is a stray comma in 'logP (ˆyE i |, Concat(yK, yE<i), F)'; the argument after the conditioning bar should not contain a comma before 'Concat'.
  3. [Table 2 caption] The caption lists 'TOPlsls (%)' as a reported metric, but the table columns show only OLS*, DETl, and TOPll; the caption and the table should be aligned.
  4. [Abstract and Conclusions] The claims of state-of-the-art performance should explicitly say 'OpenLane-V2 subset A', since that is the only subset evaluated in the paper.
  5. [Method, Heads paragraph] 'We emplopy MLPs' should read 'We employ MLPs'.
  6. [Throughout] The capitalization 'Lanesegnet' in the main text is inconsistent with the reference 'LaneSegNet'.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: reported gains are measured against an external benchmark and the auxiliary sequence decoder is training-only.

full rationale

The derivation chain is self-contained with respect to circularity. The paper's central claim is that training a lane segment decoder jointly with a training-only topology sequence decoder improves OpenLane-V2 metrics. The evidence is the comparison in Tables 1-2 against external methods on the OpenLane-V2 validation set, and the ablation in Table 3; these quantities are not fitted inputs renamed as predictions. The sequence target yE is constructed from ground-truth lane graphs (Eq. 5) and the auxiliary objective (Eq. 7) is a maximum-likelihood loss on those targets; the topology sequence decoder is removed at inference. The only notable assumption is the DAG/DFS serialization of lane graphs ('we transform the Directed Acyclic Graph (DAG) into edge sequences ... use Depth-First Search to perform the sorting'), which is inherited from RoadNet and is a faithfulness/correctness concern for cyclic scenes, not circular reasoning: the supervision is still external ground truth, and the claimed SOTA is measured independently. No load-bearing self-citation, imported uniqueness theorem, or definitional equivalence was found.

Assumptions & free parameters 4 free parameters · 4 assumptions · 0 invented entities

The central claim rests on standard pretrained perception components, on the stated DAG-based sequence representation, and on hand-set training hyperparameters. No physics-style free parameters are involved; the free parameters are ML hyperparameters that are not sensitivity-tested. The main unfalsified modeling assumption is the DAG/DFS serialization of road topology.

free parameters (4)
  • Loss weights alpha_1..alpha_6 = 0.025, 1.5, 3.0, 0.1, 5.0, 1.0
    Hand-set weights in the total loss; no sensitivity analysis is reported, so the headline gains are conditional on these values.
  • Sequence token budget = 802 tokens (201 key-point prompt + 601 edge sequence)
    Chosen to cover the scene; no ablation on sequence length or vocabulary size is given.
  • Two-stage training schedule = 12+12 and 24+24 epochs
    The paper tests three schedules and reports results for two; the choice of when to switch from GT prompts to predicted prompts is a hand-tuned hyperparameter.
  • Key-point coordinate quantization
    Equation 5 discretizes coordinates to integers, but the resolution or normalization is not stated, which affects the sequence reconstruction task.
assumptions (4)
  • domain assumption Road lane topology can be encoded as a Directed Acyclic Graph with a unique Depth-First-Search ordering of key points and cubic Bezier edges.
    Invoked in 'Structure of the sequences' when translating the lane graph into edge sequences; fails for cyclic road structures such as roundabouts or loops.
  • domain assumption Cubic Bezier curves with two control points adequately represent lane centerline geometry between key points.
    The edge sequence format of Equation 5 stores only two Bezier control points per edge; lane shapes requiring more complex curvature are approximated.
  • ad hoc to paper The maximum-likelihood sequence loss transfers improved long-range and topology reasoning to the lane segment decoder through the shared BEV encoder.
    Central mechanism of the method; supported only by the ablation in Table 3, with no formal or empirical isolation of the transfer path (shared encoder versus added capacity).
  • domain assumption Pretrained ResNet-50, FPN, and BEVFormer features provide sufficient geometric and semantic information for both lane segments and topology sequences.
    Inherited from LaneSegNet and BEVFormer; not independently justified in this paper.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Topo2Seq: Enhanced Topology Reasoning via Topology Sequence Learning." pith.science (2026). https://pith.science/paper/FJNQR3NL

@misc{pith2026250208974,
  author       = {Pith},
  title        = {Pith review of: Topo2Seq: Enhanced Topology Reasoning via Topology Sequence Learning},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/FJNQR3NL}},
  note         = {Machine review of arXiv:2502.08974}
}
read the original abstract

Extracting lane topology from perspective views (PV) is crucial for planning and control in autonomous driving. This approach extracts potential drivable trajectories for self-driving vehicles without relying on high-definition (HD) maps. However, the unordered nature and weak long-range perception of the DETR-like framework can result in misaligned segment endpoints and limited topological prediction capabilities. Inspired by the learning of contextual relationships in language models, the connectivity relations in roads can be characterized as explicit topology sequences. In this paper, we introduce Topo2Seq, a novel approach for enhancing topology reasoning via topology sequences learning. The core concept of Topo2Seq is a randomized order prompt-to-sequence learning between lane segment decoder and topology sequence decoder. The dual-decoder branches simultaneously learn the lane topology sequences extracted from the Directed Acyclic Graph (DAG) and the lane graph containing geometric information. Randomized order prompt-to-sequence learning extracts unordered key points from the lane graph predicted by the lane segment decoder, which are then fed into the prompt design of the topology sequence decoder to reconstruct an ordered and complete lane graph. In this way, the lane segment decoder learns powerful long-range perception and accurate topological reasoning from the topology sequence decoder. Notably, topology sequence decoder is only introduced during training and does not affect the inference efficiency. Experimental evaluations on the OpenLane-V2 dataset demonstrate the state-of-the-art performance of Topo2Seq in topology reasoning.

Figures

Figures reproduced from arXiv: 2502.08974 by the authors.

Figure 1
Figure 1. Comparison between previous methods (a) and Topo2Seq (b). Due to the limited sampling positions for each query in deformable-DETR and the unordered detec￾tion characteristics, existing methods exhibit several weak￾nesses. (b) Topo2Seq employs a prompt-to-sequence learn￾ing strategy, which enhances lane segment perception and topology reasoning through topology sequence learning. the surrounding road flow in real-tim… view at source ↗
Figure 2
Figure 2. The framework of Topo2Seq. Topo2Seq is composed of three main components. First, the surrounding multi-view [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. The illustration of input and target sequences. [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (1 more)
Figure 4
Figure 4. Figure 4: Qualitative results. Compared to LaneSegNet, Topo2Seq, with the assistance of sequence learning, produces higher [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

33 extracted references · 14 canonical work pages

  1. [1]

    H.; Vora, S.; Liong, V

    Caesar, H.; Bankiti, V.; Lang, A. H.; Vora, S.; Liong, V. E.; Xu, Q.; Krishnan, A.; Pan, Y.; Baldan, G.; and Beijbom, O. 2020. nuscenes: A multimodal dataset for autonomous driving. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 11621--11631

  2. [2]

    B.; Liniger, A.; Paudel, D

    Can, Y. B.; Liniger, A.; Paudel, D. P.; and Van Gool, L. 2021. Structured bird's-eye-view traffic scene understanding from onboard images. In Proceedings of the IEEE/CVF International Conference on Computer Vision, 15661--15670

  3. [3]

    Carion, N.; Massa, F.; Synnaeve, G.; Usunier, N.; Kirillov, A.; and Zagoruyko, S. 2020. End-to-end object detection with transformers. In European conference on computer vision, 213--229. Springer

  4. [4]

    J.; and Hinton, G

    Chen, T.; Saxena, S.; Li, L.; Fleet, D. J.; and Hinton, G. 2021. Pix2seq: A language modeling framework for object detection. arXiv preprint arXiv:2109.10852

  5. [5]

    J.; and Hinton, G

    Chen, T.; Saxena, S.; Li, L.; Lin, T.-Y.; Fleet, D. J.; and Hinton, G. E. 2022. A unified sequence interface for vision tasks. Advances in Neural Information Processing Systems, 35: 31333--31346

  6. [6]

    Deng, J.; Dong, W.; Socher, R.; Li, L.-J.; Li, K.; and Fei-Fei, L. 2009. Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, 248--255. Ieee

  7. [7]

    Devlin, J.; Chang, M.-W.; Lee, K.; and Toutanova, K. 2018. BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding. arXiv preprint arXiv:1810.04805

  8. [8]

    He, K.; Zhang, X.; Ren, S.; and Sun, J. 2016. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, 770--778

Show all 33 references
  1. [9]

    P.; and Ba, J

    Kingma, D. P.; and Ba, J. 2015. Adam: A Method for Stochastic Optimization. In ICLR

  2. [10]

    Li, H.; Huang, Z.; Wang, Z.; Rong, W.; Wang, N.; and Liu, S. 2024. Enhancing 3D Lane Detection and Topology Reasoning with 2D Lane Priors. arXiv preprint arXiv:2406.03105

  3. [11]

    Li, Q.; Wang, Y.; Wang, Y.; and Zhao, H. 2022 a . Hdmapnet: An online hd map construction and evaluation framework. In 2022 International Conference on Robotics and Automation (ICRA), 4628--4634. IEEE

  4. [12]

    Li, T.; Chen, L.; Wang, H.; Li, Y.; Yang, J.; Geng, X.; Jiang, S.; Wang, Y.; Xu, H.; Xu, C.; et al. 2023 a . Graph-based topology reasoning for driving scenes. arXiv preprint arXiv:2304.05277

  5. [13]

    Li, T.; Jia, P.; Wang, B.; Chen, L.; Jiang, K.; Yan, J.; and Li, H. 2023 b . Lanesegnet: Map learning with lane segment perception for autonomous driving. arXiv preprint arXiv:2312.16108

  6. [14]

    Li, Z.; Wang, W.; Li, H.; Xie, E.; Sima, C.; Lu, T.; Qiao, Y.; and Dai, J. 2022 b . Bevformer: Learning bird’s-eye-view representation from multi-camera images via spatiotemporal transformers. In European conference on computer vision, 1--18. Springer

  7. [15]

    Liao, B.; Chen, S.; Jiang, B.; Cheng, T.; Zhang, Q.; Liu, W.; Huang, C.; and Wang, X. 2023 a . Lane graph as path: Continuity-preserving path-wise modeling for online lane graph construction. arXiv preprint arXiv:2303.08815

  8. [16]

    Liao, B.; Chen, S.; Wang, X.; Cheng, T.; Zhang, Q.; Liu, W.; and Huang, C. 2022. Maptr: Structured modeling and learning for online vectorized hd map construction. arXiv preprint arXiv:2208.14437

  9. [17]

    Liao, B.; Chen, S.; Zhang, Y.; Jiang, B.; Zhang, Q.; Liu, W.; Huang, C.; and Wang, X. 2023 b . Maptrv2: An end-to-end framework for online vectorized hd map construction. arXiv preprint arXiv:2308.05736

  10. [18]

    Lin, T.-Y.; Doll \'a r, P.; Girshick, R.; He, K.; Hariharan, B.; and Belongie, S. 2017 a . Feature pyramid networks for object detection. In Proceedings of the IEEE conference on computer vision and pattern recognition, 2117--2125

  11. [19]

    Lin, T.-Y.; Goyal, P.; Girshick, R.; He, K.; and Doll \'a r, P. 2017 b . Focal loss for dense object detection. In Proceedings of the IEEE international conference on computer vision, 2980--2988

  12. [20]

    Liu, Y.; Yan, J.; Jia, F.; Li, S.; Gao, A.; Wang, T.; and Zhang, X. 2023 a . Petrv2: A unified framework for 3d perception from multi-camera images. In Proceedings of the IEEE/CVF International Conference on Computer Vision, 3262--3272

  13. [21]

    Liu, Y.; Yuan, T.; Wang, Y.; Wang, Y.; and Zhao, H. 2023 b . Vectormapnet: End-to-end vectorized hd map learning. In International Conference on Machine Learning, 22352--22369. PMLR

  14. [22]

    Liu, Z.; Chen, S.; Guo, X.; Wang, X.; Cheng, T.; Zhu, H.; Zhang, Q.; Liu, W.; and Zhang, Y. 2023 c . Vision-based uneven bev representation learning with polar rasterization and surface estimation. In Conference on Robot Learning, 437--446. PMLR

  15. [23]

    Liu, Z.; Zhang, X.; Liu, G.; Zhao, J.; and Xu, N. 2024. Leveraging Enhanced Queries of Point Sets for Vectorized Map Construction. arXiv preprint arXiv:2402.17430

  16. [24]

    Lu, J.; Peng, R.; Cai, X.; Xu, H.; Li, H.; Wen, F.; Zhang, W.; and Zhang, L. 2023. Translating Images to Road Network: A Non-Autoregressive Sequence-to-Sequence Approach. In Proceedings of the IEEE/CVF International Conference on Computer Vision, 23--33

  17. [25]

    Ma, Z.; Liang, S.; Wen, Y.; Lu, W.; and Wan, G. 2024. RoadPainter: Points Are Ideal Navigators for Topology transformER. arXiv preprint arXiv:2407.15349

  18. [26]

    Peng, R.; Cai, X.; Xu, H.; Lu, J.; Wen, F.; Zhang, W.; and Zhang, L. 2024. LaneGraph2Seq: Lane Topology Extraction with Language Model via Vertex-Edge Encoding and Connectivity Enhancement. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, 4497--4505

  19. [27]

    Vaswani, A. 2017. Attention is all you need. arXiv preprint arXiv:1706.03762

  20. [28]

    Wang, H.; Li, T.; Li, Y.; Chen, L.; Sima, C.; Liu, Z.; Wang, B.; Jia, P.; Wang, Y.; Jiang, S.; et al. 2024. Openlane-v2: A topology reasoning benchmark for unified 3d hd mapping. Advances in Neural Information Processing Systems, 36

  21. [29]

    K.; et al

    Wilson, B.; Qi, W.; Agarwal, T.; Lambert, J.; Singh, J.; Khandelwal, S.; Pan, B.; Kumar, R.; Hartnett, A.; Pontes, J. K.; et al. 2023. Argoverse 2: Next generation datasets for self-driving perception and forecasting. arXiv preprint arXiv:2301.00493

  22. [30]

    Wu, D.; Chang, J.; Jia, F.; Liu, Y.; Wang, T.; and Shen, J. 2023. Topomlp: An simple yet strong pipeline for driving topology reasoning. arXiv preprint arXiv:2310.06753

  23. [31]

    Zhu, X.; Su, W.; Lu, L.; Li, B.; Wang, X.; and Dai, J. 2020. Deformable detr: Deformable transformers for end-to-end object detection. arXiv preprint arXiv:2010.04159

  24. [32]

    , " * write output.state after.block = add.period write newline

    ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all...

  25. [33]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.