├── .github └── workflows │ └── pythonpackage.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MANIFEST.in ├── benchmark.py ├── circuits ├── 2-qubit-unitary.qgraph ├── 4-qubit-unitary.qgraph ├── Arithmetic_and_Toffoli │ ├── adder_8_after_heavy │ ├── adder_8_after_light │ ├── adder_8_before │ ├── adder_8_tpar.qc │ ├── barenco_tof_10_after_heavy │ ├── barenco_tof_10_after_light │ ├── barenco_tof_10_before │ ├── barenco_tof_10_tpar.qc │ ├── barenco_tof_3_after_heavy │ ├── barenco_tof_3_after_light │ ├── barenco_tof_3_before │ ├── barenco_tof_3_tpar.qc │ ├── barenco_tof_4_after_heavy │ ├── barenco_tof_4_after_light │ ├── barenco_tof_4_before │ ├── barenco_tof_4_tpar.qc │ ├── barenco_tof_5_after_heavy │ ├── barenco_tof_5_after_light │ ├── barenco_tof_5_before │ ├── barenco_tof_5_tpar.qc │ ├── csla_mux_3_original_after_heavy │ ├── csla_mux_3_original_after_light │ ├── csla_mux_3_original_before │ ├── csla_mux_3_tpar.qc │ ├── csum_mux_9_corrected_after_heavy │ ├── csum_mux_9_corrected_after_light │ ├── csum_mux_9_corrected_before │ ├── csum_mux_9_tpar.qc │ ├── gf2^10_mult_after_heavy │ ├── gf2^10_mult_after_light │ ├── gf2^10_mult_before │ ├── gf2^10_mult_tpar.qc │ ├── gf2^16_mult_after_heavy │ ├── gf2^16_mult_after_light │ ├── gf2^16_mult_before │ ├── gf2^16_mult_tpar.qc │ ├── gf2^32_mult_tpar.qc │ ├── gf2^4_mult_after_heavy │ ├── gf2^4_mult_after_light │ ├── gf2^4_mult_before │ ├── gf2^4_mult_tpar.qc │ ├── gf2^5_mult_after_heavy │ ├── gf2^5_mult_after_light │ ├── gf2^5_mult_before │ ├── gf2^5_mult_tpar.qc │ ├── gf2^6_mult_after_heavy │ ├── gf2^6_mult_after_light │ ├── gf2^6_mult_before │ ├── gf2^6_mult_tpar.qc │ ├── gf2^7_mult_after_heavy │ ├── gf2^7_mult_after_light │ ├── gf2^7_mult_before │ ├── gf2^7_mult_tpar.qc │ ├── gf2^8_mult_after_heavy │ ├── gf2^8_mult_after_light │ ├── gf2^8_mult_before │ ├── gf2^8_mult_tpar.qc │ ├── gf2^9_mult_after_heavy │ ├── gf2^9_mult_after_light │ ├── gf2^9_mult_before │ ├── gf2^9_mult_tpar.qc │ ├── mod5_4_after_heavy │ ├── mod5_4_after_light │ ├── mod5_4_before │ ├── mod5_4_tpar.qc │ ├── mod_adder_1024_after_heavy │ ├── mod_adder_1024_after_light │ ├── mod_adder_1024_before │ ├── mod_adder_1024_tpar.qc │ ├── mod_adder_1048576_tpar.qc │ ├── mod_mult_55_after_heavy │ ├── mod_mult_55_after_light │ ├── mod_mult_55_before │ ├── mod_mult_55_tpar.qc │ ├── mod_red_21_after_heavy │ ├── mod_red_21_after_light │ ├── mod_red_21_before │ ├── mod_red_21_tpar.qc │ ├── qcla_adder_10_after_heavy │ ├── qcla_adder_10_after_light │ ├── qcla_adder_10_before │ ├── qcla_adder_10_tpar.qc │ ├── qcla_com_7_after_heavy │ ├── qcla_com_7_after_light │ ├── qcla_com_7_before │ ├── qcla_com_7_tpar.qc │ ├── qcla_mod_7_after_heavy │ ├── qcla_mod_7_after_light │ ├── qcla_mod_7_before │ ├── qcla_mod_7_tpar.qc │ ├── rc_adder_6_after_heavy │ ├── rc_adder_6_after_light │ ├── rc_adder_6_before │ ├── rc_adder_6_tpar.qc │ ├── tof_10_after_heavy │ ├── tof_10_after_light │ ├── tof_10_before │ ├── tof_10_tpar.qc │ ├── tof_3_after_heavy │ ├── tof_3_after_light │ ├── tof_3_before │ ├── tof_3_tpar.qc │ ├── tof_4_after_heavy │ ├── tof_4_after_light │ ├── tof_4_before │ ├── tof_4_tpar.qc │ ├── tof_5_after_heavy │ ├── tof_5_after_light │ ├── tof_5_before │ ├── tof_5_tpar.qc │ ├── vbe_adder_3_after_heavy │ ├── vbe_adder_3_after_light │ ├── vbe_adder_3_before │ └── vbe_adder_3_tpar.qc ├── Fast │ ├── Adder8_after_heavy │ ├── Adder8_before │ ├── QFT16_after │ ├── QFT16_before │ ├── QFT8_after │ ├── QFT8_before │ ├── QFTAdd8_after │ ├── QFTAdd8_before │ ├── adder_8_after_heavy │ ├── adder_8_before │ ├── adder_8_tpar.qc │ ├── barenco_tof_10_after_heavy │ ├── barenco_tof_10_before │ ├── barenco_tof_10_tpar.qc │ ├── barenco_tof_3_after_heavy │ ├── barenco_tof_3_before │ ├── barenco_tof_3_tpar.qc │ ├── barenco_tof_4_after_heavy │ ├── barenco_tof_4_before │ ├── barenco_tof_4_tpar.qc │ ├── barenco_tof_5_after_heavy │ ├── barenco_tof_5_before │ ├── barenco_tof_5_tpar.qc │ ├── csla_mux_3_original_after_heavy │ ├── csla_mux_3_original_before │ ├── csla_mux_3_tpar.qc │ ├── csum_mux_9_corrected_after_heavy │ ├── csum_mux_9_corrected_before │ ├── csum_mux_9_tpar.qc │ ├── gf2^10_mult_after_heavy │ ├── gf2^10_mult_before │ ├── gf2^10_mult_tpar.qc │ ├── gf2^4_mult_after_heavy │ ├── gf2^4_mult_before │ ├── gf2^4_mult_tpar.qc │ ├── gf2^5_mult_after_heavy │ ├── gf2^5_mult_before │ ├── gf2^5_mult_tpar.qc │ ├── gf2^6_mult_after_heavy │ ├── gf2^6_mult_before │ ├── gf2^6_mult_tpar.qc │ ├── gf2^7_mult_after_heavy │ ├── gf2^7_mult_before │ ├── gf2^7_mult_tpar.qc │ ├── gf2^8_mult_after_heavy │ ├── gf2^8_mult_before │ ├── gf2^8_mult_tpar.qc │ ├── gf2^9_mult_after_heavy │ ├── gf2^9_mult_before │ ├── gf2^9_mult_tpar.qc │ ├── grover_5.qc │ ├── grover_5_tpar.qc │ ├── ham15-low.qc │ ├── hwb6.qc │ ├── mod5_4_after_heavy │ ├── mod5_4_before │ ├── mod5_4_tpar.qc │ ├── mod_mult_55_after_heavy │ ├── mod_mult_55_before │ ├── mod_mult_55_tpar.qc │ ├── mod_red_21_after_heavy │ ├── mod_red_21_before │ ├── mod_red_21_tpar.qc │ ├── nth_prime6.tfc │ ├── qcla_adder_10_after_heavy │ ├── qcla_adder_10_before │ ├── qcla_adder_10_tpar.qc │ ├── qcla_com_7_after_heavy │ ├── qcla_com_7_before │ ├── qcla_com_7_tpar.qc │ ├── qcla_mod_7_after_heavy │ ├── qcla_mod_7_before │ ├── qcla_mod_7_tpar.qc │ ├── qft_4.qc │ ├── rc_adder_6_after_heavy │ ├── rc_adder_6_before │ ├── rc_adder_6_tpar.qc │ ├── tof_10_after_heavy │ ├── tof_10_before │ ├── tof_10_tpar.qc │ ├── tof_3_after_heavy │ ├── tof_3_before │ ├── tof_3_tpar.qc │ ├── tof_4_after_heavy │ ├── tof_4_before │ ├── tof_4_tpar.qc │ ├── tof_5_after_heavy │ ├── tof_5_before │ ├── tof_5_tpar.qc │ ├── vbe_adder_3_after_heavy │ ├── vbe_adder_3_before │ └── vbe_adder_3_tpar.qc ├── Other │ ├── cycle_17_3.qc │ ├── grover_5.qc │ ├── grover_5_tpar.qc │ ├── ham15-high.qc │ ├── ham15-low.qc │ ├── ham15-med.qc │ ├── hwb6.qc │ ├── nth_prime6.tfc │ └── qft_4.qc ├── PF │ ├── pf1_100_after │ ├── pf1_100_before │ ├── pf1_10_after │ ├── pf1_10_before │ ├── pf1_20_after │ ├── pf1_20_before │ ├── pf1_30_after │ ├── pf1_30_before │ ├── pf1_40_after │ ├── pf1_40_before │ ├── pf1_50_after │ ├── pf1_50_before │ ├── pf1_60_after │ ├── pf1_60_before │ ├── pf1_70_after │ ├── pf1_70_before │ ├── pf1_80_after │ ├── pf1_80_before │ ├── pf1_90_after │ ├── pf1_90_before │ ├── pf2_100_after │ ├── pf2_100_before │ ├── pf2_10_after │ ├── pf2_10_before │ ├── pf2_20_after │ ├── pf2_20_before │ ├── pf2_30_after │ ├── pf2_30_before │ ├── pf2_40_after │ ├── pf2_40_before │ ├── pf2_50_after │ ├── pf2_50_before │ ├── pf2_60_after │ ├── pf2_60_before │ ├── pf2_70_after │ ├── pf2_70_before │ ├── pf2_80_after │ ├── pf2_80_before │ ├── pf2_90_after │ ├── pf2_90_before │ ├── pf4_10_after │ ├── pf4_10_before │ ├── pf4_20_after │ ├── pf4_20_before │ ├── pf4_30_after │ ├── pf4_30_before │ ├── pf4_40_after │ ├── pf4_40_before │ ├── pf4_50_after │ ├── pf4_50_before │ ├── pf4_60_after │ ├── pf4_60_before │ ├── pf4_70_after │ ├── pf4_70_before │ ├── pf4_80_after │ ├── pf4_80_before │ ├── pf6_10_after │ └── pf6_10_before ├── QFT_and_Adders │ ├── Adder16_after_heavy │ ├── Adder16_after_light │ ├── Adder16_before │ ├── Adder32_after_heavy │ ├── Adder32_after_light │ ├── Adder32_before │ ├── Adder64_after_heavy │ ├── Adder64_after_light │ ├── Adder64_before │ ├── Adder8_after_heavy │ ├── Adder8_after_light │ ├── Adder8_before │ ├── QFT16_after │ ├── QFT16_before │ ├── QFT32_after │ ├── QFT32_before │ ├── QFT8_after │ ├── QFT8_before │ ├── QFTAdd16_after │ ├── QFTAdd16_before │ ├── QFTAdd32_after │ ├── QFTAdd32_before │ ├── QFTAdd8_after │ └── QFTAdd8_before ├── Slow │ ├── Adder16_after_heavy │ ├── Adder16_before │ ├── Adder32_after_heavy │ ├── Adder32_before │ ├── Adder64_after_heavy │ ├── Adder64_before │ ├── QFT32_after │ ├── QFT32_before │ ├── QFTAdd16_after │ ├── QFTAdd16_before │ ├── QFTAdd32_after │ ├── QFTAdd32_before │ ├── gf2^16_mult_after_heavy │ ├── gf2^16_mult_before │ ├── gf2^16_mult_tpar.qc │ ├── ham15-high.qc │ ├── ham15-med.qc │ ├── hwb8.qc │ ├── mod_adder_1024_after_heavy │ ├── mod_adder_1024_before │ ├── mod_adder_1024_tpar.qc │ └── nth_prime8.tfc ├── broken │ └── cycle_17_3.qc ├── cycle17_3-corrected.qc ├── cycle17_3_cliffordt.qc ├── feyn_bench │ ├── adder_8.qc │ ├── barenco_tof_10.qc │ ├── barenco_tof_3.qc │ ├── barenco_tof_4.qc │ ├── barenco_tof_5.qc │ ├── big │ │ ├── cycle_17_3.qc │ │ ├── gf2^128_mult.qc │ │ ├── gf2^16_mult.qc │ │ ├── gf2^256_mult.qc │ │ ├── gf2^32_mult.qc │ │ ├── gf2^64_mult.qc │ │ ├── grover_5.qc │ │ ├── ham15-high.qc │ │ ├── hwb10.qc │ │ ├── hwb11.qc │ │ ├── hwb12.qc │ │ ├── hwb8.qc │ │ ├── mod_adder_1024.qc │ │ ├── mod_adder_1048576.qc │ │ ├── qcla_mod_7.qc │ │ └── shor_2_21.qc │ ├── csla_mux_3.qc │ ├── csum_mux_9.qc │ ├── gf2^10_mult.qc │ ├── gf2^4_mult.qc │ ├── gf2^5_mult.qc │ ├── gf2^6_mult.qc │ ├── gf2^7_mult.qc │ ├── gf2^8_mult.qc │ ├── gf2^9_mult.qc │ ├── ham15-low.qc │ ├── ham15-med.qc │ ├── hwb6.qc │ ├── mod5_4.qc │ ├── mod_mult_55.qc │ ├── mod_red_21.qc │ ├── out │ │ ├── adder_8.qc │ │ ├── barenco_tof_10.qc │ │ ├── barenco_tof_3.qc │ │ ├── barenco_tof_4.qc │ │ ├── barenco_tof_5.qc │ │ ├── csla_mux_3.qc │ │ ├── csum_mux_9.qc │ │ ├── cycle_17_3.qc │ │ ├── gf2^10_mult.qc │ │ ├── gf2^128_mult.qc │ │ ├── gf2^16_mult.qc │ │ ├── gf2^32_mult.qc │ │ ├── gf2^4_mult.qc │ │ ├── gf2^5_mult.qc │ │ ├── gf2^64_mult.qc │ │ ├── gf2^6_mult.qc │ │ ├── gf2^7_mult.qc │ │ ├── gf2^8_mult.qc │ │ ├── gf2^9_mult.qc │ │ ├── grover_5.qc │ │ ├── ham15-high.qc │ │ ├── ham15-low.qc │ │ ├── ham15-med.qc │ │ ├── hwb10.qc │ │ ├── hwb6.qc │ │ ├── hwb8.qc │ │ ├── mod5_4.qc │ │ ├── mod_adder_1024.qc │ │ ├── mod_mult_55.qc │ │ ├── mod_red_21.qc │ │ ├── qcla_adder_10.qc │ │ ├── qcla_com_7.qc │ │ ├── qcla_mod_7.qc │ │ ├── qft_4.qc │ │ ├── rc_adder_6.qc │ │ ├── shor_2_21.qc │ │ ├── tof_10.qc │ │ ├── tof_3.qc │ │ ├── tof_4.qc │ │ ├── tof_5.qc │ │ └── vbe_adder_3.qc │ ├── qasm │ │ ├── adder_8.qasm │ │ ├── barenco_tof_10.qasm │ │ ├── barenco_tof_3.qasm │ │ ├── barenco_tof_4.qasm │ │ ├── barenco_tof_5.qasm │ │ ├── csla_mux_3.qasm │ │ ├── csum_mux_9.qasm │ │ ├── cycle_17_3.qasm │ │ ├── generic │ │ │ ├── W-state.qasm │ │ │ ├── adder.qasm │ │ │ ├── bigadder.qasm │ │ │ ├── inverseqft1.qasm │ │ │ ├── inverseqft2.qasm │ │ │ ├── ipea_3_pi_8.qasm │ │ │ ├── pea_3_pi_8.qasm │ │ │ ├── qec.qasm │ │ │ ├── qelib1.inc │ │ │ ├── qft.qasm │ │ │ ├── qpt.qasm │ │ │ ├── rb.qasm │ │ │ ├── teleport.qasm │ │ │ └── teleportv2.qasm │ │ ├── gf2^10_mult.qasm │ │ ├── gf2^128_mult.qasm │ │ ├── gf2^16_mult.qasm │ │ ├── gf2^256_mult.qasm │ │ ├── gf2^32_mult.qasm │ │ ├── gf2^4_mult.qasm │ │ ├── gf2^5_mult.qasm │ │ ├── gf2^64_mult.qasm │ │ ├── gf2^6_mult.qasm │ │ ├── gf2^7_mult.qasm │ │ ├── gf2^8_mult.qasm │ │ ├── gf2^9_mult.qasm │ │ ├── grover_5.qasm │ │ ├── ham15-high.qasm │ │ ├── ham15-low.qasm │ │ ├── ham15-med.qasm │ │ ├── hwb10.qasm │ │ ├── hwb11.qasm │ │ ├── hwb12.qasm │ │ ├── hwb6.qasm │ │ ├── hwb8.qasm │ │ ├── ibmqx2 │ │ │ ├── 011_3_qubit_grover_50_.qasm │ │ │ ├── Deutsch_Algorithm.qasm │ │ │ ├── W3test.qasm │ │ │ ├── iswap.qasm │ │ │ ├── qe_qft_3.qasm │ │ │ ├── qe_qft_4.qasm │ │ │ └── qe_qft_5.qasm │ │ ├── invalid │ │ │ ├── gate_no_found.qasm │ │ │ └── missing_semicolon.qasm │ │ ├── mod5_4.qasm │ │ ├── mod_adder_1024.qasm │ │ ├── mod_adder_1048576.qasm │ │ ├── mod_mult_55.qasm │ │ ├── mod_red_21.qasm │ │ ├── qcla_adder_10.qasm │ │ ├── qcla_com_7.qasm │ │ ├── qcla_mod_7.qasm │ │ ├── qft_4.qasm │ │ ├── rc_adder_6.qasm │ │ ├── shor_2_21.qasm │ │ ├── tof_10.qasm │ │ ├── tof_3.qasm │ │ ├── tof_4.qasm │ │ ├── tof_5.qasm │ │ └── vbe_adder_3.qasm │ ├── qcla_adder_10.qc │ ├── qcla_com_7.qc │ ├── qft_4.qc │ ├── rc_adder_6.qc │ ├── tof_10.qc │ ├── tof_3.qc │ ├── tof_4.qc │ ├── tof_5.qc │ └── vbe_adder_3.qc ├── optimized │ ├── Adder16_pyzx.qc │ ├── Adder32_pyzx.qc │ ├── Adder64_pyzx.qc │ ├── Adder8_pyzx.qc │ ├── QFT16_pyzx.qc │ ├── QFT32_pyzx.qc │ ├── QFT8_pyzx.qc │ ├── QFTAdd16_pyzx.qc │ ├── QFTAdd32_pyzx.qc │ ├── QFTAdd8_pyzx.qc │ ├── adder_8_pyzx.qc │ ├── barenco_tof_10_pyzx.qc │ ├── barenco_tof_3_pyzx.qc │ ├── barenco_tof_4_pyzx.qc │ ├── barenco_tof_5_pyzx.qc │ ├── csla_mux_3_original_pyzx.qc │ ├── csum_mux_9_corrected_pyzx.qc │ ├── gf2^10_mult_pyzx.qc │ ├── gf2^16_mult_pyzx.qc │ ├── gf2^4_mult_pyzx.qc │ ├── gf2^5_mult_pyzx.qc │ ├── gf2^6_mult_pyzx.qc │ ├── gf2^7_mult_pyzx.qc │ ├── gf2^8_mult_pyzx.qc │ ├── gf2^8_mult_pyzxtodd.qc │ ├── gf2^9_mult_pyzx.qc │ ├── grover_5_pyzx.qc │ ├── ham15-high_pyzx.qc │ ├── ham15-low_pyzx.qc │ ├── ham15-med_pyzx.qc │ ├── hwb6_pyzx.qc │ ├── hwb8_pyzx.qc │ ├── mod5_4_pyzx.qc │ ├── mod_adder_1024_pyzx.qc │ ├── mod_mult_55_pyzx.qc │ ├── mod_red_21_pyzx.qc │ ├── nth_prime6_pyzx.qc │ ├── nth_prime8_pyzx.qc │ ├── qcla_adder_10_pyzx.qc │ ├── qcla_com_7_pyzx.qc │ ├── qcla_mod_7_pyzx.qc │ ├── qft_4_pyzx.qc │ ├── rc_adder_6_pyzx.qc │ ├── tof_10_pyzx.qc │ ├── tof_3_pyzx.qc │ ├── tof_4_pyzx.qc │ ├── tof_5_pyzx.qc │ └── vbe_adder_3_pyzx.qc ├── qasm │ ├── adder_8.qasm │ ├── barenco_tof_10.qasm │ ├── barenco_tof_3.qasm │ ├── barenco_tof_4.qasm │ ├── barenco_tof_5.qasm │ ├── csla_mux_3.qasm │ ├── csum_mux_9.qasm │ ├── cycle_17_3.qasm │ ├── gf2^10_mult.qasm │ ├── gf2^128_mult.qasm │ ├── gf2^16_mult.qasm │ ├── gf2^256_mult.qasm │ ├── gf2^32_mult.qasm │ ├── gf2^4_mult.qasm │ ├── gf2^5_mult.qasm │ ├── gf2^64_mult.qasm │ ├── gf2^6_mult.qasm │ ├── gf2^7_mult.qasm │ ├── gf2^8_mult.qasm │ ├── gf2^9_mult.qasm │ ├── grover_5.qasm │ ├── ham15-high.qasm │ ├── ham15-low.qasm │ ├── ham15-med.qasm │ ├── hwb10.qasm │ ├── hwb11.qasm │ ├── hwb12.qasm │ ├── hwb6.qasm │ ├── hwb8.qasm │ ├── mod5_4.qasm │ ├── mod_adder_1024.qasm │ ├── mod_adder_1048576.qasm │ ├── mod_mult_55.qasm │ ├── mod_red_21.qasm │ ├── qcla_adder_10.qasm │ ├── qcla_com_7.qasm │ ├── qcla_mod_7.qasm │ ├── qft_4.qasm │ ├── rc_adder_6.qasm │ ├── tof_10.qasm │ ├── tof_3.qasm │ ├── tof_4.qasm │ ├── tof_5.qasm │ └── vbe_adder_3.qasm ├── steiner │ └── 5qubits │ │ └── 2 │ │ ├── Original0.qasm │ │ ├── Original1.qasm │ │ ├── Original10.qasm │ │ ├── Original11.qasm │ │ ├── Original12.qasm │ │ ├── Original13.qasm │ │ ├── Original14.qasm │ │ ├── Original15.qasm │ │ ├── Original16.qasm │ │ ├── Original17.qasm │ │ ├── Original18.qasm │ │ ├── Original19.qasm │ │ ├── Original2.qasm │ │ ├── Original3.qasm │ │ ├── Original4.qasm │ │ ├── Original5.qasm │ │ ├── Original6.qasm │ │ ├── Original7.qasm │ │ ├── Original8.qasm │ │ └── Original9.qasm └── toobig │ ├── Adder128_after_heavy │ ├── Adder128_after_light │ ├── Adder128_before │ ├── QFT64_after │ ├── QFT64_before │ ├── QFTAdd64_after │ ├── QFTAdd64_before │ ├── hwb10.qc │ ├── hwb11.qc │ └── hwb12.qc ├── demos ├── AKLT │ ├── AKLT chain demonstration.ipynb │ ├── AKLT hexagonal lattice.ipynb │ └── README.txt ├── AllFeatures.ipynb ├── BenchmarkTensorContraction.ipynb ├── CNOT-Benchmark.ipynb ├── CSSLogicalOperators.ipynb ├── Challenge_circuit_extraction.ipynb ├── Fourier.ipynb ├── LocalSearch.ipynb ├── Optimizing almost-Clifford circuits.ipynb ├── PauliWebs.ipynb ├── PauliWebsRGB.ipynb ├── STRING2019.ipynb ├── Spider QASM tutorial.ipynb ├── T-count Benchmark.ipynb ├── Time Benchmark.ipynb ├── ZXW_demo.ipynb ├── example-circuit-simp.ipynb ├── example-gtsimp.ipynb ├── example-routing.ipynb └── hyperpivot.ipynb ├── doc ├── Makefile ├── _static │ ├── clifford.png │ ├── clifford_extracted.png │ ├── clifford_optimized.png │ ├── clifford_simp.png │ └── editor_example.png ├── _themes │ └── sphinx_rtd_theme │ │ ├── __init__.py │ │ ├── breadcrumbs.html │ │ ├── footer.html │ │ ├── layout.html │ │ ├── search.html │ │ ├── searchbox.html │ │ ├── static │ │ ├── css │ │ │ ├── badge_only.css │ │ │ └── theme.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ └── js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── theme.conf │ │ └── versions.html ├── api.rst ├── conf.py ├── diagrams │ ├── add_z.json │ ├── bialgebra.json │ ├── colorChange.json │ ├── copy.json │ ├── edge_to_hbox.json │ ├── euler.json │ ├── fuse_hboxes.json │ ├── gadget.json │ ├── hbox_not_remove.json │ ├── hopf.json │ ├── hpivot.json │ ├── identity.json │ ├── intro.json │ ├── lcomp.json │ ├── multiply.json │ ├── pauli_push.json │ ├── phasepoly.json │ ├── phasepoly_simple.json │ ├── pi_commute.json │ ├── pivot.json │ ├── rem_id.json │ ├── self_loop.json │ ├── spiderFuse.json │ ├── supplementarity.json │ ├── z_to_z_box.json │ └── zero_hbox.json ├── faq.rst ├── graph.rst ├── index.rst ├── make.bat ├── notebooks │ ├── gates.ipynb │ ├── gettingstarted.ipynb │ ├── rules.ipynb │ └── simplify.ipynb ├── quickintro.rst ├── representations.rst └── simplify.rst ├── images ├── F-PYZX.jpg └── cqc-banner-small.png ├── makedoc.bat ├── makepdf.bat ├── misc └── graph_format.md ├── mypy.ini ├── pyzx ├── __init__.py ├── __main__.py ├── altextract.py ├── circuit │ ├── __init__.py │ ├── emojiparser.py │ ├── gates.py │ ├── graphparser.py │ ├── qasmparser.py │ ├── qcparser.py │ ├── qsimparser.py │ ├── quipperparser.py │ └── sqasm.py ├── css.py ├── d3.py ├── drawing.py ├── editor.py ├── editor_actions.py ├── extract.py ├── fourier.py ├── gadget_extract.py ├── generate.py ├── gflow.py ├── graph │ ├── __init__.py │ ├── base.py │ ├── diff.py │ ├── graph.py │ ├── graph_gt.py │ ├── graph_ig.py │ ├── graph_s.py │ ├── jsonparser.py │ ├── multigraph.py │ └── scalar.py ├── hsimplify.py ├── js │ ├── d3.v5.min.inline.js │ ├── d3.v5.min.js │ ├── require.min.inline.js │ ├── zx_editor_model.js │ ├── zx_editor_widget.js │ ├── zx_viewer.inline.js │ ├── zx_viewer.js │ └── zx_viewer3d.js ├── linalg.py ├── linalg_c.pyx ├── local_search │ ├── __init__.py │ ├── congruences.py │ ├── genetic.py │ ├── scores.py │ └── simulated_annealing.py ├── mbqc.py ├── optimize.py ├── parity_network.py ├── pauliweb.py ├── py.typed ├── pyquil_circuit.py ├── quimb.py ├── rank_width.py ├── rewrite.py ├── rewrite_rules │ ├── __init__.py │ ├── basicrules.py │ ├── editor_actions.py │ ├── hrules.py │ └── rules.py ├── routing │ ├── __init__.py │ ├── architecture.py │ ├── cnot_mapper.py │ ├── machine_learning.py │ ├── parity_maps.py │ ├── phase_poly.py │ └── steiner.py ├── scripts │ ├── __init__.py │ ├── circ2circ.py │ ├── circ2tikz.py │ ├── circuit_router.py │ ├── cnot_generator.py │ └── phase_poly_generator.py ├── simplify.py ├── simulate.py ├── symbolic.py ├── tensor.py ├── tikz.py ├── todd.py └── utils.py ├── readme.md ├── requirements.txt ├── run jupyter.bat ├── runtests.bat ├── runtests.sh ├── scratchpads ├── FOSDEM Demo.ipynb ├── FSim gate.ipynb ├── Fullstack.ipynb ├── JohnDoodle.ipynb ├── Mapping.ipynb ├── PQP.ipynb ├── Presentation Simplification demo.ipynb ├── Q-uarantine.ipynb ├── QNLP.ipynb ├── StabRank-Copy1.ipynb ├── StabRank.ipynb ├── Stabilizer Decomposition Demo.ipynb ├── T and CNOT count Benchmarks.ipynb ├── XRel.ipynb ├── ak.ipynb ├── ak2.ipynb ├── cython-test.ipynb ├── demo.graphml ├── demo1.graphml ├── hpivot-scratch.ipynb ├── magic state decomposition.ipynb ├── multigraph.ipynb ├── phase-squashing.ipynb ├── pivots.ipynb ├── qsim.ipynb ├── quizx.ipynb ├── sim.graphml ├── sim_small_zx.graphml ├── sim_small_zx_orig.graphml ├── sim_zh.graphml ├── sim_zx.graphml ├── sparsify.ipynb ├── tensor-net.ipynb ├── test.qsim ├── test2.qsim ├── what_are_these.txt └── zxtalk.ipynb ├── setup.py ├── test_requirements.txt └── tests ├── __init__.py ├── long_scalar_test.py ├── long_test.py ├── ry.qasm ├── test_circuit.circuit ├── test_circuit.py ├── test_circuit_nocontrol_noqubits.circuit ├── test_cnot_mapper.py ├── test_extract.py ├── test_graph.py ├── test_jsonparser.py ├── test_linalg.py ├── test_phasepoly.py ├── test_qasm.py ├── test_quimb.py ├── test_rank_width.py ├── test_scalar.py ├── test_scripts.py ├── test_simplify.py ├── test_simulate.py ├── test_symbolic_parsing.py └── test_tensor.py /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/benchmark.py -------------------------------------------------------------------------------- /circuits/2-qubit-unitary.qgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/2-qubit-unitary.qgraph -------------------------------------------------------------------------------- /circuits/4-qubit-unitary.qgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/4-qubit-unitary.qgraph -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/adder_8_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/adder_8_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/adder_8_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/adder_8_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/adder_8_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/adder_8_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/adder_8_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/adder_8_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_10_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_10_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_10_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_10_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_10_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_10_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_10_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_10_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_3_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_3_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_3_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_3_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_3_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_3_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_3_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_3_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_4_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_4_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_4_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_4_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_4_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_4_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_4_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_4_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_5_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_5_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_5_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_5_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_5_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_5_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/barenco_tof_5_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/barenco_tof_5_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/csla_mux_3_original_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/csla_mux_3_original_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/csla_mux_3_original_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/csla_mux_3_original_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/csla_mux_3_original_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/csla_mux_3_original_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/csla_mux_3_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/csla_mux_3_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/csum_mux_9_corrected_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/csum_mux_9_corrected_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/csum_mux_9_corrected_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/csum_mux_9_corrected_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/csum_mux_9_corrected_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/csum_mux_9_corrected_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/csum_mux_9_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/csum_mux_9_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^10_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^10_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^10_mult_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^10_mult_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^10_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^10_mult_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^10_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^10_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^16_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^16_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^16_mult_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^16_mult_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^16_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^16_mult_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^16_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^16_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^32_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^32_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^4_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^4_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^4_mult_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^4_mult_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^4_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^4_mult_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^4_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^4_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^5_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^5_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^5_mult_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^5_mult_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^5_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^5_mult_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^5_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^5_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^6_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^6_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^6_mult_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^6_mult_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^6_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^6_mult_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^6_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^6_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^7_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^7_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^7_mult_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^7_mult_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^7_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^7_mult_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^7_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^7_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^8_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^8_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^8_mult_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^8_mult_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^8_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^8_mult_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^8_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^8_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^9_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^9_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^9_mult_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^9_mult_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^9_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^9_mult_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/gf2^9_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/gf2^9_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod5_4_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod5_4_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod5_4_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod5_4_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod5_4_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod5_4_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod5_4_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod5_4_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod_adder_1024_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod_adder_1024_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod_adder_1024_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod_adder_1024_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod_adder_1024_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod_adder_1024_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod_adder_1024_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod_adder_1024_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod_adder_1048576_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod_adder_1048576_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod_mult_55_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod_mult_55_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod_mult_55_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod_mult_55_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod_mult_55_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod_mult_55_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod_mult_55_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod_mult_55_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod_red_21_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod_red_21_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod_red_21_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod_red_21_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod_red_21_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod_red_21_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/mod_red_21_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/mod_red_21_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/qcla_adder_10_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/qcla_adder_10_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/qcla_adder_10_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/qcla_adder_10_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/qcla_adder_10_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/qcla_adder_10_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/qcla_adder_10_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/qcla_adder_10_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/qcla_com_7_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/qcla_com_7_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/qcla_com_7_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/qcla_com_7_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/qcla_com_7_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/qcla_com_7_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/qcla_com_7_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/qcla_com_7_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/qcla_mod_7_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/qcla_mod_7_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/qcla_mod_7_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/qcla_mod_7_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/qcla_mod_7_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/qcla_mod_7_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/qcla_mod_7_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/qcla_mod_7_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/rc_adder_6_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/rc_adder_6_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/rc_adder_6_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/rc_adder_6_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/rc_adder_6_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/rc_adder_6_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/rc_adder_6_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/rc_adder_6_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_10_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_10_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_10_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_10_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_10_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_10_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_10_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_10_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_3_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_3_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_3_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_3_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_3_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_3_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_3_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_3_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_4_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_4_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_4_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_4_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_4_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_4_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_4_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_4_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_5_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_5_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_5_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_5_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_5_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_5_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/tof_5_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/tof_5_tpar.qc -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/vbe_adder_3_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/vbe_adder_3_after_heavy -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/vbe_adder_3_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/vbe_adder_3_after_light -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/vbe_adder_3_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/vbe_adder_3_before -------------------------------------------------------------------------------- /circuits/Arithmetic_and_Toffoli/vbe_adder_3_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Arithmetic_and_Toffoli/vbe_adder_3_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/Adder8_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/Adder8_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/Adder8_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/Adder8_before -------------------------------------------------------------------------------- /circuits/Fast/QFT16_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/QFT16_after -------------------------------------------------------------------------------- /circuits/Fast/QFT16_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/QFT16_before -------------------------------------------------------------------------------- /circuits/Fast/QFT8_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/QFT8_after -------------------------------------------------------------------------------- /circuits/Fast/QFT8_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/QFT8_before -------------------------------------------------------------------------------- /circuits/Fast/QFTAdd8_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/QFTAdd8_after -------------------------------------------------------------------------------- /circuits/Fast/QFTAdd8_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/QFTAdd8_before -------------------------------------------------------------------------------- /circuits/Fast/adder_8_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/adder_8_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/adder_8_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/adder_8_before -------------------------------------------------------------------------------- /circuits/Fast/adder_8_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/adder_8_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/barenco_tof_10_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/barenco_tof_10_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/barenco_tof_10_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/barenco_tof_10_before -------------------------------------------------------------------------------- /circuits/Fast/barenco_tof_10_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/barenco_tof_10_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/barenco_tof_3_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/barenco_tof_3_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/barenco_tof_3_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/barenco_tof_3_before -------------------------------------------------------------------------------- /circuits/Fast/barenco_tof_3_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/barenco_tof_3_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/barenco_tof_4_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/barenco_tof_4_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/barenco_tof_4_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/barenco_tof_4_before -------------------------------------------------------------------------------- /circuits/Fast/barenco_tof_4_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/barenco_tof_4_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/barenco_tof_5_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/barenco_tof_5_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/barenco_tof_5_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/barenco_tof_5_before -------------------------------------------------------------------------------- /circuits/Fast/barenco_tof_5_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/barenco_tof_5_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/csla_mux_3_original_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/csla_mux_3_original_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/csla_mux_3_original_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/csla_mux_3_original_before -------------------------------------------------------------------------------- /circuits/Fast/csla_mux_3_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/csla_mux_3_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/csum_mux_9_corrected_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/csum_mux_9_corrected_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/csum_mux_9_corrected_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/csum_mux_9_corrected_before -------------------------------------------------------------------------------- /circuits/Fast/csum_mux_9_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/csum_mux_9_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/gf2^10_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^10_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/gf2^10_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^10_mult_before -------------------------------------------------------------------------------- /circuits/Fast/gf2^10_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^10_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/gf2^4_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^4_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/gf2^4_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^4_mult_before -------------------------------------------------------------------------------- /circuits/Fast/gf2^4_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^4_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/gf2^5_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^5_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/gf2^5_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^5_mult_before -------------------------------------------------------------------------------- /circuits/Fast/gf2^5_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^5_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/gf2^6_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^6_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/gf2^6_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^6_mult_before -------------------------------------------------------------------------------- /circuits/Fast/gf2^6_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^6_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/gf2^7_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^7_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/gf2^7_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^7_mult_before -------------------------------------------------------------------------------- /circuits/Fast/gf2^7_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^7_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/gf2^8_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^8_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/gf2^8_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^8_mult_before -------------------------------------------------------------------------------- /circuits/Fast/gf2^8_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^8_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/gf2^9_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^9_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/gf2^9_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^9_mult_before -------------------------------------------------------------------------------- /circuits/Fast/gf2^9_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/gf2^9_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/grover_5.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/grover_5.qc -------------------------------------------------------------------------------- /circuits/Fast/grover_5_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/grover_5_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/ham15-low.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/ham15-low.qc -------------------------------------------------------------------------------- /circuits/Fast/hwb6.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/hwb6.qc -------------------------------------------------------------------------------- /circuits/Fast/mod5_4_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/mod5_4_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/mod5_4_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/mod5_4_before -------------------------------------------------------------------------------- /circuits/Fast/mod5_4_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/mod5_4_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/mod_mult_55_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/mod_mult_55_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/mod_mult_55_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/mod_mult_55_before -------------------------------------------------------------------------------- /circuits/Fast/mod_mult_55_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/mod_mult_55_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/mod_red_21_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/mod_red_21_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/mod_red_21_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/mod_red_21_before -------------------------------------------------------------------------------- /circuits/Fast/mod_red_21_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/mod_red_21_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/nth_prime6.tfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/nth_prime6.tfc -------------------------------------------------------------------------------- /circuits/Fast/qcla_adder_10_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/qcla_adder_10_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/qcla_adder_10_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/qcla_adder_10_before -------------------------------------------------------------------------------- /circuits/Fast/qcla_adder_10_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/qcla_adder_10_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/qcla_com_7_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/qcla_com_7_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/qcla_com_7_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/qcla_com_7_before -------------------------------------------------------------------------------- /circuits/Fast/qcla_com_7_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/qcla_com_7_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/qcla_mod_7_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/qcla_mod_7_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/qcla_mod_7_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/qcla_mod_7_before -------------------------------------------------------------------------------- /circuits/Fast/qcla_mod_7_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/qcla_mod_7_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/qft_4.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/qft_4.qc -------------------------------------------------------------------------------- /circuits/Fast/rc_adder_6_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/rc_adder_6_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/rc_adder_6_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/rc_adder_6_before -------------------------------------------------------------------------------- /circuits/Fast/rc_adder_6_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/rc_adder_6_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/tof_10_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/tof_10_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/tof_10_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/tof_10_before -------------------------------------------------------------------------------- /circuits/Fast/tof_10_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/tof_10_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/tof_3_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/tof_3_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/tof_3_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/tof_3_before -------------------------------------------------------------------------------- /circuits/Fast/tof_3_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/tof_3_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/tof_4_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/tof_4_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/tof_4_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/tof_4_before -------------------------------------------------------------------------------- /circuits/Fast/tof_4_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/tof_4_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/tof_5_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/tof_5_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/tof_5_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/tof_5_before -------------------------------------------------------------------------------- /circuits/Fast/tof_5_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/tof_5_tpar.qc -------------------------------------------------------------------------------- /circuits/Fast/vbe_adder_3_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/vbe_adder_3_after_heavy -------------------------------------------------------------------------------- /circuits/Fast/vbe_adder_3_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/vbe_adder_3_before -------------------------------------------------------------------------------- /circuits/Fast/vbe_adder_3_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Fast/vbe_adder_3_tpar.qc -------------------------------------------------------------------------------- /circuits/Other/cycle_17_3.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Other/cycle_17_3.qc -------------------------------------------------------------------------------- /circuits/Other/grover_5.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Other/grover_5.qc -------------------------------------------------------------------------------- /circuits/Other/grover_5_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Other/grover_5_tpar.qc -------------------------------------------------------------------------------- /circuits/Other/ham15-high.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Other/ham15-high.qc -------------------------------------------------------------------------------- /circuits/Other/ham15-low.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Other/ham15-low.qc -------------------------------------------------------------------------------- /circuits/Other/ham15-med.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Other/ham15-med.qc -------------------------------------------------------------------------------- /circuits/Other/hwb6.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Other/hwb6.qc -------------------------------------------------------------------------------- /circuits/Other/nth_prime6.tfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Other/nth_prime6.tfc -------------------------------------------------------------------------------- /circuits/Other/qft_4.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Other/qft_4.qc -------------------------------------------------------------------------------- /circuits/PF/pf1_100_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_100_after -------------------------------------------------------------------------------- /circuits/PF/pf1_100_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_100_before -------------------------------------------------------------------------------- /circuits/PF/pf1_10_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_10_after -------------------------------------------------------------------------------- /circuits/PF/pf1_10_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_10_before -------------------------------------------------------------------------------- /circuits/PF/pf1_20_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_20_after -------------------------------------------------------------------------------- /circuits/PF/pf1_20_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_20_before -------------------------------------------------------------------------------- /circuits/PF/pf1_30_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_30_after -------------------------------------------------------------------------------- /circuits/PF/pf1_30_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_30_before -------------------------------------------------------------------------------- /circuits/PF/pf1_40_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_40_after -------------------------------------------------------------------------------- /circuits/PF/pf1_40_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_40_before -------------------------------------------------------------------------------- /circuits/PF/pf1_50_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_50_after -------------------------------------------------------------------------------- /circuits/PF/pf1_50_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_50_before -------------------------------------------------------------------------------- /circuits/PF/pf1_60_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_60_after -------------------------------------------------------------------------------- /circuits/PF/pf1_60_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_60_before -------------------------------------------------------------------------------- /circuits/PF/pf1_70_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_70_after -------------------------------------------------------------------------------- /circuits/PF/pf1_70_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_70_before -------------------------------------------------------------------------------- /circuits/PF/pf1_80_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_80_after -------------------------------------------------------------------------------- /circuits/PF/pf1_80_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_80_before -------------------------------------------------------------------------------- /circuits/PF/pf1_90_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_90_after -------------------------------------------------------------------------------- /circuits/PF/pf1_90_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf1_90_before -------------------------------------------------------------------------------- /circuits/PF/pf2_100_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_100_after -------------------------------------------------------------------------------- /circuits/PF/pf2_100_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_100_before -------------------------------------------------------------------------------- /circuits/PF/pf2_10_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_10_after -------------------------------------------------------------------------------- /circuits/PF/pf2_10_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_10_before -------------------------------------------------------------------------------- /circuits/PF/pf2_20_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_20_after -------------------------------------------------------------------------------- /circuits/PF/pf2_20_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_20_before -------------------------------------------------------------------------------- /circuits/PF/pf2_30_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_30_after -------------------------------------------------------------------------------- /circuits/PF/pf2_30_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_30_before -------------------------------------------------------------------------------- /circuits/PF/pf2_40_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_40_after -------------------------------------------------------------------------------- /circuits/PF/pf2_40_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_40_before -------------------------------------------------------------------------------- /circuits/PF/pf2_50_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_50_after -------------------------------------------------------------------------------- /circuits/PF/pf2_50_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_50_before -------------------------------------------------------------------------------- /circuits/PF/pf2_60_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_60_after -------------------------------------------------------------------------------- /circuits/PF/pf2_60_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_60_before -------------------------------------------------------------------------------- /circuits/PF/pf2_70_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_70_after -------------------------------------------------------------------------------- /circuits/PF/pf2_70_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_70_before -------------------------------------------------------------------------------- /circuits/PF/pf2_80_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_80_after -------------------------------------------------------------------------------- /circuits/PF/pf2_80_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_80_before -------------------------------------------------------------------------------- /circuits/PF/pf2_90_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_90_after -------------------------------------------------------------------------------- /circuits/PF/pf2_90_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf2_90_before -------------------------------------------------------------------------------- /circuits/PF/pf4_10_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_10_after -------------------------------------------------------------------------------- /circuits/PF/pf4_10_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_10_before -------------------------------------------------------------------------------- /circuits/PF/pf4_20_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_20_after -------------------------------------------------------------------------------- /circuits/PF/pf4_20_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_20_before -------------------------------------------------------------------------------- /circuits/PF/pf4_30_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_30_after -------------------------------------------------------------------------------- /circuits/PF/pf4_30_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_30_before -------------------------------------------------------------------------------- /circuits/PF/pf4_40_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_40_after -------------------------------------------------------------------------------- /circuits/PF/pf4_40_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_40_before -------------------------------------------------------------------------------- /circuits/PF/pf4_50_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_50_after -------------------------------------------------------------------------------- /circuits/PF/pf4_50_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_50_before -------------------------------------------------------------------------------- /circuits/PF/pf4_60_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_60_after -------------------------------------------------------------------------------- /circuits/PF/pf4_60_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_60_before -------------------------------------------------------------------------------- /circuits/PF/pf4_70_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_70_after -------------------------------------------------------------------------------- /circuits/PF/pf4_70_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_70_before -------------------------------------------------------------------------------- /circuits/PF/pf4_80_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_80_after -------------------------------------------------------------------------------- /circuits/PF/pf4_80_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf4_80_before -------------------------------------------------------------------------------- /circuits/PF/pf6_10_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf6_10_after -------------------------------------------------------------------------------- /circuits/PF/pf6_10_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/PF/pf6_10_before -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/Adder16_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/Adder16_after_heavy -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/Adder16_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/Adder16_after_light -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/Adder16_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/Adder16_before -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/Adder32_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/Adder32_after_heavy -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/Adder32_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/Adder32_after_light -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/Adder32_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/Adder32_before -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/Adder64_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/Adder64_after_heavy -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/Adder64_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/Adder64_after_light -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/Adder64_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/Adder64_before -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/Adder8_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/Adder8_after_heavy -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/Adder8_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/Adder8_after_light -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/Adder8_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/Adder8_before -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/QFT16_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/QFT16_after -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/QFT16_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/QFT16_before -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/QFT32_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/QFT32_after -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/QFT32_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/QFT32_before -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/QFT8_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/QFT8_after -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/QFT8_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/QFT8_before -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/QFTAdd16_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/QFTAdd16_after -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/QFTAdd16_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/QFTAdd16_before -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/QFTAdd32_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/QFTAdd32_after -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/QFTAdd32_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/QFTAdd32_before -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/QFTAdd8_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/QFTAdd8_after -------------------------------------------------------------------------------- /circuits/QFT_and_Adders/QFTAdd8_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/QFT_and_Adders/QFTAdd8_before -------------------------------------------------------------------------------- /circuits/Slow/Adder16_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/Adder16_after_heavy -------------------------------------------------------------------------------- /circuits/Slow/Adder16_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/Adder16_before -------------------------------------------------------------------------------- /circuits/Slow/Adder32_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/Adder32_after_heavy -------------------------------------------------------------------------------- /circuits/Slow/Adder32_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/Adder32_before -------------------------------------------------------------------------------- /circuits/Slow/Adder64_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/Adder64_after_heavy -------------------------------------------------------------------------------- /circuits/Slow/Adder64_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/Adder64_before -------------------------------------------------------------------------------- /circuits/Slow/QFT32_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/QFT32_after -------------------------------------------------------------------------------- /circuits/Slow/QFT32_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/QFT32_before -------------------------------------------------------------------------------- /circuits/Slow/QFTAdd16_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/QFTAdd16_after -------------------------------------------------------------------------------- /circuits/Slow/QFTAdd16_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/QFTAdd16_before -------------------------------------------------------------------------------- /circuits/Slow/QFTAdd32_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/QFTAdd32_after -------------------------------------------------------------------------------- /circuits/Slow/QFTAdd32_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/QFTAdd32_before -------------------------------------------------------------------------------- /circuits/Slow/gf2^16_mult_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/gf2^16_mult_after_heavy -------------------------------------------------------------------------------- /circuits/Slow/gf2^16_mult_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/gf2^16_mult_before -------------------------------------------------------------------------------- /circuits/Slow/gf2^16_mult_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/gf2^16_mult_tpar.qc -------------------------------------------------------------------------------- /circuits/Slow/ham15-high.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/ham15-high.qc -------------------------------------------------------------------------------- /circuits/Slow/ham15-med.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/ham15-med.qc -------------------------------------------------------------------------------- /circuits/Slow/hwb8.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/hwb8.qc -------------------------------------------------------------------------------- /circuits/Slow/mod_adder_1024_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/mod_adder_1024_after_heavy -------------------------------------------------------------------------------- /circuits/Slow/mod_adder_1024_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/mod_adder_1024_before -------------------------------------------------------------------------------- /circuits/Slow/mod_adder_1024_tpar.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/mod_adder_1024_tpar.qc -------------------------------------------------------------------------------- /circuits/Slow/nth_prime8.tfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/Slow/nth_prime8.tfc -------------------------------------------------------------------------------- /circuits/broken/cycle_17_3.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/broken/cycle_17_3.qc -------------------------------------------------------------------------------- /circuits/cycle17_3-corrected.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/cycle17_3-corrected.qc -------------------------------------------------------------------------------- /circuits/cycle17_3_cliffordt.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/cycle17_3_cliffordt.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/adder_8.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/adder_8.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/barenco_tof_10.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/barenco_tof_10.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/barenco_tof_3.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/barenco_tof_3.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/barenco_tof_4.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/barenco_tof_4.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/barenco_tof_5.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/barenco_tof_5.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/cycle_17_3.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/cycle_17_3.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/gf2^128_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/gf2^128_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/gf2^16_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/gf2^16_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/gf2^256_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/gf2^256_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/gf2^32_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/gf2^32_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/gf2^64_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/gf2^64_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/grover_5.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/grover_5.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/ham15-high.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/ham15-high.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/hwb10.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/hwb10.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/hwb11.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/hwb11.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/hwb12.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/hwb12.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/hwb8.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/hwb8.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/mod_adder_1024.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/mod_adder_1024.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/mod_adder_1048576.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/mod_adder_1048576.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/qcla_mod_7.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/qcla_mod_7.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/big/shor_2_21.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/big/shor_2_21.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/csla_mux_3.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/csla_mux_3.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/csum_mux_9.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/csum_mux_9.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/gf2^10_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/gf2^10_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/gf2^4_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/gf2^4_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/gf2^5_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/gf2^5_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/gf2^6_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/gf2^6_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/gf2^7_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/gf2^7_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/gf2^8_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/gf2^8_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/gf2^9_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/gf2^9_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/ham15-low.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/ham15-low.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/ham15-med.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/ham15-med.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/hwb6.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/hwb6.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/mod5_4.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/mod5_4.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/mod_mult_55.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/mod_mult_55.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/mod_red_21.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/mod_red_21.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/adder_8.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/adder_8.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/barenco_tof_10.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/barenco_tof_10.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/barenco_tof_3.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/barenco_tof_3.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/barenco_tof_4.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/barenco_tof_4.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/barenco_tof_5.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/barenco_tof_5.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/csla_mux_3.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/csla_mux_3.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/csum_mux_9.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/csum_mux_9.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/cycle_17_3.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/cycle_17_3.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/gf2^10_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/gf2^10_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/gf2^128_mult.qc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /circuits/feyn_bench/out/gf2^16_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/gf2^16_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/gf2^32_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/gf2^32_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/gf2^4_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/gf2^4_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/gf2^5_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/gf2^5_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/gf2^64_mult.qc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /circuits/feyn_bench/out/gf2^6_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/gf2^6_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/gf2^7_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/gf2^7_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/gf2^8_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/gf2^8_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/gf2^9_mult.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/gf2^9_mult.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/grover_5.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/grover_5.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/ham15-high.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/ham15-high.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/ham15-low.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/ham15-low.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/ham15-med.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/ham15-med.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/hwb10.qc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /circuits/feyn_bench/out/hwb6.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/hwb6.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/hwb8.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/hwb8.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/mod5_4.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/mod5_4.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/mod_adder_1024.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/mod_adder_1024.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/mod_mult_55.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/mod_mult_55.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/mod_red_21.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/mod_red_21.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/qcla_adder_10.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/qcla_adder_10.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/qcla_com_7.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/qcla_com_7.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/qcla_mod_7.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/qcla_mod_7.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/qft_4.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/qft_4.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/rc_adder_6.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/rc_adder_6.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/shor_2_21.qc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /circuits/feyn_bench/out/tof_10.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/tof_10.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/tof_3.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/tof_3.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/tof_4.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/tof_4.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/tof_5.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/tof_5.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/out/vbe_adder_3.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/out/vbe_adder_3.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/adder_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/adder_8.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/barenco_tof_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/barenco_tof_10.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/barenco_tof_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/barenco_tof_3.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/barenco_tof_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/barenco_tof_4.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/barenco_tof_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/barenco_tof_5.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/csla_mux_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/csla_mux_3.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/csum_mux_9.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/csum_mux_9.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/cycle_17_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/cycle_17_3.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/generic/W-state.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/generic/W-state.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/generic/adder.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/generic/adder.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/generic/bigadder.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/generic/bigadder.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/generic/inverseqft1.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/generic/inverseqft1.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/generic/inverseqft2.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/generic/inverseqft2.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/generic/ipea_3_pi_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/generic/ipea_3_pi_8.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/generic/pea_3_pi_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/generic/pea_3_pi_8.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/generic/qec.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/generic/qec.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/generic/qelib1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/generic/qelib1.inc -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/generic/qft.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/generic/qft.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/generic/qpt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/generic/qpt.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/generic/rb.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/generic/rb.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/generic/teleport.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/generic/teleport.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/generic/teleportv2.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/generic/teleportv2.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/gf2^10_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/gf2^10_mult.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/gf2^128_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/gf2^128_mult.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/gf2^16_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/gf2^16_mult.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/gf2^256_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/gf2^256_mult.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/gf2^32_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/gf2^32_mult.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/gf2^4_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/gf2^4_mult.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/gf2^5_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/gf2^5_mult.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/gf2^64_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/gf2^64_mult.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/gf2^6_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/gf2^6_mult.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/gf2^7_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/gf2^7_mult.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/gf2^8_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/gf2^8_mult.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/gf2^9_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/gf2^9_mult.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/grover_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/grover_5.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/ham15-high.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/ham15-high.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/ham15-low.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/ham15-low.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/ham15-med.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/ham15-med.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/hwb10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/hwb10.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/hwb11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/hwb11.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/hwb12.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/hwb12.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/hwb6.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/hwb6.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/hwb8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/hwb8.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/ibmqx2/011_3_qubit_grover_50_.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/ibmqx2/011_3_qubit_grover_50_.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/ibmqx2/Deutsch_Algorithm.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/ibmqx2/Deutsch_Algorithm.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/ibmqx2/W3test.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/ibmqx2/W3test.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/ibmqx2/iswap.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/ibmqx2/iswap.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/ibmqx2/qe_qft_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/ibmqx2/qe_qft_3.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/ibmqx2/qe_qft_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/ibmqx2/qe_qft_4.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/ibmqx2/qe_qft_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/ibmqx2/qe_qft_5.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/invalid/gate_no_found.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/invalid/gate_no_found.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/invalid/missing_semicolon.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/invalid/missing_semicolon.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/mod5_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/mod5_4.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/mod_adder_1024.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/mod_adder_1024.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/mod_adder_1048576.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/mod_adder_1048576.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/mod_mult_55.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/mod_mult_55.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/mod_red_21.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/mod_red_21.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/qcla_adder_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/qcla_adder_10.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/qcla_com_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/qcla_com_7.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/qcla_mod_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/qcla_mod_7.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/qft_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/qft_4.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/rc_adder_6.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/rc_adder_6.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/shor_2_21.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/shor_2_21.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/tof_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/tof_10.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/tof_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/tof_3.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/tof_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/tof_4.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/tof_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/tof_5.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qasm/vbe_adder_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qasm/vbe_adder_3.qasm -------------------------------------------------------------------------------- /circuits/feyn_bench/qcla_adder_10.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qcla_adder_10.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/qcla_com_7.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qcla_com_7.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/qft_4.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/qft_4.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/rc_adder_6.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/rc_adder_6.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/tof_10.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/tof_10.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/tof_3.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/tof_3.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/tof_4.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/tof_4.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/tof_5.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/tof_5.qc -------------------------------------------------------------------------------- /circuits/feyn_bench/vbe_adder_3.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/feyn_bench/vbe_adder_3.qc -------------------------------------------------------------------------------- /circuits/optimized/Adder16_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/Adder16_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/Adder32_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/Adder32_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/Adder64_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/Adder64_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/Adder8_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/Adder8_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/QFT16_pyzx.qc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /circuits/optimized/QFT32_pyzx.qc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /circuits/optimized/QFT8_pyzx.qc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /circuits/optimized/QFTAdd16_pyzx.qc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /circuits/optimized/QFTAdd32_pyzx.qc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /circuits/optimized/QFTAdd8_pyzx.qc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /circuits/optimized/adder_8_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/adder_8_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/barenco_tof_10_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/barenco_tof_10_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/barenco_tof_3_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/barenco_tof_3_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/barenco_tof_4_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/barenco_tof_4_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/barenco_tof_5_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/barenco_tof_5_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/csla_mux_3_original_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/csla_mux_3_original_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/csum_mux_9_corrected_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/csum_mux_9_corrected_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/gf2^10_mult_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/gf2^10_mult_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/gf2^16_mult_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/gf2^16_mult_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/gf2^4_mult_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/gf2^4_mult_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/gf2^5_mult_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/gf2^5_mult_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/gf2^6_mult_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/gf2^6_mult_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/gf2^7_mult_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/gf2^7_mult_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/gf2^8_mult_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/gf2^8_mult_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/gf2^8_mult_pyzxtodd.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/gf2^8_mult_pyzxtodd.qc -------------------------------------------------------------------------------- /circuits/optimized/gf2^9_mult_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/gf2^9_mult_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/grover_5_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/grover_5_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/ham15-high_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/ham15-high_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/ham15-low_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/ham15-low_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/ham15-med_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/ham15-med_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/hwb6_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/hwb6_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/hwb8_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/hwb8_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/mod5_4_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/mod5_4_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/mod_adder_1024_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/mod_adder_1024_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/mod_mult_55_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/mod_mult_55_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/mod_red_21_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/mod_red_21_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/nth_prime6_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/nth_prime6_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/nth_prime8_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/nth_prime8_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/qcla_adder_10_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/qcla_adder_10_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/qcla_com_7_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/qcla_com_7_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/qcla_mod_7_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/qcla_mod_7_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/qft_4_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/qft_4_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/rc_adder_6_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/rc_adder_6_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/tof_10_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/tof_10_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/tof_3_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/tof_3_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/tof_4_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/tof_4_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/tof_5_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/tof_5_pyzx.qc -------------------------------------------------------------------------------- /circuits/optimized/vbe_adder_3_pyzx.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/optimized/vbe_adder_3_pyzx.qc -------------------------------------------------------------------------------- /circuits/qasm/adder_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/adder_8.qasm -------------------------------------------------------------------------------- /circuits/qasm/barenco_tof_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/barenco_tof_10.qasm -------------------------------------------------------------------------------- /circuits/qasm/barenco_tof_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/barenco_tof_3.qasm -------------------------------------------------------------------------------- /circuits/qasm/barenco_tof_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/barenco_tof_4.qasm -------------------------------------------------------------------------------- /circuits/qasm/barenco_tof_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/barenco_tof_5.qasm -------------------------------------------------------------------------------- /circuits/qasm/csla_mux_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/csla_mux_3.qasm -------------------------------------------------------------------------------- /circuits/qasm/csum_mux_9.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/csum_mux_9.qasm -------------------------------------------------------------------------------- /circuits/qasm/cycle_17_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/cycle_17_3.qasm -------------------------------------------------------------------------------- /circuits/qasm/gf2^10_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/gf2^10_mult.qasm -------------------------------------------------------------------------------- /circuits/qasm/gf2^128_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/gf2^128_mult.qasm -------------------------------------------------------------------------------- /circuits/qasm/gf2^16_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/gf2^16_mult.qasm -------------------------------------------------------------------------------- /circuits/qasm/gf2^256_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/gf2^256_mult.qasm -------------------------------------------------------------------------------- /circuits/qasm/gf2^32_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/gf2^32_mult.qasm -------------------------------------------------------------------------------- /circuits/qasm/gf2^4_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/gf2^4_mult.qasm -------------------------------------------------------------------------------- /circuits/qasm/gf2^5_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/gf2^5_mult.qasm -------------------------------------------------------------------------------- /circuits/qasm/gf2^64_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/gf2^64_mult.qasm -------------------------------------------------------------------------------- /circuits/qasm/gf2^6_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/gf2^6_mult.qasm -------------------------------------------------------------------------------- /circuits/qasm/gf2^7_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/gf2^7_mult.qasm -------------------------------------------------------------------------------- /circuits/qasm/gf2^8_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/gf2^8_mult.qasm -------------------------------------------------------------------------------- /circuits/qasm/gf2^9_mult.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/gf2^9_mult.qasm -------------------------------------------------------------------------------- /circuits/qasm/grover_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/grover_5.qasm -------------------------------------------------------------------------------- /circuits/qasm/ham15-high.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/ham15-high.qasm -------------------------------------------------------------------------------- /circuits/qasm/ham15-low.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/ham15-low.qasm -------------------------------------------------------------------------------- /circuits/qasm/ham15-med.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/ham15-med.qasm -------------------------------------------------------------------------------- /circuits/qasm/hwb10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/hwb10.qasm -------------------------------------------------------------------------------- /circuits/qasm/hwb11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/hwb11.qasm -------------------------------------------------------------------------------- /circuits/qasm/hwb12.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/hwb12.qasm -------------------------------------------------------------------------------- /circuits/qasm/hwb6.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/hwb6.qasm -------------------------------------------------------------------------------- /circuits/qasm/hwb8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/hwb8.qasm -------------------------------------------------------------------------------- /circuits/qasm/mod5_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/mod5_4.qasm -------------------------------------------------------------------------------- /circuits/qasm/mod_adder_1024.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/mod_adder_1024.qasm -------------------------------------------------------------------------------- /circuits/qasm/mod_adder_1048576.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/mod_adder_1048576.qasm -------------------------------------------------------------------------------- /circuits/qasm/mod_mult_55.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/mod_mult_55.qasm -------------------------------------------------------------------------------- /circuits/qasm/mod_red_21.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/mod_red_21.qasm -------------------------------------------------------------------------------- /circuits/qasm/qcla_adder_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/qcla_adder_10.qasm -------------------------------------------------------------------------------- /circuits/qasm/qcla_com_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/qcla_com_7.qasm -------------------------------------------------------------------------------- /circuits/qasm/qcla_mod_7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/qcla_mod_7.qasm -------------------------------------------------------------------------------- /circuits/qasm/qft_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/qft_4.qasm -------------------------------------------------------------------------------- /circuits/qasm/rc_adder_6.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/rc_adder_6.qasm -------------------------------------------------------------------------------- /circuits/qasm/tof_10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/tof_10.qasm -------------------------------------------------------------------------------- /circuits/qasm/tof_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/tof_3.qasm -------------------------------------------------------------------------------- /circuits/qasm/tof_4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/tof_4.qasm -------------------------------------------------------------------------------- /circuits/qasm/tof_5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/tof_5.qasm -------------------------------------------------------------------------------- /circuits/qasm/vbe_adder_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/qasm/vbe_adder_3.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original0.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original0.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original1.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original1.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original10.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original11.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original12.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original12.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original13.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original13.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original14.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original14.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original15.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original15.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original16.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original16.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original17.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original18.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original18.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original19.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original19.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original2.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original2.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original3.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original4.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original5.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original6.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original6.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original7.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original8.qasm -------------------------------------------------------------------------------- /circuits/steiner/5qubits/2/Original9.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/steiner/5qubits/2/Original9.qasm -------------------------------------------------------------------------------- /circuits/toobig/Adder128_after_heavy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/toobig/Adder128_after_heavy -------------------------------------------------------------------------------- /circuits/toobig/Adder128_after_light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/toobig/Adder128_after_light -------------------------------------------------------------------------------- /circuits/toobig/Adder128_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/toobig/Adder128_before -------------------------------------------------------------------------------- /circuits/toobig/QFT64_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/toobig/QFT64_after -------------------------------------------------------------------------------- /circuits/toobig/QFT64_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/toobig/QFT64_before -------------------------------------------------------------------------------- /circuits/toobig/QFTAdd64_after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/toobig/QFTAdd64_after -------------------------------------------------------------------------------- /circuits/toobig/QFTAdd64_before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/toobig/QFTAdd64_before -------------------------------------------------------------------------------- /circuits/toobig/hwb10.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/toobig/hwb10.qc -------------------------------------------------------------------------------- /circuits/toobig/hwb11.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/toobig/hwb11.qc -------------------------------------------------------------------------------- /circuits/toobig/hwb12.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/circuits/toobig/hwb12.qc -------------------------------------------------------------------------------- /demos/AKLT/AKLT chain demonstration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/AKLT/AKLT chain demonstration.ipynb -------------------------------------------------------------------------------- /demos/AKLT/AKLT hexagonal lattice.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/AKLT/AKLT hexagonal lattice.ipynb -------------------------------------------------------------------------------- /demos/AKLT/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/AKLT/README.txt -------------------------------------------------------------------------------- /demos/AllFeatures.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/AllFeatures.ipynb -------------------------------------------------------------------------------- /demos/BenchmarkTensorContraction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/BenchmarkTensorContraction.ipynb -------------------------------------------------------------------------------- /demos/CNOT-Benchmark.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/CNOT-Benchmark.ipynb -------------------------------------------------------------------------------- /demos/CSSLogicalOperators.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/CSSLogicalOperators.ipynb -------------------------------------------------------------------------------- /demos/Challenge_circuit_extraction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/Challenge_circuit_extraction.ipynb -------------------------------------------------------------------------------- /demos/Fourier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/Fourier.ipynb -------------------------------------------------------------------------------- /demos/LocalSearch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/LocalSearch.ipynb -------------------------------------------------------------------------------- /demos/Optimizing almost-Clifford circuits.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/Optimizing almost-Clifford circuits.ipynb -------------------------------------------------------------------------------- /demos/PauliWebs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/PauliWebs.ipynb -------------------------------------------------------------------------------- /demos/PauliWebsRGB.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/PauliWebsRGB.ipynb -------------------------------------------------------------------------------- /demos/STRING2019.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/STRING2019.ipynb -------------------------------------------------------------------------------- /demos/Spider QASM tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/Spider QASM tutorial.ipynb -------------------------------------------------------------------------------- /demos/T-count Benchmark.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/T-count Benchmark.ipynb -------------------------------------------------------------------------------- /demos/Time Benchmark.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/Time Benchmark.ipynb -------------------------------------------------------------------------------- /demos/ZXW_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/ZXW_demo.ipynb -------------------------------------------------------------------------------- /demos/example-circuit-simp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/example-circuit-simp.ipynb -------------------------------------------------------------------------------- /demos/example-gtsimp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/example-gtsimp.ipynb -------------------------------------------------------------------------------- /demos/example-routing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/example-routing.ipynb -------------------------------------------------------------------------------- /demos/hyperpivot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/demos/hyperpivot.ipynb -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/clifford.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_static/clifford.png -------------------------------------------------------------------------------- /doc/_static/clifford_extracted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_static/clifford_extracted.png -------------------------------------------------------------------------------- /doc/_static/clifford_optimized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_static/clifford_optimized.png -------------------------------------------------------------------------------- /doc/_static/clifford_simp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_static/clifford_simp.png -------------------------------------------------------------------------------- /doc/_static/editor_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_static/editor_example.png -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/__init__.py -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/breadcrumbs.html -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/footer.html -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/layout.html -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/search.html -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/searchbox.html -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/static/css/badge_only.css -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/static/css/theme.css -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/static/js/modernizr.min.js -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/static/js/theme.js -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/theme.conf -------------------------------------------------------------------------------- /doc/_themes/sphinx_rtd_theme/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/_themes/sphinx_rtd_theme/versions.html -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/diagrams/add_z.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/add_z.json -------------------------------------------------------------------------------- /doc/diagrams/bialgebra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/bialgebra.json -------------------------------------------------------------------------------- /doc/diagrams/colorChange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/colorChange.json -------------------------------------------------------------------------------- /doc/diagrams/copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/copy.json -------------------------------------------------------------------------------- /doc/diagrams/edge_to_hbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/edge_to_hbox.json -------------------------------------------------------------------------------- /doc/diagrams/euler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/euler.json -------------------------------------------------------------------------------- /doc/diagrams/fuse_hboxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/fuse_hboxes.json -------------------------------------------------------------------------------- /doc/diagrams/gadget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/gadget.json -------------------------------------------------------------------------------- /doc/diagrams/hbox_not_remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/hbox_not_remove.json -------------------------------------------------------------------------------- /doc/diagrams/hopf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/hopf.json -------------------------------------------------------------------------------- /doc/diagrams/hpivot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/hpivot.json -------------------------------------------------------------------------------- /doc/diagrams/identity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/identity.json -------------------------------------------------------------------------------- /doc/diagrams/intro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/intro.json -------------------------------------------------------------------------------- /doc/diagrams/lcomp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/lcomp.json -------------------------------------------------------------------------------- /doc/diagrams/multiply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/multiply.json -------------------------------------------------------------------------------- /doc/diagrams/pauli_push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/pauli_push.json -------------------------------------------------------------------------------- /doc/diagrams/phasepoly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/phasepoly.json -------------------------------------------------------------------------------- /doc/diagrams/phasepoly_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/phasepoly_simple.json -------------------------------------------------------------------------------- /doc/diagrams/pi_commute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/pi_commute.json -------------------------------------------------------------------------------- /doc/diagrams/pivot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/pivot.json -------------------------------------------------------------------------------- /doc/diagrams/rem_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/rem_id.json -------------------------------------------------------------------------------- /doc/diagrams/self_loop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/self_loop.json -------------------------------------------------------------------------------- /doc/diagrams/spiderFuse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/spiderFuse.json -------------------------------------------------------------------------------- /doc/diagrams/supplementarity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/supplementarity.json -------------------------------------------------------------------------------- /doc/diagrams/z_to_z_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/z_to_z_box.json -------------------------------------------------------------------------------- /doc/diagrams/zero_hbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/diagrams/zero_hbox.json -------------------------------------------------------------------------------- /doc/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/faq.rst -------------------------------------------------------------------------------- /doc/graph.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/graph.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/notebooks/gates.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/notebooks/gates.ipynb -------------------------------------------------------------------------------- /doc/notebooks/gettingstarted.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/notebooks/gettingstarted.ipynb -------------------------------------------------------------------------------- /doc/notebooks/rules.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/notebooks/rules.ipynb -------------------------------------------------------------------------------- /doc/notebooks/simplify.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/notebooks/simplify.ipynb -------------------------------------------------------------------------------- /doc/quickintro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/quickintro.rst -------------------------------------------------------------------------------- /doc/representations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/representations.rst -------------------------------------------------------------------------------- /doc/simplify.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/doc/simplify.rst -------------------------------------------------------------------------------- /images/F-PYZX.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/images/F-PYZX.jpg -------------------------------------------------------------------------------- /images/cqc-banner-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/images/cqc-banner-small.png -------------------------------------------------------------------------------- /makedoc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/makedoc.bat -------------------------------------------------------------------------------- /makepdf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/makepdf.bat -------------------------------------------------------------------------------- /misc/graph_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/misc/graph_format.md -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyzx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/__init__.py -------------------------------------------------------------------------------- /pyzx/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/__main__.py -------------------------------------------------------------------------------- /pyzx/altextract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/altextract.py -------------------------------------------------------------------------------- /pyzx/circuit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/circuit/__init__.py -------------------------------------------------------------------------------- /pyzx/circuit/emojiparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/circuit/emojiparser.py -------------------------------------------------------------------------------- /pyzx/circuit/gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/circuit/gates.py -------------------------------------------------------------------------------- /pyzx/circuit/graphparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/circuit/graphparser.py -------------------------------------------------------------------------------- /pyzx/circuit/qasmparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/circuit/qasmparser.py -------------------------------------------------------------------------------- /pyzx/circuit/qcparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/circuit/qcparser.py -------------------------------------------------------------------------------- /pyzx/circuit/qsimparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/circuit/qsimparser.py -------------------------------------------------------------------------------- /pyzx/circuit/quipperparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/circuit/quipperparser.py -------------------------------------------------------------------------------- /pyzx/circuit/sqasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/circuit/sqasm.py -------------------------------------------------------------------------------- /pyzx/css.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/css.py -------------------------------------------------------------------------------- /pyzx/d3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/d3.py -------------------------------------------------------------------------------- /pyzx/drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/drawing.py -------------------------------------------------------------------------------- /pyzx/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/editor.py -------------------------------------------------------------------------------- /pyzx/editor_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/editor_actions.py -------------------------------------------------------------------------------- /pyzx/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/extract.py -------------------------------------------------------------------------------- /pyzx/fourier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/fourier.py -------------------------------------------------------------------------------- /pyzx/gadget_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/gadget_extract.py -------------------------------------------------------------------------------- /pyzx/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/generate.py -------------------------------------------------------------------------------- /pyzx/gflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/gflow.py -------------------------------------------------------------------------------- /pyzx/graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/graph/__init__.py -------------------------------------------------------------------------------- /pyzx/graph/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/graph/base.py -------------------------------------------------------------------------------- /pyzx/graph/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/graph/diff.py -------------------------------------------------------------------------------- /pyzx/graph/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/graph/graph.py -------------------------------------------------------------------------------- /pyzx/graph/graph_gt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/graph/graph_gt.py -------------------------------------------------------------------------------- /pyzx/graph/graph_ig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/graph/graph_ig.py -------------------------------------------------------------------------------- /pyzx/graph/graph_s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/graph/graph_s.py -------------------------------------------------------------------------------- /pyzx/graph/jsonparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/graph/jsonparser.py -------------------------------------------------------------------------------- /pyzx/graph/multigraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/graph/multigraph.py -------------------------------------------------------------------------------- /pyzx/graph/scalar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/graph/scalar.py -------------------------------------------------------------------------------- /pyzx/hsimplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/hsimplify.py -------------------------------------------------------------------------------- /pyzx/js/d3.v5.min.inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/js/d3.v5.min.inline.js -------------------------------------------------------------------------------- /pyzx/js/d3.v5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/js/d3.v5.min.js -------------------------------------------------------------------------------- /pyzx/js/require.min.inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/js/require.min.inline.js -------------------------------------------------------------------------------- /pyzx/js/zx_editor_model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/js/zx_editor_model.js -------------------------------------------------------------------------------- /pyzx/js/zx_editor_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/js/zx_editor_widget.js -------------------------------------------------------------------------------- /pyzx/js/zx_viewer.inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/js/zx_viewer.inline.js -------------------------------------------------------------------------------- /pyzx/js/zx_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/js/zx_viewer.js -------------------------------------------------------------------------------- /pyzx/js/zx_viewer3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/js/zx_viewer3d.js -------------------------------------------------------------------------------- /pyzx/linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/linalg.py -------------------------------------------------------------------------------- /pyzx/linalg_c.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/linalg_c.pyx -------------------------------------------------------------------------------- /pyzx/local_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/local_search/__init__.py -------------------------------------------------------------------------------- /pyzx/local_search/congruences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/local_search/congruences.py -------------------------------------------------------------------------------- /pyzx/local_search/genetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/local_search/genetic.py -------------------------------------------------------------------------------- /pyzx/local_search/scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/local_search/scores.py -------------------------------------------------------------------------------- /pyzx/local_search/simulated_annealing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/local_search/simulated_annealing.py -------------------------------------------------------------------------------- /pyzx/mbqc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/mbqc.py -------------------------------------------------------------------------------- /pyzx/optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/optimize.py -------------------------------------------------------------------------------- /pyzx/parity_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/parity_network.py -------------------------------------------------------------------------------- /pyzx/pauliweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/pauliweb.py -------------------------------------------------------------------------------- /pyzx/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyzx/pyquil_circuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/pyquil_circuit.py -------------------------------------------------------------------------------- /pyzx/quimb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/quimb.py -------------------------------------------------------------------------------- /pyzx/rank_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/rank_width.py -------------------------------------------------------------------------------- /pyzx/rewrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/rewrite.py -------------------------------------------------------------------------------- /pyzx/rewrite_rules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/rewrite_rules/__init__.py -------------------------------------------------------------------------------- /pyzx/rewrite_rules/basicrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/rewrite_rules/basicrules.py -------------------------------------------------------------------------------- /pyzx/rewrite_rules/editor_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/rewrite_rules/editor_actions.py -------------------------------------------------------------------------------- /pyzx/rewrite_rules/hrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/rewrite_rules/hrules.py -------------------------------------------------------------------------------- /pyzx/rewrite_rules/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/rewrite_rules/rules.py -------------------------------------------------------------------------------- /pyzx/routing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/routing/__init__.py -------------------------------------------------------------------------------- /pyzx/routing/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/routing/architecture.py -------------------------------------------------------------------------------- /pyzx/routing/cnot_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/routing/cnot_mapper.py -------------------------------------------------------------------------------- /pyzx/routing/machine_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/routing/machine_learning.py -------------------------------------------------------------------------------- /pyzx/routing/parity_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/routing/parity_maps.py -------------------------------------------------------------------------------- /pyzx/routing/phase_poly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/routing/phase_poly.py -------------------------------------------------------------------------------- /pyzx/routing/steiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/routing/steiner.py -------------------------------------------------------------------------------- /pyzx/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/scripts/__init__.py -------------------------------------------------------------------------------- /pyzx/scripts/circ2circ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/scripts/circ2circ.py -------------------------------------------------------------------------------- /pyzx/scripts/circ2tikz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/scripts/circ2tikz.py -------------------------------------------------------------------------------- /pyzx/scripts/circuit_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/scripts/circuit_router.py -------------------------------------------------------------------------------- /pyzx/scripts/cnot_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/scripts/cnot_generator.py -------------------------------------------------------------------------------- /pyzx/scripts/phase_poly_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/scripts/phase_poly_generator.py -------------------------------------------------------------------------------- /pyzx/simplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/simplify.py -------------------------------------------------------------------------------- /pyzx/simulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/simulate.py -------------------------------------------------------------------------------- /pyzx/symbolic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/symbolic.py -------------------------------------------------------------------------------- /pyzx/tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/tensor.py -------------------------------------------------------------------------------- /pyzx/tikz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/tikz.py -------------------------------------------------------------------------------- /pyzx/todd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/todd.py -------------------------------------------------------------------------------- /pyzx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/pyzx/utils.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/requirements.txt -------------------------------------------------------------------------------- /run jupyter.bat: -------------------------------------------------------------------------------- 1 | jupyter notebook -------------------------------------------------------------------------------- /runtests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/runtests.bat -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/runtests.sh -------------------------------------------------------------------------------- /scratchpads/FOSDEM Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/FOSDEM Demo.ipynb -------------------------------------------------------------------------------- /scratchpads/FSim gate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/FSim gate.ipynb -------------------------------------------------------------------------------- /scratchpads/Fullstack.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/Fullstack.ipynb -------------------------------------------------------------------------------- /scratchpads/JohnDoodle.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/JohnDoodle.ipynb -------------------------------------------------------------------------------- /scratchpads/Mapping.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/Mapping.ipynb -------------------------------------------------------------------------------- /scratchpads/PQP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/PQP.ipynb -------------------------------------------------------------------------------- /scratchpads/Presentation Simplification demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/Presentation Simplification demo.ipynb -------------------------------------------------------------------------------- /scratchpads/Q-uarantine.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/Q-uarantine.ipynb -------------------------------------------------------------------------------- /scratchpads/QNLP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/QNLP.ipynb -------------------------------------------------------------------------------- /scratchpads/StabRank-Copy1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/StabRank-Copy1.ipynb -------------------------------------------------------------------------------- /scratchpads/StabRank.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/StabRank.ipynb -------------------------------------------------------------------------------- /scratchpads/Stabilizer Decomposition Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/Stabilizer Decomposition Demo.ipynb -------------------------------------------------------------------------------- /scratchpads/T and CNOT count Benchmarks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/T and CNOT count Benchmarks.ipynb -------------------------------------------------------------------------------- /scratchpads/XRel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/XRel.ipynb -------------------------------------------------------------------------------- /scratchpads/ak.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/ak.ipynb -------------------------------------------------------------------------------- /scratchpads/ak2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/ak2.ipynb -------------------------------------------------------------------------------- /scratchpads/cython-test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/cython-test.ipynb -------------------------------------------------------------------------------- /scratchpads/demo.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/demo.graphml -------------------------------------------------------------------------------- /scratchpads/demo1.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/demo1.graphml -------------------------------------------------------------------------------- /scratchpads/hpivot-scratch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/hpivot-scratch.ipynb -------------------------------------------------------------------------------- /scratchpads/magic state decomposition.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/magic state decomposition.ipynb -------------------------------------------------------------------------------- /scratchpads/multigraph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/multigraph.ipynb -------------------------------------------------------------------------------- /scratchpads/phase-squashing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/phase-squashing.ipynb -------------------------------------------------------------------------------- /scratchpads/pivots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/pivots.ipynb -------------------------------------------------------------------------------- /scratchpads/qsim.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/qsim.ipynb -------------------------------------------------------------------------------- /scratchpads/quizx.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/quizx.ipynb -------------------------------------------------------------------------------- /scratchpads/sim.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/sim.graphml -------------------------------------------------------------------------------- /scratchpads/sim_small_zx.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/sim_small_zx.graphml -------------------------------------------------------------------------------- /scratchpads/sim_small_zx_orig.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/sim_small_zx_orig.graphml -------------------------------------------------------------------------------- /scratchpads/sim_zh.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/sim_zh.graphml -------------------------------------------------------------------------------- /scratchpads/sim_zx.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/sim_zx.graphml -------------------------------------------------------------------------------- /scratchpads/sparsify.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/sparsify.ipynb -------------------------------------------------------------------------------- /scratchpads/tensor-net.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/tensor-net.ipynb -------------------------------------------------------------------------------- /scratchpads/test.qsim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/test.qsim -------------------------------------------------------------------------------- /scratchpads/test2.qsim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/test2.qsim -------------------------------------------------------------------------------- /scratchpads/what_are_these.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/what_are_these.txt -------------------------------------------------------------------------------- /scratchpads/zxtalk.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/scratchpads/zxtalk.ipynb -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/setup.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/test_requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/long_scalar_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/long_scalar_test.py -------------------------------------------------------------------------------- /tests/long_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/long_test.py -------------------------------------------------------------------------------- /tests/ry.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/ry.qasm -------------------------------------------------------------------------------- /tests/test_circuit.circuit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_circuit.circuit -------------------------------------------------------------------------------- /tests/test_circuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_circuit.py -------------------------------------------------------------------------------- /tests/test_circuit_nocontrol_noqubits.circuit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_circuit_nocontrol_noqubits.circuit -------------------------------------------------------------------------------- /tests/test_cnot_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_cnot_mapper.py -------------------------------------------------------------------------------- /tests/test_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_extract.py -------------------------------------------------------------------------------- /tests/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_graph.py -------------------------------------------------------------------------------- /tests/test_jsonparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_jsonparser.py -------------------------------------------------------------------------------- /tests/test_linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_linalg.py -------------------------------------------------------------------------------- /tests/test_phasepoly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_phasepoly.py -------------------------------------------------------------------------------- /tests/test_qasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_qasm.py -------------------------------------------------------------------------------- /tests/test_quimb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_quimb.py -------------------------------------------------------------------------------- /tests/test_rank_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_rank_width.py -------------------------------------------------------------------------------- /tests/test_scalar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_scalar.py -------------------------------------------------------------------------------- /tests/test_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_scripts.py -------------------------------------------------------------------------------- /tests/test_simplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_simplify.py -------------------------------------------------------------------------------- /tests/test_simulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_simulate.py -------------------------------------------------------------------------------- /tests/test_symbolic_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_symbolic_parsing.py -------------------------------------------------------------------------------- /tests/test_tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxcalc/pyzx/HEAD/tests/test_tensor.py --------------------------------------------------------------------------------