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/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/ir/__init__.py
src/quanta/ir/ir_nodes.py
src/quanta/lexer/__init__.py
src/quanta/lexer/lexer.py
src/quanta/lower/__init__.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/qint_utils.py
src/quanta/sema/transform.py
src/quanta/sema/typecheck.py
src/quanta/sema/validation.py
src/quanta/stdlib/__init__.py
src/quanta/types/__init__.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_examples.py
tests/test_fidelity.py
tests/test_grover_simulation.py
tests/test_indexing.py
tests/test_lowering.py
tests/test_lowering_structured.py
tests/test_parser.py
tests/test_print_formatting.py
tests/test_qint_arithmetic_simulation.py
tests/test_qint_operators.py
tests/test_tensor_algebra.py
tests/test_tensors.py