├── .DS_Store ├── LICENSE ├── README.log ├── README.md ├── docs ├── .DS_Store ├── Makefile ├── build │ ├── .DS_Store │ └── html │ │ ├── .buildinfo │ │ ├── .doctrees │ │ ├── environment.pickle │ │ ├── index.doctree │ │ ├── installation.doctree │ │ ├── licensed.doctree │ │ └── usage.doctree │ │ ├── _sources │ │ ├── index.rst.txt │ │ ├── installation.rst.txt │ │ ├── licensed.rst.txt │ │ └── usage.rst.txt │ │ ├── _static │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── custom.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ └── sphinx_highlight.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── installation.html │ │ ├── licensed.html │ │ ├── objects.inv │ │ ├── search.html │ │ ├── searchindex.js │ │ └── usage.html ├── make.bat └── source │ ├── api.rst │ ├── conf.py │ ├── gates.rst │ ├── index.rst │ ├── installation.rst │ ├── licensed.rst │ ├── logo.png │ ├── noise.rst │ ├── optimizer.rst │ ├── sobj.rst │ ├── spinOperators.rst │ ├── squeezeParams.rst │ └── utils.rst ├── notebook ├── .DS_Store └── basics │ ├── .DS_Store │ ├── .ipynb_checkpoints │ ├── Introduction-to-tqix-checkpoint.ipynb │ ├── Quantum-states-checkpoint.ipynb │ ├── Quantum-systems-checkpoint.ipynb │ └── Untitled-checkpoint.ipynb │ ├── Introduction-to-tqix.ipynb │ ├── Quantum-states.ipynb │ ├── Quantum-systems.ipynb │ └── images │ ├── .DS_Store │ └── structure.png ├── pyproject.toml ├── requirements.txt ├── setup.py ├── test ├── .DS_Store ├── 120,120,wigner_sphere.eps ├── GMS │ ├── 0.02husimi_sphere.eps │ ├── 0.04husimi_sphere.eps │ ├── 0.06husimi_sphere.eps │ ├── 0.08husimi_sphere.eps │ ├── 0.0husimi_sphere.eps │ ├── 0.1husimi_sphere.eps │ └── xi_2_graph.eps ├── OAT │ ├── 0.02husimi_sphere.eps │ ├── 0.04husimi_sphere.eps │ ├── 0.06husimi_sphere.eps │ ├── 0.08husimi_sphere.eps │ ├── 0.0husimi_sphere.eps │ ├── 0.1husimi_sphere.eps │ └── xi_2_graph.eps ├── TAT │ ├── 0.02husimi_sphere.eps │ ├── 0.04husimi_sphere.eps │ ├── 0.06husimi_sphere.eps │ ├── 0.08husimi_sphere.eps │ ├── 0.0husimi_sphere.eps │ ├── 0.1husimi_sphere.eps │ └── xi_2_graph.eps ├── TNT │ └── xi_2_graph.eps ├── husimi3d.eps ├── husimi_sphere.eps ├── library_bm.py ├── new_test_qstate.py ├── old_tests │ ├── .DS_Store │ ├── Fig-3 │ │ ├── MIC.pdf │ │ ├── MUB.pdf │ │ ├── sphere_MIC.py │ │ └── sphere_MUB.py │ ├── Fig2 │ │ ├── .DS_Store │ │ ├── Fig-2.zip │ │ ├── Fig-2 │ │ │ ├── spin_coherent.pdf │ │ │ ├── test_3D_ghz.py │ │ │ └── test_3D_spin.py │ │ ├── ghz.svg │ │ ├── spin.svg │ │ └── spin_coherent.svg │ ├── Pauli.py │ ├── QFI.pdf │ ├── SIC.py │ ├── a_test_qx.py │ ├── b_test_qstate.py │ ├── c_test_dsm.py │ ├── d_test_state.py │ ├── data_exp.dat │ ├── data_time.dat │ ├── dsm.py │ ├── e_test_backend.py │ ├── eigen_metro.eps │ ├── fig1.eps │ ├── fig1.svg │ ├── fig2.eps │ ├── ghz5.eps │ ├── ghz5_error02.eps │ ├── metrology.py │ ├── pauli_mub_sic.eps │ ├── random_psi.py │ ├── randoms_000_prob_2.dat │ ├── randoms_000_prob_2_cu.dat │ ├── randoms_000_run_2.py │ ├── spin_coherent.eps │ ├── spin_coherent.eps.2020_06_23_09_05_08.0.svg │ ├── spin_coherent_01.eps │ ├── spin_coherent_02.eps │ ├── spin_coherent_05.eps │ ├── test_3D.py │ ├── test_Haar.py │ ├── test_Husimi.py │ ├── test_Wigner.py │ ├── test_measure.py │ ├── test_mic.py │ ├── test_povms.py │ ├── test_povms_in.py │ ├── test_ptrace.py │ ├── test_simul.py │ ├── test_visualize.py │ ├── time_povm100.eps │ ├── time_povm100.svg │ ├── time_povm_new.eps │ ├── time_povm_new.svg │ ├── visua2d_hu.eps │ ├── visua3d_hu.eps │ ├── visual_Wigner2d.eps │ └── visual_Wigner3d.eps ├── test_genetics │ ├── .DS_Store │ └── tets_genetic.py ├── test_phase │ ├── Pjm.png │ ├── husimi_sphere.png │ └── test_phase.py ├── test_qstate.py ├── test_visual.py ├── test_vqa.py ├── test_vqa │ ├── .DS_Store │ ├── .ipynb_checkpoints │ │ └── test_ghz_by_vqa_multiple-checkpoint.ipynb │ ├── multiple_N5_time_tqix.eps │ ├── multiple_N5_time_vqa.eps │ ├── test_ghz_by_vqa_multiple.py │ ├── test_ghz_multiple_mar_nonmar_tqix.py │ ├── test_ghz_single_depahsing_tqix.py │ ├── test_ghz_single_tqix.py │ ├── test_graph_by_vqa_multiple.py │ └── test_graph_single.py ├── test_weak_condition │ ├── .ipynb_checkpoints │ │ └── star_star-checkpoint.ipynb │ └── star_star.ipynb ├── time_bm.py └── wigner3d.eps ├── tqix.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt └── top_level.txt └── tqix ├── .DS_Store ├── .backend.py.swp ├── .qustates.py.swp ├── __init__.py ├── about.py ├── backend.py ├── dsm ├── .DS_Store ├── __init__.py ├── dsmProb.py ├── dsmProb_Conf_1.py ├── dsmProb_Conf_2.py ├── dsmStrong.py ├── dsmWeak.py ├── execute.py └── util.py ├── hinfo.py ├── pis ├── .DS_Store ├── .util.py.swp ├── __init__.py ├── build │ ├── lib.linux-x86_64-3.7 │ │ └── accumulated_state.cpython-37m-x86_64-linux-gnu.so │ ├── lib.linux-x86_64-3.8 │ │ └── accumulated_state.cpython-38-x86_64-linux-gnu.so │ ├── temp.linux-x86_64-3.7 │ │ └── accumulated_state.o │ └── temp.linux-x86_64-3.8 │ │ └── accumulated_state.o ├── circuit.py ├── gates.py ├── noise.py ├── optimizers.py ├── spin_operators.py ├── squeeze_param.py └── util.py ├── povm ├── .DS_Store ├── __init__.py ├── mub.py ├── pauli.py ├── povm.py ├── sic.py └── stoke.py ├── qmeas.py ├── qmetro.py ├── qobj.py ├── qoper.py ├── qstate.py ├── qtool.py ├── quasi_prob.py ├── utility.py ├── version.py └── visualize.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/README.md -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/build/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/.DS_Store -------------------------------------------------------------------------------- /docs/build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/.buildinfo -------------------------------------------------------------------------------- /docs/build/html/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/build/html/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/build/html/.doctrees/installation.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/.doctrees/installation.doctree -------------------------------------------------------------------------------- /docs/build/html/.doctrees/licensed.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/.doctrees/licensed.doctree -------------------------------------------------------------------------------- /docs/build/html/.doctrees/usage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/.doctrees/usage.doctree -------------------------------------------------------------------------------- /docs/build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/installation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/_sources/installation.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/licensed.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/_sources/licensed.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/usage.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/_sources/usage.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_static/alabaster.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build/html/_static/basic.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build/html/_static/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build/html/_static/doctools.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build/html/_static/file.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build/html/_static/language_data.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build/html/_static/minus.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build/html/_static/plus.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build/html/_static/pygments.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build/html/_static/searchtools.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build/html/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/genindex.html -------------------------------------------------------------------------------- /docs/build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/index.html -------------------------------------------------------------------------------- /docs/build/html/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/installation.html -------------------------------------------------------------------------------- /docs/build/html/licensed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/licensed.html -------------------------------------------------------------------------------- /docs/build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/objects.inv -------------------------------------------------------------------------------- /docs/build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/search.html -------------------------------------------------------------------------------- /docs/build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/searchindex.js -------------------------------------------------------------------------------- /docs/build/html/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/build/html/usage.html -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/gates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/source/gates.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/licensed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/source/licensed.rst -------------------------------------------------------------------------------- /docs/source/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/source/logo.png -------------------------------------------------------------------------------- /docs/source/noise.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/source/noise.rst -------------------------------------------------------------------------------- /docs/source/optimizer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/source/optimizer.rst -------------------------------------------------------------------------------- /docs/source/sobj.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/source/sobj.rst -------------------------------------------------------------------------------- /docs/source/spinOperators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/source/spinOperators.rst -------------------------------------------------------------------------------- /docs/source/squeezeParams.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/source/squeezeParams.rst -------------------------------------------------------------------------------- /docs/source/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/docs/source/utils.rst -------------------------------------------------------------------------------- /notebook/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/notebook/.DS_Store -------------------------------------------------------------------------------- /notebook/basics/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/notebook/basics/.DS_Store -------------------------------------------------------------------------------- /notebook/basics/.ipynb_checkpoints/Introduction-to-tqix-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/notebook/basics/.ipynb_checkpoints/Introduction-to-tqix-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/basics/.ipynb_checkpoints/Quantum-states-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/notebook/basics/.ipynb_checkpoints/Quantum-states-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/basics/.ipynb_checkpoints/Quantum-systems-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/notebook/basics/.ipynb_checkpoints/Quantum-systems-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/basics/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/notebook/basics/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/basics/Introduction-to-tqix.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/notebook/basics/Introduction-to-tqix.ipynb -------------------------------------------------------------------------------- /notebook/basics/Quantum-states.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/notebook/basics/Quantum-states.ipynb -------------------------------------------------------------------------------- /notebook/basics/Quantum-systems.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/notebook/basics/Quantum-systems.ipynb -------------------------------------------------------------------------------- /notebook/basics/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/notebook/basics/images/.DS_Store -------------------------------------------------------------------------------- /notebook/basics/images/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/notebook/basics/images/structure.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/setup.py -------------------------------------------------------------------------------- /test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/.DS_Store -------------------------------------------------------------------------------- /test/120,120,wigner_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/120,120,wigner_sphere.eps -------------------------------------------------------------------------------- /test/GMS/0.02husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/GMS/0.02husimi_sphere.eps -------------------------------------------------------------------------------- /test/GMS/0.04husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/GMS/0.04husimi_sphere.eps -------------------------------------------------------------------------------- /test/GMS/0.06husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/GMS/0.06husimi_sphere.eps -------------------------------------------------------------------------------- /test/GMS/0.08husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/GMS/0.08husimi_sphere.eps -------------------------------------------------------------------------------- /test/GMS/0.0husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/GMS/0.0husimi_sphere.eps -------------------------------------------------------------------------------- /test/GMS/0.1husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/GMS/0.1husimi_sphere.eps -------------------------------------------------------------------------------- /test/GMS/xi_2_graph.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/GMS/xi_2_graph.eps -------------------------------------------------------------------------------- /test/OAT/0.02husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/OAT/0.02husimi_sphere.eps -------------------------------------------------------------------------------- /test/OAT/0.04husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/OAT/0.04husimi_sphere.eps -------------------------------------------------------------------------------- /test/OAT/0.06husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/OAT/0.06husimi_sphere.eps -------------------------------------------------------------------------------- /test/OAT/0.08husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/OAT/0.08husimi_sphere.eps -------------------------------------------------------------------------------- /test/OAT/0.0husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/OAT/0.0husimi_sphere.eps -------------------------------------------------------------------------------- /test/OAT/0.1husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/OAT/0.1husimi_sphere.eps -------------------------------------------------------------------------------- /test/OAT/xi_2_graph.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/OAT/xi_2_graph.eps -------------------------------------------------------------------------------- /test/TAT/0.02husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/TAT/0.02husimi_sphere.eps -------------------------------------------------------------------------------- /test/TAT/0.04husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/TAT/0.04husimi_sphere.eps -------------------------------------------------------------------------------- /test/TAT/0.06husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/TAT/0.06husimi_sphere.eps -------------------------------------------------------------------------------- /test/TAT/0.08husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/TAT/0.08husimi_sphere.eps -------------------------------------------------------------------------------- /test/TAT/0.0husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/TAT/0.0husimi_sphere.eps -------------------------------------------------------------------------------- /test/TAT/0.1husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/TAT/0.1husimi_sphere.eps -------------------------------------------------------------------------------- /test/TAT/xi_2_graph.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/TAT/xi_2_graph.eps -------------------------------------------------------------------------------- /test/TNT/xi_2_graph.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/TNT/xi_2_graph.eps -------------------------------------------------------------------------------- /test/husimi3d.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/husimi3d.eps -------------------------------------------------------------------------------- /test/husimi_sphere.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/husimi_sphere.eps -------------------------------------------------------------------------------- /test/library_bm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/library_bm.py -------------------------------------------------------------------------------- /test/new_test_qstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/new_test_qstate.py -------------------------------------------------------------------------------- /test/old_tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/.DS_Store -------------------------------------------------------------------------------- /test/old_tests/Fig-3/MIC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/Fig-3/MIC.pdf -------------------------------------------------------------------------------- /test/old_tests/Fig-3/MUB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/Fig-3/MUB.pdf -------------------------------------------------------------------------------- /test/old_tests/Fig-3/sphere_MIC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/Fig-3/sphere_MIC.py -------------------------------------------------------------------------------- /test/old_tests/Fig-3/sphere_MUB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/Fig-3/sphere_MUB.py -------------------------------------------------------------------------------- /test/old_tests/Fig2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/Fig2/.DS_Store -------------------------------------------------------------------------------- /test/old_tests/Fig2/Fig-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/Fig2/Fig-2.zip -------------------------------------------------------------------------------- /test/old_tests/Fig2/Fig-2/spin_coherent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/Fig2/Fig-2/spin_coherent.pdf -------------------------------------------------------------------------------- /test/old_tests/Fig2/Fig-2/test_3D_ghz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/Fig2/Fig-2/test_3D_ghz.py -------------------------------------------------------------------------------- /test/old_tests/Fig2/Fig-2/test_3D_spin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/Fig2/Fig-2/test_3D_spin.py -------------------------------------------------------------------------------- /test/old_tests/Fig2/ghz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/Fig2/ghz.svg -------------------------------------------------------------------------------- /test/old_tests/Fig2/spin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/Fig2/spin.svg -------------------------------------------------------------------------------- /test/old_tests/Fig2/spin_coherent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/Fig2/spin_coherent.svg -------------------------------------------------------------------------------- /test/old_tests/Pauli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/Pauli.py -------------------------------------------------------------------------------- /test/old_tests/QFI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/QFI.pdf -------------------------------------------------------------------------------- /test/old_tests/SIC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/SIC.py -------------------------------------------------------------------------------- /test/old_tests/a_test_qx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/a_test_qx.py -------------------------------------------------------------------------------- /test/old_tests/b_test_qstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/b_test_qstate.py -------------------------------------------------------------------------------- /test/old_tests/c_test_dsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/c_test_dsm.py -------------------------------------------------------------------------------- /test/old_tests/d_test_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/d_test_state.py -------------------------------------------------------------------------------- /test/old_tests/data_exp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/data_exp.dat -------------------------------------------------------------------------------- /test/old_tests/data_time.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/data_time.dat -------------------------------------------------------------------------------- /test/old_tests/dsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/dsm.py -------------------------------------------------------------------------------- /test/old_tests/e_test_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/e_test_backend.py -------------------------------------------------------------------------------- /test/old_tests/eigen_metro.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/eigen_metro.eps -------------------------------------------------------------------------------- /test/old_tests/fig1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/fig1.eps -------------------------------------------------------------------------------- /test/old_tests/fig1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/fig1.svg -------------------------------------------------------------------------------- /test/old_tests/fig2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/fig2.eps -------------------------------------------------------------------------------- /test/old_tests/ghz5.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/ghz5.eps -------------------------------------------------------------------------------- /test/old_tests/ghz5_error02.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/ghz5_error02.eps -------------------------------------------------------------------------------- /test/old_tests/metrology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/metrology.py -------------------------------------------------------------------------------- /test/old_tests/pauli_mub_sic.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/pauli_mub_sic.eps -------------------------------------------------------------------------------- /test/old_tests/random_psi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/random_psi.py -------------------------------------------------------------------------------- /test/old_tests/randoms_000_prob_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/randoms_000_prob_2.dat -------------------------------------------------------------------------------- /test/old_tests/randoms_000_prob_2_cu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/randoms_000_prob_2_cu.dat -------------------------------------------------------------------------------- /test/old_tests/randoms_000_run_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/randoms_000_run_2.py -------------------------------------------------------------------------------- /test/old_tests/spin_coherent.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/spin_coherent.eps -------------------------------------------------------------------------------- /test/old_tests/spin_coherent.eps.2020_06_23_09_05_08.0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/spin_coherent.eps.2020_06_23_09_05_08.0.svg -------------------------------------------------------------------------------- /test/old_tests/spin_coherent_01.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/spin_coherent_01.eps -------------------------------------------------------------------------------- /test/old_tests/spin_coherent_02.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/spin_coherent_02.eps -------------------------------------------------------------------------------- /test/old_tests/spin_coherent_05.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/spin_coherent_05.eps -------------------------------------------------------------------------------- /test/old_tests/test_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/test_3D.py -------------------------------------------------------------------------------- /test/old_tests/test_Haar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/test_Haar.py -------------------------------------------------------------------------------- /test/old_tests/test_Husimi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/test_Husimi.py -------------------------------------------------------------------------------- /test/old_tests/test_Wigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/test_Wigner.py -------------------------------------------------------------------------------- /test/old_tests/test_measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/test_measure.py -------------------------------------------------------------------------------- /test/old_tests/test_mic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/test_mic.py -------------------------------------------------------------------------------- /test/old_tests/test_povms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/test_povms.py -------------------------------------------------------------------------------- /test/old_tests/test_povms_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/test_povms_in.py -------------------------------------------------------------------------------- /test/old_tests/test_ptrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/test_ptrace.py -------------------------------------------------------------------------------- /test/old_tests/test_simul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/test_simul.py -------------------------------------------------------------------------------- /test/old_tests/test_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/test_visualize.py -------------------------------------------------------------------------------- /test/old_tests/time_povm100.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/time_povm100.eps -------------------------------------------------------------------------------- /test/old_tests/time_povm100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/time_povm100.svg -------------------------------------------------------------------------------- /test/old_tests/time_povm_new.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/time_povm_new.eps -------------------------------------------------------------------------------- /test/old_tests/time_povm_new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/time_povm_new.svg -------------------------------------------------------------------------------- /test/old_tests/visua2d_hu.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/visua2d_hu.eps -------------------------------------------------------------------------------- /test/old_tests/visua3d_hu.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/visua3d_hu.eps -------------------------------------------------------------------------------- /test/old_tests/visual_Wigner2d.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/visual_Wigner2d.eps -------------------------------------------------------------------------------- /test/old_tests/visual_Wigner3d.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/old_tests/visual_Wigner3d.eps -------------------------------------------------------------------------------- /test/test_genetics/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_genetics/.DS_Store -------------------------------------------------------------------------------- /test/test_genetics/tets_genetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_genetics/tets_genetic.py -------------------------------------------------------------------------------- /test/test_phase/Pjm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_phase/Pjm.png -------------------------------------------------------------------------------- /test/test_phase/husimi_sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_phase/husimi_sphere.png -------------------------------------------------------------------------------- /test/test_phase/test_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_phase/test_phase.py -------------------------------------------------------------------------------- /test/test_qstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_qstate.py -------------------------------------------------------------------------------- /test/test_visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_visual.py -------------------------------------------------------------------------------- /test/test_vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_vqa.py -------------------------------------------------------------------------------- /test/test_vqa/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_vqa/.DS_Store -------------------------------------------------------------------------------- /test/test_vqa/.ipynb_checkpoints/test_ghz_by_vqa_multiple-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_vqa/.ipynb_checkpoints/test_ghz_by_vqa_multiple-checkpoint.ipynb -------------------------------------------------------------------------------- /test/test_vqa/multiple_N5_time_tqix.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_vqa/multiple_N5_time_tqix.eps -------------------------------------------------------------------------------- /test/test_vqa/multiple_N5_time_vqa.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_vqa/multiple_N5_time_vqa.eps -------------------------------------------------------------------------------- /test/test_vqa/test_ghz_by_vqa_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_vqa/test_ghz_by_vqa_multiple.py -------------------------------------------------------------------------------- /test/test_vqa/test_ghz_multiple_mar_nonmar_tqix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_vqa/test_ghz_multiple_mar_nonmar_tqix.py -------------------------------------------------------------------------------- /test/test_vqa/test_ghz_single_depahsing_tqix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_vqa/test_ghz_single_depahsing_tqix.py -------------------------------------------------------------------------------- /test/test_vqa/test_ghz_single_tqix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_vqa/test_ghz_single_tqix.py -------------------------------------------------------------------------------- /test/test_vqa/test_graph_by_vqa_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_vqa/test_graph_by_vqa_multiple.py -------------------------------------------------------------------------------- /test/test_vqa/test_graph_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_vqa/test_graph_single.py -------------------------------------------------------------------------------- /test/test_weak_condition/.ipynb_checkpoints/star_star-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_weak_condition/.ipynb_checkpoints/star_star-checkpoint.ipynb -------------------------------------------------------------------------------- /test/test_weak_condition/star_star.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/test_weak_condition/star_star.ipynb -------------------------------------------------------------------------------- /test/time_bm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/time_bm.py -------------------------------------------------------------------------------- /test/wigner3d.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/test/wigner3d.eps -------------------------------------------------------------------------------- /tqix.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix.egg-info/PKG-INFO -------------------------------------------------------------------------------- /tqix.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /tqix.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tqix.egg-info/top_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix.egg-info/top_level.txt -------------------------------------------------------------------------------- /tqix/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/.DS_Store -------------------------------------------------------------------------------- /tqix/.backend.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/.backend.py.swp -------------------------------------------------------------------------------- /tqix/.qustates.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/.qustates.py.swp -------------------------------------------------------------------------------- /tqix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/__init__.py -------------------------------------------------------------------------------- /tqix/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/about.py -------------------------------------------------------------------------------- /tqix/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/backend.py -------------------------------------------------------------------------------- /tqix/dsm/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/dsm/.DS_Store -------------------------------------------------------------------------------- /tqix/dsm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/dsm/__init__.py -------------------------------------------------------------------------------- /tqix/dsm/dsmProb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/dsm/dsmProb.py -------------------------------------------------------------------------------- /tqix/dsm/dsmProb_Conf_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/dsm/dsmProb_Conf_1.py -------------------------------------------------------------------------------- /tqix/dsm/dsmProb_Conf_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/dsm/dsmProb_Conf_2.py -------------------------------------------------------------------------------- /tqix/dsm/dsmStrong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/dsm/dsmStrong.py -------------------------------------------------------------------------------- /tqix/dsm/dsmWeak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/dsm/dsmWeak.py -------------------------------------------------------------------------------- /tqix/dsm/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/dsm/execute.py -------------------------------------------------------------------------------- /tqix/dsm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/dsm/util.py -------------------------------------------------------------------------------- /tqix/hinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/hinfo.py -------------------------------------------------------------------------------- /tqix/pis/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/pis/.DS_Store -------------------------------------------------------------------------------- /tqix/pis/.util.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/pis/.util.py.swp -------------------------------------------------------------------------------- /tqix/pis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/pis/__init__.py -------------------------------------------------------------------------------- /tqix/pis/build/lib.linux-x86_64-3.7/accumulated_state.cpython-37m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tqix/pis/build/lib.linux-x86_64-3.8/accumulated_state.cpython-38-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tqix/pis/build/temp.linux-x86_64-3.7/accumulated_state.o: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tqix/pis/build/temp.linux-x86_64-3.8/accumulated_state.o: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tqix/pis/circuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/pis/circuit.py -------------------------------------------------------------------------------- /tqix/pis/gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/pis/gates.py -------------------------------------------------------------------------------- /tqix/pis/noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/pis/noise.py -------------------------------------------------------------------------------- /tqix/pis/optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/pis/optimizers.py -------------------------------------------------------------------------------- /tqix/pis/spin_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/pis/spin_operators.py -------------------------------------------------------------------------------- /tqix/pis/squeeze_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/pis/squeeze_param.py -------------------------------------------------------------------------------- /tqix/pis/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/pis/util.py -------------------------------------------------------------------------------- /tqix/povm/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/povm/.DS_Store -------------------------------------------------------------------------------- /tqix/povm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/povm/__init__.py -------------------------------------------------------------------------------- /tqix/povm/mub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/povm/mub.py -------------------------------------------------------------------------------- /tqix/povm/pauli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/povm/pauli.py -------------------------------------------------------------------------------- /tqix/povm/povm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/povm/povm.py -------------------------------------------------------------------------------- /tqix/povm/sic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/povm/sic.py -------------------------------------------------------------------------------- /tqix/povm/stoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/povm/stoke.py -------------------------------------------------------------------------------- /tqix/qmeas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/qmeas.py -------------------------------------------------------------------------------- /tqix/qmetro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/qmetro.py -------------------------------------------------------------------------------- /tqix/qobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/qobj.py -------------------------------------------------------------------------------- /tqix/qoper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/qoper.py -------------------------------------------------------------------------------- /tqix/qstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/qstate.py -------------------------------------------------------------------------------- /tqix/qtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/qtool.py -------------------------------------------------------------------------------- /tqix/quasi_prob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/quasi_prob.py -------------------------------------------------------------------------------- /tqix/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/utility.py -------------------------------------------------------------------------------- /tqix/version.py: -------------------------------------------------------------------------------- 1 | #this file is generated from tqix setup.py 2 | version = '4.3' 3 | -------------------------------------------------------------------------------- /tqix/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echkon/tqix-developers/HEAD/tqix/visualize.py --------------------------------------------------------------------------------