Pith. sign in

REVIEW 5 major objections 5 minor 35 references

Taxonomy of migration scenarios for Qiskit refactoring using LLMs

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

Pith's one-line read LLMs can generate a Qiskit migration taxonomy that largely matches—and sometimes exceeds—one built by expert developers, in far less time.

desk verdict A modest but honest first cut at using LLMs to build a Qiskit migration taxonomy, with a real reproducibility pipeline, yet the central 'high correspondence' claim is currently unsupported by any measurement. read the letter →

arxiv 2506.07135 v1 pith:63J3WVMP submitted 2025-06-08 cs.SE cs.AIcs.ET

classification cs.SEcs.AIcs.ET
keywords QuantumSoftwareEngineeringLargeLanguageModelstaxonomyQiskitcodemigrationrefactoringreleasenotes
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

This paper claims that large language models can produce a taxonomy of code-migration scenarios for the Qiskit quantum programming library that is largely aligned with—and in places richer than—a taxonomy built manually by expert developers. To test this, the authors built two taxonomies of breaking changes between Qiskit versions (focusing on the jump from 0.46.0 to 1.0.0): one by hand from official documentation and release notes, and one by prompting several LLMs with the same documentation. The outputs were compared and merged into a unified taxonomy that categorizes scenarios by change type, affected Qiskit module, difficulty, and whether the impact is classical software engineering or quantum-specific. If the claim holds, LLM-assisted taxonomy generation could cut the expert time needed to catalog migration needs in fast-moving quantum libraries and supply a structured benchmark for evaluating automated migration tools.

What carries the argument

The mechanism is a paired taxonomy-generation pipeline with two arms. The manual arm produces a taxonomy from Qiskit release notes and changelogs, with each scenario described by category, migration flow, summary, artifacts, source and target code examples, difficulty, and SE/QSE impact. The automatic arm feeds the same documentation into a system prompt with few-shot examples, instructing an LLM to emit rows in the same markdown schema. Comparative analysis of the two taxonomies—overlap, gaps in either direction, and richness of examples—is what grounds the inference. The classification dimensions themselves are the objects that make the comparison meaningful.

What would settle it

Have several independent expert teams each build a taxonomy of the same Qiskit version migrations, measure their inter-rater agreement, then run the LLM prompts against the validated consensus taxonomy; if overlap drops below a pre-agreed threshold (for example, recall under 80%) or if most LLM-only scenarios are rejected as hallucinations, the claim of suitability fails.

Watch

Extended reading notes

Core claim

The paper's central finding is that when LLM prompts include the official Qiskit documentation, the automatically generated taxonomy shows high correspondence with the manual expert taxonomy, and in several cases the LLM output surpasses it in descriptive precision, completeness of code examples, and detection of scenarios the experts did not list. From this the authors infer that using LLMs for automatic taxonomy generation of quantum software engineering migration scenarios is plausible and suitable, substantially reducing the time required. The effect is clearest for major version updates, where documentation is extensive and the API changes are disruptive.

Load-bearing premise

The comparison assumes the manually built taxonomy is a correct and complete baseline, but the paper does not report how many experts built it, whether they agreed with each other, or how scenarios were validated.

Editorial extensions

If this is right

  • LLM-generated taxonomies can serve as a fast first pass, letting experts spend their time validating and refining rather than building the catalog from scratch.
  • The unified taxonomy becomes a reusable evaluation harness: migration tools can be scored per scenario, difficulty level, and QSE specificity.
  • Feeding official documentation directly into the prompt is the main quality lever, and context-length limits can be handled with retrieval augmentation or summarization.
  • Prioritizing tool development can now target the high-difficulty and quantum-specific scenarios that no classical refactoring tool covers.

Reading between the lines

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

  • The paper's evidence for agreement is qualitative; a quantitative score (recall/precision or inter-rater agreement against multiple experts) would convert 'high correspondence' into a measurable claim.
  • LLM-only scenarios flagged as 'extra' could be either genuine gaps in the manual taxonomy or hallucinations; the paper does not distinguish, so a follow-up study should have experts rate them.
  • Because Qiskit is Python-based and LLMs are known to be strongest at Python, the result may not transfer to quantum languages with C-like syntax such as Q#, which the paper itself acknowledges needs validation.
  • The manual taxonomy is treated as ground truth, yet its own reliability is unreported; a repeatability study with several independent expert taxonomies would make the comparison sound.
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

5 major / 5 minor

Summary. The paper reports a feasibility study in which the authors construct a taxonomy of refactoring scenarios for migrating Qiskit code between versions, first manually from official documentation and then automatically by prompting several LLMs (gemma-3-27b-it, DeepSeek-R1-Distill-Qwen-32B, GPT-4o, GPT-4o-mini, DeepSeek-V3, DeepSeek-R1). The taxonomies are compared qualitatively in Section 4, and the authors conclude that LLMs are 'plausible and suitable' for automatic taxonomy generation and that they would 'substantially reduc[e] the required time.' The manuscript also provides a GitHub repository with scripts for documentation extraction, verification, and model access, and discusses future extensions such as RAG and full migration tooling.

Significance. If the central claim were backed by quantitative evidence, the contribution would be useful: a reproducible taxonomy of Qiskit migration scenarios could support benchmarking of automatic refactoring tools and guide QSE tooling. The paper has real strengths: it uses official Qiskit documentation as the source for both taxonomies, releases scripts to reproduce extraction and prompting, tests multiple open and commercial models, and candidly discusses hallucinations, context-length constraints, and the need for future validation. However, the evidence offered in the current version is primarily informal; the claimed correspondence is not measured, the manual baseline is not validated, and the promised unified taxonomy is not included. The main skeptical concern about the paper is justified: the headline inference depends on an unquantified comparison and an unmeasured time-saving claim, so it cannot currently be independently checked.

major comments (5)
  1. [§4, final paragraph] The paper's central inference—that LLM use is 'plausible and suitable' and would lead to 'substantially reducing the required time'—rests on qualitative statements such as 'high correspondence' and 'models behave the best.' No matching protocol, agreement metric, row counts, per-model breakdown, or repeated-run variance is reported. Moreover, because the prompt enforces the same column structure and a few-shot example as the manual taxonomy, structural alignment is partly by construction; the substantive question is scenario-level agreement, which is not measured. Please add a quantitative comparison (e.g., precision/recall/F1 or Cohen's kappa) with an explicit scenario-matching rule, and report results for each model and run.
  2. [§3.2] The manual taxonomy is used as the reference against which LLM output is judged, but the manuscript gives no information about who built it, how many people were involved, whether there was any inter-rater agreement, or how scenarios were selected and validated. It also says versions 0.46.0 and 1.0.0 were considered 'exhaustively' while later stating that 13 version updates were analyzed, which is internally inconsistent. A weak or unvalidated baseline makes 'extra scenarios' from the LLM uninterpretable, since they may reflect hallucinations or duplicates rather than genuine omissions. Please document the construction and validation of the baseline and clarify which versions are actually covered.
  3. [Abstract and §3.1] The abstract and introduction promise a 'unified taxonomy' produced by integrating the manual and LLM taxonomies, but the full text never presents this artifact: there is no table, figure, or appendix showing the unified taxonomy, nor a list of the migration scenarios for the analyzed versions. Since this taxonomy is the paper's main contribution and the foundation for future work, the manuscript is incomplete without it. Please include the unified taxonomy (or clearly mark it as supplementary material with an accessible link).
  4. [§3.3 and §4] LLM generation is stochastic, yet the paper does not report the number of independent runs, the temperature/sampling settings, or the aggregation/selection rule used for the reported outputs. A single run per model-prompt pair could easily produce favorable or unfavorable outcomes by chance, and the reported phases ('initial,' 'intermediate') appear to be based on informal observation rather than logged results. Please specify the sampling configuration and report variance across repeated runs.
  5. [§5] The claim that LLM-assisted taxonomy generation 'can save time of the SE expert' is plausible but unsupported: no manual effort (person-hours), LLM runtime, cost, or comparative workflow time is measured anywhere in the manuscript. Since the abstract and conclusion repeat the time-saving claim, it should either be measured (even roughly) or explicitly reframed as a conjecture.
minor comments (5)
  1. [§3.2 and §3.3] There are several typographical errors that should be corrected: 'Leatest' for 'Latest,' 'chanel' for 'channel,' 'Qween' for 'Qwen,' and 'asses' for 'assess' in Sections 5 and 6.
  2. [§3.3] The GitHub URL is rendered with spaces ('qiskit llm experiment') and should be a proper clickable link.
  3. [§4, Figure 2] Figure 2 is described as examples of scenarios but is used to support a general claim about correspondence; the caption should clarify that it is illustrative and not a quantitative sample.
  4. [§4 and §5, Figure 4] Figure 4 is referenced in Section 4 ('See Fig. 4') before it is introduced; consider moving or renumbering figures so that references follow the figures.
  5. [§1] The phrase 'hybrid methodology' is used without a precise definition; it seems to mean combining manual analysis with LLM assistance, but this could be stated explicitly.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the paper is an empirical comparison, not a derivation, and no claim reduces to its inputs by construction.

full rationale

The paper's central claim is that LLMs are 'plausible and suitable for automatic taxonomy generation of QSE migration scenarios' based on a comparison between a manually built taxonomy and LLM-generated taxonomies. This is an empirical evaluation, not a mathematical derivation, so the circularity patterns involving fitted parameters, self-referential definitions, or imported uniqueness theorems do not apply. I checked the possible sources of circularity. There is no self-citation chain: the authors do not rely on their own prior work to justify the premises. There is no uniqueness theorem invoked to force a choice. There is no ansatz smuggled via citation. The taxonomy is not a renaming of a known result; it is a new categorization of Qiskit migration scenarios. The closest potential issue is that the LLM prompt includes 'a one-shot example of a row and the information retrieved by the document extraction script' and defines 'the column names and expected content' from the manual taxonomy, so some structural agreement between the LLM output and the manual taxonomy is prompt-induced. However, the scenario content, labels, and examples are still generated by the model from the Qiskit documentation, and the paper does not define LLM suitability as equivalent to reproducing the manual taxonomy. The 'substantially reducing the required time' statement is unmeasured, but an unsupported time-saving claim is a weakness in evidence, not a circularity. The manual baseline's lack of inter-rater validation is also an external-validity concern, not a circularity. Therefore, under the rules requiring a specific reduction to inputs, no circular step can be established, and the appropriate finding is no significant circularity.

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

No numeric free parameters are fitted. The central claims rest on two domain assumptions: the completeness of Qiskit documentation and the reliability of the expert-built taxonomy as the comparison baseline. The unified taxonomy is proposed as an artifact but is not an invented physical or conceptual entity requiring independent evidence.

assumptions (2)
  • domain assumption Qiskit official documentation and release notes are authoritative and sufficiently complete to enumerate migration scenarios.
    Section 3.2 states official sources are considered 'authoritative, accurate and detailed' and are the basis for both taxonomies. If documentation omits real-world breaking changes, both manual and LLM taxonomies miss them.
  • domain assumption The manual taxonomy is a reliable ground truth for comparison.
    Section 3.2 and Section 4 use the manual taxonomy as the reference for 'high correspondence'. No inter-rater validation or expert-count information is reported, so the reliability of this baseline is assumed.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Taxonomy of migration scenarios for Qiskit refactoring using LLMs." pith.science (2026). https://pith.science/paper/63J3WVMP

@misc{pith2026250607135,
  author       = {Pith},
  title        = {Pith review of: Taxonomy of migration scenarios for Qiskit refactoring using LLMs},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/63J3WVMP}},
  note         = {Machine review of arXiv:2506.07135}
}
read the original abstract

As quantum computing advances, quantum programming libraries' heterogeneity and steady evolution create new challenges for software developers. Frequent updates in software libraries break working code that needs to be refactored, thus adding complexity to an already complex landscape. These refactoring challenges are, in many cases, fundamentally different from those known in classical software engineering due to the nature of quantum computing software. This study addresses these challenges by developing a taxonomy of quantum circuit's refactoring problems, providing a structured framework to analyze and compare different refactoring approaches. Large Language Models (LLMs) have proven valuable tools for classic software development, yet their value in quantum software engineering remains unexplored. This study uses LLMs to categorize refactoring needs in migration scenarios between different Qiskit versions. Qiskit documentation and release notes were scrutinized to create an initial taxonomy of refactoring required for migrating between Qiskit releases. Two taxonomies were produced: one by expert developers and one by an LLM. These taxonomies were compared, analyzing differences and similarities, and were integrated into a unified taxonomy that reflects the findings of both methods. By systematically categorizing refactoring challenges in Qiskit, the unified taxonomy is a foundation for future research on AI-assisted migration while enabling a more rigorous evaluation of automated refactoring techniques. Additionally, this work contributes to quantum software engineering (QSE) by enhancing software development workflows, improving language compatibility, and promoting best practices in quantum programming.

Figures

Figures reproduced from arXiv: 2506.07135 by the authors.

Figure 1
Figure 1. Experimental flow diagram – Qiskit Documentation GitHub. 7 – Qiskit Migration guides. 8 – Qiskit release summary. 9 – Youtube Qiskit chanel. 10 Regarding the information supported by the taxonomy, it seemed important to classify each migration scenario based on its functionality or objective. Many times these categories have arisen from the documentation itself and others based on well￾known areas of refactoring wit… view at source ↗
Figure 2
Figure 2. Examples of manual vs. automatic taxonomy scenarios In terms of correctness and coherence of scenarios, there is a high correspondence between the manual taxonomy and the output from the commercial models. Regard￾ing the classification of SE vs QSE scenarios, we determined that more complex and information rich prompts allow the models to discern between them with greater precision, providing appropriate description… view at source ↗
Figure 3
Figure 3. Flow chart of experimental steps 5 Discussion The creation of a manual taxonomy of migration scenarios is a complex process of review and analysis that requires considerable effort and time. It often requires cross-referencing different authoritative sources, code review, and interaction with other members of the development team. The quality of the final result is directly related to the level and experience of the… view at source ↗
Figures from the paper (1 more)
Figure 4
Figure 4. Figure 4: Qiskit release notes size distribution Another relevant topic is the knowledge of updates introduced by a specific Qiskit version to quantum components and associated performance. In this regard, the dimensions of our taxonomy “Migration Difficulty” and “Relation to QS…

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

35 extracted references · 9 canonical work pages

  1. [1]

    Ali, S., Arcaini, P., Wang, X., and Yue, T. (2021). Assessing the Effectiveness of Input and Output Coverage Criteria for Testing Quantum Programs . In 2021 14th IEEE Conference on Software Testing , Verification and Validation ( ICST ) , pages 13--23. ISSN: 2159-4848

  2. [2]

    Almeida, A., Xavier, L., and Valente, M. T. (2024). Automatic Library Migration Using Large Language Models : First Results . In Proceedings of the 18th ACM / IEEE International Symposium on Empirical Software Engineering and Measurement , pages 427--433. arXiv:2408.16151 [cs]

  3. [3]

    staq -- A full-stack quantum processing toolkit

    Amy, M. and Gheorghiu, V. (2020). staq -- A full-stack quantum processing toolkit. Quantum Sci. Technol. , 5(3):034016. arXiv:1912.06070 [quant-ph]

  4. [4]

    Asif, H., Basit, A., Innan, N., Kashif, M., Marchisio, A., and Shafique, M. (2025). PennyLang : Pioneering LLM - Based Quantum Code Generation with a Novel PennyLane - Centric Dataset . arXiv:2503.02497 [cs]

  5. [5]

    K., Houkpati, Y., Irungu, J., and Oladunni, T

    Bengesi, S., El-Sayed, H., Sarker, M. K., Houkpati, Y., Irungu, J., and Oladunni, T. (2023). Advancements in Generative AI : A Comprehensive Review of GANs , GPT , Autoencoders , Diffusion Model , and Transformers . arXiv:2311.10242 [cs]

  6. [6]

    Biamonte, J., Wittek, P., Pancotti, N., Rebentrost, P., Wiebe, N., and Lloyd, S. (2017). Quantum machine learning. Nature , 549(7671):195–202

  7. [7]

    Cordeiro, J., Noei, S., and Zou, Y. (2024). An Empirical Study on the Code Refactoring Capability of Large Language Models . arXiv:2411.02320 [cs]

  8. [8]

    Deng, Y., Zhang, W., Chen, Z., and Gu, Q. (2024). Rephrase and Respond : Let Large Language Models Ask Better Questions for Themselves . arXiv:2311.04205 [cs]

Show all 35 references
  1. [9]

    V., Kremer, D., Faro, I., Puri, R., and Cruz-Benito, J

    Dupuis, N., Buratti, L., Vishwakarma, S., Forrat, A. V., Kremer, D., Faro, I., Puri, R., and Cruz-Benito, J. (2024). Qiskit Code Assistant : Training LLMs for generating Quantum Computing Code . arXiv:2405.19495 [quant-ph]

  2. [10]

    Gemini 1.5: Unlocking multimodal understanding across millions of tokens of context

    Gemini (2024). Gemini 1.5: Unlocking multimodal understanding across millions of tokens of context. arXiv:2403.05530 [cs]

  3. [11]

    S., Lumsdaine, P

    Green, A. S., Lumsdaine, P. L., Ross, N. J., Selinger, P., and Valiron, B. (2013). Quipper: A Scalable Quantum Programming Language . SIGPLAN Not. , 48(6):333--342. arXiv:1304.3390 [cs]

  4. [12]

    Guo, J., Lou, H., Li, R., Fang, W., Liu, J., Long, P., Ying, S., and Ying, M. (2023). isQ : Towards a Practical Software Stack for Quantum Programming . arXiv:2205.03866 [quant-ph]

  5. [13]

    V., Kafri, D., Martin, O., Heidweiller, C

    Isakov, S. V., Kafri, D., Martin, O., Heidweiller, C. V., Mruczkiewicz, W., Harrigan, M. P., Rubin, N. C., Thomson, R., Broughton, M., Kissell, K., Peters, E., Gustafson, E., Li, A. C. Y., Lamm, H., Perdue, G., Ho, A. K., Strain, D., and Boixo, S. (2021). Simulations of Quantu...

  6. [14]

    J., Lishman, J., Gacon, J., Martiel, S., Nation, P

    Javadi-Abhari, A., Treinish, M., Krsulich, K., Wood, C. J., Lishman, J., Gacon, J., Martiel, S., Nation, P. D., Bishop, L. S., Cross, A. W., Johnson, B. R., and Gambetta, J. M. (2024). Quantum computing with Qiskit . arXiv:2405.08810 [quant-ph]

  7. [15]

    Jiménez-Navajas, L., Pérez-Castillo, R., and Piattini, M. (2025). Code generation for classical-quantum software systems modeled in UML . Softw Syst Model

  8. [16]

    Jin, H., Chen, H., Lu, Q., and Zhu, L. (2025). Towards Advancing Code Generation with Large Language Models : A Research Roadmap . arXiv:2501.11354 [cs]

  9. [17]

    Lewis, P., Perez, E., Piktus, A., Petroni, F., Karpukhin, V., Goyal, N., Küttler, H., Lewis, M., tau Yih, W., Rocktäschel, T., Riedel, S., and Kiela, D. (2021). Retrieval-augmented generation for knowledge-intensive nlp tasks

  10. [18]

    Li, G., Zhou, L., Yu, N., Ding, Y., Ying, M., and Xie, Y. (2020). Proq: Projection -based Runtime Assertions for Debugging on a Quantum Computer . arXiv:1911.12855 [cs]

  11. [19]

    M., Garcia-Alonso, J., Moguel, E., Barzen, J., Leymann, F., Ali, S., Yue, T., Arcaini, P., Castillo, R

    Murillo, J. M., Garcia-Alonso, J., Moguel, E., Barzen, J., Leymann, F., Ali, S., Yue, T., Arcaini, P., Castillo, R. P., Guzmán, I. G. R. d., Piattini, M., Ruiz-Cortés, A., Brogi, A., Zhao, J., Miranskyy, A., and Wimmer, M. (2025). Quantum Software Engineering : Roadmap and Cha...

  12. [20]

    D., Saki, A

    Nation, P. D., Saki, A. A., Brandhofer, S., Bello, L., Garion, S., Treinish, M., and Javadi-Abhari, A. (2025). Benchmarking the performance of quantum computing software. arXiv:2409.08844 [quant-ph]

  13. [21]

    GPT -4 Technical Report

    OpenAI (2024). GPT -4 Technical Report . arXiv:2303.08774 [cs]

  14. [22]

    Preskill, J. (2018). Quantum Computing in the NISQ era and beyond. Quantum , 2:79. arXiv:1801.00862 [quant-ph]

  15. [23]

    Quetschlich, N., Burgholzer, L., and Wille, R. (2023). MQT Bench : Benchmarking Software and Design Automation Tools for Quantum Computing . Quantum , 7:1062. arXiv:2204.13719 [quant-ph]

  16. [24]

    Ramalho, N. C. L., Souza, H. A. d., and Chaim, M. L. (2024). Testing and Debugging Quantum Programs : The Road to 2030. arXiv:2405.09178 [cs]

  17. [25]

    E., Adi, Y., Liu, J., Sauvestre, R., Remez, T., Rapin, J., Kozhevnikov, A., Evtimov, I., Bitton, J., Bhatt, M., Ferrer, C

    Rozière, B., Gehring, J., Gloeckle, F., Sootla, S., Gat, I., Tan, X. E., Adi, Y., Liu, J., Sauvestre, R., Remez, T., Rapin, J., Kozhevnikov, A., Evtimov, I., Bitton, J., Bhatt, M., Ferrer, C. C., Grattafiori, A., Xiong, W., Défossez, A., Copet, J., Azhar, F., Touvron, H., Mart...

  18. [26]

    K., Saha, S., Jain, V., Mondal, S., and Chadha, A

    Sahoo, P., Singh, A. K., Saha, S., Jain, V., Mondal, S., and Chadha, A. (2024). A Systematic Survey of Prompt Engineering in Large Language Models : Techniques and Applications . arXiv:2402.07927 [cs]

  19. [27]

    Sivarajah, S., Dilkes, S., Cowtan, A., Simmons, W., Edgington, A., and Duncan, R. (2021). t\ \ ket\ rangle\ : A Retargetable Compiler for NISQ Devices . Quantum Sci. Technol. , 6(1):014003. arXiv:2003.10611 [quant-ph]

  20. [28]

    M., Geller, A., Troyer, M., Azariah, J., Granade, C., Heim, B., Kliuchnikov, V., Mykhailova, M., Paz, A., and Roetteler, M

    Svore, K. M., Geller, A., Troyer, M., Azariah, J., Granade, C., Heim, B., Kliuchnikov, V., Mykhailova, M., Paz, A., and Roetteler, M. (2018). Q\#: Enabling scalable quantum computing and development with a high-level domain-specific language. In Proceedings of the Real World D...

  21. [29]

    Tsantalis, N., Ketkar, A., and Dig, D. (2022). RefactoringMiner 2.0. IEEE Transactions on Software Engineering , 48(3):930--950. Conference Name: IEEE Transactions on Software Engineering

  22. [30]

    M., Harman, M., Syme, D., Noppen, J., and Nauck, D

    Twist, L., Zhang, J. M., Harman, M., Syme, D., Noppen, J., and Nauck, D. (2025). Llms love python: A study of llms' bias for programming languages and libraries

  23. [31]

    Wei, J., Wang, X., Schuurmans, D., Bosma, M., Ichter, B., Xia, F., Chi, E., Le, Q., and Zhou, D. (2023). Chain-of-thought prompting elicits reasoning in large language models

  24. [32]

    D., He, J., Muller, M., Hoefer, G., Miles, R., and Geyer, W

    Weisz, J. D., He, J., Muller, M., Hoefer, G., Miles, R., and Geyer, W. (2024). Design Principles for Generative AI Applications . In Proceedings of the CHI Conference on Human Factors in Computing Systems , pages 1--22. arXiv:2401.14484 [cs]

  25. [33]

    Xu, Z., Ying, M., and Ying, S. (2018). A Logic for Recursive Quantum Programs . arXiv:1812.00349 [cs]

  26. [34]

    Zhao, J. (2021). Some Size and Structure Metrics for Quantum Software . arXiv:2103.08815 [cs]

  27. [35]

    Zhao, J. (2023). On Refactoring Quantum Programs . arXiv:2306.10517 [cs]

Pith tools

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