LICENSE
README.md
pyproject.toml
src/quanta/__init__.py
src/quanta/__main__.py
src/quanta/api.py
src/quanta/compiler.py
src/quanta/errors.py
src/quanta/analysis/__init__.py
src/quanta/analysis/backends.py
src/quanta/analysis/report.py
src/quanta/ast/__init__.py
src/quanta/ast/nodes.py
src/quanta/ast/visitor.py
src/quanta/cli/__init__.py
src/quanta/cli/main.py
src/quanta/docs/__init__.py
src/quanta/docs/comment_parser.py
src/quanta/docs/extract.py
src/quanta/ir/__init__.py
src/quanta/ir/analysis.py
src/quanta/ir/builder.py
src/quanta/ir/ir_nodes.py
src/quanta/ir/noise.py
src/quanta/ir/optimizer.py
src/quanta/ir/pathway.py
src/quanta/lexer/__init__.py
src/quanta/lexer/lexer.py
src/quanta/lower/__init__.py
src/quanta/lower/init_value.py
src/quanta/lower/qasm3.py
src/quanta/lower/qasm3_structured.py
src/quanta/parser/__init__.py
src/quanta/parser/parser.py
src/quanta/runtime/__init__.py
src/quanta/runtime/formatting.py
src/quanta/runtime/frontend_sim.py
src/quanta/runtime/qiskit.py
src/quanta/runtime/quantum_arithmetic.py
src/quanta/runtime/quantum_metrics.py
src/quanta/runtime/tensor_algebra.py
src/quanta/runtime/tensors.py
src/quanta/sema/__init__.py
src/quanta/sema/indexing.py
src/quanta/sema/overload.py
src/quanta/sema/qint_utils.py
src/quanta/sema/reserved_names.py
src/quanta/sema/transform.py
src/quanta/sema/typecheck.py
src/quanta/sema/validation.py
src/quanta/stdlib/__init__.py
src/quanta/stdlib/builtins.py
src/quanta/types/__init__.py
src/quanta/types/kinds.py
src/quanta/types/numeric.py
src/quanta/types/tensor.py
src/quanta_lang.egg-info/PKG-INFO
src/quanta_lang.egg-info/SOURCES.txt
src/quanta_lang.egg-info/dependency_links.txt
src/quanta_lang.egg-info/entry_points.txt
src/quanta_lang.egg-info/requires.txt
src/quanta_lang.egg-info/top_level.txt
tests/test_doc_comments.py
tests/test_examples.py
tests/test_fidelity.py
tests/test_func_overloading.py
tests/test_function_docs.py
tests/test_grover_simulation.py
tests/test_indexing.py
tests/test_lowering.py
tests/test_lowering_structured.py
tests/test_numeric_types.py
tests/test_parser.py
tests/test_print_formatting.py
tests/test_qint_arithmetic_simulation.py
tests/test_qint_operators.py
tests/test_reserved_names.py
tests/test_tensor_algebra.py
tests/test_tensors.py
tests/test_wildcard_types.py