├── .github ├── FUNDING.yml └── workflows │ └── run_tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── architecture.md ├── guide │ ├── gallery.typ │ ├── quill-guide.typ │ ├── references.bib │ └── template.typ └── images │ ├── bell.typ │ ├── composition.typ │ ├── generate-images.sh │ ├── logo.typ │ ├── phase-estimation.typ │ ├── qft.typ │ ├── teleportation.typ │ └── template.typ ├── examples ├── bell.typ ├── composition.typ ├── fault-tolerant-measurement.typ ├── fault-tolerant-pi8.typ ├── fault-tolerant-toffoli1.typ ├── fault-tolerant-toffoli2.typ ├── phase-estimation.typ ├── qft.typ ├── shor-nine-qubit-code.typ └── teleportation.typ ├── src ├── arrow.typ ├── decorations.typ ├── draw-functions.typ ├── gates.typ ├── layout.typ ├── length-helpers.typ ├── process-args.typ ├── quantum-circuit.typ ├── quill.typ ├── tequila-impl.typ ├── tequila.typ ├── utility.typ └── verifications.typ ├── tests ├── .gitignore ├── README.md ├── bell │ ├── ref │ │ └── 1.png │ └── test.typ ├── decorations │ ├── gategroup │ │ ├── ref │ │ │ ├── 1.png │ │ │ └── 2.png │ │ └── test.typ │ ├── lstick-and-rstick │ │ ├── ref │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ └── 7.png │ │ └── test.typ │ ├── midstick │ │ ├── ref │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ └── test.typ │ └── slice │ │ ├── ref │ │ └── 1.png │ │ └── test.typ ├── examples │ ├── fault-tolerant-measurement │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── fault-tolerant-toffoli1 │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── fault-tolerant-toffoli2 │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── phase-estimation │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── qft │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── shor-nine-qubit-code │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ └── teleportation │ │ ├── ref │ │ └── 1.png │ │ └── test.typ ├── gates │ ├── custom-colors │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── custom-gate-size │ │ ├── ref │ │ │ ├── 1.png │ │ │ └── 2.png │ │ └── test.typ │ ├── custom-gate │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── inputs-and-outputs │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── meter │ │ ├── ref │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ └── 5.png │ │ └── test.typ │ ├── mqgate │ │ ├── ref │ │ │ ├── 1.png │ │ │ └── 2.png │ │ └── test.typ │ ├── nwire │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ └── permute │ │ ├── ref │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ │ └── test.typ ├── labels │ ├── ref │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ └── test.typ ├── layout │ ├── aligned-environment │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── gutter │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── placed-items │ │ ├── ref │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ │ └── test.typ │ └── relative-for-row-and-col-spacing │ │ ├── ref │ │ ├── 1.png │ │ └── 2.png │ │ └── test.typ ├── tequila │ ├── basic │ │ ├── ref │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ └── test.typ │ ├── graph-state │ │ ├── ref │ │ │ ├── 1.png │ │ │ └── 2.png │ │ └── test.typ │ ├── placement │ │ ├── ref │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ └── test.typ │ ├── ranges-with-two-qubit-gates │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ └── styling │ │ ├── ref │ │ ├── 1.png │ │ └── 2.png │ │ └── test.typ └── wire │ ├── control-wires │ ├── ref │ │ ├── 1.png │ │ └── 2.png │ └── test.typ │ ├── mode │ ├── ref │ │ ├── 1.png │ │ └── 2.png │ └── test.typ │ ├── plain-vertical-wire │ ├── ref │ │ └── 1.png │ └── test.typ │ ├── targ-control-phase │ ├── ref │ │ └── 1.png │ └── test.typ │ └── wires │ ├── ref │ ├── 1.png │ ├── 2.png │ └── 3.png │ └── test.typ └── typst.toml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Mc-Zen] 2 | -------------------------------------------------------------------------------- /.github/workflows/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/.github/workflows/run_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pdf 3 | /docs/images/output/** -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/README.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/guide/gallery.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/docs/guide/gallery.typ -------------------------------------------------------------------------------- /docs/guide/quill-guide.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/docs/guide/quill-guide.typ -------------------------------------------------------------------------------- /docs/guide/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/docs/guide/references.bib -------------------------------------------------------------------------------- /docs/guide/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/docs/guide/template.typ -------------------------------------------------------------------------------- /docs/images/bell.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/docs/images/bell.typ -------------------------------------------------------------------------------- /docs/images/composition.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/docs/images/composition.typ -------------------------------------------------------------------------------- /docs/images/generate-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/docs/images/generate-images.sh -------------------------------------------------------------------------------- /docs/images/logo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/docs/images/logo.typ -------------------------------------------------------------------------------- /docs/images/phase-estimation.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/docs/images/phase-estimation.typ -------------------------------------------------------------------------------- /docs/images/qft.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/docs/images/qft.typ -------------------------------------------------------------------------------- /docs/images/teleportation.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/docs/images/teleportation.typ -------------------------------------------------------------------------------- /docs/images/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/docs/images/template.typ -------------------------------------------------------------------------------- /examples/bell.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/examples/bell.typ -------------------------------------------------------------------------------- /examples/composition.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/examples/composition.typ -------------------------------------------------------------------------------- /examples/fault-tolerant-measurement.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/examples/fault-tolerant-measurement.typ -------------------------------------------------------------------------------- /examples/fault-tolerant-pi8.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/examples/fault-tolerant-pi8.typ -------------------------------------------------------------------------------- /examples/fault-tolerant-toffoli1.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/examples/fault-tolerant-toffoli1.typ -------------------------------------------------------------------------------- /examples/fault-tolerant-toffoli2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/examples/fault-tolerant-toffoli2.typ -------------------------------------------------------------------------------- /examples/phase-estimation.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/examples/phase-estimation.typ -------------------------------------------------------------------------------- /examples/qft.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/examples/qft.typ -------------------------------------------------------------------------------- /examples/shor-nine-qubit-code.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/examples/shor-nine-qubit-code.typ -------------------------------------------------------------------------------- /examples/teleportation.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/examples/teleportation.typ -------------------------------------------------------------------------------- /src/arrow.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/src/arrow.typ -------------------------------------------------------------------------------- /src/decorations.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/src/decorations.typ -------------------------------------------------------------------------------- /src/draw-functions.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/src/draw-functions.typ -------------------------------------------------------------------------------- /src/gates.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/src/gates.typ -------------------------------------------------------------------------------- /src/layout.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/src/layout.typ -------------------------------------------------------------------------------- /src/length-helpers.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/src/length-helpers.typ -------------------------------------------------------------------------------- /src/process-args.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/src/process-args.typ -------------------------------------------------------------------------------- /src/quantum-circuit.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/src/quantum-circuit.typ -------------------------------------------------------------------------------- /src/quill.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/src/quill.typ -------------------------------------------------------------------------------- /src/tequila-impl.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/src/tequila-impl.typ -------------------------------------------------------------------------------- /src/tequila.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/src/tequila.typ -------------------------------------------------------------------------------- /src/utility.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/src/utility.typ -------------------------------------------------------------------------------- /src/verifications.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/src/verifications.typ -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | out/ 2 | diff/ -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/bell/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/bell/ref/1.png -------------------------------------------------------------------------------- /tests/bell/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/bell/test.typ -------------------------------------------------------------------------------- /tests/decorations/gategroup/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/gategroup/ref/1.png -------------------------------------------------------------------------------- /tests/decorations/gategroup/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/gategroup/ref/2.png -------------------------------------------------------------------------------- /tests/decorations/gategroup/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/gategroup/test.typ -------------------------------------------------------------------------------- /tests/decorations/lstick-and-rstick/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/lstick-and-rstick/ref/1.png -------------------------------------------------------------------------------- /tests/decorations/lstick-and-rstick/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/lstick-and-rstick/ref/2.png -------------------------------------------------------------------------------- /tests/decorations/lstick-and-rstick/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/lstick-and-rstick/ref/3.png -------------------------------------------------------------------------------- /tests/decorations/lstick-and-rstick/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/lstick-and-rstick/ref/4.png -------------------------------------------------------------------------------- /tests/decorations/lstick-and-rstick/ref/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/lstick-and-rstick/ref/5.png -------------------------------------------------------------------------------- /tests/decorations/lstick-and-rstick/ref/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/lstick-and-rstick/ref/6.png -------------------------------------------------------------------------------- /tests/decorations/lstick-and-rstick/ref/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/lstick-and-rstick/ref/7.png -------------------------------------------------------------------------------- /tests/decorations/lstick-and-rstick/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/lstick-and-rstick/test.typ -------------------------------------------------------------------------------- /tests/decorations/midstick/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/midstick/ref/1.png -------------------------------------------------------------------------------- /tests/decorations/midstick/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/midstick/ref/2.png -------------------------------------------------------------------------------- /tests/decorations/midstick/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/midstick/ref/3.png -------------------------------------------------------------------------------- /tests/decorations/midstick/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/midstick/test.typ -------------------------------------------------------------------------------- /tests/decorations/slice/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/slice/ref/1.png -------------------------------------------------------------------------------- /tests/decorations/slice/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/decorations/slice/test.typ -------------------------------------------------------------------------------- /tests/examples/fault-tolerant-measurement/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/examples/fault-tolerant-measurement/ref/1.png -------------------------------------------------------------------------------- /tests/examples/fault-tolerant-measurement/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/examples/fault-tolerant-measurement/test.typ -------------------------------------------------------------------------------- /tests/examples/fault-tolerant-toffoli1/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/examples/fault-tolerant-toffoli1/ref/1.png -------------------------------------------------------------------------------- /tests/examples/fault-tolerant-toffoli1/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/examples/fault-tolerant-toffoli1/test.typ -------------------------------------------------------------------------------- /tests/examples/fault-tolerant-toffoli2/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/examples/fault-tolerant-toffoli2/ref/1.png -------------------------------------------------------------------------------- /tests/examples/fault-tolerant-toffoli2/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/examples/fault-tolerant-toffoli2/test.typ -------------------------------------------------------------------------------- /tests/examples/phase-estimation/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/examples/phase-estimation/ref/1.png -------------------------------------------------------------------------------- /tests/examples/phase-estimation/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/examples/phase-estimation/test.typ -------------------------------------------------------------------------------- /tests/examples/qft/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/examples/qft/ref/1.png -------------------------------------------------------------------------------- /tests/examples/qft/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/examples/qft/test.typ -------------------------------------------------------------------------------- /tests/examples/shor-nine-qubit-code/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/examples/shor-nine-qubit-code/ref/1.png -------------------------------------------------------------------------------- /tests/examples/shor-nine-qubit-code/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/examples/shor-nine-qubit-code/test.typ -------------------------------------------------------------------------------- /tests/examples/teleportation/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/examples/teleportation/ref/1.png -------------------------------------------------------------------------------- /tests/examples/teleportation/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/examples/teleportation/test.typ -------------------------------------------------------------------------------- /tests/gates/custom-colors/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/custom-colors/ref/1.png -------------------------------------------------------------------------------- /tests/gates/custom-colors/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/custom-colors/test.typ -------------------------------------------------------------------------------- /tests/gates/custom-gate-size/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/custom-gate-size/ref/1.png -------------------------------------------------------------------------------- /tests/gates/custom-gate-size/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/custom-gate-size/ref/2.png -------------------------------------------------------------------------------- /tests/gates/custom-gate-size/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/custom-gate-size/test.typ -------------------------------------------------------------------------------- /tests/gates/custom-gate/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/custom-gate/ref/1.png -------------------------------------------------------------------------------- /tests/gates/custom-gate/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/custom-gate/test.typ -------------------------------------------------------------------------------- /tests/gates/inputs-and-outputs/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/inputs-and-outputs/ref/1.png -------------------------------------------------------------------------------- /tests/gates/inputs-and-outputs/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/inputs-and-outputs/test.typ -------------------------------------------------------------------------------- /tests/gates/meter/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/meter/ref/1.png -------------------------------------------------------------------------------- /tests/gates/meter/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/meter/ref/2.png -------------------------------------------------------------------------------- /tests/gates/meter/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/meter/ref/3.png -------------------------------------------------------------------------------- /tests/gates/meter/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/meter/ref/4.png -------------------------------------------------------------------------------- /tests/gates/meter/ref/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/meter/ref/5.png -------------------------------------------------------------------------------- /tests/gates/meter/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/meter/test.typ -------------------------------------------------------------------------------- /tests/gates/mqgate/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/mqgate/ref/1.png -------------------------------------------------------------------------------- /tests/gates/mqgate/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/mqgate/ref/2.png -------------------------------------------------------------------------------- /tests/gates/mqgate/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/mqgate/test.typ -------------------------------------------------------------------------------- /tests/gates/nwire/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/nwire/ref/1.png -------------------------------------------------------------------------------- /tests/gates/nwire/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/nwire/test.typ -------------------------------------------------------------------------------- /tests/gates/permute/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/permute/ref/1.png -------------------------------------------------------------------------------- /tests/gates/permute/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/permute/ref/2.png -------------------------------------------------------------------------------- /tests/gates/permute/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/permute/ref/3.png -------------------------------------------------------------------------------- /tests/gates/permute/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/permute/ref/4.png -------------------------------------------------------------------------------- /tests/gates/permute/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/gates/permute/test.typ -------------------------------------------------------------------------------- /tests/labels/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/labels/ref/1.png -------------------------------------------------------------------------------- /tests/labels/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/labels/ref/2.png -------------------------------------------------------------------------------- /tests/labels/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/labels/ref/3.png -------------------------------------------------------------------------------- /tests/labels/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/labels/ref/4.png -------------------------------------------------------------------------------- /tests/labels/ref/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/labels/ref/5.png -------------------------------------------------------------------------------- /tests/labels/ref/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/labels/ref/6.png -------------------------------------------------------------------------------- /tests/labels/ref/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/labels/ref/7.png -------------------------------------------------------------------------------- /tests/labels/ref/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/labels/ref/8.png -------------------------------------------------------------------------------- /tests/labels/ref/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/labels/ref/9.png -------------------------------------------------------------------------------- /tests/labels/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/labels/test.typ -------------------------------------------------------------------------------- /tests/layout/aligned-environment/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/layout/aligned-environment/ref/1.png -------------------------------------------------------------------------------- /tests/layout/aligned-environment/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/layout/aligned-environment/test.typ -------------------------------------------------------------------------------- /tests/layout/gutter/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/layout/gutter/ref/1.png -------------------------------------------------------------------------------- /tests/layout/gutter/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/layout/gutter/test.typ -------------------------------------------------------------------------------- /tests/layout/placed-items/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/layout/placed-items/ref/1.png -------------------------------------------------------------------------------- /tests/layout/placed-items/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/layout/placed-items/ref/2.png -------------------------------------------------------------------------------- /tests/layout/placed-items/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/layout/placed-items/ref/3.png -------------------------------------------------------------------------------- /tests/layout/placed-items/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/layout/placed-items/ref/4.png -------------------------------------------------------------------------------- /tests/layout/placed-items/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/layout/placed-items/test.typ -------------------------------------------------------------------------------- /tests/layout/relative-for-row-and-col-spacing/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/layout/relative-for-row-and-col-spacing/ref/1.png -------------------------------------------------------------------------------- /tests/layout/relative-for-row-and-col-spacing/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/layout/relative-for-row-and-col-spacing/ref/2.png -------------------------------------------------------------------------------- /tests/layout/relative-for-row-and-col-spacing/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/layout/relative-for-row-and-col-spacing/test.typ -------------------------------------------------------------------------------- /tests/tequila/basic/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/basic/ref/1.png -------------------------------------------------------------------------------- /tests/tequila/basic/ref/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/basic/ref/10.png -------------------------------------------------------------------------------- /tests/tequila/basic/ref/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/basic/ref/11.png -------------------------------------------------------------------------------- /tests/tequila/basic/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/basic/ref/2.png -------------------------------------------------------------------------------- /tests/tequila/basic/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/basic/ref/3.png -------------------------------------------------------------------------------- /tests/tequila/basic/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/basic/ref/4.png -------------------------------------------------------------------------------- /tests/tequila/basic/ref/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/basic/ref/5.png -------------------------------------------------------------------------------- /tests/tequila/basic/ref/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/basic/ref/6.png -------------------------------------------------------------------------------- /tests/tequila/basic/ref/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/basic/ref/7.png -------------------------------------------------------------------------------- /tests/tequila/basic/ref/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/basic/ref/8.png -------------------------------------------------------------------------------- /tests/tequila/basic/ref/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/basic/ref/9.png -------------------------------------------------------------------------------- /tests/tequila/basic/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/basic/test.typ -------------------------------------------------------------------------------- /tests/tequila/graph-state/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/graph-state/ref/1.png -------------------------------------------------------------------------------- /tests/tequila/graph-state/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/graph-state/ref/2.png -------------------------------------------------------------------------------- /tests/tequila/graph-state/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/graph-state/test.typ -------------------------------------------------------------------------------- /tests/tequila/placement/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/placement/ref/1.png -------------------------------------------------------------------------------- /tests/tequila/placement/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/placement/ref/2.png -------------------------------------------------------------------------------- /tests/tequila/placement/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/placement/ref/3.png -------------------------------------------------------------------------------- /tests/tequila/placement/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/placement/test.typ -------------------------------------------------------------------------------- /tests/tequila/ranges-with-two-qubit-gates/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/ranges-with-two-qubit-gates/ref/1.png -------------------------------------------------------------------------------- /tests/tequila/ranges-with-two-qubit-gates/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/ranges-with-two-qubit-gates/test.typ -------------------------------------------------------------------------------- /tests/tequila/styling/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/styling/ref/1.png -------------------------------------------------------------------------------- /tests/tequila/styling/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/styling/ref/2.png -------------------------------------------------------------------------------- /tests/tequila/styling/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/tequila/styling/test.typ -------------------------------------------------------------------------------- /tests/wire/control-wires/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/wire/control-wires/ref/1.png -------------------------------------------------------------------------------- /tests/wire/control-wires/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/wire/control-wires/ref/2.png -------------------------------------------------------------------------------- /tests/wire/control-wires/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/wire/control-wires/test.typ -------------------------------------------------------------------------------- /tests/wire/mode/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/wire/mode/ref/1.png -------------------------------------------------------------------------------- /tests/wire/mode/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/wire/mode/ref/2.png -------------------------------------------------------------------------------- /tests/wire/mode/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/wire/mode/test.typ -------------------------------------------------------------------------------- /tests/wire/plain-vertical-wire/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/wire/plain-vertical-wire/ref/1.png -------------------------------------------------------------------------------- /tests/wire/plain-vertical-wire/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/wire/plain-vertical-wire/test.typ -------------------------------------------------------------------------------- /tests/wire/targ-control-phase/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/wire/targ-control-phase/ref/1.png -------------------------------------------------------------------------------- /tests/wire/targ-control-phase/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/wire/targ-control-phase/test.typ -------------------------------------------------------------------------------- /tests/wire/wires/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/wire/wires/ref/1.png -------------------------------------------------------------------------------- /tests/wire/wires/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/wire/wires/ref/2.png -------------------------------------------------------------------------------- /tests/wire/wires/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/wire/wires/ref/3.png -------------------------------------------------------------------------------- /tests/wire/wires/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/tests/wire/wires/test.typ -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/quill/HEAD/typst.toml --------------------------------------------------------------------------------